#!/bin/bash #clear ############################################################################### # Fedora 9 x86_64 Installation Script (With too much software) # Writen by Laurent Armstrong (laurent.armstrong vegasoft ca) # I release it GPLv3 and/or public domain ############################################################################### ################ SCRIPT VARIABLES ################ ROOT_UID=0 # Only ROOT ERR_NOTROOT=1 # Not ROOT FILE_FSTAB="/etc/fstab" #echo "allo" > $FILE_FSTAB overwrite #echo "allo" >> $FILE_FSTAB append #sed (stream editor) ################ STARTUP CHECKS ################ if [ "$UID" -ne "$ROOT_UID" ] # GOT ROOT? then echo "Must be root to run this script." exit $ERR_NOTROOT fi ################ INSTALL ################ echo "Installing base Utils." yum -y install yumex numlockx cups-pdf bitstream-vera-fonts preload yum-fastestmirror echo "Installing more Utils." yum -y install cpufreq-utils gconf-editor gedit-plugins gparted hddtemp memtest86+ nagios rdiff-backup uuid echo "Installing Network Stuff." yum -y install ipcalculator iptraf nmap shorewall snort vnstat wireshark echo "Installing Fun Stuff." yum -y install gdesklets gdesklets-calendar gdesklets-goodweather gdesklets-quote-of-the-day mencal rss-glx yum -y install gnome-screensaver-frogs xscreensaver xscreensaver-base xscreensaver-extras xscreensaver-extras-gss xscreensaver-gl-base xscreensaver-gl-extras xscreensaver-gl-extras-gss echo "Installing AntiVirus Utils." yum -y install chkrootkit clam-av echo "Installing Compiz-Fusion." yum -y install ccsm compiz-fusion compiz-fusion-extras compiz-fusion-extras-gnome compiz-fusion-gnome emerald emerald-themes fusion-icon fusion-icon-gtk gnome-compiz-manager echo "Installing Editors and Graphics." yum -y install aspell aspell-en aspell-fr blender bluefish gimp-lqr-plugin gimp-resynthesizer gocr inkscape orcad pdfedit scribes scribus echo "Installing Internet Stuff." yum -y install amsn amsn-plugins azureus epiphany epiphany-extensions filezilla licq licq-msn putty rapidsvn subversion sunbird thunderbird thunderbird-lightning vnc echo "Installing Games... Gotta have some Fun!!!" yum -y install ants ants-level-editor arrows ballz boswars escape pingus pychecker pychess stormbaancoureur supertux supertuxkart torcs tuxpuck tuxtype2 ultimatestunts vavoom wormux echo "Installing Sound & Video." yum -y install audacity audio-convert-mod brasero easytag istanbul Miro nautilus-flac-convert picard soundconverter tagtool vlc xine-lib-extras yum -y install camstream digikam ivtv-firmware xorg-x11-drv-ivtv zoneminder echo "Installing Wine and an Orange." yum -y install wine orange #This software will allow you to program your Logitech® Harmony® universal remote control. echo "Installing Logitech Harmony Util." #yum -y install concordance ######## RPM.LIVNA.ORG ######## echo "Installing LIVNA Depo." rpm -Uvh http://rpm.livna.org/livna-release-9.rpm ### Video Drivers echo "Installing Video Drivers." yum -y install kmod-nvidia #yum -y install kmod-fglrx ### Archive Tools echo "Installing UNACE/UNRAR." yum -y install unace unrar ######## Players and Codecs ######## echo "Installing NonFree Sound & Video." yum -y install audacity-nonfree gstreamer-plugins-ugly gstreamer-plugins-bad lame libdvdcss libdvdnav libdvdread libquicktime libquicktime-utils xine-lib-extras-nonfree xvidcore totem-backend -b xine ######## LINUX.ADOBE.COM ######## echo "Installing ADOBE Stuff". rpm -Uvh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm yum -y install AdobeReader_enu flash-plugin nspluginwrapper.{i386,x86_64} pulseaudio-libs.i386 libflashsupport.i386 ################ FrostWire ################ #wget http://www.frostwire.com/download/start/?os=redhat&sid=52782218 #./frostwire-4.13.2.noarch.rpm #echo y | rm frostwire-4.13.2.noarch.rpm ################ Google Earth ################ echo "Installing GOOGLE Earth." wget http://dl.google.com/earth/client/current/GoogleEarthLinux.bin chmod +x GoogleEarthLinux.bin ./GoogleEarthLinux.bin echo y | rm GoogleEarthLinux.bin ################ The End ################ echo "Done."