jeudi 22 octobre 2009

Lire une iso de dvd video

Lire une iso de DVD vidéo.


mplayer dvd://1 -dvd-device FICHIER.ISO


Note : après, tout les racourcis de mplayer fonctionnent évidement.
Pour changer les sous-titres, par exemple, ce sera la touche "j".


Shortcuts mplayer

mercredi 21 octobre 2009

Bash "bind" command for defining keyshortcuts

http://www.geocities.com/h2428/petar/bash_bind.htm

On y trouve entre autre :


# Now map xterm's alternative keybindings to existing functionality
# Some are simple translations to correspontend M- combinations
# ctrl+left/right arrows:
bind '"\e\x5b\x31\x3b\x35\x44"':backward-word
bind '"\e\x5b\x31\x3b\x35\x43"':forward-word
# alt+b/f:
bind '"\xe2"':'"\M-b"'
bind '"\xe6"':'"\M-f"'
# atl+backspace:
bind '"\xff"':backward-kill-word
# alt+'.':
bind '"\xae"':yank-last-arg
# alt+k:
bind '"\xeb"':"\"\M-k\""
# alt+w:
bind '"\xf7"':'"\M-w"'

mercredi 14 octobre 2009

mount iso image via loopback under NetBSD

Mounting



# vnconfig vnd0 image.iso
# mount -t cd9660 /dev/vnd0a /mnt


Unmounting



# umount /mnt
# vnconfig -u vnd0



(Found here)