Jumpman Game

A small game I made in class

PAE error on boot

If you found this page through Google, it would be stupid to follow these instructions to the letter This kernel requires the following features not present on the CPU: pae Unable to boot - please use a kernel appropriate for your CPU. Step 1: Chroot mount /dev/sda2 /mnt for i in dev proc sys; do mount --bind /$i /mnt/$i; done chroot /mnt Step 2: Make initrd cd /boot mkinitrd -c -k 3.2.45 -m ext2 -f ext2 -r /dev/sda2 Step 3: Add to lilo echo >>/etc/lilo.conf <<EOF # Linux bootable partition config begins image = /boot/vmlinuz-generic-3.2.45 initrd = /boot/initrd.gz root = /dev/sda2 label = Slacky-3.2.45-initrd read-only # Linux bootable partition config ends EOF Step 4: Update lilo and reboot lilo exit umount /mnt/{dev,proc,sys,} reboot

Installing Spotify on Linux

These instructions are old and probably don’t work anymore Add spotify-sources to apt-repo echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list Add key apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 Fetch updates apt-get update Add this stupid old dependency This might not be needed anymore / on other distros. Just do it if the next step doesn’t work wget snapshot.debian.org/archive/debian/20110406T213352Z/pool/main/o/openssl098/libssl0.9.8_0.9.8o-6_amd64.deb dpkg -i libssl0.9.8_0.9.8o-6_amd64.deb Install spotify apt-get install spotify-client Run spotify! ...