Because there is no directory named Desktop in your current directory. Linux have a little different philosophy, and you can't get to Desktop in this way from every place. You can get instead into home directory by typing cd ~ from every place and to root directory by typing cd / from every place -> you can think about it in that way, that Linux uses home directory instead of Desktop. Every other time you have to cd to absolute pathabsolute path (which starts with /) or relative pathrelative path (which starts with ./ or with no character).
Example:
- You are in directory /home/ninja (you can get your current directory by typing
pwd). - You type
ls. Console logs all directories which you can get into now by typingcd. E.g console logged:Download Documents Music, so you can type nowcd Downloadto move there. - Additionally no matter where you currently are, you can use
cd /andcd ~
Try that. ;)