like cd/Documents gives "cd/Documents command not found " .The same thing with sudo command. Not able to access an files, change directories or install software
Asked
Active
Viewed 1,054 times
-1
2 Answers
1
cd/Documents will not work. There should be a space after cd command and I think path you mentioned is incorrect, Document folder is in users home folder i.e. /home/{username}/Document in your case you can try
cd ~/Documents

Vaibhav Panmand
- 131
- 5
0
there should be space between a command and its argument. and present directory should also be noted. for you this one will work
cd Documents
First of all read this to know how to use terminal.

eightnoteight
- 149
- 1
- 8
cd ~/Documents
. – Parto Jun 11 '14 at 04:54