所需软件
常用软件列表
- Pycharm python开发工具
- DataGrip 数据库连接工具
- Sublime 文本编辑工具
- Charles 花瓶代理工具
- haroopd markdown编辑工具 下载地址
- Indicator Stickynotes 好用的便签工具 下载地址
- DeepinScrot 类似qq截图 一款超级好用的截图软件
- whatever 一款linux桌面版的印象笔记包装ubuntu印象笔记
- FIleZilla一款好用的开源ftp上传工具
- 有道词典,1.1.0目前仅支持14.10版本以上,14.04版本下载1.0.2版本[32/64版本deb包](http://codown.youdao.com/cidian/linux/youdao-dict_1.0.2~ubuntu_i386.deb
http://codown.youdao.com/cidian/linux/youdao-dict_1.0.2~ubuntu_amd64.deb) - neofetch一款查看系统信息的小公举 neofetch下载安装
- supervisor 一款python编写的进程管理工具,用来管理项目和脚本自动重启教程地址
问题汇总
1、安装FileZilla这个ftp工具的时候,会出现c++版本低的问题,解决方案:
sudo apt-add-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9
2、在安装M2Crypto 的时候,运行的时候会报错,需要安装cryptography
For Debian and Ubuntu, the following command will ensure that the required dependencies are installed:
$ sudo apt-get install build-essential libssl-dev libffi-dev python-dev
For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:
$ sudo yum install gcc libffi-devel python-devel openssl-devel
You should now be able to build and install cryptography with the usual
$ pip install cryptography
3、安装oh my zsh的时候,连接远程服务器终端会出现中文乱码,解决:
- cd ~ && vim .zshrc
- 在末尾部分添加如下代码:
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8 - source .zshrc
4、可以选择替换为阿里云的源,下载速度会快一点
- sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup #备份当前也就是默认官方的源列表
- sudo gedit /etc/apt/sources.list #修改sources.list文件中源的列表,删除全部内容,替换为国内源地址。 保存编辑好的文件。
- sudo apt-get update # 更新数据
aliyun源地址
deb http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe