Installation of Linux and scripted OS configuration is described at Download Helper Files.
For laptops and netbooks, the workspace type may default to Netbook. This is changed as follows:
Add an improved system menu and multi-workspace paging as follows:
Change default editor in KDE with the command:
sudo update-alternatives --config editor
Change default editor when opening files in Dolphin:
#. display current keyboard state (1=off, 2=on):
cat /sys/module/hid_apple/parameters/fnmode
#. set keyboard state to 2 (on):
echo 2 | sudo tee /sys/module/hid_apple/parameters/fnmode
#. make the configuration change permanent version 1 (not working on Mint 12):
sudo touch /etc/sysfs.conf
sudo bash < <(echo 'echo "module/hid_apple/parameters/fnmode = 2" >> /etc/sysfs.conf')
#. make configuration change permanent, version 2
#. still working on this, as it must come before "exit 0":
sudo bash < <(echo 'echo "echo 2 > /sys/module/hid_apple/parameters/fnmode" >> /etc/rc.local')
References: