1. 製作Debian 7.0 LXDE USB開機片
2. 開機進入BIOS(F12)並選擇USB開機
3. 安裝Debian 7.0系統







4. 安裝完成後,開啟Terminal並輸入如下指令建立資料夾
# apt-get update # apt-get install xserver-xorg-video-fbdev xserver-xorg-video-modesetting linux-cpupower cpufrequtils # mkdir /etc/X11/xorg.conf.d
5. 新增螢幕配置檔案
# vim /etc/X11/xorg.conf.d/20-gpudriver.conf
Section "Device"
Identifier "gma500_gfx"
Driver "fbdev"
Option "Rotate" "CW"
EndSection
# vim /etc/X11/xorg.conf.d/40-monitor.conf
Section "Monitor"
Identifier "LVDS-0"
Option "Rotate" "right"
EndSection
# vim /etc/X11/xorg.conf.d/50-invertaxes.conf
Section "InputClass"
Identifier "Invert Touchscreen"
MatchProduct "FUJITSU FOMA F07C"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Option "SwapAxes" "true"
Option "InvertX" "false"
Option "InvertY" "true"
EndSection
6. 設定開機後執行:畫面旋轉、跳過SDIO WIFI驅動程式匹配、CPU速度
# vim /etc/default/grub
GRUB_CMDLINE_LINUX="fbcon=rotate:1 sdhci.debug_quirks=0x40 processor.ignore_ppc=1"
# grub-mkconfig -o /boot/grub/grub.cfg
7. 設定音效裝置(必須在Symbian模式下,使用Fn2 + 右鍵開啟Speaker)
# vim /etc/modprobe.d/snd_hda_intel.conf
options snd-hda-intel enable_msi=0
options snd-hda-intel model=auto
8. 設定最大CPU速度
# vim /etc/init.d/cpufrequtils
GOVERNOR='ondemand'
MIN_FREQ="600MHz"
MAX_FREQ="1.20GHz"
9. 完成
# reboot