介绍 Ubuntu 和 CentOS 一些日常使用区别。
CentOS 的支持周期为 7-10 年
Ubuntu 的 LTS 有5年的官方支持
包管理器
centos | ubuntu |
---|---|
yum update -y | apt update -y |
yum install git -y | apt install git -y |
yum install xx.rpm -y | apt install -y ./xx.deb |
yum remove xx | apt remove xx |
rpm -ivh xx.rpm | dpkg -i xx.deb |
CentOS的 Selinux ,在 Ubuntu 叫 AppArmor
sudo systemctl stop apparmor
sudo systemctl disable apparmor
开发工具
apt-get install -y build-essential autoconf automake