Upgrade Python in Ubuntu

摘要: 下载安装包.tgztar -zxvf Pythoncd P.../configuremakesudo make install通过 /usr/local/bin/python -V 查看版本号以下代码有问题:sudo rm /usr/bin/pythonsudo ln -s /usr/include... 阅读全文
posted @ 2015-01-11 16:22 keep_walking 阅读(556) 评论(0) 推荐(0)

git 笔记

摘要: Step: Configure GitOnce it is installed, open terminal (aka Bash, aka Shell, aka Prompt). You can verify that it's really there by typing:$ git --vers... 阅读全文
posted @ 2015-01-11 15:31 keep_walking 阅读(158) 评论(0) 推荐(0)

Nginx 安装笔记

摘要: 主配置文件 nginx.conf启动:sbin 下./nginx查看80端口:netstat -tupln | grep 80ab测试:ab -c 1 -n 10000 http://127.0.0.1/index.html停止服务ps aux | grep nginxkill -s QUIT 阅读全文
posted @ 2015-01-11 12:27 keep_walking 阅读(88) 评论(0) 推荐(0)