I have Ubuntu installed. I have a partitioned disk with a root /
partition of 20 GB and a /home
partition of 60 GB. I thought that this would be enough for Ubuntu, but snap is using a lot of storage space.
6,9 GiB [### ] /snap
5,8 GiB [### ] /usr
3,9 GiB [## ] /var
2,3 GiB [# ] /opt
This is the /snap
folder:
1,7 GiB [##########] /gnome-3-34-1804
1,2 GiB [####### ] /gnome-3-28-1804
868,0 MiB [##### ] /kde-frameworks-5-core18
721,7 MiB [#### ] /postman
653,2 MiB [### ] /gtk-common-themes
594,0 MiB [### ] /core
393,8 MiB [## ] /core20
337,6 MiB [# ] /core18
293,4 MiB [# ] /snap-store
238,8 MiB [# ] /snapd
39,6 MiB [ ] /canonical-livepatch
4,0 KiB [ ] /bin
4,0 KiB [ ] README
I'm not using KDE and it seems like it's an old version of GNOME. Can I just remove that?
Do you have any other ideas for making some space?
/
will almost certainly turn out to be insufficient. As to Snaps, yes, you are impacted by their biggest weakness. When you install packages withapt-get
, all the dependencies of the software (the additional stuffs it needs for operating) will get shared among other apps installed withapt-get
, meaning, you need only one of every such additional dependency (its version smartly negotiated). Snaps, on the other hand, don't share with other apps: each snap has their own collection of dependencies: multiple apps meaning multiple copies. That's inefficient on storage space. – Levente Apr 30 '21 at 23:52