VMWare 15 installation and create the Ubuntu virtual machine

VMWare 15 AnSo Ubuntu 16.04

Linux learning environment:
Windows: vmware15 Pro mobax
Linux: Ubuntu 14.04 / 16.04 .iso image

https://blog.csdn.net/github_39533414/article/details/85176074

Step One: Download the image file

https://man.linuxde.net/download/Ubuntu/

The second step. Install Virtual Machine VMware 15

https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html

The final step to install a license to enter, here are some of the

ZC10K-8EF57-084QZ-VXYXE-ZF2XF

UF71K-2TW5J-M88QZ-8WMNT-WKUY4

AZ7MK-44Y1J-H819Z-WMYNC-N7ATF

CU702-DRD1M-H89GP-JFW5E-YL8X6

YY5EA-00XDJ-480RP-35QQV-XY8F6

VA510-23F57-M85PY-7FN7C-MCRG0

UZ792-DHF8J-M81XP-MGM5T-MCAF2

third step. Install Ubuntu

the fourth step. Ubuntu18.04 installation VMwareTools

VMwareTools effects:
  1. Enhance the virtual graphics card and hard disk performance, and a driver to synchronize the virtual machine and the host clock.
  2. You can go inside the virtual machine drag files directly from the physical host.
  3. When the mouse enters a virtual machine can directly, without having to press CTRL + ALT before they can release the mouse.
  4. The main window can be solved Ubuntu not suited to the resolution, it can be automatically changed to the appropriate resolution.
Installation:
  Select the system will be installed, click Virtual Machine -> VMware Tools installation. (I have installed here so show reinstall)
https://www.cnblogs.com/swjian/p/9193946.html

the fifth step. Unmount the virtual machine:
https://blog.csdn.net/lizhen8285/article/details/80143570
Note: If not uninstall vmware, vmware but directly delete a folder, it will certainly not clean uninstall,
common is: XX the program is already running, can not be deleted.
Other versions may also cause the installation of vmware lead when vmnet1 behind you, vmnet8, vmnet0 unable NIC driver can not be installed.
Therefore, the correct uninstall vmware is still very important, we can go a lot less unnecessary trouble.

Commonly used commands:
cd Change directory. . On behalf of parent directory
sudo shutdown -h now shutdown command
sudo reboot reboot

passwd username modify user password

w Display the current online users

1,qmake -project

2,qmake ***.pro

3,make

First, install vim

Use the command $ sudo apt-get install vim to install vim, vim after installation requires some configuration,
otherwise it would be somewhat inconvenient to use, for example, does not automatically indent.

Second, configure vim

Use command $ vim / etc / vim / vimrc modify the vim configuration file (modify the file take effect for all users),
and finally add the following code in the file:

set ai "auto indent the new row with the row in front of the holding - auto-spacing consistent
set aw" automatic writing, into the shell or used: when n edit another file, the current buffer is written to
set flash "in the error at blinking but not crying (default)
the SET ic "in the query pattern matching and suddenly bribe case
the SET NU
the SET number the" left of the screen to display line numbers
"set showmatch" display paired brackets "]" ")" when you type, highlight matching brackets
set showmode "in text input mode when the mode indicator is highlighted in the button bar
set showcmd" in the status bar display instruction currently executed instruction unfinished fragment also displayed
set warn / nowarn " after the text of the new modified, leaving the shell present a display system (default)
SET WS / NOWs "when searching for the end of file, such as file header wraps around to continue the search
set wrap / nowrap" displayed automatically wrap long lines
"colorscheme evening" nighttime mode is set to background
filetype plugin on "automatically recognize the file type, automatic matching corresponding to the" file type Plugin.vim "file, indentation definition file
set autoindent" Set automatic indentation: indents i.e. each row is equal to the previous line; unset used noautoindent
set cindent "


set scrolloff = 5 "from the window, the cursor is set lower and upper bounds 5 rows window automatically scroll
set shiftwidth = 4" width setting movement >> and << command. 4
SET = softtabstop. 4 "so that when you press the backspace key at once Deletion 4 spaces, less than four time remove all the remaining spaces)
sET = TabStop. 4 "is set to the length of tab. 4
sET wrap" wrap display
syntax enable
syntax ON "automatic syntax highlighting

Note that the first line can only choose a value of 11, 12, or will be error. If you do not need some functions can use the line before the symbol "comment the line.
If you are using! Wq can not be saved, use the command w! Sudo tee% save.

Published 42 original articles · won praise 3 · Views 1213

Guess you like

Origin blog.csdn.net/qq_40910138/article/details/105193920