A cascade mapping ordered by ctime. So some parts may be duplicate.
Thanks to those seniors who are willing to share.
redirect to awesome-hust
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function install_dependencies() { | |
echo "Installing dependencies..." | |
sudo apt -qq update | |
sudo apt -qq install -y curl git wget | |
# sudo apt -qq install -y bison flex kernel-package libelf-dev libssl-dev | |
sudo apt -qq install -y bison flex libelf-dev libssl-dev | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# author: louwrentius | |
# source: http://louwrentius.com/zfs-on-linux-monitor-cache-hit-ratio.html | |
INTERVAL="$1" | |
if [ -z $INTERVAL ] | |
then | |
INTERVAL=5 |