问题1.无法使用鼠标选中、复制
解决:
(1)安装gpm:yum install gpm*
(2)启动gpm服务:service gpm start
(3)将gpm服务添加到后台:systemctl enable gpm.service
问题2:ping www.baidu.com报connect: network is unreachable
解决:
(1)修改/etc/sysconfig/network-scripts/ifcfg-[网络设备名]文件中的ONBOOT选项为yes
(2)重启服务:service network restart
知识点1:CentOS7服务使用方法
(1)服务使用方法
systemctl start [服务文件名]
systemctl restart [服务文件名]
systemctl stop [服务文件名]
systemctl status [服务文件名]
(2)开机启动
systemctl enable [服务文件名]
systemctl disable [服务文件名]
知识点2:安装wget
安装wget:yum install -y wget