天天看點

Ubuntu 18.04最小安裝

1.Ubuntu最小安裝

2.添加ppa:
	sudo add-apt-repository ppa:webupd8team/java
	sudo apt-get update

3.解除安裝亞馬遜連結:
	sudo apt-get remove unity-webapps-common

4.解除安裝一些不常用的連結:
	sudo apt-get remove thunderbird totem rhythmbox empathy brasero simple-scan gnome-mahjongg aisleriot
	sudo apt-get remove gnome-mines cheese transmission-common gnome-orca webbrowser-app gnome-sudoku  landscape-client-ui-install
	sudo apt-get remove onboard deja-dup

5.解除安裝LibreOffice:
	sudo apt-get remove libreoffice-common

6.解除安裝Firefox浏覽器:
	sudo apt-get remove firefox*

7.安裝Git:
	sudo apt-get install git

8.安裝Vim:
	sudo apt-get install vim

9.安裝Chrome浏覽器:
	wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
	sudo dpkg -i *.deb

10.安裝oracle-java-installer:
	sudo apt-get install oracle-java8-installer

11.安裝idea:
	(1).下載下傳idea
	(2).解壓到/opt目錄下
		sudo tar -zxvf ideaIU-2016.3.3-no-jdk.tar.gz -C /opt
	(3).進入到bin檔案夾:
		cd /opt/idea-IU-163.11103.6/bin
	(4).建立快捷方式檔案 idea.desktop:
		vim idea.desktop
	(5).編輯 idea.desktop 檔案:
		[Desktop Entry]
		Name=IntelliJ IDEA
		Comment=IntelliJ IDEA
		Exec=/home/longsky/Application/idea-IU-163.7743.44/bin/idea.sh
		Icon=/home/longsky/Application/idea-IU-163.7743.44/bin/idea.png
		Terminal=false
		Type=Application
		Categories=Developer;
           

  

轉載于:https://www.cnblogs.com/m-liuy/p/9068199.html