disk not showing properly with snap install in Ubuntu (but manual install is fine) #286
delahondes
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I first tried btop with
snap install btop
as it was available in Ubuntu, but for some reasons under Ubuntu 20.04 LTS this port is partially broken, some disks are not showing.Manually compiling solved this bug (maybe another demonstration that snap should be avoided):
sudo apt update sudo apt install coreutils sed git build-essential gcc-10 g++-10 git clone https://github.com/aristocratos/btop.git cd btop make STATIC=true CXX=g++-10 sudo make install
The new binary detects immediately all the disks.
The compiling options were nicely explained in https://github.com/aristocratos/btop#installation
Beta Was this translation helpful? Give feedback.
All reactions