<<<<<<< .mine

How to Use the Ipod (v3) with Redhat Linux 9.0

=======

How to Use the Ipod (v3) with Redhat Linux 9.0

>>>>>>> .r7754

iPod v3 30gb
I am unsure whether this How To guide is backwards compatible with the previous versions of the Apple iPod. I have a 30 gb Ipod (v3) and this has only been tested with that

Connecting the Ipod

The Windows formatted Ipod is essentially an external harddrive and can be connected as such. Out of the box, you can connect it using Firewire. I had many issues with the kernel crashing when using Firewire and ended up buying the USB 2.0 connection. The USB 2.0 connection did not change the process for mounting the drive

Note: I would recommend anyone seriously considering using the Ipod on the current 2.4 kernel to buy the USB 2.0 cable. The issues with Firewire may be resolved with the 2.6 kernel

  1. Make sure you are logged in as Root to install the Ipod. After the install you will not need to be root
  2. In order to find the drive try typing the command dmesg
  3. Look for a message talking about a usb / firewire harddrive on /dev/
  4. To look at the structure of the hard drive, type fdisk /dev/sda
  5. Create a mount point for the drive by typing mkdir /mnt/Ipod
  6. Attempt to mount the drive: mount -t msdos /dev/sda
  7. Once connected, you should be able to see the contents of the drive. Type: cd /mnt/Ipod then type ls to display the list of files. It should look something like this:
    [you@yourbox Ipod]# ls
    bootex.log Calendars Contacts iPod_Control Movies Notes
  8. Unmount the ipod now to prepare for the next part:
    [you@yourbox Ipod]# cd /
    [you@yourbox Ipod]# umount /mnt/Ipod

Making the Ipod Permanent

Once you have tested that the Ipod works and you can see some files, it is time to make it load with a simple mount /mnt/Ipod

  1. Open up /etc/fstab in your favorite editor. I use the command emacs /etc/fstab
  2. Create a line that looks like this replacing sdb2 for the location of your Ipod
    /dev/sdb2 /mnt/Ipod vfat defaults, uid=500, user, noauto 0 0
  3. Now we are ready to try loading the Ipod from the fstab!
    [you@yourbox Ipod]# mount /mnt/Ipod

Now you have your Ipod ready to be mounted on command!

Take a look at GTKPOD

Leave a Reply