这几天用到的 Linux 命令

下面总结一下这几天用到的linux 命令,记录一下:

 13  netstat -atunlp
26 apt-get install python-pip
27 pip install shadowsocks
29 ssserver -h
30 vim /etc/shadowsocks.json
31 ssserver -c /etc/shadowsocks.json
34 gnome-panel
37 apt-get install gnome-panel
38 apt-get update
46 wget https://dl.influxdata.com/influxdb/releases/influxdb_1.0.2_amd64.deb
48 sudo dpkg -i influxdb_1.0.2_amd64.deb
54 sudo apt-get update && sudo apt-get install influxdb
55 service influxdb start
58 lsb_release -a
71 influx -version
76 uname -a
96 apt-get install git
97 git status
98 git clone https://github.com/flyysr/code.git
106 git config --global user.email 'xxx'
107 git config --global user.name 'xxx'
108 git commit -m 'modify readme.md'
113 git push origin master
123 git remote -v
125 python --v
126 python -h
127 python --version
139 mkdir ebooks
144 apt-get install lrzsz
145 ls
146 rz
191 tcpdump
192 ping baidu.com
193 curl baidu.com
194 apt-get install curl
197 apt-get autoremove curl
198 df -h
202 apt-get autoclean curl
224 make
225 make --help
250 wget -O ./php-5.6.tar.gz http://sg2.php.net/get/php-5.6.28.tar.gz/from/this/mirror
257 tar -xvf php-5.6.tar.gz
262 ./configure --help
264 ./configure -V
270 make test
271 make
272 make install
277 apt-get install make
281 mkdir /opt/php-5.6
431 php -f index.php



原文地址:https://www.cnblogs.com/oxspirt/p/6084612.html