- 下载
wget https://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz --no-check-certificate
https协议要在wget url后面加上--no-check-certificate
-
curl 访问网页是否404
-
tar -xvzf 解压缩tar包, 对于zip包要:unzip -fo 微信.zip -d demowx
unzip -fo foo ReadMe => quietly replace existing ReadMe if archive file newer
unzip -p foo | more => send contents of foo.zip via pipe into program more
https://blog.csdn.net/qq_35399846/article/details/70168002
3.1 把/home目录下面的mydata目录压缩为mydata.zip
zip -r mydata.zip mydata #压缩mydata目录
-
不用每次进入命令都要重新source /etc/profile 才能生效
4.1 可以放在/.bashrc里面。或者在/.bashrc里面加一句source /etc/profile
4.2 可以把这几条命令写在 /etc/bash 里面 就会自动执行了 -
查看端口是否监听状态,运行状态
netstat -ntulp |grep 80 用于查看指定的端口号的进程情况
centos7开放及查看端口 -
查看启动服务的pid
ps -ef | grep nodeos //查找nodeos pid -
查看系统信息 cat /etc/os-release
-
查看文件大小
ls -lh -
查找文件
Ubuntu文件查找命令集合
find / -name "xxx"
网友评论