Ubuntuのは必要なソフトウェアのインストール

機能:Ubuntuのインストール後、このスクリプトで一般的なツールをインストールする。

ubuntu.sh

#!/bin/bash
# Info : install tools for ubuntu
# Author : elain
# CTime : 2011.08.01

#——————————————-
#——— いらないソフトを削除する————
#————————————–force-yes -y——-
sudo apt-get remove totem totem-gstreamer totem-mozilla –force-yes -y
sudo apt-get remove rhythmbox evolution bittorrent empathy –force-yes -y

#——————————————-
#——— 一般的なソフト ———————
#——————————————-
#vimをインストールしてviに代わる
sudo apt-get install –force-yes -y vim
echo “alias vi=vim " >> ~/.bashrc
source ~/.bashrc

#圧縮種類のソフトウェアをインストールする
sudo apt-get install unace unrar zip unzip p7zip-full p7zip-rar sharutils rar –force-yes -y
#RSSニュースリーダーをインストールする
sudo apt-get install akregator –force-yes -y

#インターネットの一般的なツールをインストールする
sudo apt-get install filezilla amsn iptux –force-yes -y
#emeseneのインストール
sudo add-apt-repository ppa:emesene-team/emesene-stable
sudo apt-get update
sudo apt-get install –force-yes -y emesene

#プレーヤーのインストール
sudo apt-get install –force-yes -y “gnome-MPlayer"
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install audacious -y

#システムツールのインストール
sudo apt-get install –force-yes -y yakuake htop lrzsz sysstat sshpass curl wget nmap nload tree lynx iptraf
#buntu-tweakをインストールする
sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak –force-yes -y

#CHMファイルを読んで、いくつかの非標準chmを良いサポート
sudo apt-get install chmsee gnochm –force-yes -y
#Visioに似ているdia(コマンドラインではデフォルトで開始する)
#sudo apt-get install dia –force-yes -y

#UML図を書く用umbrello
#sudo apt-get install umbrello –force-yes -y

#gnome3のインストール
sudo add-apt-repository ppa:gnome3-team/gnome3
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install –force-yes -y gnome-shell

Source

Posted by arkgame