Month: November 2012

  • Config file

    To find active rows. egrep -v ^# /etc/test.cfg

  • FreeNX

    sudo bash -c “echo ‘deb http://ppa.launchpad.net/freenx-team/ppa/ubuntu VERSION main deb-src http://ppa.launchpad.net/freenx-team/ppa/ubuntu VERSION main’ >> /etc/apt/sources.list.d/freenx.list” where VERSION can be: dapper, hardy, intrepid or jaunty. More information can be found at FreeNX Team PPA. Add the public key of FreeNX PPA run: sudo apt-key adv –recv-keys –keyserver keyserver.ubuntu.com F3A662B57D580D3A2E98E5152A8E3034D018A4CE Then Update Apt sudo apt-get update After you…

  • TVHeadend, Continuity counter error

    sudo vim /etc/sysctl.conf # Net net.core.rmem_max = 16777216 net.core.wmem_max = 16777216 Run: sudo sysctl -p

  • Disable IPV6 in Ubuntu

    sudo vim /etc/sysctl.conf # IPv6 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 sudo sysctl -p