Ubuntu 9.10 Server: boot failure at clean install

If you get an error “no such device” at clean install:
error: no such device:
Failed to boot default entries.

At boot hold down the shift key, you will get the Grub menu.

In the grub menu press “e” to switch in edit mode.
Remove whole line starting with “search –nofloppy …”
Then Ctrl+X to boot.
Now system must start.

Then edit /usr/lib/grub/grub-mkconfig_lib file.

Find this finction:

prepare_grub_to_access_device ()

Comment this lines with “#” or remove it:

if fs_uuid="`${grub_probe} --device ${device} --target=fs_uuid 2> /dev/null`" ; then
echo "search --no-floppy --fs-uuid --set ${fs_uuid}"
fi

Save the file and run: “sudo update-grub” and restart. This works by me fine.

December 11th, 2009 Tags: , , , , ,

Windows 7. Kernel auf Port 80?

Hab grad probiert nginx auf meinem Windows-7-System zu starten, der stürtzte aber beim Start ab mit Socket-Fehler. Der Befehl netstat-ano und “bull’s-eye”: Der Prozess mit der ID 4 (Kernel) lauschte am Port 80.

Und hier die Lösung:

1) Erstmal RegEdit starten:
2) HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTP
3) Neues DWORD (32-bit) hinzufügen
4) in “NoRun” umbenennen (ohne “” natürlich)
5) Doppelklick auf “NoRun”
6) Im “Wert”-Feld “1″ (auch ohne “”) und OK klicken.
7) Rechner neu starten

Jetzt soll der 80-ger Port eigentlich frei sein.

September 29th, 2009 Tags: , , , , ,