sudo cp meiryo*.ttc /usr/share/fonts/truetype/
sudo xset fp rehash
2008年9月23日火曜日
2007年5月25日金曜日
beryl の 壁紙
$ gconf-editor
で設定エディタを起動する。
apps → nautilus → preferences → show Desktopdesktop → gnome → background → draw_background
のチェックを外す。
2007年5月19日土曜日
タッチスクリーン
以下のURLの通りに設定すれば稼働
http://www.conan.de/touchscreen/p-series.html
http://www.conan.de/touchscreen/p-series.html
- モジュールのコピー先
/usr/lib/xorg/module/input/ - スタートアップスクリプトの設定
update-rc.d stylus defaults 25 - setserialパッケージ追加
2007年5月11日金曜日
Keyringのパスワード変更要求を止める
起動するたびに、キーリングのパスワードが聞かれるので、以下のような感じで変更する。
注)ログインパスワードとKeyringのパスワードを一緒にすること。
# apt-get install libpam-keyring
# vi /etc/pam.d/gdm
注)ログインパスワードとKeyringのパスワードを一緒にすること。
# apt-get install libpam-keyring
# vi /etc/pam.d/gdm
auth optional pam_keyring.so try_first_pass
session optional pam_keyring.so
2007年5月10日木曜日
Bluetoothマウスの設定
まず、デバイスを検索する。
pown:~$ hcitool scan
以下のような感じで設定する。
pown:~# vi /etc/default/bluetooth
# start bluetooth on boot?
# compatibility note: If this variable is not found bluetooth will
# start
BLUETOOTH_ENABLED=1
############ HIDD
#
# To have Bluetooth mouse and keyboard support, get the
# Linux 2.6.6 patch or better from bluez.org, and set
# HIDD_ENABLED to 1.
HIDD_ENABLED=1
HIDD_OPTIONS="--connect 00:XX:XX:00:7F:37 --master --server"
# to make hidd always use a particular interface, use something
# like this, substituting the bdaddr of the interface:
# HIDD_OPTIONS="-i AA:BB:CC:DD:EE:FF --server"
#
pown:~$ hcitool scan
以下のような感じで設定する。
pown:~# vi /etc/default/bluetooth
# start bluetooth on boot?
# compatibility note: If this variable is not found bluetooth will
# start
BLUETOOTH_ENABLED=1
############ HIDD
#
# To have Bluetooth mouse and keyboard support, get the
# Linux 2.6.6 patch or better from bluez.org, and set
# HIDD_ENABLED to 1.
HIDD_ENABLED=1
HIDD_OPTIONS="--connect 00:XX:XX:00:7F:37 --master --server"
# to make hidd always use a particular interface, use something
# like this, substituting the bdaddr of the interface:
# HIDD_OPTIONS="-i AA:BB:CC:DD:EE:FF --server"
#
タッチパッドの真ん中ボタンの設定
赤のラインを追加する。
root@pown:~# sudo vi /etc/X11/xorg.conf
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "EmulateInertia" "50"
EndSection
root@pown:~# sudo vi /etc/X11/xorg.conf
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "EmulateInertia" "50"
EndSection
登録:
投稿 (Atom)