Sunday, August 14, 2022

Free disk space on Linux system

sudo journalctl --rotate

sudo journalctl --vacuum-time=2d

journalctl --vacuum-size=100M

https://www.freedesktop.org/software/systemd/man/journald.conf.html

sudo nano /etc/systemd/journald.conf

SystemMaxUse=128M // remove # => uncomment

MaxFileSec=2day // remove # => uncomment

sudo systemctl restart systemd-journald

sudo rm /var/log/syslog.1 // 9.2 GB

/run/log/journal

/var/log/journal

/home/user/.cache/

find ~/.cache/ -depth -type f -atime +365

find ~/.cache/ -type f -atime +365 -delete

/home/user/.wine/drive_c/users/user/Temp/ // firefox, google-chrome, thumbnails, wine, winetricks

df

du

sudo apt autoclean

sudo apt autoremove

du -h /snap

7,0G    /snap

du -h /var/lib/snapd/snaps

4,0K    /var/lib/snapd/snaps/partial

2,5G    /var/lib/snapd/snaps

snap list --all

Name                    Version                     Rev    Tracking       Publisher         Notes

bare                    1.0                         5      latest/stable  canonical✓        base

core18                  20220706                    2538   latest/stable  canonical✓        base

core18                  20220428                    2409   latest/stable  canonical✓        base,disabled

core20                  20220719                    1587   latest/stable  canonical✓        base,disabled

core20                  20220729                    1593   latest/stable  canonical✓        base

core22                  20220607                    188    latest/stable  canonical✓        base

firefox                 103.0.1-1                   1635   latest/stable  mozilla✓          disabled

firefox                 103.0.2-1                   1670   latest/stable  mozilla✓          -

gnome-3-28-1804         3.28.0-19-g98f9e67.98f9e67  161    latest/stable  canonical✓        -

gnome-3-38-2004         0+git.891e5bc               112    latest/stable  canonical✓        -

gtk-common-themes       0.1-79-ga83e90c             1534   latest/stable  canonical✓        disabled

gtk-common-themes       0.1-81-g442e511             1535   latest/stable  canonical✓        -

snapd                   2.56.2                      16292  latest/stable  canonical✓        snapd

snapd                   2.56                        16010  latest/stable  canonical✓        snapd,disabled

telegram-desktop        4.1.0                       4095   latest/stable  telegram.desktop  -

wine-platform-6-stable  6.0.4                       19     latest/stable  mmtrt             -

wine-platform-runtime   v1.0                        314    latest/stable  mmtrt             -

sudo snap remove snapname --revision=number

sudo snap set system refresh.retain=2

Removed:

gnome-3-28-1804 161

gnome-3-38-2004 112

Remove Snap Apps and Daemon on Kubuntu 22.10

No comments:

Post a Comment