我的 kali linux 无法正常工作
$ls
Desktop Documents Music
$ls Desktop/
答案1
用于cd
不ls
进入桌面目录或音乐或文档。
您的命令不会返回任何内容,因为您的桌面目录可能是空的。
因此,如果您在主目录中并且执行以下操作:
#This returns nothing if your Desktop directory is empty.
$ ls Desktop/
#Print your working directory.
$ pwd
``
So go into Desktop directory first using `cd Desktop`
then use `ls`. If your command returns nothing is is because your Desktop directory is empty.
答案2
如果您位于主目录,那么这两个命令都应该有效。否则尝试:
$ ls ~/Desktop
$ ls ~/Music
祝你好运