虚拟机安装ubuntu 16.04 及配置基本应用

1、直接在vm中新建虚拟机,设置硬件配置,安装即可
2、无法粘贴windows的复制
第一步: sudo apt-get autoremove open-vm-tools
第二步:sudo apt-get install open-vm-tools-desktop
然后重启
为root用户设置密码:sudo passwd 后输入密码即可设置
3、首先修改软件源为国内源
https://blog.csdn.net/zhuanshu666/article/details/73413503
4、在设置中修改时间,中英文,需重启
中英文
https://blog.csdn.net/qq_19339041/article/details/80058575
时间,直接点击右上角时间,时间和日期设置,更改时区为shanghai
5、安装vim,sudo apt install vim
6、安装pip,安装ipython,使用
sudo apt install python3-pip
sudo apt install ipython3
更改pip源 https://blog.csdn.net/yuzaipiaofei/article/details/80891108
6、安装anaconda,官网下载.sh文件,直接运行即可安装
7、安装virtualenv虚拟环境 https://blog.csdn.net/HYESC/article/details/88187443
8、安装mysql
https://blog.csdn.net/weixin_40454303/article/details/78160914
设置远程连接
https://blog.csdn.net/HYESC/article/details/81255356
9、安装google浏览器
https://www.cnblogs.com/hyesc/p/7738898.html
10、安装sublime
11、安装pycharm,检查是否有setuptools错误,配置pycharm
https://blog.csdn.net/HYESC/article/details/78359014
http://idea.lanyus.com/ 激活码获取位置
12、安装anaconda,ipython notebook是自带ide,输入这个命令启动
13、ens33网络关闭开启:sudo ifconfig ens33 down /up
14、安装google拼音输入法
https://blog.csdn.net/u013947807/article/details/79025499
14、安装git sudo apt install git
15、安装sublime
https://blog.csdn.net/catstarxcode/article/details/79234852
使用subl启动
自定义快捷键

[
	// 复制本行到下一行
	{ "keys": ["ctrl+d"], "command": "duplicate_line" }, 
	// 任意位置换行
	{ "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"} },
	// 快速到行末
	{ "keys": ["alt+,"], "command": "move_to", "args": {"to": "bol", "extend": false} },
	// 快速到行首
	{ "keys": ["alt+."], "command": "move_to", "args": {"to": "eol", "extend": false} },
	{ "keys": ["alt+l"], "command": "move", "args": {"by": "characters", "forward": true} },
	{ "keys": ["alt+h"], "command": "move", "args": {"by": "characters", "forward": false} },
	{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "lines", "forward": true} },
	{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": false}},
]

以上是我自己设置的,可根据自己使用习惯设置
16、安装mongodb
https://blog.csdn.net/flyfish111222/article/details/51886787
17、安装redis
sudo apt install redis-server
18、安装nginx
https://blog.csdn.net/HYESC/article/details/80626392

你可能感兴趣的:(python技巧,linux)