Ye blog of Adam Wright
DIY, tutorials, stuff for geeks, all updated when I have the time to spare.
Monthly Archives: March 2011
Installing twirssi on Ubuntu Server
03/21/2011
Posted by on I read a bunch of tutorials on using irssi for Twitter, but some were cryptic at best. Decided to make a quick tutorial.
- sudo apt-get install -y irssi # Install irssi
- mkdir -P ~/.irssi/scripts # if .irssi and scripts folders don’t exist, create them
- wget -O ~/.irssi/scripts/twirssi.pl http://twirssi.com/twirssi.pl # Get twirssi script
- sudo apt-get install -y libnet-twitter-perl # Install Net::Twitter
- sudo apt-get install -y libcrypt-ssleay-perl # Install Crypt::SSealy
- irssi # Start irssi
- /script load twirssi # Load twirssi script
- /twitter_login <your username> # Login to Twitter
Logging in requires some oauth authorization, I forget exactly how to do it but it’s something like /twirssi_oauth, then you copy and paste the url into a browser and enter your twitter credentials, which gives you a confirmation code to put back into twirssi. Read the documentation at the link below for more info.
twirssi usage guide: http://twirssi.com/?using
Good luck. ^_^
Thanks to Zed and Death4Life in #irssi on Freenode for help getting it going!