Your submission was sent successfully! Close

You have successfully unsubscribed! Close

Thank you for signing up for our newsletter!
In these regular emails you will find the latest updates about Ubuntu and upcoming events where you can meet our team.Close

OpenStack One-Liners

This article is more than 9 years old.


One-line bash commands for managing, deploying and testing OpenStack and related components, hypervisors and containers.  Some simple and obvious, some cool and questionable, hopefully all useful.  Check back on this post, I’ll likely add more. #1 – Watch Nova Compute for Non-Active Instances on Openstack Outputs total instance count and non-active instances. Useful for keeping an eye on potential problem VMs in a PAUSED, ERROR, SHUTOFF or other non-active state. Command: watch --interval=1 'nova list --all-tenants | wc -l && nova list --all-tenants | grep -v "ACTIVE"' #2 – Ping a List of Hosts Forever:  1-Line Loop A simple one-line while loop containing a for loop to ping a list of hosts each with one packet, followed by a 1/4 second iteration delay and an output text filter. Command: while true; do for h in bcu vxu rbu; do ping ${h} -c 1 | grep ttl; sleep 0.25; done; done;   #3 – Watch Cinder Volumes and Snapshots and Glance Images in Openstack Useful for working with volumes, snapshots and images in small Openstack deployments. watch --interval=1 "cinder list && cinder snapshot-list && glance image-list"   #4 – Watch Linux Containers and Directory-Backed Storage I find this one handy when I need to monitor LXC containers on Ubuntu Server – Precise Pangolin, Trusty Tahr, Utopic Unicorn and later.  The Ubuntu Server Guide has a detailed section on LXC usage. watch "sudo lxc-ls --fancy --nesting && sudo ls -Ralh /var/lib/lxc/"   #5 – Watch Your Disk Space Disappear This is a tail-style output of the free space on /. while true; do df -h / | grep '/' | awk '{ print $4 }'; sleep 1; done 6.1G 6.1G 6.0G 6.0G 5.9G 5.8G 5.7G 5.7G  

Talk to us today

Interested in running Ubuntu in your organisation?

Newsletter signup

Get the latest Ubuntu news and updates in your inbox.

By submitting this form, I confirm that I have read and agree to Canonical's Privacy Policy.

Related posts

Can it play Doom? Running an AI LAN party on a Spark cluster with ViZDoom

It’s all about AI these days, so I decided to try and answer the important question: can you make a Spark cluster run AI agents that play a game of Doom, in a...

Advantech RSB-3810, a new Single Board Computer powered by MediaTek Genio 1200, is now certified on Ubuntu 22.04 LTS

Discover this new hardware solution designed for IoT and edge applications Canonical has partnered with MediaTek to optimise Ubuntu for IoT innovations and...

Canonical supports Microsoft Azure Cobalt 100 VMs

Canonical announces that Ubuntu and Ubuntu Pro now support Microsoft Azure Cobalt 100 VMs, ideal for diverse workloads and leveraging Arm-based architectures...