真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

systemctl用法及其語法是什么-創(chuàng)新互聯(lián)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)systemctl用法及其語法是什么,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

成都創(chuàng)新互聯(lián)公司擁有十多年成都網(wǎng)站建設(shè)工作經(jīng)驗(yàn),為各大企業(yè)提供成都做網(wǎng)站、網(wǎng)站制作服務(wù),對(duì)于網(wǎng)頁設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、成都app開發(fā)、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、程序開發(fā)、網(wǎng)站優(yōu)化(SEO優(yōu)化)、微網(wǎng)站、域名注冊(cè)等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們?cè)诨ヂ?lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了很多網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營銷經(jīng)驗(yàn),集策劃、開發(fā)、設(shè)計(jì)、營銷、管理等網(wǎng)站化運(yùn)作于一體,具備承接各種規(guī)模類型的網(wǎng)站建設(shè)項(xiàng)目的能力。

1.確定是否安裝systemd及其版本

# systemctl –version

2.確定systemd和systemctl的二進(jìn)制文件和庫文件的安裝位置

# whereis systemd

# whereis systemctl

3.確定systemd是否運(yùn)行

# ps -eaf | grep [s]ystemd

4.分析systemd啟動(dòng)進(jìn)程

# systemd-analyze

5.分析啟動(dòng)時(shí)各個(gè)進(jìn)程花費(fèi)的時(shí)間

# systemd-analyze blame

6. 分析啟動(dòng)時(shí)的關(guān)鍵鏈

# systemd-analyze critical-chain

7.列出所有可用單元

# systemctl list-unit-files

8.列出所有運(yùn)行中單元

# systemctl list-units

9.列出所有失敗單元

# systemctl --failed

10. 確定某個(gè)單元(如 nfs.service)是否啟用

# systemctl is-enabled nfs.service

11.確定某個(gè)單元或服務(wù)是否運(yùn)行

# systemctl status nfs.service

12. 列出所有服務(wù)(包括啟用的和禁用的)

# systemctl list-unit-files --type=service

13.啟動(dòng)、重啟、停止、重載服務(wù)及確定服務(wù)(如 nfs.service)狀態(tài)

# systemctl start nfs.service

# systemctl restart nfs.service

# systemctl stop nfs.service

# systemctl reload nfs.service

# systemctl status nfs.service

--注:

1)Systemctl的start,restart,stop和reload命令,終端并不輸出任何相關(guān)信息,但可以通過status命令獲取。

14.激活并配置服務(wù)自啟和禁用服務(wù)

# systemctl is-active nfs.service

# systemctl enable nfs.service

# systemctl disable nfs.service

15.屏蔽(禁止任何方式啟動(dòng)服務(wù),其比disabled作用更強(qiáng))或解除屏蔽服務(wù)

# systemctl mask nfs.service

# systemctl unmask nfs.service

16.殺死服務(wù)

# systemctl kill nfs

# systemctl status nfs

17.列出所有系統(tǒng)掛載點(diǎn)

# systemctl list-unit-files --type=mount

18.掛載、卸載、重新掛載、重載系統(tǒng)掛載點(diǎn)和確定系統(tǒng)掛載點(diǎn)狀態(tài)

# systemctl start tmp.mount

# systemctl stop tmp.mount

# systemctl restart tmp.mount

# systemctl reload tmp.mount

# systemctl status tmp.mount

19. 啟動(dòng)時(shí)激活、啟用(自動(dòng)掛載)或禁用掛載點(diǎn)

# systemctl is-active tmp.mount

# systemctl enable tmp.mount

# systemctl disable tmp.mount

20.屏蔽(使其不能啟用)或解屏蔽掛載點(diǎn)

# systemctl mask tmp.mount

# systemctl unmask tmp.mount

21. 列出所有可用套接字

# systemctl list-unit-files --type=socket

22. 啟動(dòng)、重啟、停止、重載套接字并確認(rèn)其狀態(tài)

# systemctl start cups.socket

# systemctl restart cups.socket

# systemctl stop cups.socket

# systemctl reload cups.socket

# systemctl status cups.socket

23.系統(tǒng)啟動(dòng)時(shí)激活套接口,并啟用(自啟)或禁用該套接字

# systemctl is-active cups.socket

# systemctl enable cups.socket

# systemctl disable cups.socket

24.屏蔽(使其不能啟動(dòng))或解屏蔽套接字

# systemctl mask cups.socket

# systemctl unmask cups.socket

25.獲取某個(gè)服務(wù)的CPU配額

# systemctl show -p CPUShares nfs.service

26.限制某個(gè)服務(wù)的CPU配額為2000

# systemctl set-property nfs.service CPUShares=2000

# systemctl show -p CPUShares nfs.service

--注:

1)當(dāng)為某個(gè)服務(wù)設(shè)置CPU配額時(shí),系統(tǒng)會(huì)以服務(wù)名為名字創(chuàng)建一個(gè)目錄(如 nfs.service),其中包含一個(gè)名為90-CPUShares.conf的文件,該文件包含CPUShare限制的相關(guān)信息,可以用如下方式查看該文件。

# vi /etc/systemd/system/nfs.service.d/90-CPUShares.conf

27. 確定某個(gè)服務(wù)的所有配置信息

# systemctl show nfs

28. 分析某個(gè)服務(wù)的關(guān)鍵鏈

# systemd-analyze critical-chain nfs.service

29.獲取某個(gè)服務(wù)的依賴性關(guān)系

# systemctl list-dependencies nfs.service

30.按等級(jí)列出控制組

# systemd-cgls

31.按CPU、內(nèi)存、輸入和輸出列出控制組

# systemd-cgtop

32.進(jìn)入系統(tǒng)救援模式

# systemctl rescue

33.進(jìn)入緊急模式

# systemctl emergency

34. 確認(rèn)當(dāng)前的運(yùn)行等級(jí)

# systemctl get-default

35.進(jìn)入相應(yīng)運(yùn)行等級(jí)

--圖形模式(5)

# systemctl isolate runlevel5.target

# systemctl isolate graphical.target

--多用戶模式(3)

# systemctl isolate runlevel3.target

# systemctl isolate multiuser.target

36.設(shè)置默認(rèn)運(yùn)行等級(jí)

# systemctl set-default runlevel3.target

# systemctl set-default runlevel5.target

37.使系統(tǒng)重啟、停止、掛起、休眠或進(jìn)入混合睡眠

# systemctl reboot

# systemctl halt

# systemctl suspend

# systemctl hibernate

# systemctl hybrid-sleep

--注:

1)Runlevel 0 : 關(guān)閉系統(tǒng)。

2)Runlevel 1 : 救援維護(hù)模式。

3)Runlevel 3 : 多用戶,無圖形模式。

4)Runlevel 4 : 系統(tǒng)未使用,保留。

5)Runlevel 5 : 多用戶,圖形化模式。

6)Runlevel 6 : 關(guān)閉并重啟系統(tǒng)。

上述就是小編為大家分享的systemctl用法及其語法是什么了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。


名稱欄目:systemctl用法及其語法是什么-創(chuàng)新互聯(lián)
標(biāo)題URL:http://weahome.cn/article/djpjso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部