How does a user list the size of each installed snap package in Ubuntu 20.04? The purpose is to get an overview perspective of the disk space utilised by each installed snap package. The command snap list does not do this. Also, the app Disk Usage Analyzer could not show further than /var/lib/snapd/snaps.
>Solution :
Try running:
$ du -hcs /var/lib/snapd/snaps/*
Alternatively, you can run:
$ ls -lh /var/lib/snapd/snaps/
