Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created November 30, 2011 16:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cowboy/1409670 to your computer and use it in GitHub Desktop.
Save cowboy/1409670 to your computer and use it in GitHub Desktop.
Install Znc 0.202 in Ubuntu 11.04 (apt-get installs 0.092 by default)
# IIRC, this is what I had to do to install Znc 0.202 in Ubuntu 11.04:
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:trekcaptainusa-tw/backports
sudo apt-get update
sudo apt-get install znc
# Don't forget to open the port in iptables. And while this opens the port, it
# won't restore the settings upon next boot. You'll want to use iptables-save
# for that, like: iptables-save > /etc/iptables.rules (this depends on your setup)
sudo iptables -A INPUT -p tcp -m tcp --dport 8000 -j ACCEPT
# Config notes:
# One IRC server per ZNC account
# Enable the global webadmin module
# Chrome won't access the webadmin on port 6667, but port 8000 worked
# RTFM! http://wiki.znc.in/Configuration
znc --makeconf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment