Article Index 2. Detecting USB hard drive After you plug in your USB device to your USB port, linux will add new block device into /dev/ directory. At this stage you are not able to use this device as the USB filesystem needs to be mouted before you are able to retrieve any data. To find out what name your block device file have you can run fdisk command:
You will get output similar to this:
3. Creating mount point Create directory where you want to mount your device:
4. Edit /etc/fstab To automate this process you can edit /etc/fstab file and add line similar to this:
Run mount command to mount all not yet mounted devices. Keep in mind that if you have more different USB devices in you system, device name can vary!!!
I didn't edit the fstab. I just mounted the device. It won't be permanant. No reason other than just I wanted to do it that way.
Use dmesg to identify which sdXX is the usb
|
mount a CD drive mount -t iso9660 /dev/cdrom /media or mount -t iso9660 -r /dev/cdrom /media
|