svalenti / pessto

pessto pipeline
MIT License
9 stars 6 forks source link

Test Pipeline on Ubuntu 14.04 #10

Closed genghisken closed 9 years ago

genghisken commented 9 years ago

The pipeline needs to be tested on Ubuntu 14.04, including the prerequisite Ureka installation.

genghisken commented 9 years ago

Works OK, but as with CentOS 6.6, I had problems with starting xgterm (no such file or directory). Again, the problem was caused by the lack of 32-bit C library in the default Ubuntu install.

I think that this is all you need to do:

sudo -i
apt-get install libc6:i386
exit

I'm fairly sure the following steps are optional, but I've included them here for posterity...

sudo -i
cd /etc/apt/sources.list.d
echo "deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
rm /etc/apt/sources.list.d/ia32-libs-raring.list
apt-get update
apt-get install gcc-multilib
exit