FAQ:Linux
跳到导航
跳到搜索
默认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”插件配置: