Today I realized that it is possible to play Tetris using the XEmacs of my Debian box. Just type ESC x tetris and you are ready to forget coding or writing your next article for the top journal of your field!
Lightweight Linux is a blog about using Linux on old computers. Lightweight distributions and applications for old computers.
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.tar.xz) tar xvJf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*.xz) unxz $1 ;;
*.exe) cabextract $1 ;;
*) echo "\`$1': unrecognized file compression" ;;
esac
else
echo "\`$1' is not a valid file"
fi
}
The real world is definitely dirtier than our perfect one, and you can't just close your eyes and wish you were still in Kansas.
Lubuntu (download) is Ubuntu 9.10 with LXDE desktop environment. FA quote from the LXDE blog:The lubuntu project is advancing. lynxis just published a lubuntu test iso based on the seeds by David Sugar and additional patches. It is just 381 MB and a second one only 292 MB.
