/dev/sdb1 (normally usb key)
/dev/hdb1 (normally older internal hdd)
/dev (meaning the /dev folder)
hd/sd (meaning hard disk / sata device)
b (meaning the seccond device a,b,c,etc...)
1 (meaning the first partition on the device 1,2,3,etc...)
I normally find my device by issuing blkid as root *before* it is plugged in, then after it is plugged in to compare. ( this will give you the UUID + the relative file in /dev ) The one that shows up the seccond time will be your device.
The output should be similar to
Code: Select all
/dev/hda1: UUID="b6e350ac-53ef-491a-bf28-9353b364f1bb" TYPE="ext3"
/dev/hda2: UUID="e3bb28f8-6695-4cfa-9bf6-c70280a0e13d" TYPE="swap"
mkdir /mnt/hda2
mount /dev/hda2 /mnt/hda2
THIS WILL MOUNT AS ROOT USER. You will then need to make your changes as ROOT. To mount as a normal user you would use pmount and pumount to replace mount and umount respectively.