ColdWater@lemmy.ca to linux4noobs@programming.dev · 7 months ago30GB+ used on freash Arch install+KDE? Why?lemmy.caimagemessage-square33fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1image30GB+ used on freash Arch install+KDE? Why?lemmy.caColdWater@lemmy.ca to linux4noobs@programming.dev · 7 months agomessage-square33fedilink
minus-squareKalcifer@sh.itjust.workslinkfedilinkarrow-up0·edit-27 months agoTry the following command to list all installed packages by size [source]: LC_ALL=C.UTF-8 pacman -Qi | awk '/^Name/{name=$3} /^Installed Size/{print $4$5, name}' | LC_ALL=C.UTF-8 sort -h There might be some unexpected large packages installed.
Try the following command to list all installed packages by size [source]:
LC_ALL=C.UTF-8 pacman -Qi | awk '/^Name/{name=$3} /^Installed Size/{print $4$5, name}' | LC_ALL=C.UTF-8 sort -h
There might be some unexpected large packages installed.