Skip to content

Mcabber Install on Dreamhost

by Jeff

I’m reposting this, it’s what I used to install mcabber on dreamhost:

From your home directory:

mkdir bin lib tmp
chmod 777 tmp
chmod 755 bin lib
echo "export PATH=$PATH:$HOME/bin" >> ~/.bash_profile
echo "export PKG_CONFIG_PATH=$HOME/lib/pkgconfig" >> ~/.bash_profile
echo "export LD_LIBRARY_PATH=$HOME/lib:/usr/local/lib:$LD_LIBRARY_PATH" >> ~/.bash_profile
source ~/.bash_profile
cd ~/tmp
wget ftp://ftp.gtk.org/pub/glib/2.19/glib-2.19.8.tar.gz
tar -xvzf glib-2.19.8.tar.gz
cd glib-2.19.8
./configure --prefix=$HOME
make
make install

glib should now be installed. If you ran into any errors fix those before moving on.

cd ~/tmp
wget http://mcabber.com/files/mcabber-0.9.9.tar.bz2
bunzip2 mcabber-0.9.9.tar.bz2
cd mcabber-0.9.9
./configure --prefix=$HOME
make
make install

Then follow these directions to set up.

Per the comments, remember to delete your tmp dir when you’re done. Or else don’t chmod 777 this directory.

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

3 Comments

  1. nooo! never ever ever chmod 777 anything in your homedir. Whatever process you’re running will run as you and therefore only needs write permission as your user. chmod 777′ing a directory creates a fairly large security hole because anyone else on the system can write to it for any reason whatsoever.

    Don’t do it, it’s a bad idea.

    Tuesday, September 22, 2009 at 5:22 pm | Permalink
  2. Jeff wrote:

    Don’t get your panties in a knot, Jeremy, it’s a tmp dir. As in, temporary.

    Tuesday, September 22, 2009 at 5:26 pm | Permalink
  3. Steve wrote:

    I guess next time just make it abundantly clear that you are deleting the temp directory that you created.

    Tuesday, September 22, 2009 at 7:12 pm | Permalink

Post a Comment

Your email is never published nor shared. Required fields are marked *
*
*