Changeset 28734 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Apr 26, 2010 9:03:55 AM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r28345 r28734 158 158 " [--name <name>]\n" 159 159 " [--ostype <ostype>]\n" 160 " [--memory <memorysize in M B>]\n"161 " [--vram <vramsize in M B>]\n"160 " [--memory <memorysize in MiB>]\n" 161 " [--vram <vramsize in MiB>]\n" 162 162 " [--acpi on|off]\n" 163 163 " [--ioapic on|off]\n" … … 234 234 " file <file>|\n" 235 235 " <devicename>]\n" 236 " [--guestmemoryballoon <balloonsize in M B>]\n"236 " [--guestmemoryballoon <balloonsize in MiB>]\n" 237 237 " [--gueststatisticsinterval <seconds>]\n" 238 238 ); … … 301 301 " [--iobackend buffered|unbuffered]\n" 302 302 " [--iocache on|off]\n" 303 " [--iocachesize <I/O cache size in M B>]\n"304 " [--iobandwidthmax <Maximum I/O bandwidth in M B>]\n"303 " [--iocachesize <I/O cache size in MiB>]\n" 304 " [--iobandwidthmax <Maximum I/O bandwidth in MiB/s>]\n" 305 305 #endif 306 306 ); … … 361 361 " nictracefile<1-N> <filename>\n" 362 362 #endif /* VBOX_DYNAMIC_NET_ATTACH */ 363 " guestmemoryballoon <balloonsize in M B>]\n"363 " guestmemoryballoon <balloonsize in MiB>]\n" 364 364 " gueststatisticsinterval <seconds>]\n" 365 365 " usbattach <uuid>|<address> |\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageImport.cpp
r26517 r28734 494 494 { 495 495 bstrFinalValue = strOverride; 496 RTPrintf("%2u: Guest memory specified with --memory: %ls M B\n",496 RTPrintf("%2u: Guest memory specified with --memory: %ls MiB\n", 497 497 a, bstrFinalValue.raw()); 498 498 } … … 502 502 } 503 503 else 504 RTPrintf("%2u: Guest memory: %ls M B\n (change with \"--vsys %u --memory <MB>\")\n",504 RTPrintf("%2u: Guest memory: %ls MiB\n (change with \"--vsys %u --memory <MiB>\")\n", 505 505 a, bstrFinalValue.raw(), i); 506 506 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r28434 r28734 1879 1879 RTPrintf("GuestMemoryBalloon=%d\n", guestVal); 1880 1880 else 1881 RTPrintf("Configured memory balloon size: %d M B\n", guestVal);1881 RTPrintf("Configured memory balloon size: %d MiB\n", guestVal); 1882 1882 } 1883 1883 if (details != VMINFO_MACHINEREADABLE)
Note:
See TracChangeset
for help on using the changeset viewer.