April 3, 2011
# basic .muttrc for use with Gmail # Change the following six lines to match your Gmail account details set imap_user = "username@gmail.com" set imap_pass = "" set smtp_url = "smtp://username@smtp.gmail.com:587/" set smtp_pass = "" set from = "username@gmail.com" set realname = "Firstname Lastname" # # # Change the following line to a different editor you prefer. set editor = 'vim + -c "set textwidth=72" -c "set wrap"'
gmail (1) mutt (1)
January 26, 2010
If you're using a flavor of *nix that has an rc.local file, and then you start using Debian GNU/Linux, you might be wondering where your rc.local file is. Quite simply, it's not there. Here's how to add it.
Create a new file named /etc/init.d/local like this:
#!/bin/sh
# put startup stuff here
Make the file executable:
chmod 755 /etc/init.d/local
Add it to startup:
update-rc.d local defaults 80
You should be seeing something like this:
Adding system startup for /etc/init.d/local ...
/etc/rc0.d/K80local -> ../init.d/local
/etc/rc1.d/K80local -> ../init.d/local
/etc/rc6.d/K80local -> ../init.d/local
/etc/rc2.d/S80local -> ../init.d/local
/etc/rc3.d/S80local -> ../init.d/local
/etc/rc4.d/S80local -> ../init.d/local
/etc/rc5.d/S80local -> ../init.d/local
linux (8) debian (5)
January 14, 2006
Here's a command to install lots of games on your Debian box:
yes | \
for x in `apt-cache search game \
| sort \
| awk 'BEGIN { FS = " - " } { print $1 }'`; do \
apt-get install $x; \
done
game (5) debian (5)