Fujitsu F-07C >> x86

安裝Xubuntu


參考資訊:
1. f-07c

雖然Lubuntu系統在F-07C上跑的蠻順暢,不過顯示畫面卻是有點刺眼,這種現象就如同在OpenPandora上安裝Debian(LXDE)與Debian(XFCE4)一樣,相較於Lubuntu系統,XFCE4也是一個相當不錯的桌面環境,因此,司徒打算安裝Xubuntu系統試試。

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

# mkdir /etc/X11/xorg.conf.d

5. 新增螢幕配置檔案

# vim /etc/X11/xorg.conf.d/20-gpudriver.conf
  Section "Device"
    Identifier "gma500_gfx"
    Driver "modesetting"
  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


返回上一頁