Ubuntu15.04 Incomplete installation guide, ubuntu15.04

Source: Internet
Author: User
Tags set background

Ubuntu15.04 Incomplete installation guide, ubuntu15.04

0x00. Burn Disk

Use the UltraISO (cracked version) to install a USB flash drive. Set the computer to start from the USB flash drive.

During installation, the not COM32R image command line may appear. After "boot:", enter live directly to solve the problem.

0x01. Sequential Structure Installation

In this step, you do not need to talk about the installation in order.

0x02. Update

1 sudo apt-get update2 sudo apt-get upgrade

The system needs to be updated after installation. These two lines of commands provide system updates. Some people may say that it is unnecessary for the company to change the source network speed.

0x03. aptitude

1 sudo apt-get install aptitude

Aptitude package manager is the default apt Package Manager. When you delete a package, aptitude will delete its dependent package, so that the system will not leave useless packages and make the system clean.

0x04. git

1 sudo apt-get install git

In this way, git is installed.

0x05. Vim

Open Terminal. Ubuntu 15.04 comes with the solarized topic. You can set it in preference.

A Vim with no plug-ins seems to have lost vitality.

Create a file in the user's home directory:. vimrc. manually configure your vim in it. My. vimrc is as follows:

  1 "Use vundle to manage plugin, required turn file type off and nocompatible  2 filetype off  3 set nocompatible  4 set rtp+=~/.vim/bundle/vundle  5 call vundle#rc()  6 "Let vundle manage vundle, required  7 Bundle 'gmarik/vundle'  8 "My bundles here:  9 Bundle 'altercation/vim-colors-solarized' 10 Bundle 'taglist.vim' 11 Bundle 'The-NERD-tree' 12 Bundle 'a.vim' 13 Bundle 'c.vim' 14 Bundle 'python.vim' 15 Bundle 'Lokaltog/vim-powerline' 16 Bundle 'OmniCppComplete' 17 "Brief help of vundle 18     ":BundleList 19     ":BundleInstall 20     ":BundleSearch 21     ":BundleClean 22     ":help vundle 23 "End brief help 24  25 "Show line number, command, status line and so on 26 set history=1000 27 set ruler 28 set number 29 set showcmd 30 set showmode 31 set laststatus=2 32 set cmdheight=2 33 set scrolloff=3 34  35 "Fill space between windows 36 set fillchars=stl:\ ,stlnc:\ ,vert:\ 37  38 "Turn off annoying error sound 39 set noerrorbells 40 set novisualbell 41 set t_vb= 42  43 "Turn off splash screen 44 set shortmess=atI 45  46 "syntax and theme 47 syntax enable 48 colorscheme solarized 49 set background=dark 50 set cursorline 51 set cursorcolumn 52  53 "Configure backspace to be able to across two lines 54 set backspace=2 55 set whichwrap+=<,>,h,l 56  57 "Tab and indent 58 set expandtab 59 set smarttab 60 set shiftwidth=4 61 set tabstop=4 62 set autoindent 63 set cindent 64  65 "Files, backups and encoding 66 set nobackup 67 set noswapfile 68 set autoread 69 set autowrite 70 set autochdir 71 set fileencoding=utf-8 72 set fileformats=unix,dos,mac 73 filetype plugin on 74 filetype indent on 75  76 "Text search and repalce 77 set showmatch 78 set matchtime=2 79 set hlsearch  80 set incsearch  81 set ignorecase  82 set smartcase 83 set magic 84 set lazyredraw 85 set nowrapscan 86 set iskeyword+=_,$,@,%,#,-,. 87  88 "powerline 89 let g:Powerline_sysmbols='fancy' 90 set t_Co=256 91 let Powerline_symbols='compatible' 92 set laststatus=2 93 set encoding=utf-8 94  95 "Gvim config 96 if has("gui_running") 97     colorscheme solarized 98 endif 99 set guifont=DejaVu\ Sans\ Mono\ 15100 set guioptions=aegic

This document is based on the jingshan youxia blog. Thank you ~

9 ~ Lines 16 are the basic plug-ins I have installed.

The effect is as follows:

0x06. oh-my-zsh

Can shell be so cool to see the above Powerline effects? Of course.

Here we only need to install oh-my-zsh.

First, install zsh. The default version is bash shell.

1 sudo apt-get install zsh

Zsh is installed in the above line of code.

1 cat /etc/shells 2 # /etc/shells: valid login shells3 /bin/sh4 /bin/dash5 /bin/bash6 /bin/rbash7 /bin/zsh8 /usr/bin/zsh

Check that zsh has been installed. Set zsh to the default shell.

1 sudo chsh -s zsh

This changes the current shell but does not take effect immediately. You need to reboot the computer.

After the restart, follow the install method on 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 the oh-my-zsh is successfully installed, use vim to open the. zshrc file.

Modify the value of the ZSH--THEME parameter to modify the zsh topic, such as ZSH_THEME = "agnoster" to display the Powerline effect in Terminal, as shown below:

Of course, some people may find that the arrow cannot be displayed, and the font patch is OK. The author of Powerline provides a detailed solution. The link is as follows: Success.

0x07. Numix

A Ubuntu system with a Numix subject is like a child wearing bright clothes.

Go to the NumixProject project homepage from github.

1 sudo add-apt-repository ppa:numix/ppa2 sudo apt-get update3 sudo apt-get install numix-icon-theme-circle

The Numix topic can be installed with these three lines of statements. However, the system has not changed.

0x08. unity-tweak-tool

Of course, we need to use unity-tweak-tool to switch themes.

1 sudo apt-get install unity-tweak-tool

First install unity-tweak-tool.

After switching, the effect is as follows:

0x09. fcitx & flashplugin-installer

The input method is the installed fcitx. You also need to install the flrated plug-in.

0x0A. Browser

Finally, let's talk about the browser.

In fact, the biggest problem with browsers is FQ.

I usually like to use red apricots. The default Ubuntu browser is Firefox.

Then choose to install the Chromium browser and open the developer mode in Extension.

You can add the red apricot plug-in and log on to it.

At last, I will attach my red apricot invitation. If you accept my invitation and activate the service, you and I will receive a 10-day discount. (Coming soon ~~~)

Attached with the overall effect after changing the wallpaper:

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.