学习是一个逐步发现自己无知的过程!

Centos8 又有那些不一样?

Centos8 新特性

一、Minimal Install系统需要安装工具

Legacy UNIX Compatibility
Developmennt Tools
System Toos

二、软件仓库及更改yum/dnf源
内容主要分布在两个软件仓库:

Baseos 包含了系统底层os包

Appstream 包含了应用程序、开发工具等软件包

这里改了 AppStream Base Exarts
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
安装 epel 配置包
cd /etc/yum.repos.d/
yum install -y https://mirrors.aliyun.com/epel/epel-release-latest-8.noarch.rpm
将 repo 配置中的地址替换为阿里云镜像站地址
sed -i 's|^#baseurl=https://download.fedoraproject.org/pub|baseurl=https://mirrors.aliyun.com|' ./epel*
sed -i 's|^metalink|#metalink|' ./epel*
清空缓存
yum cleal
加载缓存
yum makecache

下载常用工具

dnf install net-tools vim tree htop iotop iftop \
iotop lrzsz wget sl unzip telnet nmap nc psmisc \
dos2unix bash-completion sysstat rsync nfs-utils -y

 

三、软件管理及更新

Centos8 由原来的yum 更改为 dnf
安装dnf自动rpm软件包 dnf install dnf-automatic
Centos8 更新系统 yum -y update

 

四、图形化界面的Cockpit Web管理工具

cockpit 是一个交互式Linux服务器管理接口
dnf install cockpit -y
systemctl start cockpit
setenforce 0
systemctl stop firewalld.service
netstat -lntup |grep 909[0]
https://ip:9090 用系统账号登陆即可

 

五、网络配置 NetworkManager

centos8自带没有netstat工具需要手动安装
yum install net-tools.x86_64 -y

Centos8 没有安装network.service,依然支持network。

使用 nmcli 管理网络
查看NetworkManager状态 
nmcli n
nmcli n on
nmcli n off

查看 connection列表和详细列表
nmcli connection
nmcli c show
nmcli c show enp0s5

也可以用 nmcli 重启网卡
nmcli connection down enp0s5 
nmcli connection up enp0s5

更改网卡ip 
nmcli connection modify enp0s5 ipv4.addr '10.211.55.6/24'
nmcli connection up enp0s5

新增网络
[root@localhost ~]# nmcli c add type etherne con-name eth0 ifname eth0 ipv4.addresses '10.10.1.1/24' ipv4.routes '10.0.0.0/8' ipv4.gateway '10.0.1.1' ipv4.dns '8.8.8.8,4.4.4.4' ipv4.method manual
Connection 'eth0' (f067dfe5-e590-4795-b02c-bc959ddf6537) successfully added.

使用 nmtui 可图形化管理网络

六、安装tab补全插件

yum install bash-completion -y
source /etc/profile
bash

除了这些使用的变化Centos8还附带了 kvm

赞(0)
未经允许不得转载:劉大帥 » Centos8 又有那些不一样?

你的评论可能会一针见血! 抢沙发

登录

找回密码

注册