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,017 times
-1
-
2Your command is wrong, it should be `cd ~/Documents`. – Parto Jun 11 '14 at 04:54
-
Still showing command not found – user292457 Jun 11 '14 at 05:09
-
Which command have you used? – Parto Jun 11 '14 at 05:11
-
cd ~/Documents even cd ~/Desktop – user292457 Jun 11 '14 at 05:15
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