首页 Ubuntu虚拟机配置
文章
取消

Ubuntu虚拟机配置

Ubuntu虚拟机配置

配置

Ubuntu 20.04.2.0 LTS

下载链接:

ubuntu-20.04.2.0-desktop-amd64.iso

Recommended system requirements:

  • 2 GHz dual core processor or better
  • 4 GB system memory
  • 25 GB of free hard drive space
  • Internet access is helpful
  • Either a DVD drive or a USB port for the installer media

User

Computer Name:ubuntu

Full Name:developer

UserName:dev

Password:w

Root Password:root

With

Language:Chinese(simplified)

Input:中文双拼

Without

game

Software

Notepad++

IntelliJ IDEA Ultimate 2020.3.3

Android Studio

Pycharm Professional

Visual Studio Code

Vim +LargeFile

xCHM

Typora

Anaconda3

环境

3.26:SSH

3.24:docker ,docker-compose

Java

git

python

Mysql -u root -p root dev dev

nodejs

npm +cnpm

VUE

记录

如何使用SSH连接虚拟机

https://www.jianshu.com/p/91420fa105f6

ubuntu设置系统语言为中文 需重启

https://jingyan.baidu.com/article/3aed632ec1d120701180916b.html

ubuntu 16.04 设置root用户初始密码

https://blog.csdn.net/u012301841/article/details/73692426

安装tools

vm-tools 官方工具

open-vm-tools-desktop 图形版

open-vm-tools 命令行

1
2
sudo apt-get update
sudo apt-get install open-vm-tools-desktop

挂载共享文件夹

1
sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other

安装 Git

https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git

Ubuntu18.04 安装MySQL

https://blog.csdn.net/weixx3/article/details/80782479

1
2
mysql> CREATE USER 'dev'@'%' IDENTIFIED BY 'dev';
mysql> grant all privileges on *.* to 'dev'@'%';

Ubuntu安装vim

https://blog.csdn.net/lixinghua666/article/details/82289809

Ubuntu18.04搭建VUE环境 VSCode

https://blog.csdn.net/gxgalaxy/article/details/104884128

Ubuntu配置java jdk环境配置

https://zhuanlan.zhihu.com/p/101920303

https://jingyan.baidu.com/article/5552ef47b17e79518ffbc9c8.html

sudo apt install openjdk-8-jdk-headless

sudo vim /etc/profile

export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64

export JRE_HOME=$JAVA_HOME/jre

export CLASSPATH=$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH

export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH

sudo source /etc/profile

ubuntu中环境变量文件/etc/profile、.profile、.bashrc、/etc/bash.bashrc之间的区别和联系

https://blog.csdn.net/smile_from_2015/article/details/80058351

如何在Ubuntu 20.04上安装Anaconda

https://www.myfreax.com/how-to-install-anaconda-on-ubuntu-20-04/

https://blog.csdn.net/qq_15192373/article/details/81091098

Linux上安装Anaconda图形可视化界面

https://blog.csdn.net/qq_39431829/article/details/100165319

anaconda-navigator

Linux目录介绍

https://blog.csdn.net/luminji/article/details/82256517

问题

Ubuntu安装MySQL8.0 允许远程访问

https://blog.csdn.net/winterking3/article/details/86080434

npm ERR! Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules’

https://blog.csdn.net/zm_miner/article/details/104637341

虚拟内存设置

https://www.jianshu.com/p/9722b118e083

Ubuntu下error_log过大的终极解决方案 ==不要随便修改文件权限==

https://blog.csdn.net/qq_37294163/article/details/106480081

解决ubuntu安装软件has install-snap change in progress错误

https://blog.csdn.net/u011870280/article/details/80213866

snap changes

sudo snap abort 5

本文由作者按照 CC BY 4.0 进行授权