How-To Run SimCity 2000 on Windows 8 (X64)

In case you have problems with installing SimCity 2000 on a Windows 8 machine (like me) you shoud follow this short guide to get it working.

  • Copy the SC2K directory from the CD to C:\Games\Simcity 2000\SC2K
  • Run the simcity2000.reg file (below)

What`s inside the SimCity2000.reg file?
Save the code below, using notepad, as  simcity2000.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Maxis]

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000]

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000\Localize]
"Language"="USA"

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000\Options]
"Speed"=dword:00000001
"Sound"=dword:00000001
"Music"=dword:00000001
"AutoGoto"=dword:00000001
"AutoBudget"=dword:00000000
"Disasters"=dword:00000001
"AutoSave"=dword:00000000

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000\Paths]
"Home"="C:\\Games\\Simcity 2000\\SC2K"
"Graphics"="C:\\Games\\Simcity 2000\\SC2K\\Bitmaps"
"Music"="C:\\Games\\Simcity 2000\\SC2K\\Sounds"
"Data"="C:\\Games\\Simcity 2000\\SC2K\\Data"
"Goodies"="C:\\Games\\Simcity 2000\\SC2K\\Goodies"
"Cities"="C:\\Games\\Simcity 2000\\SC2K\\Cities"
"SaveGame"="C:\\Games\\Simcity 2000\\SC2K\\Cities"
"TileSets"="C:\\Games\\Simcity 2000\\SC2K\\ScurkArt"
"Scenarios"="C:\\Games\\Simcity 2000\\SC2K\\Scenario"

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000\Registration]
"Mayor Name"="Blackbeard"
"Company Name"="Piratbyran"

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000\SCURK]
"CycleColors"=dword:00000001
"GridHeight"=dword:00000002
"GridWidth"=dword:00000002
"ShowClipRegion"=dword:00000000
"ShowDrawGrid"=dword:00000000
"SnapToGrid"=dword:00000000
"Sound"=dword:00000001

[HKEY_CURRENT_USER\Software\Maxis\Maxis\SimCity 2000\Version]
"SimCity 2000"=dword:00000100
"SCURK"=dword:00000100

[HKEY_CURRENT_USER\Software\Maxis\SimCity 2000\Windows]
"Display"="8 1"
"Color Check"=dword:00000000

How-to Install Webmin on a Raspberry Pi

To install Webmin on a Raspberry Pi running Raspbian, enter the following commenads in the terminal:
su
apt-get install -y perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.660_all.deb
dpkg --install webmin_1.660_all.deb

CME UF keyboard reset

To perform a hard reset on a CME UF series keyboard:
hold down the octave + and – buttons while powering it on.

This works on the UF50, UF, UF70 and UF80 (v2 too!)

Ubuntu Linux Kernel 3.11 installation guide

This short walkthrough describes how to install the linux kernel version 3.11  on Ubuntu Linux without having to compile it yourself.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

The source can be found on www.kernel.org

I will post the latest version of the 3.11 branch in comments below.

Installation Guide (GUI)

  1. Download the kernel headers package: linux-headers-3.11.0-031100_3.11.0-031100.201309021735_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. (Linux-headers-*all.deb, Linux-headers-*platform*.deb, Linux-image-*platform*.deb)
  5. In the terminal run:

    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

Installation Guide (terminal) for 32 bits

mkdir tmp
cd tmp
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100_3.11.0-031100.201309021735_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100-generic_3.11.0-031100.201309021735_i386.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-image-3.11.0-031100-generic_3.11.0-031100.201309021735_i386.deb
sudo dpkg -i *.deb
sudo update-grub

Installation Guide (terminal) for 64 bits

mkdir tmp
cd tmp
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100_3.11.0-031100.201309021735_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100-generic_3.11.0-031100.201309021735_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-image-3.11.0-031100-generic_3.11.0-031100.201309021735_amd64.deb
sudo dpkg -i *.deb
sudo update-grub

How-To Update WP-CLI

It`s very easy to update the WP-CLI tools, but its difficult to find how.

Enter the following lines in the terminal to update WP-CLI:

cd ~/.wp-cli
php composer.phar self-update
php composer.phar require 'wp-cli/wp-cli=@stable'