Ubuntu下快速安装配置 ssh January 25, 2018 [TOC] ### 安装 通过`sudo apt-get install openssh-server`安装ssh服务端。 ### 配置 配置文件路径`/etc/ssh/sshd_config`,可以修改连接端口等 ### 启动 修改后需要`service sshd restart`。ssh以服务的形式管理,当然可以`service sshd start/stop/restart`。 ### 免密码登录 ![](/images/2018/01/1536740574.png) 图片来源:https://www.jianshu.com/p/d40a85df1a43 如图所示,需要用到`ssh-keygen`命令生成公私匙,并且需要把公式放到认证文件中`cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys`
Ubuntu16.04 下安装并配置 VNC 远程访问服务 January 24, 2018 > 在实验室一直通过ssh使用宿舍PC,今天感觉用Jupyter NoteBook写代码其实并没有PyCharm那么方便,所以想通过VNC在GUI界面下开心的写代码。 和往常一样,`sudo apt-get install vnc4server`一顿操作后看log说font目录怎样怎样,没有办法正常加载。 于是这次换个VNC服务端试一试,安装主要参考:[这里](http://blog.csdn.net/songbaiyao/article/details/72858087 "这里")。 自己也记录一下,方便下次安装。 - 阅读剩余部分 -
kaggle房价预测:使用Python综合探索数据 January 23, 2018 > 学习[COMPREHENSIVE DATA EXPLORATION WITH PYTHON](https://www.kaggle.com/pmarcelino/comprehensive-data-exploration-with-python "COMPREHENSIVE DATA EXPLORATION WITH PYTHON")笔记 **'The most difficult thing in life is to know yourself'** - 阅读剩余部分 -
Python数据处理常用工具包安装 January 22, 2018 ```bash pip install numpy # jupyter 依赖很多,包括numpy pip install jupyter pip install matplotlib # seaborn依赖scipy numpy pip install seaborn pip install scikit-learn pip install pandas pip install scipy pip install opencv-python pip install scikit-image ```