Obviously, you're not paying attention to the cases when dealing with folder names in Linux. Linux is case sensitive, so you must enter the names with letters in the correct case.
You probably have these default directories in your home directory (it will vary depending on your locale:
Documents, Desktop, Downloads, Music, Pictures, Videos
These start with a capital letter and can only be entered using cd
followed by the exact, case sensitive name, or an appropriate wildcard. You are free to name other custom folders (created by you) as you desire, but note you will need to remember their letter case to be able to access them.
Example: George and george are two different folders and may be found in the same parent directory, so always pay attention to the letter case when dealing with folders and files on Linux.
Another important thing to note is the fact that your home directory is structured thus:
/home/<your_username>/...
and that /home/<your_username>
is the same as the ~
character so these are the same:
cd ~/ <==> cd /home/<your_username>/
cd ~ <==> cd /home/<your_username>
Doing cd ~
will take you to your home folder, and Linux has another shortcut cd
that when used will take you there also. Feel free to read up, and have fun. Welcome to the Linux World.
cd ~/Desktop
– pomsky Oct 05 '17 at 17:22cd
and your file structure first, try the link above provided by Mark Kirby. – pomsky Oct 05 '17 at 17:26pwd
and the output is not/home/<user>
folder, thencd Desktop
will not work. – Redbob Oct 05 '17 at 17:33cd desktop
is not the same ascd Desktop
note difference between CAP D and lower case d – Panther Oct 05 '17 at 17:34cd Desktop
again and it worked this time!pwd
also brought up/home/<user>
. Learned some stuff today.The program installed correctly too! So all smooth running it seems!
– Berrik Oct 05 '17 at 17:39bash: cd: desktop: No such file or directory
), this is a duplicate of How do I change the current working directory to the Downloads directory? or Terminal doesn't go to /home/username/downloads. The first error suggestscd \*
was run, orcd *
in an empty directory. – Eliah Kagan Oct 12 '17 at 08:18