Linux
tryingfox
这个作者很懒,什么都没留下…
展开
-
查看linux服务器的连接数
假设本机外网 ip 为 192.168.1.1,开放端口为 80 查看netstat 中的local address的个数就是啦: netstat -na | awk '{print $4}' | grep '192.168.1.1' | wc原创 2015-11-11 15:10:39 · 547 阅读 · 0 评论 -
How to use 'cp' command to exclude a specific directory?
rsync is fast and easy: rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude转载 2016-04-16 15:26:11 · 406 阅读 · 0 评论 -
pip 安装第三方工具
$ sudo yum -y install gcc gcc-c++ kernel-devel $ sudo yum -y install python-devel libxslt-devel libffi-devel openssl-devel $ pip install "your python packet"原创 2016-07-25 00:01:30 · 509 阅读 · 0 评论 -
linux新系统干点啥?
centos 1. 先升级系统 yum -y update yum clean all原创 2017-09-08 00:26:37 · 519 阅读 · 0 评论 -
yum安装lamp
https://jingyan.baidu.com/article/ce09321b9dfa3e2bff858f85.html转载 2018-04-15 22:31:11 · 351 阅读 · 0 评论