2011年4月25日

Linux 切換使用者出現 "/bin/bash : No such file or directory"

[root@VOIP bin]$ su - cvs
Password:
su: /bin/bash : No such file or directory

問題:Linux 切換使用者出現 "/bin/bash : No such file or directory"

檢查該使用者也有 home 目錄,/bin/bash 檔案也都在權限也沒問題,後來爬文找出原因是系統的 /etc/passwd 在該使用者那行多了看不出來的空白,解決方法如下

解法:
vim /etc/passwd 檔案,把 cvs 使用者那行最後面多餘的空白都殺掉,存檔,再切換就可以了

2011年4月15日

iptables 防火牆設定備份及復原

iptables configuration backup / restore

備份設定檔
iptables-save > /root/iptables.conf

還原設定檔
iptables-restore < /root/iptables.conf