Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleVersion 0.9.8
# yum 
yum install -y net-snmp net-snmp-devel flex flex-devel bison gcc libtool glib2-devel

# prepare as root user
git clone https://github.com/rlaager/docsis.git docsis

# install
cd docsis
./autogen.sh
./configure
make && make install

deprecated: Install with wget to get a special version

Code Block
languagebash
titleold version
# download
wget http://sourceforge.net/projects/docsis/files/docsis/docsis-0.9.6/docsis-0.9.6.tar.bz2

# unzip
tar jxf docsis-0.9.6.tar.bz2
cd docsis*

# install
./configure
make
sudo make install

...