Month: March 2013

  • [How To] Install Iptux on Linux

    Iptux is a free IP messenger application which can be used in internal network for chatting and file sharing purpose.
    In this tutorial, we are going to see how to install Iptux using source and utilities like yum,apt-get,dpkg.

    To install Iptux on Ubuntu/Fedora/CentOS/RHEL using source:

    1) Download the source from Google Code or Mediafire

    2) Extract the archive.

    2) Go to the Iptux directory.

    3) Fire following command with root privileges.

    ./configure
    make
    make install

    During installation, system may throw error due to missing dependencies. Install the dependencies to complete the installation.

    4) Once the installation is complete, use following command to clean the binaries used during installation.

    make clean

    5) Start the Iptux from the Applications menu.

    Alternately, you may also install Iptux using yum/apt-get/dpkg utilities.

    CentOS/Redhat/Fedora:

     yum install iptux

    Ubuntu:

    apt-get install iptux

    Note: The Iptux project has been moved to GitHub. You can also get the source code and installation steps at GitHub.

    Review Overview

    User Rating: Be the first one !
  • How to disable SSL on Webmin

    To disable SSL in Webmin control panel access link, please follow below steps

    1) SSH to the server.

    2) Open file

    sudo /etc/webmin/miniserv.conf

    3) Change

    ssl=1

    to

    ssl=0

    save the file

    4) Restart Webmin service

    /etc/init.d/webmin restart

    Clear the browser cache, cookies and check by accessing Webmin control panel without https.

     

Back to top button