• CentOS7 设置yum源


    1、关闭防火墙

    • 临时关闭防火墙
      systemctl stop firewalld
    • 永久防火墙开机自关闭
      systemctl disable firewalld
    • 临时打开防火墙
      systemctl start firewalld
    • 防火墙开机启动
      systemctl enable firewalld
    • 查看防火墙状态
      systemctl status firewalld

    2、关闭selinux 关闭原因 自行google  vi /etc/selinux/config

    修改sellinux=disabled :wq保存退出

    可能存在的问题:若修改了selinuxtype=disabled的值会导致linux启动失败。

    解决方案:

    1. 重启时在启动页面,选择你要启动的内核 按 E, 进入 grub 编辑页面。

    2. 找到 linux16 那一行,在language 后面 也就是LANG=zh_CN.UTF-8,空格 加上 selinux=0 或者 enforcing=0 (备注:我是加入selinux=0 生效的。)

    3. 然后 ctrl + x 启动,就看到熟悉的登录界面。

    4 .修改selinux配置文件,正确关闭selinux

    解决方案原文:http://www.mamicode.com/info-detail-1847013.html

    3、设置域名解析

    配置下centos的DNS一个国内,一个国外

    vi  /etc/resolv.conf

    nameserver 114.114.114.114

    nameserver 8.8.8.8

    4、安装wget命令,已安装请忽略

    命令:yum -y install wget

    5、更新yum源配置

    5.1、备份下原来的yum源

    cd /etc/yum.repos.d/   ls

    mv CentOS-Base.repo CentOS-Base.repo_bak

    5.2 、设置源网易或阿里云

    网易yum源:http://mirrors.163.com/.help/centos.html

    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo

    yum clean all

    yum makecache

     

    阿里云yum源:http://mirrors.aliyun.com/repo/Centos-7.repo

    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

    yum clean all

    yum makecache

    查看已安装yum源:yum repolist all

    图形方案:https://jingyan.baidu.com/article/215817f7aef2e01eda1423f4.html

    yum命令常见问题:

    yum install的时候提示:Loaded plugins: fastestmirror(加速插件)

    解决方案:

    1.修改插件的配置文件

    # vi  /etc/yum/pluginconf.d/fastestmirror.conf  

    enabled = 1//由1改为0,禁用该插件

    2.修改yum的配置文件

    # vi /etc/yum.conf

    plugins=1//改为0,不使用插件

    解决方案原文:https://www.cnblogs.com/starof/p/4773209.html

    6、安装VIM命令,默认未安装
    检测是否安装VIM rpm -aq|grep vim
    若出现以下命令则未安装 vim-minimal.x86_64 2:7.4.160-4.el7
    执行命令,yum -y install vim* 提示安装完毕!

    7、检测IP地址 ipaddr show 或ifconfig

    提示ifconfig command not found的解决方案:

    1、确认sbin目录是否存在 cd  /sbin ls

    2、不存在执行命令:yum install net-tools

     

  • 相关阅读:
    滚~滚~滚动条(移动端 )
    JS数据模板分离(告别字符串拼接)-template
    五子棋大战(人机)
    数据结构——队列
    数据结构——栈
    mysql下的SELECT INTO语句
    海明校验码
    android 调出显示标题栏(title bar)
    Windows failed to start.界面下修复win8引导
    android 修改背景色(转)
  • 原文地址:https://www.cnblogs.com/lenovo_tiger_love/p/9193472.html
Copyright © 2020-2023  润新知