mount iso image
2008年08月01日 (freebsd)
command
# mdconfig -a -f image.iso md1 # mount -t cd9660 /dev/md1 /mnt
note
mdconfig
-a : 与えられたパラメータでメモリディスクを設定,システムにアタッチ.
-f image.iso : イメージファイルを指定.
mount
-t cd9660 : CDイメージなのでファイルタイプにCDと同じcd9660を指定.
cf.
% man mdconfig
% man mount_cd9660
PR
console bell settings
2008年08月01日 (freebsd)
command
% kbdcontrol -b off # bell off % kbdcontrol -b on # bell on % kbdcontrol -b visual # visual bell
note
/etc/rc.confにkeybell="off"の記述があれば起動時に有効になる. cf. % man kbdcontrol % man rc.conf
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
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