1睦疫、統(tǒng)計(jì)文件的行數(shù)
<pre>
[root@test59 dbgen]# wc -l partsupp.tbl
80000000 partsupp.tbl
[root@test59 dbgen]# wc -l orders.tbl
150000000 orders.tbl
</pre>
wc 還有其他的一些參數(shù):
語法:wc [選項(xiàng)] 文件…
說明:該命令統(tǒng)計(jì)給定文件中的字符數(shù)厕鹃、字?jǐn)?shù)、行數(shù)。如果沒有給出文件名,則從標(biāo)
準(zhǔn)輸入讀取。wc同時也給出所有指定文件的總統(tǒng)計(jì)數(shù)炉抒。字是由空格字符區(qū)分開的最大字符串。
該命令各選項(xiàng)含義如下:
- c 統(tǒng)計(jì)字符數(shù)稚叹。
- l 統(tǒng)計(jì)行數(shù)焰薄。
- w 統(tǒng)計(jì)字?jǐn)?shù)。
這些選項(xiàng)可以組合使用扒袖。
輸出列的順序和數(shù)目不受選項(xiàng)的順序和數(shù)目的影響塞茅。
總是按下述順序顯示并且每項(xiàng)最多一列。
行數(shù)季率、字?jǐn)?shù)野瘦、字符數(shù)、文件名
如果命令行中沒有文件名飒泻,則輸出中不出現(xiàn)文件名鞭光。
另外針對命令也可以增加wc -l,例如查看一下當(dāng)前80端口的連接情況:
netstat -an|grep 80|wc -l
2、用戶如果出現(xiàn)資源不夠泞遗,執(zhí)行su - user也出錯:
su: cannot set user id: Resource temporarily unavailable
需要檢查/etc/security/limits.conf
<pre>
vi /etc/security/limits.conf
End of file
soft nproc 655360
hard nproc 655360
soft nofile 655360
hard nofile 655360
</pre>
分布式環(huán)境下資源使用的很多惰许,默認(rèn)設(shè)置遠(yuǎn)遠(yuǎn)不夠
3、簡單的針對某個ip進(jìn)行iptables設(shè)置:
iptables -I INPUT -s 121.0.0.34 -j DROP
4史辙、設(shè)置密碼的安全策略
Debian汹买、Ubuntu 或 Linux Mint 系統(tǒng)上:
<pre>
root@deepin155:~# vi /etc/pam.d/common-password
password requisite pam_pwquality.so enforce_for_root retry=3 minlen=8 ucredit=-1 lcredit=-1 dcredit=-1 difok=3
</pre>
它表示密碼必須至少包含一個大寫字母(ucredit)佩伤,一個小寫字母(lcredit),一個數(shù)字(dcredit)
ocredit:標(biāo)點(diǎn)符號
difok:字符種類
minlen:密碼長度
CentOS晦毙、Fedora生巡、RHEL 系統(tǒng)上:
<pre>
vi /etc/pam.d/system-auth
password requisite pam_cracklib.so try_first_pass retry=3 type=
</pre>
設(shè)置密碼過期期限
編輯 /etc/login.defs 文件
<pre>
Password aging controls:
PASS_MAX_DAYS Maximum number of days a password may be used.
PASS_MIN_DAYS Minimum number of days allowed between password changes.
PASS_WARN_AGE Number of days warning given before a password expires.
PASS_MAX_DAYS 99999
PASS_MIN_DAYS 0
PASS_WARN_AGE 7
</pre>