ColdWater@lemmy.ca to linux4noobs · 2 years ago30GB+ used on freash Arch install+KDE? Why?lemmy.caimagemessage-square34linkfedilinkarrow-up137arrow-down14
arrow-up133arrow-down1image30GB+ used on freash Arch install+KDE? Why?lemmy.caColdWater@lemmy.ca to linux4noobs · 2 years agomessage-square34linkfedilink
minus-squareKalcifer@sh.itjust.workslinkfedilinkarrow-up6·edit-22 years agoTry the following command to list all installed packages sorted 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 may be some unexpectedly large packages installed.
Try the following command to list all installed packages sorted 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 -hThere may be some unexpectedly large packages installed.