VMware 虚拟机装 Linux Centos 7.9 保姆级教程(附资源包)

概述

这篇博客是针对linux合集 1-3篇的笔记

安装 VMware 17.5.1 + centos 7.9

1、下载资源包(虚拟机+镜像)

  • VMware-17.5.1 安装包+秘钥.zip
  • Linux Centos 7.9 镜像

有需要资源包的小伙伴,私聊我获取资料包!

2、centos 7.9 下载地址

1、Centos 官网 www.centos.org/

2、阿里巴巴镜像站 developer.aliyun.com/mirror/

3、查看网络命令 ifconfigip addr

4、登陆服务器

bash 复制代码
ssh stark@192.168.31.131

初始化后的坑

sudo命令的坑

bash 复制代码
[stark@192 ~]$ sudo yum update -y
[sudo] password for stark: 
stark is not in the sudoers file.  This incident will be reported.

会有错误信息stark is not in the sudoers file. This incident will be reported. ,解决步骤:

1、切换到 root 用户 输入 之前的初始化密码用户的密码之后就能登录。

bash 复制代码
su -

2、把用户添加到 wheel 组

CentOS 系统中,wheel 组的用户默认拥有 sudo 权限。你可以使用以下命令将用户stark添加到 wheel 组:

bash 复制代码
usermod -aG wheel stark

3、确认 wheel 组是否有 sudo 权限

要保证/etc/sudoers文件里有如下配置行(如果被注释掉了,就取消注释):

bash 复制代码
%wheel  ALL=(ALL)       ALL

4、以现有 sudo 用户身份添加用户到 sudo 组

bash 复制代码
sudo usermod -aG wheel stark

yum源的坑

1、临时修改DNS服务器

编辑/etc/resolv.conf文件,添加公共 DNS 服务器:

bash 复制代码
echo -e "nameserver 8.8.8.8\nnameserver 114.114.114.114" > /etc/resolv.conf

2、替换 CentOS 官方镜像源为阿里云镜像源

bash 复制代码
# 备份原镜像源配置
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

# 下载阿里云镜像源配置
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

# 清理并生成缓存
yum clean all
yum makecache

3、处理 CentOS 7 EOL 后的镜像源问题

bash 复制代码
sed -i 's|^mirrorlist=|#mirrorlist=|g' /etc/yum.repos.d/CentOS-*
sed -i 's|^#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

4、额外建议

如果仍然遇到问题,可以尝试禁用fastestmirror插件:

bash 复制代码
sed -i 's/enabled=1/enabled=0/g' /etc/yum/pluginconf.d/fastestmirror.conf

VMware Tools 设置时间

设置宿主机与虚拟机时间不一致的问题:

1、设置: 虚拟机 -> 设置 -> 选项

2、在虚拟机中安装 VMware Tools

bash 复制代码
#下载
sudo yum install open-vm-tools open-vm-tools-desktop
#启动
sudo systemctl enable --now vmtoolsd
#验证
systemctl status vmtoolsd
#更新时间
sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
相关推荐
程序员岳焱19 分钟前
Java 与 MySQL 性能优化:Java 实现百万数据分批次插入的最佳实践
后端·mysql·性能优化
一位摩羯座DBA25 分钟前
Redhat&Centos挂载镜像
linux·运维·centos
学习3人组26 分钟前
CentOS配置网络
linux·网络·centos
麦兜*1 小时前
Spring Boot启动优化7板斧(延迟初始化、组件扫描精准打击、JVM参数调优):砍掉70%启动时间的魔鬼实践
java·jvm·spring boot·后端·spring·spring cloud·系统架构
weixin_307779131 小时前
Hive集群之间迁移的Linux Shell脚本
大数据·linux·hive·bash·迁移学习
大只鹅1 小时前
解决 Spring Boot 对 Elasticsearch 字段没有小驼峰映射的问题
spring boot·后端·elasticsearch
ai小鬼头1 小时前
AIStarter如何快速部署Stable Diffusion?**新手也能轻松上手的AI绘图
前端·后端·github
漫步企鹅1 小时前
【蓝牙】Linux Qt4查看已经配对的蓝牙信息
linux·qt·蓝牙·配对
cui_win2 小时前
【网络】Linux 内核优化实战 - net.core.flow_limit_table_len
linux·运维·网络
梦在深巷、2 小时前
MySQL/MariaDB数据库主从复制之基于二进制日志的方式
linux·数据库·mysql·mariadb