Linux(CentOS)常用命令
\#通过环境变量设置代理
export http_proxy="your-proxy-ip:port"
export https_proxy="your-proxy-ip:port"
\#文件或目录的copy或移动
mv file1 file2 #相当于重命名
cp /path-to-file /new-path/ #拷贝单文件
cp -r /old-path /new-path/ #拷贝整个目录
\#RPM文件安装
rpm -ivh filename.rpm #最简单的安装方式
\#使用screen
screen -S Mysh #创建screen会话
\#使用 Cltr+a d (Ctrl+a then d)离开当前窗口
screen -r Mysh #恢复Mysh窗口
screen -ls #列出已经存在的窗口
\#使用 Cltr+a k (Ctrl+a then k)结束当前窗口
\#查看哪些端口打开
netstat -anp
\# 开放相应的端口
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 443 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
/etc/rc.d/init.d/iptables save
/etc/init.d/iptables restart
\##删除端口
/sbin/iptables -I INPUT -p tcp --dport 81 -j DROP
/sbin/iptables -I INPUT -p tcp --dport 3306 -j DROP
/etc/rc.d/init.d/iptables save
/etc/init.d/iptables restart
\#仅允许本机ip访问的端口
/sbin/iptables -I INPUT -s 127.0.0.1 -p TCP --dport 81 -j ACCEPT
/sbin/iptables -I INPUT -s 172.16.1.55 -p TCP --dport 81 -j ACCEPT
/sbin/iptables -I INPUT -s 127.0.0.1 -p TCP --dport 3306 -j ACCEPT
/sbin/iptables -I INPUT -s 172.16.1.55 -p TCP --dport 3306 -j ACCEPT
/sbin/iptables -I INPUT -s 127.0.0.1 -p TCP --dport 4523 -j ACCEPT
/sbin/iptables -I INPUT -s 172.16.1.55 -p TCP --dport 4523 -j ACCEPT
/etc/rc.d/init.d/iptables save
/etc/init.d/iptables restart
\#修改ssh端口号
sed -i 's/#Port 22/Port 443/g' /etc/ssh/sshd_config
service sshd restart
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。