VirtualBox: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 43: Line 43:


  '''virtualbox before start'''
  '''virtualbox before start'''
sudo systemctl stop    libvirt-guests.service
sudo systemctl disable libvirt-guests.service
  sudo systemctl stop    virtlogd.socket
  sudo systemctl stop    virtlogd.socket
  sudo systemctl stop    virtlogd.service
  sudo systemctl stop    virtlogd.service
Line 73: Line 76:
* [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]
* [[Proxmox]]
* [[Qemu]]
* [[Qemu]]



Latest revision as of 08:17, 29 November 2023

  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

Knowledge

sudo apt install -y cpu-checker
kvm-ok
virtualbox before start
sudo systemctl stop    libvirt-guests.service 
sudo systemctl disable libvirt-guests.service

sudo systemctl stop    virtlogd.socket
sudo systemctl stop    virtlogd.service
sudo systemctl disable virtlogd.service

sudo systemctl stop    libvirtd.socket
sudo systemctl stop    libvirtd.service
sudo systemctl disable libvirtd.service

sudo systemctl enable  virtualbox.service
sudo systemctl start   virtualbox.service

References