“FAQ:Linux”的版本间差异
跳到导航
跳到搜索
无编辑摘要 |
|||
第14行: | 第14行: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | === yum 源的问题 === | ||
在使用 yum 相关命令(如“yum check-update”等)时,可能出现“fastestmirror”插件不能使用的情况。 | |||
<syntaxhighlight lang="bash"> | : <syntaxhighlight lang="bash"> | ||
[root@iZbp168kvlv9hcy294dcwtZ ~]# yum check-update | |||
Loaded plugins: fastestmirror | |||
Loading mirror speeds from cached hostfile | |||
</syntaxhighlight> | |||
*(fastestmirror 插件使 yum 在更新时根据 ping 值,选择最快的地址下载更新) | |||
解决:(两种方式) | |||
# 换源:【修改 yum 源,在安装更新 rpm 包时获得比较理想的速度】 | |||
##(备份系统 yum 源配置文件“/etc/yum.repos.d/CentOS-Base.repo”) | |||
##: <syntaxhighlight lang="bash"> | |||
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup | |||
</syntaxhighlight> | |||
## 切换到 yum 源配置文件: | |||
##: <syntaxhighlight lang="bash"> | |||
cd /etc/yum.repos.d/ | |||
</syntaxhighlight> | |||
## 下载 yum 源配置文件到上面那个文件夹内(163或阿里云): | |||
##: <syntaxhighlight lang="bash"> | |||
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo | |||
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo | |||
</syntaxhighlight> | |||
## 运行 yum makecache 生成缓存: | |||
##: <syntaxhighlight lang="bash"> | |||
yum makecache | |||
</syntaxhighlight> | |||
#* 通过“'''yum list all'''”可以看到使用的源; | |||
# 禁用“fastestmirror”插件: | |||
## 修改“fastestmirror”插件配置: | |||
##: <syntaxhighlight lang="bash"> | |||
vim /etc/yum/pluginconf.d/fastestmirror.conf | |||
</syntaxhighlight> | |||
##* 修改“enable=1”为“enable=0”; | |||
## 修改 yum 配置: | |||
##: <syntaxhighlight lang="bash"> | |||
vim /etc/yum.conf | |||
</syntaxhighlight> | |||
##* 修改为“plugins=1”为“plugins=0”; | |||
## 清除 yum 缓存: | |||
##: <syntaxhighlight lang="bash"> | |||
yum clean all | |||
</syntaxhighlight> | </syntaxhighlight> |
2021年11月25日 (四) 23:10的版本
关于“sudo”
关于“systemd”
默认Root登录
vim /etc/gdm/custom.conf
[daemon]
AutomaticLoginEnable=True
AutomaticLogin=root
yum 源的问题
在使用 yum 相关命令(如“yum check-update”等)时,可能出现“fastestmirror”插件不能使用的情况。
[root@iZbp168kvlv9hcy294dcwtZ ~]# yum check-update Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile
- (fastestmirror 插件使 yum 在更新时根据 ping 值,选择最快的地址下载更新)
解决:(两种方式)
- 换源:【修改 yum 源,在安装更新 rpm 包时获得比较理想的速度】
- (备份系统 yum 源配置文件“/etc/yum.repos.d/CentOS-Base.repo”)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
- 切换到 yum 源配置文件:
cd /etc/yum.repos.d/
- 下载 yum 源配置文件到上面那个文件夹内(163或阿里云):
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
- 运行 yum makecache 生成缓存:
yum makecache
- 通过“yum list all”可以看到使用的源;
- (备份系统 yum 源配置文件“/etc/yum.repos.d/CentOS-Base.repo”)
- 禁用“fastestmirror”插件:
- 修改“fastestmirror”插件配置:
vim /etc/yum/pluginconf.d/fastestmirror.conf
- 修改“enable=1”为“enable=0”;
- 修改 yum 配置:
vim /etc/yum.conf
- 修改为“plugins=1”为“plugins=0”;
- 清除 yum 缓存:
yum clean all
- 修改“fastestmirror”插件配置: