You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# List the volumes attached to this instance which do not have a mount
#
lsblk -p -J -I 259 |
python -c 'import sys; import json; print(json.dumps([dev["name"] for dev in json.loads(sys.stdin.read())["blockdevices"] if ("children" not in dev and dev["mountpoint"] is None)]))'