Skip to content

Instantly share code, notes, and snippets.

@pojntfx
Created March 28, 2024 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pojntfx/cd2bd1cc51d5ee7c2b802ef75bf90e36 to your computer and use it in GitHub Desktop.
Save pojntfx/cd2bd1cc51d5ee7c2b802ef75bf90e36 to your computer and use it in GitHub Desktop.
Shut down all NBD clients on a Linux host
#!/bin/bash
sudo su -c 'for file in /dev/nbd*; do nbd-client -d $file & done; wait'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment