Linux installation steps

Enabling developer mode
Open the Settings

Click Update and security

Click Developer options

Enabling developer mode

Change the system function
after use win + X keyboard shortcut to bring up the menu click system management applications and functions, then pulled under, select Programs and Features

Select Application Windows features on or off

Check for Linux Windows subsystem, then confirm and restart it

Installing Linux system
after opening the system actually functions have not installed Linux, need to use cmd to complete the installation.
First Press Win + R open cmd command input box, and input lxrun / install / y download Linux system (before the slash note to a space, or else command is not recognized)

Well, now the installation was successful, you can do whatever they like!

First, an instruction input into the Ubuntu system bash

Passwd can then enter the password reset, password reset End Ubuntu can normally use the system. Thus, the basic installation work is complete.

=Novice dividing line===

Advanced Linux
in Ubuntu we can be easily installed by the apt-get command / uninstall the software, because the default package repository is located abroad, to install the software when it is likely to encounter a variety of network problems or to download some of the resources incomplete, and therefore we need to switch data sources for domestic mirror sites to improve.

Edit the data source configuration file vi /etc/apt/sources.list

And then they enter the vi editor

Continue to press ENTER key to enter the real vi editor page

vi editor, a total of three modes, namely, mode command (command mode), insert mode (Insert mode) and line mode (last line mode). We can only control mode command to delete the screen cursor moves, characters, words or lines, move a copy to the next section and Insert mode, or to the last line mode and so on; in Insert mode can be done entering text, press the "ESC" key to return to the command line mode; under the bottom line mode, you can save the file or exit vi, you can also set the editing environment, such as finding strings, lists the line number.

When we entered the vi editor command line mode by default, this is if you want to edit the contents, enter the i command on it. Now we want to mirror source instead of Ali, so insert the following:

deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
1

Then press the "ESC" withdraw from the command line, enter the command line wq! To save and exit just fine.

Then enter the command apt-get update update the configuration on it, this process can be long, good luck!
Reprinted: https://blog.csdn.net/zhangdongren/article/details/82663977

Released three original articles · won praise 0 · Views 734

Guess you like

Origin blog.csdn.net/CLAYql/article/details/90739516