If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
You can edit the file /etc/fstab and add the line(s)
Code:
/dev/sda1 /media/hdd auto defaults 0 0
/dev/sdb1 /media/usb auto defaults 0 0
Or you can add you can use the UUID of the actual device, this ensures that a particular device always gets mounted under a specific mount point. The example below is for my devices so won't work for you but you can get the UUIDs of your devices by typing the command blkid in a telnet window
Code:
UUID=168aea89-060f-425c-bb9c-1380d197cd3f /media/hdd auto defaults 0 0
UUID=3fa52323-8ce6-4a57-8d8b-c51c7895e862 /media/usb auto defaults 0 0
Comment