I have removed snapd from ubuntu 20.04 because it uses high amount of memory, I want to install software center without installing snapd,I tried sudo apt install ubuntu-software, but it also install snapd,
is there a way to do it, or snapd is essential dependency for software center ?
Asked
Active
Viewed 73 times
0
GAD3R
- 3,507
sudo apt install synaptic– oldfred Feb 13 '21 at 18:41snapdwould be using lots of memory. Checking my system it is #25 on a list of 30 for the most memory using apps.38.9 MiB (0.1%) command: snapd pid: 1554.sudo inxi -t m30will list the 30 highest memory usage apps. – Terrance Feb 13 '21 at 23:00snapdand thecanonical-livepatchactually use any RAM. All the rest use filesystem space as they are mounted as loop files and do not consume RAM until they are called for. So,snapdis the controller and not mounted to the filesystem like all the other snap apps are. Running the following command will show if any of the mounted snaps are using any RAM:sudo inxi -t m1000 | grep "$(df -h | grep snap | awk -F[/] '{print $5}')"and when I checked mine, only livepatch showed. – Terrance Feb 15 '21 at 12:04