VirtualBox: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 39: Line 39:


==References==
==References==
{|
| valign="top" |
* [https://support.microsoft.com/en-us/help/926139/windows-powershell-1-0-english-language-installation-packages-for-wind Windows PowerShell 1.0 for Windows Server 2003 & Windows XP]
* [https://support.microsoft.com/en-us/help/926139/windows-powershell-1-0-english-language-installation-packages-for-wind Windows PowerShell 1.0 for Windows Server 2003 & Windows XP]
* [https://support.microsoft.com/en-us/help/968929/windows-management-framework-windows-powershell-2-0-winrm-2-0-and-bits Windows PowerShell 2.0, WinRM 2.0, and BITS 4.0]
* [https://support.microsoft.com/en-us/help/968929/windows-management-framework-windows-powershell-2-0-winrm-2-0-and-bits Windows PowerShell 2.0, WinRM 2.0, and BITS 4.0]
Line 49: Line 51:
* [http://www.vagrantbox.es/  A list of base Boxes]
* [http://www.vagrantbox.es/  A list of base Boxes]
* [https://app.vagrantup.com/rogeriopradoj/boxes/xp-ie8 Example Vagrantfile]
* [https://app.vagrantup.com/rogeriopradoj/boxes/xp-ie8 Example Vagrantfile]
| valign="top" |
* [https://www.vagrantup.com/intro/vs/docker.html Vagrant vs. Docker]
* [https://www.vagrantup.com/intro/vs/docker.html Vagrant vs. Docker]
* [https://github.com/WinRb/vagrant-windows Vagrant Windows]
* [https://github.com/WinRb/vagrant-windows Vagrant Windows]
* [https://www.vagrantup.com/intro/getting-started/index.html Getting Started]
* [https://www.vagrantup.com/intro/getting-started/index.html Getting Started]
* [https://gist.github.com/kuznero/576e848c39080745ac1915c6b3e4820b Compact VDI]
* [https://gist.github.com/kuznero/576e848c39080745ac1915c6b3e4820b Compact VDI]
* [[Qemu]]
| valign="top" |
|-
| valign="top" colspan="3" |
----
|-
| valign="top" |
| valign="top" |
| valign="top" |
|}

Revision as of 09:29, 12 June 2022

  1. Run defrag in the Windows Guest
  2. Nullify free space:

Linux Guest

sudo dd if=/dev/zero | pv | sudo dd of=/bigemptyfile bs=4096k
sudo rm -rf /bigemptyfile

OR

telinit 1
mount -o remount,ro /dev/sda1
zerofree -v /dev/sda1

Windows Guest

cleanmgr
del C:\Windows\SoftwareDistribution\Download
del C:\Windows\Temp
del C:\Documents and Settings\<user>\Local Settings\Temp
del C:\Windows\$Nt*Uninstall*
rem http://cdn.chorke.org/soft/winx/sdelete/sdelete.zip
sdelete.exe c: -z
sdelete.exe d: -z

Compact

VBoxManage modifyhd xp-msql-box.vdi --compact
VBoxManage modifyhd xp-base-box.vdi --compact

OR

VBoxManage.exe modifymedium --compact xp-base-box.vdi 
VBoxManage modifymedium --compact xp-base-box.vdi 
vboxmanage modifymedium --compact xp-base-box.vdi

References