Created
May 15, 2015 10:10
-
-
Save hjhjw1991/465cd52ddd5630d02961 to your computer and use it in GitHub Desktop.
auto apt-get often-used softwares under ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Info : install tools for ubuntu | |
# Author : elain | |
# CTime : 2011.08.01 | |
# update by HJ 2015.05.15 | |
# run under root or with sudo | |
#------------------------------------------- | |
#--------- 删除一些没用的软件 ------------ | |
#--------------------------------------force-yes -y------- | |
apt-get remove totem totem-gstreamer totem-mozilla --force-yes -y | |
apt-get remove rhythmbox evolution bittorrent empathy --force-yes -y | |
apt-get autoremove | |
#------------------------------------------- | |
#--------- 常用软件 --------------------- | |
#------------------------------------------- | |
#安装vim | |
apt-get install --force-yes -y vim | |
#echo "alias vi=vim " >> ~/.bashrc | |
#source ~/.bashrc | |
#安装压缩类软件 | |
apt-get install unace unrar zip unzip p7zip-full p7zip-rar sharutils rar --force-yes -y | |
#安装 RSS 新闻阅读器 | |
apt-get install akregator --force-yes -y | |
#安装互联网常用工具 | |
apt-get install filezilla amsn iptux --force-yes -y | |
#安装emesene | |
#add-apt-repository ppa:emesene-team/emesene-stable | |
#apt-get update | |
#apt-get install --force-yes -y emesene | |
#安装飞信 | |
#apt-add-repository ppa:happyaron/ppa | |
#apt-get update | |
#apt-get install --force-yes -y openfetion | |
#安装影音工具 | |
#apt-get install --force-yes -y "gnome-MPlayer" | |
#add-apt-repository ppa:nilarimogard/webupd8 | |
#apt-get update | |
#apt-get install audacious -y | |
#安装系统工具 | |
apt-get install --force-yes -y yakuake htop lrzsz sysstat sshpass curl wget nmap nload tree lynx iptraf | |
#安装ubuntu-tweak | |
add-apt-repository ppa:tualatrix/ppa | |
apt-get update | |
apt-get install ubuntu-tweak --force-yes -y | |
#阅读CHM文件,chmsee对某些不规范的chm文件支持效好, gnochm支持搜索 | |
#apt-get install chmsee gnochm --force-yes -y | |
#和Visio类似的dia(默认只能在命令行启动) | |
#apt-get install dia --force-yes -y | |
#画UML图的umbrello | |
#apt-get install umbrello --force-yes -y | |
#安装gnome3 | |
#add-apt-repository ppa:gnome3-team/gnome3 | |
#apt-get update | |
#apt-get dist-upgrade | |
#apt-get install --force-yes -y gnome-shell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment