Viendo que algunos me preguntaban como bajar e instalar ruby 1.9 para probarlo. Aca les dejo un script en bash que baja, descomprime, configura e instala ruby con un prefijo -1.9.1 en el directorio /opt/local (Directorio comunmente usado en osx por macports.)
#!/bin/sh
curl ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.gz > /tmp/ruby-1.9.1-p0.tar.gz
cd /tmp
tar xvf ruby-1.9.1-p0.tar.gz
cd ruby-1.9.1-p0
autoconf
./configure --program-suffix=-1.9.1 --prefix=/opt/local
make
sudo make install
UPDATE: I just added another script to install directly from the svn repository. This is for those crazy people who like to live on the edge.
#!/bin/sh
if [ -z "$1" ]; then
echo "usage: $0
echo "Author: Matias Pablo Brutti"
echo "Bye
"
exit
fi
echo "This might not compile because it is download straight from"
echo "the svn repository. If it does not work either wait and try"
echo "again later or do your work and check why is not working."
echo "Happy hacking!"
if [ "$1" == install ]; then
echo "Downloading ruby from the svn repo"
svn co http://svn.ruby-lang.org/repos/ruby/trunk ruby
cd ruby
fi
if [ "$1" == update ]; then
echo "Cleaning last install and updating repo"
cd ruby
make clean
svn update
fi
echo "Configuring && installing ..."
autoconf
./configure --program-suffix=-1.9 --prefix=/opt/local
make
sudo make install
Enjoy.
Hoy en el laburo, queria escuchar un poco de musica. Cuando fui a usar el player por default de Fedora 10 Rythombox no me andaban los MP3s y que tenia que instalar un plugin.
Mi primera impresion fue un WTF? , luego recorde esta movida de free and libre only software. Y dije bueno a buscar repositorios.
Esto es lo que encontre y lo que termine haciendo:
Agregar los repositorios de rpmfusion:
# rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
# rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
Instalar GStreamer plugins:
# yum install gstreamer gstreamer-plugins-bad gstreamer-plugins-ugly
Instalar otras app y librer?as:
* Amarok con soporte para MP3:
# yum install amarok phonon-backend-gstreamer
* MPlayer con soporte para MP3:
# yum install mplayer gnome-mplayer gnome-mplayer-common mencoder
* XMMS con soporte para MP3:
# yum install xmms xmms-mp3
* xine con soporte para MP3:
# yum install xine xine-lib-extras-nonfree
* Para crear MP3s con LAME :
# yum install lame lame-mp3x
* Para instalar todo junto con un solo comando:
# yum install xmms xine mplayer amarok xmms-mp3 gstreamer phonon-backend-gstreamer gstreamer-plugins-bad gstreamer-plugins-ugly xine-lib-extras-nonfree mplayer gnome-mplayer-common mencoder gnome-mplayer lame lame-mp3x
