Hi I am trying to move a file from a folder to another but cannot make it.
Those are command I tried:
You see those folders are with space in their name?
Hi I am trying to move a file from a folder to another but cannot make it.
Those are command I tried:
You see those folders are with space in their name?
It seems as though you are missing proper address of the files you are moving. I cannot see the full line of what you are trying but I would say that to move the files you should use:
sudo mv ~/Desktop...
or
sudo mv /home/username/Desktop ...
Alternatively, if you are already in the folder that contains /Desktop you could do
sudo mv ./Desktop....
That is, what you are missing is what comes before /Desktop as what you currently have there is saying that at the root of your file system there is a folder called Desktop which, in most installations, this is not the case as the Desktop folder is under the user's home folder (i.e., inside /home/username/).
(LinuxRev: permissions should not be an issue as he is trying as a sudo.)
A quick search search for "How to move files and folders from linux terminal" shows many sources including this one: HowTo: Move A Folder In Linux Using mv Command
[Sorry... I had to break this into three comments as there is a limit in the length of the comments.]
– Juan Antonio Sep 22 '16 at 15:23
<pre>...terminal-output...</pre>
) – mook765 Sep 22 '16 at 21:36