1. 程式人生 > >Centos與Ubuntu命令

Centos與Ubuntu命令

command entos bash pda ash all upd not found ubuntu使用

1、雖然Centos與Ubuntu都是linux的內核,但使用命令還是有所差別

2、如在Centos中跟新插件用的是:yum -y (yum後面有一個空格)

  在Ubuntu中跟新插件用的是:apt-get (註意是連一起的)

3、比如在Centos使用如下命令:sudo apt-get update

               sudo apt-get install flash

               sudo apt-get *

               sudo apt-get install *

就會報如下錯誤:bash: apt-get: command not found

同理在Ubuntu使用如下命令:

               sudo yum -y update

               sudo yum -y install flash

               sudo yum -y *

               sudo yum -y install *

就會報如下錯誤:bash:yum: command not found

Centos與Ubuntu命令