linux系統(tǒng)重啟命令是什么,關(guān)機(jī)命令是什么的方法。
成都創(chuàng)新互聯(lián)主要從事網(wǎng)站制作、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)克州,10年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
如下參考:
1.打開這里的LINUX,UBUNTU操作系統(tǒng),打開左邊的終端窗口。
2.直接進(jìn)入關(guān)機(jī),一分鐘后系統(tǒng)會提示自動關(guān)機(jī)。
3.如果您鍵入shutdown-c,關(guān)機(jī)將被取消。
4.現(xiàn)在輸入后,立即關(guān)閉,如下圖所示。
5.點(diǎn)擊回車,將關(guān)閉機(jī)器。
6.注意不要使用空格,否則會出錯。
7.您可以定義特定的關(guān)機(jī)時間。
1、首先,連接相應(yīng)linux主機(jī),進(jìn)入到linux命令行狀態(tài)下,等待輸入shell指令。
2、其次,在linux命令行中輸入:reboot。
3、鍵盤按“回車鍵”運(yùn)行shell指令,此時會看到linux主機(jī)立即進(jìn)行了重啟而中斷了連接。
linux去重命令是什么呢?
在介紹uniq命令之前,我們先來新建在下面的案例中需要用到的文件/tmp/uniq.txt,內(nèi)容如下
默認(rèn)情況下uniq只會檢索相鄰的重復(fù)數(shù)據(jù)從而去重。在/tmp/uniq.txt中雖然“onmpw web site” 有三條,但是其中一條是和其他兩條不相鄰的,所以只去重了一條,同理“error php function”也是這種情況。
鑒于以上的檢索機(jī)制,所以uniq一般情況下要和sort命令一塊兒使用。
復(fù)制代碼
# sort 1.txt | uniq
alpha css web
cat linux command
error php function
hello world
onmpw web site
recruise page site
repeat no data
wello web site
復(fù)制代碼
現(xiàn)在再看是不是所有的重復(fù)項都已經(jīng)經(jīng)過去重處理了。
好了,小試牛刀一把以后,下面我們開始對uniq命令的選項進(jìn)行簡單的介紹。
-c 統(tǒng)計每一行數(shù)據(jù)的重復(fù)次數(shù)
復(fù)制代碼
sort 1.txt | uniq -c
1 alpha css web
1 cat linux command
2 error php function
1 hello world
3 onmpw web site
1 recruise page site
1 repeat no data
1 wello web site
復(fù)制代碼
我們看 “error php function”出現(xiàn)了兩次,“onmpw web site”出現(xiàn)了三次。其余的都沒有重復(fù)項所以為1。
-i 忽略大小寫
在1.txt中添加一行數(shù)據(jù) “Error PHP function”
復(fù)制代碼
cat 1.txt
alpha css web
cat linux command
error php function
hello world
onmpw web site
onmpw web site
wello web site
Error PHP function
recruise page site
error php function
repeat no data
onmpw web site
復(fù)制代碼
復(fù)制代碼
sort 1.txt | uniq –c
1 alpha css web
1 cat linux command
2 error php function
1 Error PHP function
1 hello world
3 onmpw web site
1 recruise page site
1 repeat no data
1 wello web site
復(fù)制代碼
我們看結(jié)果,uniq默認(rèn)是區(qū)分大小寫的。使用-i可以忽略掉大小寫問題
復(fù)制代碼
sort 1.txt | uniq –c –i
1 alpha css web
1 cat linux command
3 error php function
1 hello world
3 onmpw web site
1 recruise page site
1 repeat no data
1 wello web site
復(fù)制代碼
現(xiàn)在再看是不是大小寫已經(jīng)忽略掉了。
-u 只輸出沒有重復(fù)的數(shù)據(jù)
復(fù)制代碼
sort 1.txt | uniq –iu
alpha css web
cat linux command
hello world
recruise page site
repeat no data
wello web site
復(fù)制代碼
看到?jīng)],結(jié)果中的“error php function”和“onmpw web site”都沒有被輸出。
-w N 表示從第一個字符開始只檢索N個字符來判重。
復(fù)制代碼
sort 1.txt | uniq –iw 2
alpha css web
cat linux command
error php function
hello world
onmpw web site
recruise page site
wello web site
復(fù)制代碼
這里我們讓uniq只對前兩個字符進(jìn)行檢索,recruit 和 repeat前兩個字符都是re,所以這兩行也被認(rèn)為是重復(fù)的。
-f N 表示略過前面N個字段,從第N+1個字段開始檢索重復(fù)數(shù)據(jù)。以空格符或者tab鍵為分隔符。
復(fù)制代碼
sort 1.txt | uniq –icf 2
1 alpha css web
1 cat linux command
3 error php function
1 hello world
4 onmpw web site
1 repeat no data
1 wello web site
復(fù)制代碼
我們在結(jié)果中可以看到,這是略過前面的2個字段,從第三個字段開始判重的。“recruise page site” 和 “onmpw web site”的第三個字段相同,所以被認(rèn)為是相同的數(shù)據(jù)。但是我們看到,“wello web site”和“onmpw web site”不但第三個字段相同,第二個也相同。那為什么它不被計入“onmpw web site”的重復(fù)數(shù)據(jù)中呢。對于這個問題就要回到前面說的,uniq只檢測相鄰的數(shù)據(jù)是否是重復(fù)的。
要解決這個問題還需要在sort命令上著手。還記得sort命令的-k選項嗎,沒錯,我們就用它來解決。
復(fù)制代碼
sort –k 2 1.txt | uniq –icf 2
1 alpha css web
1 cat linux command
1 repeat no data
1 recruise page site
3 error php function
4 onmpw web site
1 hello world
復(fù)制代碼
我們看,是不是解決了。
-s N表示略過前面N個字符,關(guān)于這個選項的例子我們這里就不再舉了,該選項和-f N的用法差不多。只不過-f N是略過前面N個字段;-s是略過前面N個字符。
-d 只輸出有重復(fù)項的第一條的數(shù)據(jù)。
sort 1.txt | uniq -idw 2
repeat no data
error php function
onmpw web site
結(jié)果只有這三條。為什么會有“repeat no data”這條數(shù)據(jù),這里注意-w 2的應(yīng)用。
-D 對于重復(fù)項全部輸出
復(fù)制代碼
sort 1.txt | uniq –iDw 2
repeat no data
recruise page site
error php function
error php function
Error PHP function
onmpw web site
onmpw web site
onmpw web site
復(fù)制代碼
好了,關(guān)于uniq的選項的所有常用的命令已經(jīng)都介紹完了。關(guān)于uniq更詳細(xì)的信息可以使用命令info uniq。