make iso
mkisofs -dvd-video -o dvd.iso /media/dvd
burn DVD
growisofs -dvd-compat -Z /dev/hdc=dvd.iso
growisofs -dvd-compat -Z /dev/dvdrw=DVD.iso
Thursday, May 31, 2007
Linux make iso file
linux command grep tee cat
grep 'macropulse' output* | tee -a /dev/tty macropulse.txt
grep pattern 'macropulse' all files with name output* Then, print the info on screen (/dev/tty) and write the info into a file macropulse.txt (-a option means don't overwrite the file).
grep -n 'macropulse\|noise' output* | tee /dev/tty macropulse.txt
-n option means with line number; 'macropulse\|noise' means two patterns 'macropulse' and 'noise'.
grep pattern 'macropulse' all files with name output* Then, print the info on screen (/dev/tty) and write the info into a file macropulse.txt (-a option means don't overwrite the file).
grep -n 'macropulse\|noise' output* | tee /dev/tty macropulse.txt
-n option means with line number; 'macropulse\|noise' means two patterns 'macropulse' and 'noise'.
Tuesday, May 29, 2007
Subscribe to:
Posts (Atom)