包含centOS和ubuntu命令
CentOS 禁用 SELinux
sed -i 's/enforcing/disabled/g' /etc/selinux/config /etc/selinux/config
# 修改完之后需要重启系统
reboot
安装加速
推荐使用BBR2或BBRPlus
yum install wget
wget -N --no-check-certificate "https://github.000060000.xyz/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
开启BBR plus加速
yum -y install wget
wget "https://github.com/chiakge/Linux-NetSpeed/raw/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
然后清除现在正在使用的加速,并重新输入一遍代码,然后选择安装BBR PLUS加速
安装完毕后,输入./tcp.sh
,然后选择使用BBR plus加速,提示BBR PLUS加速成功
同步时间
Debian/Ubuntu
apt-get install -y ntp
service ntp restart
CentOS/RHEL
yum -y install ntpdate
timedatectl set-timezone Asia/Shanghai
ntpdate ntp1.aliyun.com
关闭防火墙
systemctl disable firewalld
systemctl stop firewalld
安装git命令
centos
yum install -y git
ubuntu
sudo apt-get install git
centos怎么查看自己的版本
cat /etc/redhat-release
如何在CentOS 7中禁止IPv6
编辑文件/etc/sysctl.conf
vi /etc/sysctl.conf
添加下面的行:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
如果你想要为特定的网卡禁止IPv6,比如,对于enp0s3,添加下面的行。
net.ipv6.conf.enp0s3.disable_ipv6 = 1
保存并退出文件。
执行下面的命令来使设置生效。
sysctl -p
要在运行的系统中禁止IPv6,依次输入下面的命令:
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
echo 1 > /proc/sys/net/ipv6/conf/default/disable_ipv6
或者,
sysctl -w net.ipv6.conf.all.disable_ipv6=1
sysctl -w net.ipv6.conf.default.disable_ipv6=1
就是这样。现在IPv6已经禁止了。
via:https://linux.cn/article-4935-1.html
在CentOs7上设置网卡为ipv4地址
查看网卡信息:
ip addr
可以看到网卡是enp8s0,进入网卡配置文件的目录:
cd /etc/sysconfig/network-scripys
查看该目录下所有网卡配置
ls
输出如下,其中ifcfg-enp8s0即为网卡的配置文件
编辑该文件:
vi ifcfg-enp8s0
修改IPV6INIT=no,并设置启动生效:ONBOOT=yes
保存并退出后,重新启动系统后,ipv4即可生效
centos7防火墙设置命令
查看已开放端口
firewall-cmd --list-ports
开放端口
firewall-cmd --permanent --zone=public --add-port=${port}/tcp
firewall-cmd --permanent --zone=public --add-port=${port}/udp
firewall-cmd --reload
关闭端口
firewall-cmd --permanent --remove-port=${port}/tcp
firewall-cmd --permanent --remove-port=${port}/udp
firewall-cmd --reload
重启防火墙:
firewall-cmd --reload
查看防火墙状态
systemctl status firewalld
#或者
firewall-cmd --state
设置开机禁用防火墙 :
systemctl disable firewalld
设置开机启用防火墙 :
systemctl enable firewalld