2024-07-11

BASH script to find unmounted drives/partitions in linux

 for i in `fdisk -l | grep -E -v "/dev/sd.:|Device" | grep -E --color "/dev/sd|Size" | /local/etc/colcut 1`   do

        j=`/usr/bin/echo $i | cut -c 1-8`

        /usr/bin/df -h | /usr/bin/grep -E --color "/dev/sd|Device" | /usr/bin/sort | /usr/bin/grep -q $j || /usr/bin/echo $i

    done

No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...