Trucs et Astuces Fedora 10 : Installation rapide de mes applications sous Fedora
Voila un petit script shell ultra simple qui va mettre en place les différents dépôts utiles, installer les logiciels que j'utilise et installer des polices ou divers autres outils qui me sont utiles dans mon utilisation quotidienne de Fedora :)
Voici le bout de code :
Dans le cas d'une installation avec le live-cd, voilà ce que j'ai l'habitude d'enlever :
yum remove abiword iok aiksaurus* gnome-dictionary gthumb transmission pidgin cheese
Ensuite, le vif du sujet :
#!/bin/bash # Installation des divers dépôts rpm -ihv http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/remi-release-10.rpm # Mis à jour des paquets yum update # Installation des paquets yum install wget yum-fastestmirror binutils unace unzip unrar xchm gedit-plugins flash-plugin gstreamer-ffmpeg gstreamer-plugins-bad gstreamer-plugins-ugly vlc compat-libstdc++-33 libdvdnav xine-lib-extras-nonfree totem-xine totem-mozplugin openoffice.org-core openoffice.org-writer openoffice.org-impress openoffice.org-langpack-fr httpd-manual mod_ssl mod_auth_mysql mysql-server php php-cli php-mysql phpmyadmin php-gd php-imap php-mbstring php-mcrypt php-mhash php-tidy php-xml php-pear filezilla deluge xchat-gnome gsynaptics emesene vim brasero # Installation des polices windows rpm -ivh http://avi.alkalay.net/software/webcore-fonts/webcore-fonts-3.0-1.noarch.rpm rpm -ivh http://avi.alkalay.net/software/webcore-fonts/webcore-fonts-vista-3.0-1.noarch.rpm # Installation de certains codecs rpm -ivh http://www.mplayerhq.hu/MPlayer/releases/codecs/mplayer-codecs-20061022-1.i386.rpm rpm -ivh http://www.mplayerhq.hu/MPlayer/releases/codecs/mplayer-codecs-extra-20061022-1.i386.rpm # Démarrage des services webs service httpd start service mysqld start # Mis en démarrage automatique des services webs chkconfig httpd on chkconfig mysqld on
Enjoy !