0x00. Burning Dish
Use UltraISO (cracked version) burned to the USB flash drive, set up the computer from the USB flash drive, you can install.
The command line of not com32r image may appear at installation, and the "boot:" After entering live directly will solve the problem.
0x01. Sequential structure Installation
This step does not need to speak more, in order to install the line.
0x02. Update
1 sudo apt-get update2sudo apt-get upgrade
The system needs to be updated after installation, and these two lines of commands provide system updates. Some people would say that to replace the source, the company speed can be, there is no need.
0x03. Aptitude
1 sudo Install Aptitude
Aptitude Package Manager, the system default is apt Package Manager, aptitude when deleting a package, it will delete its dependent package, so that the system will not remain useless packages, make the system cleaner.
0x04. Git
1 sudo Install git
This installs the Git.
0x05. Vim
Open terminal. Ubuntu 15.04 comes with the solarized theme. Can be set in preferences.
A vim without a plugin is like a child who has lost its vitality.
Create a new file in the user's home directory:. VIMRC, need to manually configure their vim inside, my. VIMRC is as follows:
1 "Use vundle to manage plugin, required turn file type off and nocompatible2 filetype off3 Set Nocompatible4Set rtp+=~/.vim/bundle/Vundle5 Call VUNDLE#RC ()6 "Let Vundle manage Vundle, required7Bundle'Gmarik/vundle'8 "My bundles here:9Bundle'altercation/vim-colors-solarized'TenBundle'Taglist.vim' OneBundle'The-nerd-tree' ABundle'A.vim' -Bundle'C.vim' -Bundle'Python.vim' theBundle'Lokaltog/vim-powerline' -Bundle'Omnicppcomplete' - "Brief help of Vundle - ": Bundlelist + ": Bundleinstall - ": Bundlesearch + ": Bundleclean A ": Help Vundle at "End Brief Help - - "Show line number, command, status line and so on -Set history= + - Set Ruler - Set number in Set ShowCmd - Set Showmode toSet laststatus=2 +Set cmdheight=2 -Set scrolloff=3 the * "Fill space between Windows $Set fillchars=stl:\, Stlnc:\, vert:Panax Notoginseng - "Turn off annoying error sound the Set Noerrorbells + Set Novisualbell ASet t_vb= the + "Turn off Splash screen -Set shortmess=AtI $ $ "syntax and theme - syntax Enable - ColorScheme solarized theSet background=Dark - Set CursorlineWuyi Set Cursorcolumn the - "Configure backspace to being able to across, lines WuSet backspace=2 -Set whichwrap+=<,>, H,l About $ "Tab and indent - Set Expandtab - Set Smarttab -Set shiftwidth=4 ASet tabstop=4 + Set Autoindent the Set Cindent - $ "Files, backups and encoding the Set Nobackup the Set Noswapfile the Set Autoread the Set Autowrite - Set Autochdir inSet fileencoding=utf-8 theSet fileformats=Unix,dos,mac the filetype plugin on About filetype indent on the the "Text Search and Repalce the Set Showmatch +Set Matchtime=2 - Set Hlsearch the Set IncsearchBayi Set ignorecase the Set Smartcase the Set Magic - Set Lazyredraw - Set Nowrapscan theSet iskeyword+=_,$,@,%,#,-,. the the "Powerline theLet g:powerline_sysmbols='Fancy' -Set t_co= the theLet powerline_symbols='compatible' theSet laststatus=2 theSet encoding=utf-894 the "Gvim config the ifHas ("gui_running") the ColorScheme solarized98 endif AboutSet guifont=dejavu\ sans\ mono\ the -Set Guioptions=aegic
This file refers to Jingshan Ranger's blog, thanks ~
9~16 line is a few basic plugins I installed.
The effect is as follows:
0x06. oh-my-zsh
See the powerline effect on the top, the shell can be so cool? Of course.
Here we just install the oh-my-zsh.
First you have to install ZSH, the default is bash shell
1 sudo Install zsh
The code on the previous line installs the zsh.
1 cat /etc/2login shells3 /bin/sh4 /bin/ Dash 5 /bin/bash6 /bin/rbash7 /bin/zsh8 / Usr/bin/zsh
View the discovery Zsh has been installed. The next step is to set zsh as the default shell.
1 sudo chsh-s zsh
This changes the current shell, but does not take effect immediately and requires reboot the computer.
After the reboot, we installed it according to the installation method of the OH-MY-ZSH homepage:
Curl-l https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
Or
wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh-o-| sh
After successfully installing OH-MY-ZSH, open the. zshrc file with Vim.
Modify the value of the Zsh--theme parameter to modify the zsh theme, such as Zsh_theme= "Agnoster" to display the terminal effect in powerline as follows:
Of course, some students may find that the arrows are not displayed, the font patch on the OK, powerline the author gives a detailed solution, the link is as follows: https://powerline.readthedocs.org/en/latest/ Installation/linux.html#installation-on-linux, of course, you can also go to Powerline's GitHub homepage to find relevant information.
0x07. Numix
Ubuntu systems with Numix themes are like children in bright clothes.
Go to the Numixproject Project homepage from GitHub.
1 sudo add-apt-repository ppa:numix/ppa2sudo apt-get update3 sudo Install numix-icon-theme-circle
This 3-line statement installs the Numix theme. But the system has not changed much.
0x08. Unity-tweak-tool
Of course, we need to use Unity-tweak-tool to switch themes.
1 sudo Install Unity-tweak-tool
Install Unity-tweak-tool first.
After switching the effect is as follows:
0x09. FCITX && Flashplugin-installer
IME is the FCITX of the installation. The Flsah plugin is also to be installed.
0x0A. Browser
Finally, let's take a look at the browser.
In fact, one of the biggest problems with browsers is FQ.
I usually like to use red apricot. Helpless Ubuntu default browser is Firefox.
Then choose Install Chromium Browser and open developer mode in extension.
You can add the Red Apricot plugin, log in to use.
Finally, attach my invitation to the Red Apricot, accept my invitation and open the service of the students, you and I will get a 10-day discount. (Small friends come on Come on ~ ~ ~)
The overall effect after the wallpaper is replaced:
Ubuntu15.04 Installation not complete guide