“FAQ:Linux”的版本间差异
跳到导航
跳到搜索
无编辑摘要 |
|||
(未显示同一用户的4个中间版本) | |||
第1行: | 第1行: | ||
[[category:Linux]] | [[category:Linux]] | ||
== 默认Root登录 == | == 默认Root登录 == | ||
第12行: | 第8行: | ||
AutomaticLoginEnable=True | AutomaticLoginEnable=True | ||
AutomaticLogin=root | AutomaticLogin=root | ||
</syntaxhighlight> | |||
== yum 源的问题 == | |||
在使用 yum 相关命令(如“yum check-update”等)时,可能出现“fastestmirror”插件不能使用的情况。 | |||
: <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> | |||
== 卸载阿里云盾(安骑士)服务 == | |||
由于阿里会检测服务器是否存在ss,如果保留安骑士,阿里云会给你发邮件警告。 | |||
* 如果你是首次购买服务器,请在购买时直接反选安骑士服务。 | |||
* 如果已经安装了安骑士,那么我们需要使用以下命令移除:【未验证】 | |||
*: <syntaxhighlight lang="bash" highlight=""> | |||
wget http://update.aegis.aliyun.com/download/uninstall.sh | |||
chmod +x uninstall.sh | |||
./uninstall.sh | |||
wget http://update.aegis.aliyun.com/download/quartz_uninstall.sh | |||
chmod +x quartz_uninstall.sh | |||
./quartz_uninstall.sh | |||
pkill aliyun-service | |||
rm -rf /etc/init.d/agentwatch /usr/sbin/aliyun-service /usr/local/aegis* | |||
rm uninstall.sh | |||
rm quartz_uninstall.sh | |||
</syntaxhighlight> | </syntaxhighlight> |
2021年11月27日 (六) 06:54的最新版本
默认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”插件配置:
卸载阿里云盾(安骑士)服务
由于阿里会检测服务器是否存在ss,如果保留安骑士,阿里云会给你发邮件警告。
- 如果你是首次购买服务器,请在购买时直接反选安骑士服务。
- 如果已经安装了安骑士,那么我们需要使用以下命令移除:【未验证】
wget http://update.aegis.aliyun.com/download/uninstall.sh chmod +x uninstall.sh ./uninstall.sh wget http://update.aegis.aliyun.com/download/quartz_uninstall.sh chmod +x quartz_uninstall.sh ./quartz_uninstall.sh pkill aliyun-service rm -rf /etc/init.d/agentwatch /usr/sbin/aliyun-service /usr/local/aegis* rm uninstall.sh rm quartz_uninstall.sh