---- [[TableOfContents(1,2)]] = Ubuntuを入れよう = 素のUbuntuをインストールしても、無線LANが使えないとか画面サイズを正しく認識しないとか、いろいろ不都合がある。 ネットを探せばそれぞれ個別に対処方法は見つかるが、一つ一つの問題をちまちま解決して行くのも面倒。 という訳で、[http://simosnet.com/livecdroom/ ライブCDの部屋]で配布しているEeePC向けのカスタム・ディストリビューションを使用する。 Xubuntuベースのものと、素のUbuntuベースのものがあるが、ここでは素のUbuntuベースのeeeUbuntuを選択。 eeeUbuntuには、ほとんど全てのEeePC向けFIXが既に組み込まれているので、インストール直後から快適に使える。素晴らしい! == インストール後にやったこと == * 起動時間の向上 * {{{/boot/grub/menu.lst}}}の{{{defoptions=}}}に{{{clocksource=hpet}}}を追加、そして{{{update-grub}}}実行 * リジューム後にサウンドが出なくなる問題FIX(後述) * {{{/tmp}}}および{{{/var/tmp}}}をtmpfsにする * {{{/usr}}}をSDカード上のパーティションに移す * サスペンドするとリジュームできない問題がある * {{{/}}}や{{{/usr}}}などのマウントオプションに{{{noatime}}}を追加 == デスクトップのアイコン == * 「アプリケーション」→「システムツール」→「設定エディタ」 * 「設定エディタ」がメニュー項目に無い場合は、「メニューの編集」で項目に追加 * [apps]→[nautilus]→[desktop]を選択、右の一覧で設定 == 隠しパネルのサイズ == * 「設定エディタ」で、[apps]→[panel]→[toplevels]→[top_panel_screen0]を選択 * auto_hide_size で変更 == CPU周波数の設定 == {{{ /usr/local/bin/scripts/cpufreqset }}} {{{ cpufreq-set -d 113MHz }}} {{{ cpufreq-set -u 900MHz }}} == Audio after suspend/resume == For some reason the sound doesn't always come back after resuming on EeePc 90x hardware. Alsa needs to be instructed to specifically suspend and resume its own modules before the OS does. (Note: this doesn't appear to be a problem under EeePc 70x hardware, or for Gutsy, however I cannot confirm :) Warning: After applying this hack you may see a warning message after resuming that says the gnome-mixer has quit unexpectedly. Just click the reload button each time, or hit cancel to remove the applet. Currently there is no work-around to this problem. Note: This may not be a 100% solution. After the resuming, the sound device tests work (System –> Preferences –> Sound), audio on applications like Skype work, but the Gnome 'System Sounds' still do not work after resuming even after reloading the mixer (e.g. the 'logout' sound no longer plays). If you log out and log back in again (no reboot needed), the 'System Sounds' do come back, so perhaps some other Gnome item also needs to be restarted. '''Step 1''': Modify {{{/etc/default/alsa}}} and change {{{“force_unload_modules_before_suspend”}}} to {{{ force_unload_modules_before_suspend="snd-hda-intel" }}} '''Step 2''' : Create {{{/usr/lib/pm-utils/sleep.d/45sound}}} {{{ #!/bin/bash if [ ! -x /sbin/alsa ]; then exit 0; fi case "$1" in hibernate|suspend) /sbin/alsa suspend ;; thaw|resume) /sbin/alsa resume ;; *) ;; esac exit $? }}} '''Step 3''' : Make {{{/usr/lib/pm-utils/sleep.d/45sound}}} executable {{{ $ sudo chmod +x /usr/lib/pm-utils/sleep.d/45sound }}} == Root on SD/SDHC card Gnome keyring problem == (solution provided by knox) The Bug [https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/218434 #218434] only affect systems running their root filesystem from an external device - such as the eeePC's SD-card reader. Therefore i have adapted one of the given workarounds by making use of the hal policy mechanism: {{{ $ sudo mousepad /etc/hal/fdi/policy/removable_root_fix.fdi }}} {{{ false }}} {{{ $ sudo invoke-rc.d hal restart }}} It perfectly resolves the issue for me. == イーモバイル D02HW == 「ネットワークの設定」ツールで「PPP接続」のプロパティを開き、以下の設定を行う。 * 「全般」タブ * 「この接続を有効にする」をチェック * 「接続の種類」はシリアルモデム * 「電話番号」{{{*99***1#}}} * 「ダイアルの接頭文字」は空 * 「ユーザ名」{{{em}}} * 「パスワード」{{{em}}} * 「モデム」タブ * 「モデムのポート」{{{/dev/ttyUSB0}}} * 「ダイアルの種類」トーン * 「音量」任意 * 「オプション」タブ * 「モデムをインターネットのデフォルト・ルートにする」をチェック * 「ISPが提供するネームサーバを利用する」にチェック 再起動すると、ネットワーク管理アプレットで「ダイアルアップ接続」のメニューが使えるようになる。 '''Jaunty Jackalopeでは以下''' * {{{/usr/share/hal/fdi/information/10freedesktop/10-modem.fdi}}}編集 * Huawei E220の定義を[[BR]] {{{GSM-07.07}}}[[BR]] {{{GSM-07.05}}}[[BR]] から[[BR]] {{{IS-707-A}}}[[BR]] に変更。 ---- カテゴリー:技術