网络:
1.ip地址的修改(临时生效)
使用ifconfig命令
ifconfig 网卡名 ip地址 子网掩码
#ifconfig eno16777736 192.168.100.100/24(先知道网卡名)
2.ip地址的修改(永久生效)
修改/etc/sysconfig/network-scripts 目录下的网卡文件
BOOTPROTO=dhcp|static|none (动态网络|静态网络|一般绑定网卡使用)
ONBOOT=yes|no (指明在系统启动时是否激活网卡,只有在激活状态的网卡才能去连接网络,进行网络通讯)
主机名:
1.临时生效
[root@localhost /]# hostname kongcheng
# hostname kongcheng
2.永久生效
修改配置文件 /etc/hostname
[root@localhost /]# vi /etc/hostname
#vi /etc/hostname
修改后保存退出
关闭firewalld和selinux
1.临时关闭
1.firewalld
[root@localhost /]# systemctl stop firewalld.service #立即生效但是开机时仍会启动
# systemctl stop firewalld.service #立即生效但是开机时仍会启动
2.selinux
[root@localhost /]# setenforce 0 #设置SELinux 成为permissive模式 (会接收数据,但是会记录下来)
# setenforce 0 #设置SELinux 成为permissive模式 (会接收数据,但是会记录下来)
2.永久关闭
1.firewalld
[root@localhost /]# systemctl disable firewalld.service #开机时不会再自动启动,但是当前的状态仍然开启
# systemctl disable firewalld.service #开机时不会再自动启动,但是当前的状态仍然开启
2.selinux
修改/etc/selinux/config 文件
将SELINUX=enforcing改为SELINUX=disabled