Posts

Showing posts from May, 2010

Raid in VirutalBox |Windows|virtualize|virtualbox

Image
Raid in VirtualBox For creating virtual image for VirtualBox, you have to follow the instructions of the program. After creating a hard drive, you can clone it to a second drive by the following command at the directory of “C:\Documents and Settings\Administrator.CNHGNT\.VirtualBox\HardDisks” (where “Administrator.CNHGNT” is my home directory). After that, you can use the drives for the RAID 1 : 1. create a new partition Ubuntu01.vdi 2. 3. Use Clone command to create the softraid for System 3.1 Cmd : set path=c:\program files\sun\virtualbox 3.2 Cmd vboxmange clonevdi ubuntu01.vdi ubuntu02.vdi 3.3 4. Now we have the fixed-disk.

Computer Skill, related Windows, VMware, Linux,

1, How to open VMware 128M memory, open the 3D acceleration, disable virtual memory? In the resulting virtual system files directory has a *. vmx file for the VMware configuration file, use notepad to open this file, add the following configuration line: Memory 128M (128 * 1024 * 1024) svga.vramSize = "134217728" Open 3d acceleration mks.enable3d = "TRUE" Disable Virtual Memory mainMem.useNamedFile = FALSE 2, WMP (Windows Media Player) an "internal application error" how to fix it? In some cases, the registered jscript.dll and vbscript.dll dynamic link library can be resolved. As follows: In order to run the operation: regsvr32 jscript.dll regsvr32 vbscript.dll Or will these two lines of code into *. bat batch file, double click to run. 3, how to create a Web page can automatically adjust the height of the iframe framework? 4, How to open the page in edit mode? A simple POC as follows: javascript: document.body.contentEditable = 'true'; document.d...