1. 程式人生 > >Ubuntu16.04系統安裝軟件(持續更新)

Ubuntu16.04系統安裝軟件(持續更新)

什麽 color sources main.c article -o 虛擬 variable span

Ubuntu提示功能很強大,一般如果你想安裝什麽軟件,可以直接輸入名字,然後會有提示,安裝格式一般為:

sudo apt install  名字

在ubuntu16.04中安裝virtualbox 5

sudo sh -c ‘echo "deb http://download.virtualbox.org/virtualbox/debian xenial contrib" >> /etc/apt/sources.list.d/virtualbox.list‘

wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
sudo apt update sudo apt install virtualbox-5.0

輸入 virtualbox 啟動

在Ubuntu16.04中安裝git

sudo apt-get install git

這時候會提示你輸入管理員密碼

輸入一次 Y ,其他回車

到此為止git安裝完畢,輸入git --version測試看版本確定是否安裝成功

然後輸入遠程Github的註冊郵箱跟密碼

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

在Ubuntu16.04中安裝帶有nginx的git服務器
詳細步驟參考 https://www.centos.bz/2017/07/ubuntu-16-04-nginx-http-git/

在Ubuntu16.04卸載 git

sudo find /usr/local -depth -iname ‘git*‘ -exec rm -rf  {} \;

sudo apt-get remove git

VMware虛擬機下ubuntu16.04如何安裝vmware tools(為了實現window跟ubuntu相互可復制粘貼)

詳細步驟參考 https://jingyan.baidu.com/article/c74d6000bbc6110f6a595d3b.html

Ubuntu16.04系統安裝軟件(持續更新)