console key repeat speed
2008年08月01日 (freebsd)
command
% kbdcontrol -r fast # key repeat fast % kbdcontrol -r normal # key repeat normal % kbdcontrol -r slow # key repeat slow
note
/etc/rc.confにkeyrate="fast"と記述していれば起動時に有効になる. cf. % man kbdcontrol
PR
mount usb flash memory
2008年08月01日 (freebsd)
command
# mount -t msdosfs /dev/da1s1 /mnt # mount # mount_msdosfs /dev/da1s1 /mnt # mount # umount /mnt # unmount
note
cf. % man mount % man umount % man mount_msdosfs
locale
2008年08月01日 (freebsd)
| 環境変数 | 説明 |
|---|---|
| LANG | 全てのlocaleの一括設定,LC_*によってオーバーライドされる |
| LC_COLLATE | 文字列のソート順 |
| LC_CTYPE | 文字エンコーディング |
| LC_MESSAGES | メッセージ |
| LC_MONETARY | 通貨単位 |
| LC_NUMERIC | 数値単位 |
| LC_TIME | 日付,時刻 |
| LC_ALL | 全てのlocaleの一括設定,LC_*を全てオーバーライドする |
note
利用可能な全てのロケールを一覧表示するには以下のようにする. % locale -a
console bell on/off
2008年08月01日 (freebsd)
command
# sysctl -w hw.syscons.bell=0 # bell off # sysctl -w hw.syscons.bell=1 # bell on
note
settermコマンドはFreeBSDでは使用不可 cf. % man sysctl