I am trying to copy an mp3 file from my Downloads directory to an external USB drive.
The directory where the file is: /home/uffa/Downloads
file name: Chaka Khan A Night In Tunisia.mp3
I used this command as root:
root@ronja:/home/uffa# cp -R /home/uffa/Downloads/Chaka Khan A Night In Tunisia.mp3 /media/uffa/003A63E53A63D666
The output looks like this:
cp: cannot stat '/home/uffa/Downloads/Chaka': No such file or directory
cp: cannot stat 'Khan': No such file or directory
cp: cannot stat 'A': No such file or directory
cp: cannot stat 'Night': No such file or directory
cp: cannot stat 'In': No such file or directory
cp: cannot stat 'Tunisia.mp3': No such file or directory
It will not work!
I have set the permission for the file to "read and write"
Update: As a workaround, I was able to copy the file to a WD Elements USB drive, but not to a USB stick. So no need for help anymore except to have an explanation why it will mot work to copy to a USB stick.