Tag: linux

  • Disable hot corner in Linux Mint

    To disable hot corner in linux mint, go to settings

    linux mint system settings

    Go to advanced settings

    linux mint advanced settings

    Click Hot Corners,

    From the dorp down, select Disabled.

  • Lynx

    lynx is a text based browser for Linux and FreeBSD

    http://lynx.isc.org

    Install lynx on CentOS/RHEL/Oracle Linux

    yum install lynx
    

    Install lynx on Debian/Ubuntu

    apt install lynx
    

    Install Lynx from Source

    wget http://lynx.isc.org/release/lynx2.8.5.tar.gz
    tar -zxvf lynx2.8.5.tar.gz
    cd lynx2-8-5
    ./configure
    make
    make install
    

    Install from ports on FreeBSD

    cd /usr/ports/www/lynx
    make
    make install
    make clean
    rehash
    

    On FreeBSD, to see if lynx is installed

    server26# pkg_info|grep lynx
    lynx-2.8.6d18       A non-graphical, text-based World-Wide Web client
    server26#
    

    See Linux Commands