check filesystem more than 80% usage
outline
Usage management of Linux filesystem is very important. Below scripts is check filesystem more than 80% usage on Linux machine.
script
#!/bin/bash
host_list=(host1, host2)
for i in ${host_list[@]}
do
v=$(ssh $i 'df -t xfs -t ex...
ktg0210.hashnode.dev1 min read