What type of hardware are you using: VPS bought online What YunoHost version are you running: 12.0.17 How are you able to access your server: SSH Are you in a special context or did you perform specific tweaking on your YunoHost instance ?: no
Describe your issue
It looks dramatic: no Yunohost Server App is working: No Nextcloud app is working, no Matrix client can connect.. Yunohost diagnosis showed 0 Bytes (0%) free disk space on /.
The last actions according to the list of logs have been:
updating system packages
nextcloud configuration. Error log is included below.
SSH console is OK. What can I do to free some disk space , e.g.cache?
I looked into /var/log/syslog. There are plenty of messages like
Jul 09 09:33:39 MYDOMAIN.TLD rsyslogd[935914]: file '/var/log/syslog'[8] write error - see https://www.rsyslog.com/solving-rsyslog-write-errors/ for help OS error: No space left on device [v8.2302.0 try https://www.rsyslog.com/e/2027 ]
So as soon as there is some free space, syslog is flooded with ‘disk full’ messages.
Don’t delete /var/log/syslog : you can clear its content with sudo truncate -s 0 /var/log/syslog. AFAIK archives like /var/log/syslog**.1** can be deleted but, before, I would check what is “spamming” /var/log/syslog and filing disk…
A 16GB log file must be very difficult to read and display; to focus on a specific day and hour, you can do this : grep '^2025-07-09T09:00' /var/log/syslog
edit: or grep '^Jul 09 09:00' /var/log/syslog
We need to find 1) what is filling the log so quickly, and 2) what is allowing the log to reach such a size (16G ???) and grow indefinitely. @matalb Could you check and return the output of systemctl status logrotate.timer ?