root:当前登录用户的用户名
localhost:主机名
~:当前用户的家目录
#:超级用户的命令提示符
ifup ens33:启动网卡
ip a:查看IP地址
远程连接端口默认 :22
查看系统时间命令:date
查看硬件时间:hwclock -r
查看电脑在哪个时区:date -R
修改系统时间:date -s "xxxx-xxxx-xxxx(年-月-日) xx:xx:xx(时:分:秒)"
修改硬件时间:hwclock --set --date "xxxx-xxxx-xxxx xx:xx:xx"
如何查看服务器是否能上网:ping baidu.com?
返回以下内容代表可以上网:
ctrl+c 终止命令? ?
ctrl+l 清屏? clear
yum install ntpdate 下载功能包,可以同步网络时间
域名:time.windows.com(微软)|? ntp.aliyun.com(阿里云)
同步网络时间:uptdate time.windows.com
将系统时间同步给硬件时间:hwclock --systohc
将硬件时间同步给系统时间:hwclock --hctosys
将硬件时间保存到主板:hwclock -w
编辑网卡的配置文件:vi /etc/sysconfig/network-scripts/ifcfg-ens33
进入文件编辑后,将NOBOOT=no 改为NOBOOT =yes
接下来保姆级教学:
1.将光标移动到文件的最后一行,再将光标移动至这一行的最后(用键盘的上下左右键移动光标)
2.按键盘上的i键,然后再将光标向右移动一位
3.删除no
4.输入yes
5.按键盘上的esc键
6.输入英文冒号 :
7.输入wq(保存退出)
8.回车
完成设置,重启网卡,命令为:systemctl restart network
1.查看防火墙状态:systemctl status firewalld
2.关闭防火墙:systemctl stop firewalld
3.设置防火墙开机不自启:systemctl disable firewalld
重启服务器:reboot
查看selinux状态:getenforce
返回结果:
1.Enforcing 开启状态
2.Permissive 临时状态
3.Disabled? ?永久关闭
临时关闭:setenforce 0
永久关闭:vi /etc/selinux/config
将SELINUX=enforcing改成SELINUX=disabled
六、快照
虚拟机拍摄快照,保存虚拟机状态,以便后续恢复到当前状态。