戻る

Ubuntu 10.10 (Maverick Meerkat) 関係

下記の内容は,色々と試行錯誤したうち,成功したと思われる結果のみを挙げています. そのため,下記の内容通りに行っても期待される結果が得られない場合もあると思います. 従って,このページの内容については私の保証するところではありませんので,各自の責任でお願いします.

Ubuntu インストール (VAIO P VPCP11ALJの場合)

■インストール
Ubuntu 10.10 Desktop 日本語 Remix CD を使用。
USB スタートアップ・ディスクを作ってインストールする。
起動時に[F6]キーを押して、次のオプションをチェックする。
 acpi=off
また、次を追記する。
 i8042.reset i8042.nomux i8042.nopnp i8042.noloop

上記を設定しないと、スティックポインタを認識してくれない。
参考:VAIO P に ubuntu 10.4 入れたときのメモ

インストール後は
・ディスプレイの輝度はコントロールできない。
・音が出ない。

再起動するとキーボードを認識しないので、
/etc/default/grub に次を追記する。

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.reset i8042.nomux i8042.nopnp i8042.noloop"

次で有効化
> sudo update-grub

■ビデオドライバ

> sudo add-apt-repository ppa:gma500/ppa && sudo apt-get update && sudo apt-get install poulsbo-driver-3d

参考:Hardware Support Components Video Cards Poulsbo

これで、音が出て、輝度の調整もできるようになった。

■Two Finger Scroll
参考:http://www.thinkwiki.org/wiki/How_to_configure_the_TrackPoint#xorg.conf.d
> sudo vi /usr/share/X11/xorg.conf.d/20-thinkpad.conf

Section "InputClass"
	Identifier	"Trackpoint Wheel Emulation"
	MatchProduct	"PS/2 Generic Mouse"
	MatchDevicePath	"/dev/input/event*"
	Option		"EmulateWheel"		"true"
	Option		"EmulateWheelButton"	"2"
	Option		"Emulate3Buttons"	"true"
	Option		"XAxisMapping"		"6 7"
	Option		"YAxisMapping"		"4 5"
	Option		"ZAxisMapping"		"4 5"
EndSection

Ubuntu インストール (VAIO Type P VGN-P91NS の場合)

■インストール
Ubuntu 10.10 Desktop 日本語 Remix CD を使用。
USB スタートアップ・ディスクを作ってインストールする。
起動時に[F6]キーを押して、次のオプションをチェックする。
 acpi=off

インストール後は
usb, usb メモリ, メモリースティックを認識しない。
 (2010/10/27 のアップデートで解消しました。)
・ディスプレイの輝度はコントロールできない。
・解像度がちゃんと1600x768になっている。
 ただし、psbドライバが入っているわけではない。

■ビデオドライバ
参考:Hardware Support Components Video Cards Poulsbo


compizには対応しましたが、相変わらずNormal Video Playback (Xv)に未対応。

■Two Finger Scroll
参考:http://www.thinkwiki.org/wiki/How_to_configure_the_TrackPoint#xorg.conf.d
Lucidとはフォルダが変わってます。
> sudo vi /usr/share/X11/xorg.conf.d/20-thinkpad.conf

Section "InputClass"
	Identifier	"Trackpoint Wheel Emulation"
	MatchProduct	"PS/2 Generic Mouse"
	MatchDevicePath	"/dev/input/event*"
	Option		"EmulateWheel"		"true"
	Option		"EmulateWheelButton"	"2"
	Option		"Emulate3Buttons"	"true"
	Option		"XAxisMapping"		"6 7"
	Option		"YAxisMapping"		"4 5"
	Option		"ZAxisMapping"		"4 5"
EndSection


■ホームディレクトリの日本語フォルダを英語にする

> LANG=C xdg-user-dirs-gtk-update

■パスの追加
~/.bashrcに次を追加

PATH="$PATH":~/sh

■Skype
次をリポジトリ(/etc/apt/sources.list)に追記する。

## Repository for Skype
deb http://download.skype.com/linux/repos/debian/ stable non-free
で,
> sudo apt-get update
> sudo apt-get install skype



戻る