2009年5月14日 星期四

ubuntu-yum,rpm,chkconfig

一直以來很習慣使用RH系列的yum,rpm,chkconfig...等等好用工具,

但在ubuntu上卻找不到這些套件,不過ubuntu也有自己的相關套件呦!!

1.dpkg <--> rpm

2.yum <--> apt-get

3.chkconfig <--> sysv-rc-conf



裡面的1跟2使用方法差不多就不在贅述了,也就針對3來作說明

參考網誌:http://blog.ntut.idv.tw/2008/09/los-chkconfig-for-ubuntu-sysv-rc-conf.html

1.安裝sysv-rc-conf

$sudo apt-get install -y sysv-rc-conf

2.執行

$sudo sysv-rc-conf

畫面如下


其中"X"表示此runlevel會啟動," "表示不啟動


3.$sysv-rc-conf --list | grep ssh # 查看 ssh run level

ssh 1:off 2:off 3:off 4:off 5:off

4.$sudo sysv-rc-conf --level 35 ssh off # 關閉 ssh 3 及 5 的 run level

$sysv-rc-conf --list | grep ssh

ssh 3:off 5:off

5.$sudo sysv-rc-conf atd off # 關閉 atd run level

6.$sysv-rc-conf --list | grep atd # 查看 atd run level

atd 1:off 2:off 3:off 4:off 5:off

7.$ sudo sysv-rc-conf atd on # 開啟 atd run level


8.$ sysv-rc-conf --list | grep atd # 查看 atd run level

atd 1:off 2:on 3:on 4:on 5:on