kk Blog —— 通用基础


date [-d @int|str] [+%s|"+%F %T"]
netstat -ltunp
sar -n DEV 1

CentOS8.5 安装

dracut-initqueue timeout错误

USB3.0 的U盘可能识别不了,可能需要USB2.0的U盘

dracut-initqueue timeout错误

1
2
3
dracut:/# ls -l /dev/disk/by-label/

lrwxrwxrwx 1 root root 11 May 24 14:25 CentOS-8-5- -> ../../sdd4

重启,按e,修改启动参数

将 hd:LABEL=CentOS-8-5-2111-x86_64-dvd 改成上面显示的 hd:LABEL=CentOS-8-5-

installation source

需要将ISO放到另一个U盘或者硬盘,可以将硬盘尾部格出一块来放

efi

可能需要efi模式,但efi模式好像没法用grub2-install。

目前用另一块盘的centos7 : grub2-mkconfig -o /boot/grub2/grub.cfg 来启动centos8


https://www.cnblogs.com/shaoyishi/p/17270213.html

yum

1
Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist
  1. 首先,进入到 yum 的 repos 目录
1
cd /etc/yum.repos.d/
  1. 其次,修改 centos 文件内容
1
2
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

2.1 https://www.cnblogs.com/showker/p/16147782.html

1
2
3
4
5
6
7
8
9
10
1.删除AppStream源
rm -f /etc/yum.repos.d/CentOS-AppStream.repo
2.取消并备份旧yum源(可直接删除)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
3.下载vault源
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
4.清除yum缓存
yum clean all
5.生成新缓存
yum makecache

2.2 其他方式?

1
2
3
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
yum clean all && yum makecache

请注意,阿里云可能没有提供针对 CentOS 8 的官方仓库,因此上述操作可能无法正常工作。如果是这种情况,您可能需要考虑升级到更新的发行版,比如 CentOS Stream 或者转向其他支持的发行版如 Rocky Linux 或 AlmaLinux。

  1. 然后,生成缓存更新
1
yum makecache

system, centos

« centos 安装 MariaDB CentOS8 编译内核错误 »