VMWare: Unterschied zwischen den Versionen

Aus AmIHereWiki
Zur Navigation springen Zur Suche springen
K (+ SSD tipps)
K (+TOC)
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 1: Zeile 1:
__TOC__
== Linux ==
== Linux ==
Time synchronization, add to kernel boot line:  
Time synchronization, add to kernel boot line:  
Zeile 14: Zeile 15:


*http://blogs.zdnet.com/perlow/?p=9190
*http://blogs.zdnet.com/perlow/?p=9190
=== Schritte bei Fehlermeldung: "WARNING: Unable to open an initial console." ===
Als Root:
cd /
mkdir /test
mount --bind / /test
cd /test/dev
Die vorhandenen Dateien "console" und "null" am besten vorher löschen, sicher ist sicher.
mknod -m 660 console c 5 1
mknod -m 660 null c 1 3
cd /
umount /test
rmdir /test

Aktuelle Version vom 30. Juli 2008, 15:28 Uhr

Linux

Time synchronization, add to kernel boot line:

Linux kernel 2.6: "clocksource=vmi-timer nolapic noapic" 
Linux kernel 2.4: "clock=pmtmr nolapic noapic" (not checked)

Solid State Disks / VMware Drives

hdparm -W0 /dev/sda
echo noop > /sys/block/sda/queue/scheduler

grub->menu.lst "elevator=noop"

ext2 with noatime

Schritte bei Fehlermeldung: "WARNING: Unable to open an initial console."

Als Root:

cd /
mkdir /test
mount --bind / /test
cd /test/dev

Die vorhandenen Dateien "console" und "null" am besten vorher löschen, sicher ist sicher.

mknod -m 660 console c 5 1 
mknod -m 660 null c 1 3
cd /
umount /test
rmdir /test