See http://www.if-not-true-then-false.com/2010/install-google-chrome-with-yum-on-fedora-red-hat-rhel/
Raspberry Pi /boot/config.txt for LG E2341 monitor
Each time I setup a new Pi or SD Card, I have to go back and find what /boot/config.txt settings I used last time to get HDMI working with my LG 2341 monitor, so for reference (ymmv), here’s the settings I uncommented or added:
hdmi_force_hotplug=1
hdmi_group=1
hdmi_mode=16
hdmi_drive=2
Raspbian – force a fsck on reboot
Neat tip to force a fsch on the root partition on next reboot (from: http://raspberrypi.stackexchange.com/questions/3289/checking-sdcard-for-errors-unmount-problem )
sudo touch /forcefsck
Scheduling scripts to run at boot on Raspbian (Raspberry Pi)
There’s always a dozen ways to do anything on Linux, and I was looking for a quick and easy way to run a script at startup on Raspbian on a Raspberry Pi.
I found this post:
http://raspberrypi.stackexchange.com/questions/8734/execute-script-on-start-up
which has a number of good suggestions, but the quickest and easiest approach is probably to add a @reboot entry to crontab, as suggested in this post here.
