You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1003 B
36 lines
1003 B
#!/bin/bash
|
|
# info: list disk information
|
|
# options:
|
|
#
|
|
# example: v-list-sys-disk-status
|
|
#
|
|
# This function lists disk information
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Displaying disk usage
|
|
df -h
|
|
echo -en "\n---------------------------------------------"
|
|
echo -en "---------------------------------------------\n\n"
|
|
|
|
# Displaying inodes usage
|
|
df -ih
|
|
echo -en "\n---------------------------------------------"
|
|
echo -en "---------------------------------------------\n\n"
|
|
|
|
# Displaying I/O usage
|
|
iostat -m
|
|
echo -en "\n---------------------------------------------"
|
|
echo -en "---------------------------------------------\n\n"
|
|
|
|
# Displaying disk information
|
|
fdisk -l
|
|
|
|
#----------------------------------------------------------#
|
|
# Hestia #
|
|
#----------------------------------------------------------#
|
|
|
|
exit
|