Recording an IRC channel on Linux/Ubuntu
There are a ton of Interney Relay Chat (IRC) clients for Linux/Ubuntu, e.g. Gaim (now called Pidgin). One IRC client that makes recording an IRC conversation pretty easy is Irssi. Install Irssi on Ubuntu with a simple command:
sudo apt-get install irssi
Then run the program “irssi” from the command line.
Now suppose you want to record what’s going on in the #iphone channel, which runs on the IRC server irc.osx86.hu. Pick a nickname for yourself such as “notanewbie” and run the following commands:
irssi
/set nick notanewbie
/set autolog on
/connect irc.osx86.hu
/list
/join #iphone
Then just leave the terminal running or type “/quit” when you’re ready to exit. The IRC chat log will automatically be placed in ~/irclogs/osx86/#iphone.log . The chat log includes messages when people join/leave the channel, so you can use this command to peruse what people are actually saying:
cat \#iphone.log | egrep -v ‘has quit|has left|has joined’ | less
That should get you recording an IRC […]
Written by on April 21st, 2008 with no comments.
Read more articles on Gadgets/Hack.