Just connect the device to an USB port of your choice.
1. Load the appropriate kernel module for handling the USB device
modprobe usb-storage2. Check which new device was bound, for example /dev/sda1
fdisk -l3. Create a mount point
mkdir /mnt/usbdisk4. Mount USB device
mount /dev/sdb1 /mnt/usbdisk5. Use the device to transfer data as you like
6. Unmount USB device
umount /mnt/usbdisk
 
 
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.