Linux系統與安全學習筆記(轉)

BSDLite發表於2007-08-12
Linux系統與安全學習筆記(轉)[@more@]命令:

# chkconfig- updates and queries runlevel information for system services
啟動腳步的自動化管理

#程式管理命令

killall -term xproc
//此方法比killall -9 xproc要好。因為-9引數只釋放當前程式的資源並終止它,而它的子程式都變成defunct狀態,直到作業系統來銷燬它們。

pgrep, pkill - look up or signal processes based on name and other attributes
=====例子:=======
[root@localhost ~]# pgrep -fl bash
2736 -bash
2796 -bash

skill, snice - send a signal or report process status

#使用者管理的命令
chage - change use password expiry informatin
==========================
[root@localhost ~]# chage -l vic
Last password change : 3月 10, 2006
Password expires : never
Password inactive : never
Account expires : never
Minimum number of days between password change : 0
Maximum number of days between password change : 99999
Number of days of warning before password expires : 7
===========================

getfacl - 瀏覽指定檔案或目錄的ACL.

/etc/securetty 檔案控制根使用者從何處可以進行登入,如果/etc/securetty不存在,那麼根使用者就可以從任何地點進行登入;如果/etc/securetty存在但沒有內容,根使用者不可以從任何裝置上登入,只能透過su或sudo進行根使用者訪問。

#系統日誌檢視
/var/run/utmp /var/log/wtmp --登入記錄檔案,可以用who命令來檢視。
/var/log 系統日誌目錄

lastb, last -- show listing of last logged in users

crypt - password and data encryption
crypt is the password encryption function. It is based on the Data Encryption Standard algorithm with variations intended (among other things) to discourage use of hardware implementations of a key search.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-949411/,如需轉載,請註明出處,否則將追究法律責任。

相關文章