-1

enter image description here

When I'm trying to run the cd command on my virtual pc is shows error as shown in pic above. How can I change the directory?

dessert
  • 40,956

1 Answers1

3

You simply misspelled it: In Ubuntu (and generally in Unix systems), file and directory names are case-sensitive and the directory's name is Desktop:

cd Desktop   # if you are in your home directory (relative path)
cd ~/Desktop # if you are anywhere else (absolute path)
dessert
  • 40,956