~:代表家目錄
|:管道符linux常用命令,用于數(shù)據(jù)流的轉(zhuǎn)接
stdin
stdout
cat /etc/passwd | grep 'root'
>:輸出重定向,覆蓋
grep%20'root'%20/etc/passwd%20>%20/grep_root.txt
>>:輸出重定向,追加
grep%20'root'%20/etc/passwd%20>>%20/grep_root.txt
<:輸入重定向
基本上在shell腳本里使用
command1%20<%20infile%20>%20outfile:同時替換輸入和輸出,執(zhí)行command1,從文件infile讀取內(nèi)容,然后將輸出寫入到outfile中
&:表示后臺運行
command%20&
\:換行符
`:執(zhí)行符號
用執(zhí)行符號包裹命令,將命令先執(zhí)行后返回
man%20top
man%20yum
按q退出查看
格式:find%20路徑%20條件
find%20/etc%20-name%20init*
條件:
-name
*:匹配多個字符
?:匹配單個字符
ls%20/etc/init*
ls%20/etc/init??
-size:
find%20/etc%20-size%20+50(b,k,M,G)
+:大于
-:小于
并列條件和或者條件
-a:and 并列條件
-o:or 或者條件
find /etc -size +500k -a -size -1000k
-atime%20n:查詢文件最后訪問時間
n表示n*24小時之前
-ctime%20n:查詢文件狀態(tài)最后改變時間
-mtime%20n:查詢文件數(shù)據(jù)最后修改的時間
-type%20f/d:查詢文件或文件夾的類型
-user:查詢文件的所有者
-group:查詢文件的組
stat:查看文件信息
du%20[-sh]%20dir_path
s:表示總的
h:%20人性化顯示單位
wc%20[-lwc]%20file_path
l:行
wc%20-l%20/grep.txt
w:單詞
wc%20-w%20/grep.txt
c:字節(jié)
wc%20-c%20/grep.txt
m:字符
可以統(tǒng)計多件文件
wc%20/grep.txt%20/root/install.log
查看每個分區(qū)的磁盤利用率
掛載信息
插入硬盤
查看硬盤信息
fdisk -l
對硬盤進行分區(qū)
```fdisk%20/dev/sdb```
格式化
mkfs.ext4%20/dev/sdb1
掛載
ifconfig:用于查看和配置網(wǎng)絡信息
/etc/sysconfig/network-scritps/ifcfg-eth0
route%20-n:查看路由
![圖片46:
每個應用程序啟動以后會開放相應的端口
netstat%20-atunlp%20|%20grep%2022
service:用于管理Linux中所有系統(tǒng)安裝的服務
service%20service_namestart|stop|status|restart
linux中通過service管理的服務程序地址:/etc/init.d/
常見服務:
iptables:防火墻
network:網(wǎng)絡
service%20network%20restart
NetworkManager:圖形化界面的網(wǎng)絡管理服務
sshd:安裝登錄訪問服務
chkconfig:設置開機啟動
chkconfig%20service_name%20on|off|--list
chkconfig%20iptables%20--list
chkconfig%20iptables%20off:關閉防火墻
chkconfig%20service_name%20on