|
Hi all. Im a relativly new webfaction user, and was wondering if it was possible to run irssi. when i download the source and run ./configure it says "GLIB is required to build irssi.". I tried downloading GLIB but that needed libffi, so i downloaded libffi. "./configure" works fine, as does "make". When i try to do "make install" it seems to be trying to install to /usr/local/lib which obviously is results in permission denied. How can i tell it to install to my home directory and then tell the GLIB "./configure" where to find it. Is there an easier way of doing this? is it even possible? Thanks Greg |
|
Hi, You can install irssi using:
followed your instructions and im getting -bash: /home/grh2g46/src/usr/bin/irssi: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
did some googleing and it looks like this could be the same issue as i had already encountered, it needs the glib librarys glib is essential to running linux executables as such it is already installed on all servers. The instructions I gave are for a 32-bit machine, for a 64-bit machine, they would be: mkdir ~/src cd ~/src wget http://mirror.centos.org/centos/6/os/x86_64/Packages/irssi-0.8.15-3.el6.x86_64.rpm rpm2cpio irssi-0.8.15-3.el6.x86_64.rpm | cpio -idmv --no-absolute-filenames export PATH=~/src/usr/bin:$PATH #you will need to add this to your ~/.bash_profile if you want it to persist when you logout |
|
@seanf that got me further, but I do get this error now during make install:
Please open a ticket at our support site, and we'll take a look at it for you. |
ok, figured out how to install to my home directory using the --prefix=$HOME flag on ./configure. still not sure how to tell the GLIB ./configure where it is