I'm running Arch Linux on a Macbook. I want to automatically mount my Macintosh partition when booting Arch, so I added the following to /etc/fstab:
/dev/sda2 /media/Machintosh hfsplus defaults 1 2
After rebooting, the partition was not mounted, but I could mount it with the following command:
sudo mount /dev/sda2
How can I make Arch Linux automatically mount the partition?
dmesgto look for warning/error when the system tries to mount your partitions. – ByteNudger Mar 2 '12 at 16:33/mediais used by HAL/udev for automounting dynamic disks like a USB drive. I recommend putting the directory Macintosh under/mntwhich has often been used for static mounts from fstab. – penguin359 Mar 2 '12 at 18:53