![]() |
Cant copy files from Gentoo server to USB drive.
Hello Everyone,
My perdicament at the moment is that I am unable to copy a set of files from my Gentoo server to a USB drive. My path is cp -r /opt/biweb/app/ /dev/sdc/. End result will say that /dev/sdc/ is not a directory. But it is. |
Quote:
Actually /dev/sdc is not a *normal* directory. Stuff under /dev represents virtual devices to which you can mount file systems. List the ouptut of lsblk -fs to see where your USB drive is mounted and copy the files to that mount point. Post the output of the command if you would like us to help you with that. Cheers. |
Thanks for the help.
Command lsblk -fs, " command not found". |
Likely the destination would be /dev/sdc1
Issuing the mount command will show you what drives are mounted. If this has been auto-mounted, then I'd just try to see if sdc1 is there. |
Alright I tried that command- cp -r /opt/biweb/app/ /dev/sdc1/ and the output was "cannot overwrite non-directory '/dev/sdc' with directory /opt/biweb/app/
|
Firstly you should see how it is mounted, using the mount command. Because /dev/sdc1 may be mounted as /media/8fabcdef455461 .... and so forth, or it may be /media/mydisk if you gave the file system a name.
If you wish to copy files from under that source directory, I think the syntax is ok, but you may wish to end that with a dot, as in /opt/biweb/app/. |
Quote:
|
Try this:
Code:
mkdir /tmp/mydisk If any of these give you errors, post those here before running the next command. Also, to view what you need to mount, run Code:
/sbin/fdisk -l |
Alright i tried, mkdir /tmp/mydisk- and the output was "No space left on device." This may be why im having trouble.
|
Quote:
Code:
fdisk -l Code:
df --si |
fdisk -l
Device Boot Start End Blocks ID System /dev/sdb1 1 8924 71681998 83 Linux Disk /dev/sdc 16.0 GB Device boot Start End Blocks ID System /dev/sdc1 1 1947 15632384 c |
fdisk -l
device boot start end blocks ID system /dev/sdb1 1 8924 71681998 83 Linux disk dev/sdc 16.0 GB device boot start end blocks ID system /dev/sdc1 1 1947 15632384 c W95 FA32 LBA The lower potrion is the usb drive |
Quote:
|
ok, mkdir /media/usb-drive, cannot create directory, No such file or directory
|
Quote:
findmnt /dev/sdc1 |
All times are GMT -5. The time now is 05:21 PM. |