cd ~/.config/autostart/ -bash: cd: /root/.config/autostart/: No such file or directory
时间: 2023-07-17 18:03:48 浏览: 120
./nginx: No such file or directory
5星 · 资源好评率100%
如果在执行`cd ~/.config/autostart/`命令时出现了`No such file or directory`的错误提示,说明该目录在你的系统中不存在。
这可能是因为你当前的用户目录下没有`.config`目录,或者该目录下没有`autostart`子目录。在某些发行版中,这个目录可能被放置在其他位置。
你可以尝试使用以下命令来查找正确的自启动目录:
```plaintext
find ~ -name autostart
```
该命令会在当前用户的主目录下搜索名为`autostart`的目录。如果找到目录,则将路径用于后续步骤中的创建`.desktop`文件。
如果你仍然无法找到自启动目录,可以尝试其他方法来实现软件的自启动,例如使用`init.d`、`systemd`、`cron`或`rc.local`等方式。具体的实现方式可能因不同的系统和发行版而有所不同。
阅读全文