Linux 系統管理和監視

2021-09-18 08:24:28 字數 2166 閱讀 7860

建立使用者

[root@localhost home]# adduser newuser

刪除使用者

[root@localhost home]# passwd newuser

修改使用者屬性

[root@localhost home]# id newuser

uid=501(newuser) gid=501(newuser) groups=501(newuser)

增加使用者組

[root@localhost home]# groupadd newgroup

刪除使用者組

[root@localhost home]# groupdel newgroup

修改組成員

[root@localhost home]# vi /etc/group

使用者之間的切換

[root@localhost home]# su

修改使用者屬性

[root@localhost home]# usermod –g 502 newuser

使用者配置檔案

[root@localhost home]# cat /etc/passwd

[root@localhost home]# cat /etc/shadow

[root@localhost home]# cat /etc/group

[root@localhost home]# cat /etc/gshadow

顯示使用者自身的使用者名稱

[root@localhost home]# whoami

查詢當前系統中都有哪些使用者

[root@localhost home]# who

更改檔案的擁有者

[root@localhost home]# chown –r newuser:x

更改檔案的訪問許可權

[root@localhost home]# chmod g+s file

程序檢視命令

[root@localhost home]# ps

刪除程序

[root@localhost home]# kill –l 2506

系統監控命令

[root@localhost home]# top

[root@localhost home]# tree

[root@localhost home]# df

檢視當前使用者的安全上下文

[root@localhost home]# id

列出當前執行程序的安全上下文

[root@localhost home]# ps -z

列出檔案對應的安全上下文

[root@localhost home]# ls –z /etc/passwd

檢視當前selinux模式及運**況

[root@localhost home]# sestatus

修改當前執行的selinux模式

[root@localhost home]# setenforce enfoecing

顯示當前的dselinux模式

[root@localhost home]# getenforce

改變安全上下文

[root@localhost home]# chcon –t file

初始化上下文

[root@localhost home]# setfiles file /etc/hosts

恢復上下文

[root@localhost home]# restorecon

標記檔案系統

[root@localhost home]# fixfiles check

命令seinfo顯示系統當前應用的selinux策略情況

[root@localhost home]# seinfo

命令sesearch使用者查詢規則的詳細資訊

[root@localhost home]# sesearch

命令getsebool顯示系統中布林值的啟動與關閉狀態

[root@localhost home]# getsebool -a

命令setsebool用於設定布林值的狀態

[root@localhost home]# setsebool –p 0

selinux的策略管理

[root@localhost home]# system-config-selinux

Linux系統管理

程序是正在執行的乙個程式或命令,每乙個程序都有乙個執行的實體,都喲自己的位址空間,並占用一定的系統資源。盤點伺服器的健康狀態 檢視所有系統中所有程序 殺死程序 1.3.1 ps aux 檢視系統中所有程序,使用bsd作業系統格式 1.3.2 ps le 檢視系統中所有程序,使用linux標準命令格式...

Linux 系統管理

linux 系統管理 檢視資料夾大小 du sh 第1章 程序管理 1 1 程序檢視ps命令 1 2 程序的檢視top命令 1 3 殺死程序 1 4 修改程序優先順序 第2章工作管理 2 1 工作管理簡介 2 2 工作管理方法 把命令放到後台 如果想要程序在後台執行 必須不能與前台有互動 1 把程序...

linux 系統管理

正在執行的程式,任何程式執行都要耗費一定的系統資源 判斷伺服器健康狀態 檢視系統中所有程序 殺死程序 1 判斷程序健康狀態 top 選項 d 秒數 指定top命令每隔幾秒更新。預設是3秒 b 使用批處理模式輸出。一般和 n 選項合用 n 次數 指定top命令執行的次數。一般和 b 選項和用 在top...