Archive for the ‘Redirected’ Category

5
Jan

Turn Fedora into a PS3 Media Server [Tutorial]

This tutorial will walk you through a successful installation of a Fedora Media Server for streaming pictures, video, and audio to your PS3. I would suspect that you will be able to complete these steps and be up and running in less than an hour. These are the steps that worked for me using Fedora 10 Linux, the PS3 with the latest updates, uShare, and a Linksys WRT54G Router. This guide is adaptable to other flavors of Linux as well including Ubuntu, Debian, openSuse, etc. Let’s get to it!

[Read more →]

8
Dec

Bypassing Rubber Command in Gedit LaTeX Plugin [Tip]

This tip is for those, like me, who are having troubles getting the Gedit LaTex Plugin to function properly with Rubber.  The original problem is that an error will occur if you use whitespaces in your file names and folders.  It’s a known bug and is documented in the FAQ of the Gedit LaTeXPlugin homepage.  There is a patch for this, and if you havn’t tried to apply it yet, you should try.  If you’d rather not waste your time and/or the patch isn’t doing it for you (like in my case with Fedora 10), then you can completely bypass the command that causes the error in the first place.  So, here’s how (with a screenshot for reference):

  1. Open Gedit (Applications -> Accessories -> Text Editor).
  2. Open the Plugins Window (Edit -> Preferences -> “Plugins” Tab).
  3. Scroll down to the “LaTeX Plugin”, select it, and then click on “Configure”.
  4. Click on the “Build Profiles” tab, select the “PDF” item, and then click the “Edit” button.
  5. Under “Jobs” type in the following command (with two “-” before “interaction”) and then click the “Add” button when finished:
    • pdflatex --interaction=nonstopmode "%f"
  6. Use the “Delete” button to delete the rubber -f -s –inplace -d “%f” command.  (You can chose to keep this as long as it is on the bottom of the list and you don’t mind your document being processed twice).
  7. Enjoy!
28
Nov

How To Enable Graphical Boot with Plymouth [Fedora Tip]

Thanks to this guide by axel, I was able to get rid of the simple blue/light blue/white bar loader and get the fancy graphical loader better known as Plymouth. Keep in mind that I am using it on a laptop that has Intel 945GM graphics.

I’m going to keep things basic without a lot of jargon. If you’d like more details on this, visit this page.

Type the following into the terminal to configure grub:

su -
gedit /boot/grub/grub.conf

Then, within the grub.conf file, add the bold text below (this value will also depend upon which screen resolution you’d like. To get this value, visit this page):

title Fedora (2.6.27.5-117.fc10.i686)
root (hd0,9)
kernel /boot/vmlinuz-2.6.27.5-117.fc10.i686 ro root=UUID=a61c8338-e373-4389-ae00-32942185f7c2 rhgb quiet vga=792
initrd /boot/initrd-2.6.27.5-117.fc10.i686.img

If you’d like to add more themes, you’ll need to first download and install them and then set them as default. To do this, type the following into the terminal, replacing what’s within the {} with the loader of your choice):

su -
yum install plymouth-plugin-{fade-in,pulser,spinfinity}

Then, set your theme as default:

su -
plymouth-set-default-plugin pluginname
/usr/libexec/plymouth/plymouth-update-initrd

Source: http://www.my-guides.net/en/content/view/125/26/1/12/#plymouth

25
Nov

How To: Install VirtualBox on Fedora 10 [Tutorial]

Updated November 25th, 2008

This is a tutorial on how to get VirtualBox up and running on Fedora 10.  Also, this tutorial is for the 32-Bit version of VirtualBox, so you’ll have to customize a little more to get the 64-bit version running. Everything in the “code” sections should be copy/pasted/typed into the terminal. Right, let’s get to it:

PreStep.) Open the terminal and get into super user mode:

su -

1.) Get the latest VirtualBox package (as of now, 2.0.6) from the VirtualBox website for Fedora 9 and install it (generally, after a few months, the Fedora 10 link will be available).

wget http://download.virtualbox.org/virtualbox/2.0.6/VirtualBox-2.0.6_39765_fedora9-1.i386.rpm && rpm -ivh VirtualBox-2.0.6_39765_fedora9-1.i386.rpm

2.) Get the kernel-devel package:

yum install make automake autoconf gcc kernel-devel dkms

