Installing Mosh on Ubuntu Hardy
Submitted by Hannes Schmidt on Thu, 07/26/2012 - 23:24.
I recently had to get into the Mosh pit with my good old friend Hardy Heron aka Ubuntu 8.04 TLS.
wget --no-check-certificate https://github.com/keithw/mosh/zipball/mosh-1.2.2 mv mosh-1.2.2 mosh-1.2.2.zip unzip mosh-1.2.2.zip cd keithw-mosh-df955aa sudo sed -i -r 's/#\s*(.*hardy-backports.*)/\1/' /etc/apt/sources.list sudo apt-get update sudo apt-get install build-essential autoconf automake libprotobuf-dev \ protobuf-compiler libncurses5-dev zlib1g-dev libio-pty-perl ./autogen.sh protobuf_CFLAGS=" " protobuf_LIBS="-lprotobuf" ./configure --prefix="/usr" sed -i s/LITE_RUNTIME/SPEED/ src/protobufs/*.proto make sudo make install
( categories: Unix | Administrator )