von pospiech | März 11, 2007 | Linux
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...
von pospiech | März 11, 2007 | Linux
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...
von pospiech | März 10, 2007 | Linux
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...