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

1、直接在vm中新建虚拟机,设置硬件配置,安装即可
2、无法粘贴windows的复制
第一步: sudo apt-get autoremove open-vm-tools
第二步:sudo apt-get install open-vm-tools-desktop
然后重启
3、首先修改软件源
https://blog.csdn.net/zhuanshu666/article/details/73413503
4、在设置中修改时间,中英文,需重启
中英文
https://blog.csdn.net/qq_19339041/article/details/80058575
时间
5、安装pip,安装ipython
6、安装anaconda,官网下载.sh文件,直接运行即可安装
7、安装虚拟环境,为django做准备
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://im.js.cn:8888 2018
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

猜你喜欢

转载自blog.csdn.net/HYESC/article/details/81260767
今日推荐