Results 1 to 7 of 7
Experts out there,
I am a newbie who recently get my hands on a ubuntu unit. This is my first interface with a linux os. I have a blade server ...
- 12-02-2009 #1Just Joined!
- Join Date
- Dec 2009
- Posts
- 3
How to copy files from usb in ubuntu os?
Experts out there,
I am a newbie who recently get my hands on a ubuntu unit. This is my first interface with a linux os. I have a blade server here with ubuntu 8.04 os. I would like to copy some files to this blade unit but i am not able to do so as i cannot seem to copy the desired files from the os?
Other than usb copy, ftp does not work. What other methods can i copy files (from windows) to ubuntu?
Please kindly advice me.
Thank you very much.
- 12-02-2009 #2
The easiest way would probably be SCP, you can download a program called winscp which provides a GUI for transferring files, but the server has to be running SSH.
- 12-02-2009 #3
I'm not clear on what exactly you're doing.
You want to copy files from a USB drive to the hard drive?
What have you tried? Where does it fail? Are there error messages? What sort of files are these?
- 12-02-2009 #4Just Joined!
- Join Date
- Dec 2009
- Posts
- 3
Hi there,
I have connect my usb drive to the blade server and accessed /dev/disk/by-label for which i can see my usb drive name vish SSH. However, i am not able to access the usb contents at all which i intend to copy to the local drive in the blade unit.
Here is an illustration:
root:/dev/disk/by-label# ls
MYUSBdrive
root:/dev/disk/by-label# cd MYUSBdrive
bash: cd: MYUSBdrive: Not a directory
From youtube, there seems to have a GUI application that will allow user to add and eject the usb drive. But i am not sure how this can apply here.
Thank you very much.
- 12-02-2009 #5
You need to mount the drive first.
Where /dev/sd(x) is the /dev name of your USB. You can generally find that withCode:sudo mkdir /mnt/MYUSBdrive sudo mount -t vfat /dev/sd(x) /mnt/MYUSBdrive
Also the -t vfat assumes the drive is formatted as FAT/FAT32.Code:sudo fdisk -l
- 12-02-2009 #6
Oh, I should add.
You should unmount the drive before removing
And to be clear, once it's mounted, /mnt/MYUSBdrive would be the directory you would cd into.Code:sudo umount /mnt/MYUSBdrive
Code:cd /mnt/MYUSBdrive
- 12-02-2009 #7Just Joined!
- Join Date
- Dec 2009
- Posts
- 3


Reply With Quote
