Created
February 18, 2011 02:11
-
-
Save nclundsten/833133 to your computer and use it in GitHub Desktop.
f14 post install goodies
This file contains 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
su -c 'yum install yum-plugin-fastestmirror' | |
su -c 'echo "$USERNAME ALL=(ALL) ALL" >> /etc/sudoers' | |
echo rpm fusion | |
yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm | |
echo =========================================== | |
echo few goodies | |
sudo yum install wget mplayer htop nano | |
echo ================================ | |
echo flash plugin | |
sudo yum install nspluginwrapper.{x86_64,i686} alsa-plugins-pulseaudio.i686 | |
yum localinstall --nogpgcheck http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm | |
sudo yum install flash-plugin | |
echo ==================================== | |
echo google repos for earth/chrome/etc | |
su -c 'echo -e "[google64]\nname=Google - x86_64\nbaseurl=http://dl.google.com/linux/rpm/stable/x86_64\nenabled=1\ngpgcheck=1\ngpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub" > /etc/yum.repos.d/google.repo' | |
echo ============================== | |
echo fix packet bullshit for ERI RDP | |
sudo echo 'net.ipv4.tcp_window_scaling=0' >> /etc/sysctl.conf | |
sudo service network restart | |
echo ============================= | |
echo screen cappie | |
sudo yum install git scrot ImageMagick xclip | |
echo ========================================= | |
echo virtualbox repo, install + small fix | |
sudo wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo -O /etc/yum.repos.d/virtualbox.repo | |
sudo yum install VirtualBox-4.0 dkms gcc | |
sudo /etc/init.d/vboxdrv setup | |
echo ========================================= | |
git clone git://github.com/EvanDotPro/GtkGrab.git | |
cd GtkGrab | |
cp config.cfg-sample config.cfg | |
nano config.cfg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment