linux操作笔记记录】的更多相关文章

export https_proxy=https://10.10.2.91:8888export http_proxy=http://10.10.2.91:8888 桥接模式:需要配一个静态ip,可以与外网互通NAT模式:可以自动分配ip,但外网无法ping通本地 lsof -i :6001 查看端口进程搜索所有文本中的关键字cat `ls *.log` | grep ERROR > found.txt搜索全部文件ERROR关键字grep 'ERROR' ./* vi 编辑器c+f 上一页c+b…
[fedora可以ping通但是isReachAble返回false的原因] fedora18+ 防火墙设置原因,导致tcp端口不通,返回no route to host错误. 关闭防火墙命令: systemctl stop firewalld.service [操纵文本文件命令] 截取前10行到新文件中: head -10 chinese.txt.clean > chinese.txt.train 截取后10行到新文件中: tail -10 chinese.txt.clean > chine…
1.设置防火墙,允许用户使用http访问本机 [root@localhost geoserver]# systemctl enable httpdCreated symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.[root@localhost geoserver]# systemctl start httpd[root@lo…
压缩: 例如将/etc 目录压缩为压缩包tar -cjvf  /aaa.tar.bz2  /etc           tar -czvf /aaa.tar.gz  /etc 解压: tar -xjvf aaa.tar.bz2 -C /root/etc  tar -xzvf aaa.tar.gz -C /root/etc…