They can be distro specific, unspecific, cryptic, easy to read. It doesn't matter. Instead of scribbling your tips on a personal file, dump them here.
Where :
If you are using linkdotnet's 07770777 and wvdial. Add this line to wvdial.conf
to add more virtual desktops in xfwm press ALT+INS to remove press ALT+DEL
If for no reason you can't sync your PDA try changing permissions of the serial device chmod 666 /dev/ttyUSB1
How to make your linux installation autologin without gdm or kdm. (xdm doesn't allow this)
1:2345:respawn:/sbin/mingetty tty1
to
1:2345:respawn:/sbin/mingetty --autologin username tty1
3. Well naturally you should now put in ~/.bash_profile the startx command. This would work but if you are logging in through a remote shell (ssh, etc.) the startx command with be issued, which is not what we want. Add the following lines in ~/.bash_profile so it issues the startx command only when logging in takes place from the console.
if ["`tty`" = "/dev/console" -o "`tty`" = "/dev/vc/1"] then startx fi