Linux下操作遇到的問題

2021-10-24 12:37:48 字數 829 閱讀 7459

- linux 中grep 忽略空行

cat a.txt |

grep

"^\s*[^# \t].*$"

- linux 中echo改變輸出顏色

echo -e "\033[0;31m red\033[0m"

#\033[0;31m:表示開啟顏色開關,顏色是0;31m-->紅色;\033[0m表示終止顏色開關

*** is not in the sudoers file.this incident will be reported.在root all=(all) all,下面新增:

*** all=(all) all

配置檔案的格式說明:

youuser all=(all) all

%youuser all=(all) all

youuser all=(all) nopasswd: all

%youuser all=(all) nopasswd: all

第一行:允許使用者youuser執行sudo命令(需要輸入密碼).

第二行:允許使用者組youuser裡面的使用者執行sudo命令(需要輸入密碼).

第三行:允許使用者youuser執行sudo命令,並且在執行的時候不輸入密碼.

第四行:允許使用者組youuser裡面的使用者執行sudo命令,並且在執行的時候不輸入密碼.

3.撤銷sudoers檔案寫許可權,命令:

chmod u-w /etc/sudoers

這樣普通使用者就可以使用sudo了

linux下操作PostgreSQL的常用命令

一般性 查詢快取區 e file line 使用外部編輯器編輯查詢快取區 或檔案 ef funcname line 使用外部編輯器編輯函式定義 p 顯示查詢快取區的內容 r 重置 清除 查詢快取區 s 檔案 顯示歷史記錄或將歷史記錄儲存在檔案中 w 檔案 將查詢快取區的內容寫入檔案 輸入 輸出 co...

Linux下操作Mysql類

ifndef mysql api define mysql api include include include include include include include include mysql預設埠 define default mysql port 3306 using namesp...

mongo在linux下操作

1 進入到bin目錄 cd opt mongodb3.4 bin 2 執行mongo管理器 mongo ip port mongo 127.0.0.1 17017 3 選擇資料庫 use yysh 4 鑑權 db.auth user password 5 集合操作 show collentions ...