我正在使用 Ubuntu 11.10,使用终端时出现以下错误:
lee@theia:~$ regedit/home/lee/desktop/Direct3D.reg
bash: regedit/home/lee/desktop/Direct3D.reg: No such file or directory
答案1
这意味着您输入的字符串regedit/home/lee/desktop/Direct3D.reg
不是 shell 内部的。因此 shell 尝试将其作为命令处理,但找不到具有该名称的任何命令。由于字符串包含/
,shell 尝试将斜杠之前的部分与目录匹配,但找不到这样的目录。
答案2
看起来您想要这样做regedit /home/lee/desktop/Direct3D.reg
(查看命令后的空格regedit
)。
这样,该行类似于您在 Windows 上用于将条目导入 Windows 注册表的行。但是 Ubuntu 中没有 Windows 注册表(也没有 Direct3D),这(无意冒犯)使这种尝试成为 IT 笑话。
(此外,Ubuntu 上的路径区分大小写,我相信默认桌面文件夹名为Desktop
,而不是desktop
。)