2
~$ cd downloads
bash: cd: downloads: No such file or directory
~$ ls
Desktop    Downloads         Music     Public     Videos
Documents  examples.desktop  Pictures  Templates
~$ cd downloads
bash: cd: downloads: No such file or directory

Why is the directory not being changed?

Eliah Kagan
  • 116,445
  • 54
  • 318
  • 493

3 Answers3

11

In Linux file names are case sensitive. The directory isn't named downloads but Downloads.

Florian Diesch
  • 86,013
  • 17
  • 224
  • 214
9

Directories are case sensitive in Linux, run cd Downloads.

Tactux
  • 166
  • 11
Khan Shahrukh
  • 298
  • 2
  • 4
  • 16
2

That's because Linux systems are case-sensitive. So to change bash's current working directory from ~/ to ~/Downloads run:

cd Downloads
kos
  • 35,535
  • 13
  • 101
  • 151