FAQ:Linux

来自Wikioe
跳到导航 跳到搜索


默认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 值,选择最快的地址下载更新)


解决:(两种方式)

  1. 换源:【修改 yum 源,在安装更新 rpm 包时获得比较理想的速度】
    1. (备份系统 yum 源配置文件“/etc/yum.repos.d/CentOS-Base.repo”)
      mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
      
    2. 切换到 yum 源配置文件:
      cd /etc/yum.repos.d/
      
    3. 下载 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
      
    4. 运行 yum makecache 生成缓存:
      yum makecache
      
    • 通过“yum list all”可以看到使用的源;
  2. 禁用“fastestmirror”插件:
    1. 修改“fastestmirror”插件配置:
      vim /etc/yum/pluginconf.d/fastestmirror.conf
      
      • 修改“enable=1”为“enable=0”;
    2. 修改 yum 配置:
      vim /etc/yum.conf
      
      • 修改为“plugins=1”为“plugins=0”;
    3. 清除 yum 缓存:
      yum clean all
      

卸载阿里云盾(安骑士)服务

由于阿里会检测服务器是否存在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