0

Screeshot of error

I am in my home folder, I can list the folders their and can see 'Documents' folder. But when I issue CD command - it says no such folder or directory!

2 Answers2

1

Ubuntu is Case Sensitive.

cd Documents would work.

cd documents failed because there is no directory documents.

K7AAY
  • 17,202
1

There is one error in your command and a gotcha.

Linux is a case sensitive OS cd documents referees to different directory than cd Documents.

By omitting the full path /home/mordred/Documents this path is evaluated as a relative path, if the command is issued from a different working directory it would fail.

J. Starnes
  • 1,969