(k8s-king-king) 实战案例——常见系统状态检测命令的使用常见系统状态检测命令的使用-实操.mp4
【摘要】 1)使用ifconfig查看激活网络的接口信息,如图2-2所示。图2-2 查看激活网络的接口信息(2)显示eth1网卡信息,如图2-3所示。图2-3 查看eth1网卡信息(3)启用和关闭网络接口[root@localhost ~]# ifconfig eth1 down[root@localhost ~]# ifconfig eth1 up(4)配置IP地址[root@localhost ~...
1)使用ifconfig查看激活网络的接口信息,如图2-2所示。
图2-2 查看激活网络的接口信息
(2)显示eth1网卡信息,如图2-3所示。
图2-3 查看eth1网卡信息
(3)启用和关闭网络接口
[root@localhost ~]# ifconfig eth1 down
[root@localhost ~]# ifconfig eth1 up
(4)配置IP地址
[root@localhost ~]# ifconfig eth1 192.168.1.10
[root@localhost ~]# ifconfig eth1 192.168.1.10 netmask 255.255.255.0
[root@localhost ~]# ifconfig eth1 192.168.1.10 netmask 255.255.255.0 broadcast 192.168.1.255 //IP地址根据实际情况修改为本虚拟机IP
(5)更改MAC地址信息
[root@localhost ~]# ifconfig eth1 down
[root@localhost ~]# ifconfig eth1 hw ether 00:AA:BB:CC:DD:EE
[root@localhost ~]# ifconfig eth1 up
(6)启动和关闭ARP协议
[root@localhost ~]# ifconfig eth1 arp
[root@localhost ~]# ifconfig eth1 -arp
(7)查看系统内核与系统版本信息
[root@localhost ~]# uname
Linux
[root@localhost ~]# uname -a
Linux localhost.localdomain 3.10.0-862.el7.x86_64 #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost ~]# uname -r
3.10.0-862.el7.x86_64
(8)显示当前系统未使用的和已使用的内存数目以MB为单位显示内存使用情况。
[root@localhost ~]# free -m
total used free shared buff/cache available
Mem: 1821 771 394 13 655 817
Swap: 2047 0 2047
[root@localhost ~]# free -m -t
total used free shared buff/cache available
Mem: 1821 770 396 13 655 819
Swap: 2047 0 2047
Total: 3869 770 2444
(9)查看系统总共运行了多长时间和系统的平均负载
[root@localhost ~]# uptime
08:08:31 up 2:55, 3 users, load average: 0.00, 0.01, 0.05
[root@localhost ~]# uptime -V
uptime from procps-ng 3.3.10
[root@localhost ~]# uptime -s
2021-01-30 05:13:24
(10)显示当前登录的终端数(登录的用户名、终端设备、登录系统的时间)
[root@localhost ~]# who
root pts/0 2021-01-30 05:28 (10.24.192.0)
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)