Grub installation

Everytime I have to look up how to install grub after the mbr got messed up. Therefor here a link to speed up the process… Manual page of Grub about grub-install The important part is the line mount -t ext2 /dev/hda1 /mnt grub-install –root-directory=/mnt...

Save and Restore MBR and Partition

Recently I had a problem with my Windows Installation on the second disk which writes its own MBR in the disk. I had reinstalled Windows and several applications but after one day of work and one of those reboots the computer only reponded with the message “no...

Bilder nach png oder pdf konvertieren

Bilder mithilfe der geeigneten Tools in png oder pdf umwandeln eps2png-all.sh #!/bin/sh for file in $(ls *.eps); do eps2png -png -resolution=300 $file ; done eps2pdf-all.sh #!/bin/sh for file in $(ls *.eps); do epstopdf $file ; done svg2pdf inkscape -E...