btop: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
btop++ : Resource monitor that shows usage and stats for processor, memory, disks, network and processes<br> | btop++ : Resource monitor that shows usage and stats for processor, memory, disks, network and processes<br> | ||
= X86_64 = | |||
<pre> | |||
cd /opt | |||
wget https://github.com/aristocratos/btop/releases/download/v1.3.2/btop-x86_64-linux-musl.tbz | |||
tar -xvjf btop-x86_64-linux-musl.tbz | |||
cd btop | |||
make install | |||
cd .. | |||
rm -f btop-x86_64-linux-musl.tbz | |||
cd | |||
</pre> | |||
<pre> | |||
btop | |||
</pre> | |||
= rPi = | |||
<pre> | <pre> | ||
Line 7: | Line 24: | ||
tar -xvjf btop-aarch64-linux-musl.tbz | tar -xvjf btop-aarch64-linux-musl.tbz | ||
cd btop | cd btop | ||
. | make install | ||
cd .. | |||
rm -f btop-aarch64-linux-musl.tbz | rm -f btop-aarch64-linux-musl.tbz | ||
cd | cd | ||
Line 16: | Line 34: | ||
</pre> | </pre> | ||
Links : [https://github.com/aristocratos/btop/releases GitHub] | |||
[[Category : Linux ]] | [[Category : Linux ]] |
Latest revision as of 07:34, 21 July 2024
btop++ : Resource monitor that shows usage and stats for processor, memory, disks, network and processes
X86_64
cd /opt wget https://github.com/aristocratos/btop/releases/download/v1.3.2/btop-x86_64-linux-musl.tbz tar -xvjf btop-x86_64-linux-musl.tbz cd btop make install cd .. rm -f btop-x86_64-linux-musl.tbz cd
btop
rPi
cd /opt wget https://github.com/aristocratos/btop/releases/download/v1.3.2/btop-aarch64-linux-musl.tbz tar -xvjf btop-aarch64-linux-musl.tbz cd btop make install cd .. rm -f btop-aarch64-linux-musl.tbz cd
btop
Links : GitHub