The new iPod (3rd generation) and Suse Linux 9
Last modified on July 24, 2026 • 2 min read • 302 wordsI have bought an iPod.
sudo /sbin/modprobe hfsplusAfter that you can just plug in the iPod. After a while you will hear a beep meaning that it was recognized. To determine which device number it got you should check the system messages:tail -30 /var/log/messagesAs it is handles like a SCSI device it will get probably sda if it is your first usb/firewire device. If you have already usb or firewire devices connected to your computer it will get maybe sdb or sdc (and so on). Create a mount point:sudo mkdir /media/ipodThe 3rd generation iPod has apparently two partitions. The first must be for the firmware/system software (sdx1) and the second is for the data (sdx29. Funnily when I tried to mount it withsudo mount -t hfsplus /dev/sdc2 /media/ipodthe system complained that something is not OK with the device. However, when I tried:sudo mount -o umask=000 /dev/sdc2 /media/ipodeverything went smoothly. The umask option is necessary in order to give everybody read-write access. Otherwise only root can write. I installed
gtkpod
to move my mp3s to the iPod. There is even a
Suse 9 rpm
around.