3.) Run the setup file for VirtualBox:

/etc/init.d/vboxdrv setup

4.) Add yourself to the “vboxusers” group and fix the SELinux Permissions:

usermod -G vboxusers -a username
chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so

5.) Run, and enjoy!

VirtualBox

6.) To Get USB Support:

1 – create a new group called “usb”;
2 – locate file usbfs: in my case is /sys/bus/usb/drivers (I suggest to find the file with a usb device inserted;
3 – modify file /etc/fstab inserting a line containing the right path and the number corresponding the “usb” group :
none /sys/bus/usb/drivers usbfs devgid=503,devmode=664 0 0
4 – command mount -a;
5 – start VB and try…;

Source: Fedora Forums

7.) To Properly Backup the VirtualBox Machine (.vdi):

Please refer to my other page here:

How To: Properly Backup a VirtualBox Machine (.VDI)

8.) To Get Sound Working:

Highlight your virtual machine and click on the “Settings” button. Click on the “Sound” category, and then check the “Enable Sound” option. In the drop-down box, select “PulseAudio”. You should now have sound.

That’s it!  If you find yourself with problems, feel free to comment below or ask for assistance on the fedora forum thread that I have created located here.

25
Nov

How to Fix the Backlight Control Issue in Gnome 2.24 [Linux Tip]

A quick fix to the problem of not being able to control the backlight in Gnome 2.24 (Fedora, Ubuntu, etc…) is to run a simple command in the terminal.  By no means to I take credit for finding this solution, nor do I promise that this will work for you.  It just so happens that it worked for me when my computer would freeze, hang, and crash when trying to adjust the backlight brightness using the “gnome brightness applet”.  Also, I’d like to make a note that this was tested in Fedora 10.  It should be distribution independent as long as it’s running Gnome 2.24.  Here goes:

In the terminal, run this (you may need to run as root):

xrandr --output LVDS --set BACKLIGHT_CONTROL native

Now, if your luck is anything like mine, you should be able to control your backlight using both your function keys (FN+F5 or FN+F6) and gnome brightness applet. Good luck!

Source: Ubuntu Forums

12
Nov

How to Install/Upgrade Banshee 1.4 in Ubuntu 8.10 Intrepid Ibex [Tutorial]

On November 10, 2008, a new release of Banshee, one of the most popular music players for Linux, came out with new features and benefits (Banshee 1.4). Here’s how to upgrade your existing installation to the latest version (you can adapt this guide for other Linux distributions as well, but it was specifically written for Ubuntu 8.10):

Open your “/etc/apt/sources.list” file for edit by typing this into the terminal:

sudo gedit /etc/apt/sources.list

Add these lines to “sources.list”, and then close the editor:


deb http://ppa.launchpad.net/banshee-team/ubuntu intrepid main
deb-src http://ppa.launchpad.net/banshee-team/ubuntu intrepid main

Refresh your sources by typing the following into the terminal:

sudo apt-get update

If you have Banshee installed already, you should now see an available update. Go ahead and run the update to get the latest Banshee 1.4 installed on your system.

If you don’t already have Banshee installed, you should be able to install Banshee 1.4 by typing the following into the terminal:

sudo apt-get install banshee

Now, you should be good to go! Enjoy the many new features and benefits of Banshee 1.4!

If you have a different version of Ubuntu, you may need to change the sources.list items to reflect that. Refer to this page for instructions.

10
Nov

How to Change the Background Color in gEDA [Tutorial]

The following instructions are written for the beginner gEDA users who wish to change the default black background color to white (or whichever color of their choosing).  This is documented on the gEDA Wiki, but I believe that the instructions are either obsolete, not clear enough, or both.  I have used and tested the following instructions using gEDA Version 1.4.0.20080127 within Ubuntu 8.10 (Intrepid Ibex).

Start by opening the file called “system-gschemrc” within the /etc/gEDA directory. You can do this by typing the following into the terminal:

sudo gedit /etc/gEDA/system-gschemrc

Near the top of the document, you will see a block of code that controls the color scheme of the program. Uncomment the line ending in “; light background” and comment out the line ending in “; dark background”. The finished changes should look like the following:


;
; Start of color section
;
; Load up a color scheme has a light (almost white) background
; Comment out the first line and comment in the second line for a
; dark (black) background. The dark background is the original look.
;
;(load (build-path geda-rc-path "gschem-darkbg")) ; dark background
(load (build-path geda-rc-path "gschem-lightbg")) ; light background

