Hi Friends, I want to download certain files/data onto my USB mem. device. What necessary things I shd do ?
Rgds, Jain
Hi,
--- hemendra jain jain_hemendra123@rediffmail.com wrote:
I want to download certain files/data onto my USB mem. device. What necessary things I shd do ?
Which distro? Which kernel? Which USB memory device? What hardware?
Recent distro versions automatically mount the USB device at /media/usbdisk so you can just copy files in the GUI. They even produce an icon on your desktop for the same.
SK
-- Shakthi Kannan, MS Software Engineer, Specsoft (Hexaware Technologies) [E]: shakthimaan@yahoo.com [M]: (91) 98407-87007 [W]: http://www.shakthimaan.com [L]: Chennai, India
__________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com
Hi,
--- hemendra jain jain_hemendra123@rediffmail.com wrote:
I want to download certain files/data onto my USB mem. device. What necessary things I shd do ?
Mount the device using
"mount /dev/sda1 /mnt/usbstick"
I don't remember the actual command off the top of my head, so you might have to specify a -t flag to specify the filesystem.
After mounting you can copy data using 'cp' or 'mv' as,
"cp/mv <file/s> /mnt/usbstick"
Of course you need to have the directory "/mnt/usbstick" present
Or as Shakthi pointed out most recent distro's should be able to mount it somewhere under /media
Recent distro versions automatically mount the USB device at /media/usbdisk so you can just copy files in the GUI. They even produce an icon on your desktop for the same.
Bhowmik
I want to download certain files/data onto my USB mem. device. What necessary things I shd do ?
Find the device from /var/log/messages. Before connecting the stick, just fire the command # tail -f /var/log/messages From there, identify the device, then mount it. Vidyadutt