btop: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
David (talk | contribs)
Created page with "btop++ : Resource monitor that shows usage and stats for processor, memory, disks, network and processes<br> To run on a Raspberry Pi, hence aarch64 <pre> 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 ./install.sh cd </pre> <pre> btop </pre> Category : Linux "
 
David (talk | contribs)
No edit summary
 
(2 intermediate revisions 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>
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 6: Line 23:
wget https://github.com/aristocratos/btop/releases/download/v1.3.2/btop-aarch64-linux-musl.tbz
wget https://github.com/aristocratos/btop/releases/download/v1.3.2/btop-aarch64-linux-musl.tbz
tar -xvjf btop-aarch64-linux-musl.tbz
tar -xvjf btop-aarch64-linux-musl.tbz
./install.sh
cd btop
make install
cd ..
rm -f btop-aarch64-linux-musl.tbz
cd
cd
</pre>
</pre>
Line 14: 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