Fujitsu F-07C >> x86

安裝Lubuntu


參考資訊:
1. f-07c

受限於F-07C的CPU速度,在F-07C上跑Win7系統顯得有點吃力,雖然CPU可以超頻到1.2GHz,不過發熱量卻實有點高,因此司徒開始尋找安裝Linux的方式,所幸有日本網友願意公開F-07C安裝Arch Linux的過程,雖然也有日本網友成功在F-07C上安裝WinXP系統,不過比較遺憾的是該網友並沒有公開WinXP的安裝過程,因為F-07C在沒重刷BIOS情況下是無法安裝WinXP系統,不然司徒一定會安裝WinXP系統,接著司徒就介紹一下如何在F-07C上安裝Lubuntu系統。

1. 製作Lubuntu USB開機片
2. 開機進入BIOS(F12)並選擇USB開機
3. 安裝Lubuntu系統
4. 安裝完成後,開啟Terminal並輸入如下指令建立資料夾

# 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. 設定螢幕亮度:0~4

# vim /etc/init.d/rc.local
  echo 0 | sudo tee /sys/class/backlight/acpi_video0/brightness

8. 設定音效裝置(可以使用Fn2 + 右鍵開啟Speaker)

# vim /etc/modprobe.d/snd_hda_intel.conf
  options snd-hda-intel enable_msi=0
  options snd-hda-intel model=auto

9. 設定最大CPU速度

# apt-get install linux-tools-*-generic linux-cloud-tools-*-generic
# vim /etc/default/cpupower
  governor='ondemand'
  min_freq="600 MHz"
  max_freq="1.20 GHz"

10. 完成

# reboot


返回上一頁