sudo gedit /etc/X11/xorg.conf
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
sabato 2 agosto 2008
domenica 22 giugno 2008
HDD or partition backup with dd
full hard disk copy
dd if=/dev/hdx of=/dev/hdy
dd if=/dev/hdx of=/path/to/image
dd if=/dev/hdx | gzip > /path/to/image.gz
Hdx could be hda, hdb etc. In the second example gzip is used to compress the image if it is really just a backup.
Restore Backup of hard disk copy
dd if=/path/to/image of=/dev/hdx
gzip -dc /path/to/image.gz | dd of=/dev/hdx
Getting around file size limitations using split
When making images, it's quite easy to run up against various file size limitations. One way to work around a given file size limitation is to use the split command.
# dd if=/dev/hda1 | gzip -c | split -b 2000m - /mnt/hdc1/backup.img.gz.
- This example is using dd to take an image of the first partition on the first harddrive.
- The results are passed through to gzip for compression
- The -c option switch is used to output the result to stdout.
- The compressed image is then piped to the split tool
- The -b 2000m switch tells split how big to make the individual files. You can use k and m to tell switch kilobytes and megabytes (this option uses bytes by default).
- The - option tells split to read from stdin. Otherwise, split would interpret the /mnt/hdc1... as the file to be split.
- The /mnt/hdc1... is the prefix for the created files. Split will create files named backup.img.gz.aa, backup.img.gz.ab, etc.
To restore the multi-file backup, do the following:
# cat /mnt/hdc1/backup.img.gz.* | gzip -dc | dd of=/dev/hda1
- Cat recombines contents of the compressed and split image files to stdout, in order.
- Results are piped through gzip for decompression.
- And are then written to the first partition of the hard drive with dd.
sabato 1 marzo 2008
Nuvexport + mythtv svn rev 16196
Lanciando Nuvexport mi si presentava questo errore:
This host not configured for myth.
(No RecordFilePrefix defined for kaos in the settings table.)
Ho risolto inserendo nella tabella settings il campo 'RecordFilePrefix' con questi valori:
INSERT INTO settings VALUES ('RecordFilePrefix', '/storage/mythtv/mythtv-video', 'kaos')
This host not configured for myth.
(No RecordFilePrefix defined for kaos in the settings table.)
Ho risolto inserendo nella tabella settings il campo 'RecordFilePrefix' con questi valori:
INSERT INTO settings VALUES ('RecordFilePrefix', '/storage/mythtv/mythtv-video', 'kaos')
domenica 17 febbraio 2008
Debian "ntpdate": Tenere aggiornato l'orario di sistema
"ntpdate" è una comoda utility che ci permette di tenere aggiornato l'orologio di sistema. Per avere sempre l'ora esatta e' molto comodo utilizzare il protocollo ntp. L'utilizzo di "ntpdate" è molto semplice
# ntpdate it.pool.ntp.org
E' possibile reperire una lista di server NTP a questo indirizzo: http://www.pool.ntp.org/zone/europe
# ntpdate it.pool.ntp.org
E' possibile reperire una lista di server NTP a questo indirizzo: http://www.pool.ntp.org/zone/europe
venerdì 15 febbraio 2008
Backup/restore MBR with Linux !
Il master boot record (MBR), nell'architettura dei PC IBM, è il settore di avvio che consiste nei primi 512 byte (mezzo kilobyte) dell'hard disk, che contiene la sequenza di comandi necessaria per l'avvio del sistema operativo. Il firmware di avvio contenuto nella ROM del BIOS carica ed esegue il master boot record. Il MBR di un disco di solito include la tabella delle partizioni, che è usata dal PC per caricare ed avviare il settore di avvio della partizione segnata come attiva. (fonte wikipedia)
Per effettuare il backup del master boot record dell'Harddisk basta utilizzare il comando "dd" :
# dd if=device of=mbr.bin bs=512 count=1
verrà creato un file mbr.bin contenente tutto il master boot record del disco.
Il device generalmente e' /dev/sda per HD sata, altrimenti /dev/hda per HD pata.
Per effettuare il restore:
# dd if=mbr.bin of=device bs=512 count=1
Verrà sovrascritto l'mbr con il contenuto del file mbr.bin
Per effettuare il backup del master boot record dell'Harddisk basta utilizzare il comando "dd" :
# dd if=device of=mbr.bin bs=512 count=1
verrà creato un file mbr.bin contenente tutto il master boot record del disco.
Il device generalmente e' /dev/sda per HD sata, altrimenti /dev/hda per HD pata.
Per effettuare il restore:
# dd if=mbr.bin of=device bs=512 count=1
Verrà sovrascritto l'mbr con il contenuto del file mbr.bin
martedì 12 febbraio 2008
XMLTV
XMLTV è corredato da un set di utility che ci permettono di scaricare la guida tv da svariati siti web.
Se vogliamo prelevare la guida tv italiana dobbiamo utilizzare il tool "tv_grab_it":
$ tv_grab_it --days 5 --slow --cache --cache-slow --errors-in-xml > guidatvita.xml
Se vogliamo prelevare la guida tv italiana e di altri canali europei
$ tv_grab_it --days 5 --slow --cache --cache-slow --errors-in-xml --backend skylife,mtvit,wfactory,searchch,boingtv,sitcom1 > guidatv.xml
Per caricare le guida nel DB ("mythconverg") di Mythtv utizziamo il tool mythfilldatabase:
$ mythfilldatabase --file SOURCEID ita.xml
SOURCEID corrisponde al numero della sorgente video (quella impostata su mythtv-setup) da utilizzare.
Se vogliamo prelevare la guida tv italiana dobbiamo utilizzare il tool "tv_grab_it":
$ tv_grab_it --days 5 --slow --cache --cache-slow --errors-in-xml > guidatvita.xml
Se vogliamo prelevare la guida tv italiana e di altri canali europei
$ tv_grab_it --days 5 --slow --cache --cache-slow --errors-in-xml --backend skylife,mtvit,wfactory,searchch,boingtv,sitcom1 > guidatv.xml
Per caricare le guida nel DB ("mythconverg") di Mythtv utizziamo il tool mythfilldatabase:
$ mythfilldatabase --file SOURCEID ita.xml
SOURCEID corrisponde al numero della sorgente video (quella impostata su mythtv-setup) da utilizzare.
domenica 10 febbraio 2008
Gestione runlevel e servizi su Debian
Ho trovato due programmini molto utili per la gestione dei servizi:
Un'alternativa alla gestione manuale dei servizi su linux.
- sysv-rc-conf
- rcconf
Un'alternativa alla gestione manuale dei servizi su linux.
Iscriviti a:
Post (Atom)