-1
我在linux機器上有一個正規用戶名。我也有root權限。今天我發現我的用戶名已被刪除。也就是說,如果我以root身份登錄然後運行Linux:如何知道誰刪除了我的用戶賬號
su myusername
系統表示「myusername」不存在。我檢查了文件/ etc/passwd和「myusername」不在那裏。
我的問題是,無論如何找出誰刪除了「myusername」?
我在linux機器上有一個正規用戶名。我也有root權限。今天我發現我的用戶名已被刪除。也就是說,如果我以root身份登錄然後運行Linux:如何知道誰刪除了我的用戶賬號
su myusername
系統表示「myusername」不存在。我檢查了文件/ etc/passwd和「myusername」不在那裏。
我的問題是,無論如何找出誰刪除了「myusername」?
您可以嘗試這樣的事:
grep "deluser" /home/*/.bash_history /root/.bash_history
這個問題似乎是題外話,因爲無論你摧毀自己的帳戶沒有意識到這一點,還是其他什麼東西一樣。無論如何,編程不會解決你的問題。 –
試試看這裏:http://serverfault.com/questions/208347/how-do-i-list-all-users-with-root – user1537366