Merge VirtualBox Snapshots via Bash Script

Use case

My backup script automatically creates daily snapshots of each VM images (for incremental backups). Thus I have a huge amount of snapshots after a while. Unfortunately the VirtualBox-UI does not provide a method of removing/mergin all snapshots at once.

Solution

So I wrote a small script that is doing this job for me (and configured it via cronjob to be run once a week).
The code must be executed as sudo.

# Hello World
echo '========================================'
echo '= THIS SCRIPT COMES WITH NO WARRANTY   ='
echo '= Bash version '${BASH_VERSION}'       ='
echo '= [CTRL] + [Z] to kill process         ='
echo '========================================'

# Exit with message and error code
function failure() {	
	echo ''
	echo 'ERROR:'$1
	echo ''
	exit 1
}

# Check whether this script got called as super user. If not, we can not 
# proceed.
if [ "$(whoami)" != "root" ]; then
	failure 'Aborting: You must be root to execute this script.'
fi
  
# Get all users
declare -a users 	
tmp_users="$( getent passwd | grep /home/ | cut -d ':' -f 1 )"
for u in ${tmp_users}; do
	tmp_dir="/home/${u}"
	if [ -d "$tmp_dir" ]; then
		users+=(${u})
	fi
done	

# Do delete/merge all snapshots
for ((i=0;i<${#users[@]};i++)); do

	echo "> Processing user: ${users[i]}"

	# Get all installed VMs
	vms=$(su -c "VBoxManage list vms | sed -E 's/^\"(.*)\".*/\1/g'" -s /bin/sh ${users[i]})

	# Create new snapshot of each
	for vm_name in $vms; do 
		
		echo "> > Processing VM ${vm_name}.."

		# Loop through each snapshot and delete/merge it
		snapshots=$(su -c "VBoxManage showvminfo ${vm_name} --machinereadable | grep SnapshotName | cut -d '\"' -f2" -s /bin/sh ${users[i]})
		for snapshot_name in $snapshots; do 
			echo "> > > Merging snapshot: ${snapshot_name}.."
			snapshots=$(su -c "VBoxManage snapshot ${vm_name} delete ${snapshot_name}" -s /bin/sh ${users[i]})
		done
	done
	
done

Conclusion

The script tries to remove all snapshots of all images of all users.
In VirtualBox terms “removing an snapshot” actually means that they get merged into the main virtual file – without any loss of data.

 

Tagged with: , ,
Posted in Ubuntu, VirtualBox
18 comments on “Merge VirtualBox Snapshots via Bash Script
  1. Oman’s growing infrastructure and real estate sectors have driven demand for high-quality HVAC solutions, making duct manufacturers an essential part of the supply chain. These companies specialize in the production of various ducting systems including GI (galvanized iron), pre-insulated, flexible, and stainless steel ducts, catering to residential, commercial, and industrial projects.

    https://airmasteroman.com/

  2. Airmaster is one of the best suppliers of HVAC and Air Ducting Products like Grilles & Registers, Diffusers, Dampers, Louvers, Fire Doors and Frames, Fire Dampers, Sheet Metal Ducting, Vav & Silencer, Aluminum Ducts, Fire Rated Duct, Slotted Channels, HVAC Flexible Duct, Pressure Independent VAV(Variable Air Volume Terminals), Sound Attenuators, Ducting Accessories and Anti-Covid Products in Sri Lanka.

  3. The Family Hotel Apartment Dubai at Royal Continental Suites offers a luxurious stay with stunning views of the Dubai Canal. As you step into the spacious hotel apartment, you are greeted by modern furnishings and elegant decor, creating a warm and inviting atmosphere for your family to relax in.

  4. Whether you are traveling with young children or extended family members, these family hotel apartments offer plenty of room for everyone to relax and unwind after a day of exploring all that Dubai has to offer. With easy access to shopping malls, restaurants, and cultural attractions, Royal Continental Suites is the perfect base for your next vacation in this vibrant city.

  5. If you are looking for a Luxury 4-star hotel near Dubai International Airport, near to Deira City Centre, near to Dubai Metro, Royal Continental Hotel is the best option for you. Royal Continental Hotel Dubai is the Best Luxury Business Hotel in Dubai which offers the Best Affordable stay in Dubai, UAE.

  6. Airmaster Oman is one of the best suppliers of HVAC and Air Ducting Products like Grilles & Registers, Diffusers, Dampers, Louvers, Fire Doors and Frames.
    ——————

  7. Whether you’re stopping over in Dubai for a few hours or facing a long overnight layover, an airport hotel in Dubai is the perfect solution for convenience, rest, and rejuvenation. Airport hotels are tailored to travelers who need a quick, hassle-free place to rest before continuing their journey. You avoid the stress of traffic, the time lost in transit to city hotels, and the risk of missing early flights.

  8. We are Leading HVAC Product Manufactures & suppliers in Oman who supplies quality, reliable and affordable HVAC products for building equipped with central air conditioning system.

  9. Double deflection register are generally used in walls for supply / return HVAC applications. The frame and blades are of high quality extruded aluminum …

  10. It is easy to work in fabricating and thermoforming. XLPE foams work well in the building and construction industry where thermal insulation, sound and vibration are critical, due to its low moisture permeability and high buoyancy.

  11. Are you not in a position to drive your car? Hiring a safe driver Dubai is the best thing to do if you are in Dubai and Awesome Drive is the best safe Driver Company. Awesome Drive welcomes you to a chauffeur-driven service. It is a driver company operating in Dubai.

  12. Looking for the perfect family getaway in Dubai? Look no further than the Family Hotel Apartment with Burj Khalifa view at Royal Continental Suites in Business Bay. This luxurious accommodation offers stunning views of the iconic Burj Khalifa, allowing you to marvel at its beauty from the comfort of your own living room. The spacious and elegantly furnished apartment is designed to cater to families, providing ample space for everyone to relax and unwind. With modern amenities and a fully equipped kitchen, you can enjoy home-cooked meals while taking in the breathtaking cityscape outside your window. Whether you’re looking for a peaceful retreat or a fun-filled adventure, this hotel apartment has everything you need for an unforgettable family vacation experience.
    https://royalcontinentalhotels.com/rcs/family-hotel-apartment-with-burj-khalifa-view/

  13. Experience the ease of sending smiles with our flower and gift delivery services across the UAE. Whether you’re looking to order flowers for same day delivery in Abu Dhabi, Dubai Marina, or any other location, our top-rated online flower shop ensures timely delivery.
    https://blushpetals.ae/collections/shop-all

  14. Are you looking for an effective thermal insulation solution that can withstand extreme temperatures and harsh weather conditions? Then XLPE Thermal Insulation Sheets might just be what you need! Cross-linked polyethylene, or XLPE, is a versatile insulation material widely used in various industries due to its exceptional properties. From electrical cables to HVAC systems, there are numerous applications of XLPE Thermal Insulation Sheets that make it a go-to choice for many businesses worldwide. In this blog post, we will dive into the world of XLPE and explore its benefits, uses, and applications. So let’s get started!

    https://airmastertape.com/xlpe-thermal-insulation-sheets-application/

  15. Moving to a new state is often tricky as you need to get settled down. No home is complete without television so you better look for the best “cable service near me” so you can spend some high-quality leisure time with new friends and family.

  16. Bulk Texting says:

    Transactional SMS have increased exponentially in the last few years. Banks, stores, and companies send out notifications and alerts to users or customers or employees on a daily basis. They connect their systems to a texting service using a SMS gateway.

  17. This blog post really grabbed my attention. With that said I am going to subscribe. Therefore I will get more updates on what you have to say. Please keep writing as I want to learn more.

Leave a Reply to xlpe foam insulation Cancel reply

Your email address will not be published. Required fields are marked *

*

Anti-spam protection

Prove that you are Human by typing the emphasized characters:


Protected by Gab Captcha 2

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>