Acacia plume Source: Http://www.cnblogs.com/xiang-siyu Welcome reprint, Please also keep this statement. Thank you!
Deepin Linux is developed by the deep operating system, based on Debian, built-in Sogou input method, WPS, Google Browser, QQ, Youdao dictionary, etc., suitable for beginners to use Linux
Its installation is relatively simple, the official website has a tutorial. http://www.deepin.org/
The installation image can be downloaded via the official website or through various open source images.
-------------------------------------------------------------------
On the Linux Deepin system, turn on root and switch to the root user by doing the following:
1, first to set the root password, open the terminal to enter the following command
sudo passwd root
Then you will be asked to enter the current user's password, then set the password for the root account (two times)
2. After setting the password, then enter the following command to switch to the root account
Su
Then enter the root password to enter the root user operation.
--------------------------------------------------------------------
The method of Sources.list writing
(1) Address: Locate the address that contains both the dists and pool directories, such as
http://mirror.bit.edu.cn/deepin/
(2) Open the Dists directory, which contains the name of the directory, write down. For example, dists/contains precise,precise-updates,trusty,unstable.
(3) Open the pool directory to see which component names are included, such as Main, contrib, Non-free, universe;
(4) Writing format: Deb <1 down the address > <2 down the directory name > <3 to write down the name;
Deb Http://mirror.bit.edu.cn/deepin/unstable main contrib Non-free
DEB-SRC http://mirror.bit.edu.cn/deepin/unstable Main contrib Non-free
When you open the Sources.list file, the previous rows have the default update source path, and you only need to copy the update address given above to the following when adding the update source
Then replace the URL with the URL we need, that is, only the address > part of the <1 note.
The domestic common update source has 163 update source and each university's update source, Baidu (open source mirror Domestic)
-------------------------------------------------------------------------
Configuration of Vim
When using vim for editing under the terminal, by default, the editing interface is not displaying line numbers, syntax highlighting, smart indenting, and so on. In order to better work under Vim, a configuration file needs to be set manually:. vimrc. It is usually placed under the "Home" directory.
When Vim is started, the. vimrc file under the current user's root directory is automatically read, and the file can contain settings and even scripts, so it is generally convenient to create a. vimrc file under the current user's root directory, which is created as:
$vi ~/.VIMRC
Make the following settings
Syntax on//color highlighting
Set nu//Display line number
Set ts=4//Setting table key to 4 spaces
Set Expandtab
ColorScheme darkblue//Set color configuration, color scheme according to the content in the/usr/share/vim/vim74/colors settings
After Setup is complete, use: Wq
Save to exit.
Deepin Linux Installation and configuration