Ye blog of Adam Wright
DIY, tutorials, stuff for geeks, all updated when I have the time to spare.
Monthly Archives: November 2010
Irssi is a command-line IRC chat program (can be used via SSH!)
11/04/2010
Posted by on Irssi is a linux IRC chat program which can be used via SSH (since its command-line/terminal based).
Here is a nice introduction/tutorial on using Irssi.
I highly recommend reading the guide linked above, but here’s some simple commands I used for installing on Ubuntu (should be able to use yum or whatever on other systems):
- ssh myserver.com # SSH into your server
- sudo apt-get install -y irssi # Install irssi
- irssi # Test it out
- echo “alias irc=’irssi'” >> ~/.bashrc # Create an alias for using IRC (optional)
- source ~/.bashrc # Resource the alias
- echo “/connect irc.efnet.org” > ~/.irssi/startup # Add any user-specific startup commands to ~/.irssi/startup (optional)
Simple startup notes: To switch between windows/channels use Alt+left and Alt+right. To switch between servers, switch to the server output window and press Ctrl+x.
It’s like using emacs or nano for text editing, because it resides entirely in a command-line/terminal window. So now whenever I feel like using IRC, I just SSH into the server I installed irssi onto and use IRC there. You’ll never need to install IRC on a machine again, just keep it on a server somewhere then SSH in!
Both screenshots were made when I was using Putty within Windows.