Prepare a VirtualBox Image for Sharing

I prepared a virtual machine image for a course in the uni. The last stage – cleanup, is less trivial than I expected. I’ll take some notes, before I forget. This could serve as a checklist.

This is a Debian 11 guest system

Install all the packages you need

this is specific to the task, nothing to notable here. except for this one:

(Optionally) Install Virtual Box
the VirtualBox guest additions provide better integration of host/guest, including mouse grabbing, auto scaling etc.. and also file sharing. Follow the link [1] to install proper packages.

Additionally, to enable file sharing, in the guest OS:

sudo adduser <username> vboxsf

clean things up in the Guest

(Optionally) set package sources to non-free

in /etc/apt/sources.list, set package sources to main contrib non-free and do apt update, apt dist-upgrade

Remove unused packages

for example:

apt purge $( dpkg -l|fgrep libreoffice|awk '{print $2}' ) gimp libgimp2.0 \
gimp-help-common gimp-data openjdk-11-jre-headless fonts-noto-cjk \
fonts-noto-extra aspell wpolish &&\
apt autoremove &&\
apt clean

Remove old kernels
Debian keeps the old kernels when updating to new ones. It makes no sense to keep them in the VM Image:

  1. find the current kernel version (to keep) with uname -a
  2. list installed kernels, and the headers: dpkg --list | egrep 'linux-image|linux-headers'
  3. remove the old ones with sudo apt --purge remove <things>, if apt autoremove doesn’t do it for you.

Clear browser cache
Do whatever you need..

Clear journald logs

sudo journalctl --rotate
sudo journalctl --vacuum-time=1s

Clear bash history

cat /dev/null > ~/.bash_history && history -c && exit

Trim down the Image

zerofree
if you use a virtual disk (.vdi) for your guest VM, the .vdi disk doesn’t shrink even if you delete things in the guest fs. Because remove only means they are unlinked. The data is still there if you don’t explicitly free them.

For this you need the zerofree (install with package manager).

reboot into recovery mode (by selecting Advanced Options) in the grub startup menu. Use root password to log in (you may not see the prompt..just type in the password), stop journald service and swap (because they make your disk busy):

systemctl stop systemd-journald.socket
systemctl stop systemd-journald.servide
swapoff -a 0v

remount the root:

mount -o remount,ro /

free up disk (in this case, /dev/sda1) and shutdown

zerofree -v /dev/sda1
sync
poweroff

compress .vdi drive Go to the virtual machine directory (where the virtual disk file lives)

vboxmanage modifymedium --compact NAME-OF-DRIVE.vdi
Apr 4, 2023


[+] click to leave a comment [+]
the comment system on this blog works via email. The button
below will generate a mailto: link based on this page's url 
and invoke your email client - please edit the comment there!

[optional] even better, encrypt the email with my public key

- don't modify the subject field
- specify a nickname, otherwise your comment will be shown as   
  anonymous
- your email address will not be disclosed
- you agree that the comment is to be made public.
- to take down a comment, send the request via email.

>> SEND COMMENT <<




Voice? via Blog on luis.zip January 12, 2024

Who is the voice inside my head? I have a voice in my mind. I’m hearing it now. It dictates what I write. Sometimes when I think about something, it speaks to me as if it were not me, as if it were not a product of the imagination that belongs to my domain…

2023 in Books via Wesley's Notebook January 7, 2024

recently ~ august23 via Sindre Kjelsrud September 5, 2023

what i've been doing during the month of august.

Generated by openring from webring