麒麟系统安装配置

系统

查看版本

[root@localhost ~]# cat /etc/os-release
NAME="Kylin Linux Advanced Server"
VERSION="V10 (Lance)"
ID="kylin"
VERSION_ID="V10"
PRETTY_NAME="Kylin Linux Advanced Server V10 (Lance)"
ANSI_COLOR="0;31"


[root@localhost ~]# uname -a
Linux localhost.localdomain 4.19.90-52.38.v2207.ky10.x86_64 #3 SMP Wed May 8 20:01:06 CST 2024 x86_64 x86_64 x86_64 GNU/Linux

防火墙

关闭

systemctl stop firewalld
systemctl disable firewalld

安装英伟达显卡驱动

###禁用nouveau驱动

echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf
echo "options nouveau modeset=0" >> /etc/modprobe.d/blacklist.conf

###重建initramfs

mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak #备份
dracut -f /boot/initramfs-$(uname -r).img $(uname -r) #重建

重启

reboot

检查nouveau没有被加载

 lsmod | grep nouveau

没有输出即正常

关闭桌面

init 3

###安装Nvidia显卡驱动

sh NVIDIA-Linux-x86_64-xxx.xx.run

请注意,您需要将上面的xxx.xx替换为您的Nvidia显卡驱动文件名。

###验证驱动是否安装成功

nvidia-smi

##重启开启桌面

init 5

远程桌面

wget https://soft.chiebot.com:10000/kylin/xrdp-0.9.24-1.el8.x86_64.rpm #下载现成的包
rpm -Uvh xrdp-0.9.24-1.el8.x86_64.rpm
systemctl start xrdp
systemctl enable xrdp

docker

基础版

yum remove runc #删除冲突
yum install container-selinux #安装依赖
mkdir -p ~/docker_tmp
cd docker_tmp/
wget https://soft.chiebot.com:10000/kylin/docker-25.0.4.tar.gz #下载现成的包
tar zxvf docker-25.0.4.tar.gz
cd docker-install/
rpm -ivh --force *.rpm

英伟达插件

mkdir -p ~/docker_tmp
cd docker_tmp/
wget https://soft.chiebot.com:10000/kylin/nvidia-docker-packages.tar.gz
tar zxvf nvidia-docker-packages.tar.gz
cd nvidia-docker-packages/
rpm -ivh --force *.rpm

启动

systemctl daemon-reload
systemctl enable docker
systemctl start docker