ls 和 dir 在 debian 10 上没有显示任何内容

ls and dir doesn't show anything on debian 10

我已经在笔记本电脑上安装了 debian 10 32 位并尝试使用 ls,但它没有打印任何内容。 当我使用 ls -a 时,我得到了这个:

root@acer-aspire-one:~# ls  //This prints nothing
root@acer-aspire-one:~# ls -a
.  ..  .bashrc  .profile

dir 也没有显示任何内容

root@acer-aspire-one:~# dir  //This prints nothing
root@acer-aspire-one:~# dir -a
.  ..  .bashrc  .profile

您当前的路径是~,这是当前用户(root)的主文件夹。 除了 ls -a 显示的一些隐藏文件外,该文件夹是空的,是全新安装的。

所以 ls 正在做它的工作。

要使其列出特定路径,例如 /,您可以 运行 ls / 或首先 cd 进入该路径,如下所示:

cd /
ls