本文内容均为原创

2022年7月18日

初始化设置

  1. 登陆用户

    image.png

  2. 设置系统语言

    image.png

  3. 根据提示选择进行下一步,配置完成后即可开始试用Centos7。

    image.png

    image.png


换源

系统默认使用的yum源在国内访问速度较慢,可以选择更换成国内的yum源,例如:aliyun、清华源、中科大。(本文仅介绍aliyun)

以下命令均在终端中操作(需要ROOT权限)。

  • 终端打开方式
    主屏幕右键,选择打开终端即可

    image.png

  • 切换ROOT权限

    终端输入sudo -i

    image.png

    输入当前账户的密码即可(在输入密码时,密码会自动隐藏)。

    image.png

    此时就是位于ROOT用户模式。

  1. 备份官方源

    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

  2. 下载新的yum源并替换

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

    或者

    curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

  3. 生成缓存

    yum makecache

常见问题

非阿里云ECS用户会出现 Couldn't resolve host 'mirrors.cloud.aliyuncs.com' 信息,不影响使用。用户也可自行修改相关配置: eg:

sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo


安装常用工具

  1. 安装vim编辑器
    yum install vim -y
  2. 安装SSH服务
    yum install openssh -y

    • 使用VIM编辑器调整ssh服务配置

      • 打开ssh配置文件
        vim /etc/ssh/sshd_config
      • 键盘上按下i或者insert键修改PermitRootloginPasswordAuthentication为启用(默认被注释)

        PermitRootlogin yes

        PasswordAuthentication yes

      • 保存并退出

        首先按下Esc键,然后输入:wq

      • 重启ssh服务

        systemctl restart sshd

    • 使用nano编辑器调整ssh服务配置

      • 打开ssh配置文件
        nano /etc/ssh/sshd_config
      • 修改PermitRootloginPasswordAuthentication为启用(默认被注释)
        PermitRootlogin yes
        PasswordAuthentication yes
      • 保存并退出
        按下ctrl+o输入Y保存
        按下ctrl+x退出
      • 重启ssh服务
        systemctl restart sshd
    • 使用echo修改ssh配置

      echo -e "PermitRootlogin yes \nPasswordAuthentication yes" >> /etc/ssh/sshd_config

      systemctl restart sshd

    • 使用sed修改ssh配置

      sed -i "s|#PermitRootlogin.*|PermitRootlogin yes|g" /etc/ssh/sshd_config

      sed -i "s|#PasswordAuthentication.*|PasswordAuthentication yes|g" /etc/ssh/sshd_config

      systemctl restart sshd

  3. 安装net-tools
    yum install net-tools -y

使用ssh远程连接虚拟机

  • Win10&Win11
    打开命令提示符输入:
    ssh 虚拟机用户名@虚拟机ip地址
  • Linux
    打开终端输入:
    ssh 虚拟机用户名@虚拟机ip地址
最后修改:2023 年 06 月 13 日
如果觉得我的文章对你有用,请随意赞赏