1. 程式人生 > >Linux常見錯誤總結(持續記錄)

Linux常見錯誤總結(持續記錄)

最近在接觸Linux,將學習過程中遇到的bug記錄一下。

目錄

一、/etc/profile配置錯誤command is not found

由於誤操作導致

source /etc/profile 報錯

-bash: id:command is not found 

此時,linux下很多命令到不能能用,包括vi ls 等...

可以使用

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

重新啟用這些命令

如果 /etc/profile存在錯誤而導致source 不能成功,可以使用

/bin/vi  /etc/profile 編輯

最重要的是,在進行profile編輯的時候,英文單詞不要寫錯了