Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试消除新 Ubuntu 服务器安装上的错误,并且在日志中出现错误,我不知道如何追踪。
日志一遍又一遍地显示这条线
sh: 1: cd: can't cd to ~ sh: 1: cd: can't cd to ~ sh: 1: cd: can't cd to ~ sh: 1: cd: can't cd to ~
如何从如此模糊的错误中找到根源?它甚至没有日志中大多数错误的发生时间。
提前致谢。这将是漫长的一天!
cd ~意思是“将我所在的目录更改为我的主目录”。您或脚本正在尝试不成功地运行此命令。就像 Chris 说的,grep 会拯救你的一天:
cd ~
cd / grep -r 'cd ~' * -n
^这将切换到你的根目录cd /,递归-r搜索'cd ~'所有文件中的字符串*,并给出行号-n
cd /
-r
'cd ~'
*
-n
也许 grep 用于包含字符串cdwhos last access time is recent
cd