将this is a test line添加至第7行 sed -i '7a\this is a test line' test.conf
Linux sed 指定行添加内容
2021.10.15 , linux , No Comments , 3,526 views ,查找并替换快速修改SSH端口命令
2021.10.15 , linux , No Comments , 3,032 views ,执行以下命令: sed -i 's/Port 22/Port 10086/g' /etc/ssh/sshd_config 重启ssh服务即可 systemctl restart sshd
Debian 让 ipv4 优先于 ipv6
2021.10.9 , linux , No Comments , 4,119 views ,直接修改 /etc/gai.conf 文件 vi /etc/gai.conf #precedence ::ffff:0:0/96 100 把前面的"#"去掉即可。
Debian源更新报错解决方法
2021.10.8 , linux , No Comments , 2,238 views ,运行下面的命令成功解决: apt-get --allow-releaseinfo-change update --allow-releaseinfo-change 这个命令的意思是,允许更新命令继续从改变了版本库信息的版本库中下更新源。
Centos7的安装Htop
2021.04.2 , linux , No Comments , 2,934 views ,启用epel版本: yum -y install epel-release 安装htop: yum -y install htop
CentOS/Debian启动/重启/停止Nginx命令
2021.03.13 , linux , No Comments , 6,292 views ,系统:CentOS 启动命令:systemctl start nginx 重启命令:systemctl restart nginx 停止命令:systemctl stop nginx 系统:Debian 启动命令:service nginx start 重启命令:service nginx restart 停止命令:service nginx stop
测试vps下载速度
2021.01.21 , 笔记 , No Comments , 2,609 views ,wget http://cachefly.cachefly.net/100mb.test wget http://repos.mia.lax-noc.com/speedtests/1gb.bin
CentOS保存iptables规则
2020.09.8 , linux , No Comments , 3,412 views ,需关闭firewalld防火墙: systemctl stop firewalld.service systemctl disable firewalld.service 安装iptables服务: yum install iptables-services 保存iptables规则: service iptables save 配置iptables开机启动: systemctl enable iptables.service (老版本...