Now that you have chosen to use the light background scheme, you’ll need to edit the “gschem-lightbg” file to your liking. Here, we will change the color of the background from a light grey, to a white. Begin by typing the following into the terminal:

sudo gedit /etc/gEDA/gschem-lightbg

Then, change the line that reads “;(background-color 0 “grey94″ “null” “1 1 1″ 255 255 255) ; light background” to “(background-color 0 “white” “null” “1 1 1″ 255 255 255) ; light background”. I would recommend copy/paste. The finished changes should look like the following:


; background-color index color_name outline_color ps_color_string
; int_red int_green int_blue
; Set the default background color.
; DO NOT change the value of the index (first number)
;
;(background-color 0 "grey94" "null" "1 1 1" 255 255 255) ; light background
(background-color 0 "white" "null" "1 1 1" 255 255 255) ; light background

That’s it! Re-open gEDA and enjoy the new background color! As the documentation suggests, “if you want more control over the colors, please edit “/etc/gEDA/gschem-darkbg” or “/etc/gEDA/gschem-lightbg” or create your own file and load it in the system-gschemrc file.”

4
Nov

Fedora 10 Release Candidate [Screenshot Gallery]

Here’s a screenshot tour of the Fedora 10 Release Candidate (or Preview Release) running within a VirtualBox VM.  The countdown begins!  21 Days left as of this entry…  Enjoy!



Other useful links:

Release Notes: http://docs.fedoraproject.org/release-notes/f10preview…
Feature List: http://fedoraproject.org/wiki/Releases/10/FeatureList
Mirrors: http://mirrors.fedoraproject.org/publiclist/Fedora/10-Preview/
Artwork: http://fedoraproject.org/wiki/Artwork/F10Themes


5
Oct

LaTeX Resume Examples

Why even bother writing a Resume in LaTeX?  I believe that Matthew M. Boedicker summed it up very well:

Writing a resume using LaTeX is preferable to writing it using Microsoft Word, or something similar, for a number of reasons:

  • When printed (as Postscript or PDF), LaTeX has a more polished, professional look than a document produced by a word processor.
  • A resume done in LaTeX will stand out, since most everyone else will use Microsoft Word, and probably the same wizard/template.
  • Convert your LaTeX to PDF, which has free readers for almost any platform, and you are not forcing the recipient to own the proper version of expensive proprietary software to read it.
  • LaTeX gives you complete control over the layout of your document.
  • LaTeX can be converted to a number of different formats.
  • LaTeX itself and many converters, viewers, and add-on packages are free.
  • A resume done with LaTeX (the Computer Modern font anyway) might mark you as a member of the scientific/research/academic community. Depending on the job, it could help your chances.
  • LaTeX is plain text and can be easily version-controlled using CVS or other version control software.
  • LaTeX is flexible. You can use any platform you want, and any editor you want.

So, the purpose of this post is not to introduce anything ground-breaking or new to the world about LaTeX Resumes, but rather lump a bunch of great resources and examples together that I found throughout my research so that it’s easy for others to see!

My Resume has been done in LaTeX as well and it can be found on my homepage or more specifically, here. I found that one nice thing about doing it in LaTeX is that I was able to easily create a scannable txt and html Resume as well! You can see the source .tex file here. I would only hope that you customize it a bit… nobody wants their resume to get lost in the pile because it looks like everyone else!

More Resume Tempates:

Rensselaer Polytechnic Institute (RPI) (There are several here.)

Todd C. Miller

Matthew M. Boedicker

linux.dsplabs.com.au (Great tutorial!)

Andrew McNabb

David Grant

Miklós Csürös

28
Sep

How To: Install and Use Calc2LaTeX [Tutorial]

This guide is intended to give a brief, but complete tutorial aimed towards users who enjoy an easy, graphical walk-through on downloading, installing, and using calc2LaTeX to convert a OpenOffice 2.4 Calc spreadsheet to something that LaTeX will recognize.  There’s nothing wrong with creating your tables directly in LaTeX, but sometimes the tables can be quite complicated to code. That’s where calc2LaTeX comes in really handy.  So, let’s get to it…
[Read more →]

« Previous PageNext Page »