您好,登錄后才能下訂單哦!
這篇“Linux如何定制History輸出格式”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Linux如何定制History輸出格式”文章吧。
Linux系統使用History命令來查看系統的運行記錄,從而找出一些問題。但是History輸出的數據中常常沒有時間等信息。
具體方法如下
以root用戶登錄服務器,在/etc/profile.d/下新建一個文件history_command
vim /etc/profile.c/history_commandexport HISTFILE=$HOME/.bash_historyexport HISTSIZE=1200export HISTFILESIZE=1200export HISTCONTROL=ignoredupsexport HISTTIMEFORMAT=“`whoami` %F %T ”shopt -s histappendtypeset -r HISTTIMEFORMAT
source /etc/profile.c/history_command 使其生效,再敲history命令看看:
#history 51008 root 2015-09-11 08:54:20 vim /etc/profile 1009 root 2015-09-11 09:13:17 history | less 1010 root 2015-09-11 09:15:49 vim /etc/profile 1011 root 2015-09-11 09:43:20 cat /etc/profile.d/history_command 1012 root 2015-09-11 09:44:59 history 5
時間已經有了,/etc/profile和/etc/profile.d/下的文件會在用戶interactive login的時候自動執行,所以用戶登錄機器后每敲一個命令都會被記錄到HISTFILE指定的文件中,而且是以追加的方式寫入的。
配置中最關鍵的地方是export HISTTIMEFORMAT=“whoami
%F %T ” , 這一行指定history的輸出格式。
以上就是關于“Linux如何定制History輸出格式”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。