Quote:
Originally Posted by CT_0000
Alright I got it, that makes sense. When I do have it mounted what is the command to copy files to it?
|
cp -r -v /path/to/files /path/to/disk
cp is the copy command
-r means recursive
-v means be verbose. I like this to see whats going on
the first file path argument is the source files
the second is the path to your disk usually /media/something
James