btop: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
David (talk | contribs)
No edit summary
David (talk | contribs)
No edit summary
 
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>
To run on a Raspberry Pi, hence aarch64
 
= 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
./install.sh
make install
cd ..
rm -f btop-aarch64-linux-musl.tbz
rm -f btop-aarch64-linux-musl.tbz
cd
cd

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