Linux常用系統配置技巧

2021-06-29 09:42:50 字數 540 閱讀 3413

檢視history歷史記錄檔案位置:

/root/.bash_history  (~/.bash_history)

修改history歷史記錄條數

方法一:

sed -i 『s/histsize=1000/histsize=10000/g』 /etc/profile

source /etc/profile (使其生效即可)

方法二:

# 設定儲存歷史命令的檔案大小

export histfilesize=1000000000

# 儲存歷史命令條數

export histsize=1000000

# 實時記錄歷史命令,預設只有在使用者退出之後才會統一記錄,很容易造成多個使用者間的相互覆蓋。

export prompt_command="history -a"

# 記錄每條歷史命令的執行時間

export histtimeformat="%y-%m-%d_%h:%m:%s "

使更改立即生效:

# source /etc/bashrc

Linux系統配置

一般在這個目錄下 etc sysconfig network scripts 通常是 ifcfg eth0 網口1 ifcfg eth1 網口2 dell的是 ifcfg em1 網口1 ifcfg em2 網口2 重啟網絡卡 service network restart 如果ping 不通網域名...

linux系統配置

配置記錄 6 15 2016 10 19 18 am 1.vimrc配置 vimrc沒有,直接建立即可 vim開源配置檔案 這裡新增一些解決中文亂碼和tab鍵設定為空格的方法 解決中文亂碼 set termencoding utf 8 set encoding prc 設定tab為空格,注 ts是t...

Linux系統配置

系統配置,包括軟體安裝,各種問題解決。sudo apt get install libreoffice l10n zh cn當系統卡死時,鍵盤和滑鼠都沒辦法操作了以後。可以嘗試ctrl alt f2 f2 f6 試試,看看能不能進tty介面。能進的話,進入以後htop檢視問題。當上述操作無效時,按住...