http://code.google.com/p/pidgin-facebookchat/
Download the deb they have built, install it, then restart Pidgin! You will then have a FacebookChat option in your accounts manager dialog.
Various thoughts and projects that grab my attention for more than a few minutes.
Word | Number of Uses | Last Used by | |
1 | ubuntu | 132 | tyche |
wbinfo -u
. If you don't do this, you can't use sudo, pwd won't work (a lot of stuff breaks, essentially). So, to hack around it, I wrote a script called keepActiveDirectoryAlive and put it in $HOME/bin
.
#!/bin/bash
while true
do
sleep 30s; wbinfo -u;
done
wbinfo -u
to run in /etc/rc.local
(though I seem to remember Ubuntu/Debian ignoring this file) so that I can login through GDM. It seems to be working as expected.