
This is in a separate post to make finding answers easier later.
Problem: Switching between virtual terminals with the typical Ctrl+alt+F1 (or other function key) doesn't work.
Solution: Use Ctrl+
Fn+Alt+F1 (or other function key)
Problem: Screen brightness set to 0% at boot
Temporary Fix: use the brightness control on the keyboard. No need to use the Fn key to get the brightness to work, just hit F3 a couple of times while booting. This works with the Live CD as well.
Solution: Enter this into a terminal without the quotations of course -
1) "
cd /etc/init.d"
2) "sudo gedit local"
3) If you already have some commands in this file from one of my other tutorials then just add this code. If not just add this line "echo 5 > /sys/class/backlight/acpi_video0/brightness"
4) Now add the exit code: "exit 0" <--that is 'exit ZERO'
5) Exit gedit, saving your work
6) "sudo chmod +x ./local"
7) "sudo update-rc.d local defaults 80"
8) Enjoy the lack of a black screen.
A quick explanation of what this little code does and a warning for the new users!
Ensure that you follow the first step! This command will enable you to fix the system if this breaks anything. Simply do a "sudo cp /etc/rc.local.org /etc/rc.local".
The explanation of this code:
sudo = Run code as root
echo -e = output text that follows and execute escape characters
"#!/bin/s...rc.local" = File text that will tell the computer to set the backlight to 30% brightness at start. Change the 3 to a value up to 10 if you'd like it brighter or darker.
Some more in depth reference material:
Sudo - http://linux.about.com/od/commands/l/blcmdl8_sudo.htm
Echo - http://linux.about.com/library/cmd/blcmdl1_echo.htm
Escape Characters - http://steve-parker.org/sh/escape.shtml
Thats all for today. Tomorrow I'll be working on the erratic clickpad.