From baa1a03fa9712eb4e6d5a2e0bc73fdc3ec55c631 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Fri, 14 Feb 2020 03:55:19 +0000 Subject: [PATCH] new script checks disk for ssd or hd report whether a disk drive is solid state or a physical spinning hard disk --- scripts/system/report_disk_type.sh | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 scripts/system/report_disk_type.sh diff --git a/scripts/system/report_disk_type.sh b/scripts/system/report_disk_type.sh new file mode 100644 index 00000000..8236788b --- /dev/null +++ b/scripts/system/report_disk_type.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# reports whether the disk partition provided is spinning physical media or solid state. +# if no partition is specified, then /dev/sda is the default. + +source "$FEISTY_MEOW_SCRIPTS/core/functions.sh" + +drive="$1"; shift + +# plug in a default drive if none is provided. +if [ -z "$drive" ]; then drive="sda"; fi + +# chop off the /dev/ portion of the disk partition name, if it exists. +if [[ "$drive" =~ ^/dev/.*$ ]]; then + drive="$(echo "$drive" | sed -e 's/^\/dev\///')" +# echo "after mangle, drive is: '$drive'" +fi + +#hmmm: could do the check on multiple drives if weren't so lazy. + +# let's make sure that the drive exists... +if [ ! -e "/sys/block/${drive}/queue/rotational" ]; then + false || exit_on_error "failed to find a record for drive '$drive'" +fi + +# the value for the block device's rotational parameter should be 1 for hard +# disks and 0 for SSDs. apparently the linux kernel has supported this check +# since version 2.6.29. +if [ $(cat /sys/block/${drive}/queue/rotational) -eq 0 ]; then + echo "drive $drive is a solid state disk." +else + echo "drive $drive is a spinning physical disk." +fi + -- 2.34.1