Skip to main content

Your submission was sent successfully! Close

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

Thank you for contacting us. A member of our team will be in touch shortly. Close

An error occurred while submitting your form. Please try again or file a bug report. Close

  1. Blog
  2. Article

Canonical
on 17 June 2014

OpenStack One-Liners


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  

Related posts


Canonical
23 October 2025

ESWIN Computing launches the EBC7702 Mini-DTX Mainboard with Ubuntu 24.04 LTS

Ubuntu Article

October 23, 2025 – Today, ESWIN Computing and Canonical announced the pre-installation of Ubuntu on EBC7702 Mini-DTX Mainboard – a hardware platform designed to offer developers high computing power in resource-constrained environments. Developers will now be able to benefit from the stability and mature ecosystem of Ubuntu out of the box ...


Canonical
22 October 2025

Alibaba Damo Academy and Canonical partner to deliver Ubuntu on XuanTie and drive RISC-V innovation

Ubuntu Article

Alibaba Damo Academy and Canonical today announce a new collaboration to bring the Ubuntu operating system to the latest XuanTie C930 processor. This collaboration will give users access to a robust, reliable and production-ready platform for modern workloads running on the XuanTie processor family, helping to advance RISC-V adoption.  En ...


Gabriel Aguiar Noury
22 October 2025

Discover your fully open source robotics observability at ROSCon 2025

Robotics Article

Another year, another ROSCon! This year we’re heading to Singapore, and Canonical is once again thrilled to sponsor this important community event. Just like last year in Odense, Denmark, we’re looking forward to the talks and workshops, which always inspire us and teach us new things about robotics. We’re excited to reconnect with our So ...