配置IP地址
查看IP地址
- ifconfig
- ip add
- ip addr
ens33网卡配置文件
/etc/sysconfig/network-scripts/ifcfg-ens33
网卡名称 ifcfg-ens??
网卡内容 ONBOOT=yes
重启服务
systemctl restart 服务名称
systemctl restart network 重启网络服务
桥接
右键<设置>
网络适配器<桥接模式>
确定
VMware <编辑>
虚拟网络编辑器 <VMnet0>
<桥接模式> 已桥接至【选择物理机网卡】
关闭服务
systemctl restart iptables 重启防火墙
systemctl stop firewalld 关闭防火墙
systemctl strat firewalld 启动防火墙
systemctl enable 服务名称 开机自启动服务
systemctl disable 服务名称 开机不会自启动服务
systemctl status 服务名称 查看服务器状态
配置临时IP
ifconfig ens33 192.168.100.51/24 up
ifconfig ens33 192.168.100.51 netmask 255.255.255.0 up
输出重定向
标准输出重定向
- >> 在文件末尾追加新内容
- > 覆盖写入
标准错误输出重定向
- 2>>
- 2>
&> 正确和错误信息都能重定向
echo "">1.txt 将1.txt内容清空