Friday, January 25, 2013

Install more Desktop Environments on Fedora 20

How to install other popular desktop environment on Fedora 20?

Here we go....

You can copy and paste the content of the box below in a file with extension .sh and run it after making it executable

Click here to download the file.

#First of all make this file as executable program by running command "chmod a+x desktops.sh"
#you can remove any command below if you do not want to install that desktop
#Make sure you are in super user mode (by running command su) before running this file using "./desktops.sh"


#GNOME Desktop
yum groupinstall "GNOME Desktop"

#KDE Desktop:
yum groupinstall "KDE Plasma Workspaces"

#Mate Desktop
yum groupinstall "MATE Desktop"
 
#Cinnamon Desktop
yum groupinstall "Cinnamon Desktop"
 
#XFCE Desktop
yum groupinstall "Xfce Desktop"
 
#LXDE Desktop
yum groupinstall "LXDE Desktop"
 
#Sugar on a Stick
yum groupinstall "Sugar Desktop Environment"

Thursday, January 17, 2013

Things to do after installing Fedora 20

The latest version of fedora released on December 17, 2013. It is very stable and improved version of the previous release.

We know that fedora does not provide licensed and non-free codecs and packages. So we need to install them.

Copy all the content in the box below and make a file with extension .sh (I used fedoraup.sh) or you can do all these things manually also referring the box below.

Click here to download the file and run.

#First of all make this file as executable program by running command "chmod a+x fedoraup.sh"

#you can remove any command below if you do not want to install that package

#Make sure you are in super user mode (by running command su) before running this file using "./fedoraup.sh"

yum -y update

#Install gnome-tweak-tool

yum -y install gnome-tweak-tool

#WGET

yum -y install wget

#rpmfusion

su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm'

#Media codecs

yum -y install gstreamer gstreamer-plugins-good ffmpeg-libs xine-lib xine-lib-extras xine-lib-extras-freeworld xine-ui xine-ui-skins gxine gstreamer-plugins-bad gstreamer-plugins-bad-free-extras gstreamer-plugins-bad-nonfree gstreamer-plugins-ugly gstreamer-ffmpeg gstreamer1-libav gstreamer1-plugins-bad-free-extras gstreamer1-plugins-bad-freeworld gstreamer1-plugins-base-tools gstreamer1-plugins-good-extras gstreamer1-plugins-ugly gstreamer1-plugins-bad-free gstreamer1-plugins-good gstreamer1-plugins-base gstreamer1 ffmpeg libdvdread libdvdnav lsdvd libdvdcss

#vlc and SMPlayer for Video

yum -y install vlc smplayer

#Music player banshee

yum -y install banshee

#xbmc and minitube

yum -y install xbmc minitube

#rar utilities

yum -y install unrar p7zip p7zip-plugins

#filezilla

yum -y install filezilla

#flash player

yum -y install http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm

rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux

yum -y install flash-plugin nspluginwrapper alsa-plugins-pulseaudio libcurl

#Google Chrome

yum -y install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

#Google-talk plugin

yum -y install https://dl.google.com/linux/direct/google-talkplugin_current_x86_64.rpm


After installing gnome-tweak-tool you can run the application and add minimize and maximize buttons on the windows by switching ON maximize and minimize buttons on the titlebar in Windows option which is second last




Thats all you need to do.