Ubuntu包管理 2017-10-29 540 words 2 mins read apt 1 2 3 4 5 6 7 apt list --> 列出系统安装的包 apt show package --> 列出package包的详细信息 apt update --> 更新包列表信息 apt upgrade --> 升级可更新的包 apt install package --> 安装packag Read more...
Ubuntu安装和配置openvpn与shadowsocks 2017-10-18 tutorial 2044 words 5 mins read 创建VPS 安装openvpn或者shadowsocks用于Fuck the GFW,首先需要申请一个外国的私有服务器(Virtual Private Server), 常见的性价比 Read more...
Linux查看系统信息 2017-10-13 tutorial 615 words 2 mins read 在使用Linux时,常常需要查看主机的一些状态信息,以确定主机运行状态,发现可能存在的问题以及原因,从而排除问题。 操作系统信息 1 2 3 4 uname -a --> Read more...
pandas Tutorial 2017-06-25 tutorial 3878 words 8 mins read pandas是非常好用的Python统计学扩展库,内置了多种非常便利的数据结构和函数,可以很容易地进行数据统计操作,是机器学习的强大工具。 Numpy Read more...
SSH配置 2017-06-21 tutorial 442 words 1 min read ssh免密码登录 生成密钥对: ssh-keygen 将生成的密钥对放在本地的~/.ssh目录下 在本地~/.ssh/config中配置远程主机的IP地址和对应的私钥 Read more...