Skip to main content
left the sudo in; the original showed as two lines, which is easier to read
Source Link
Jeff Schaller
  • 68.8k
  • 35
  • 122
  • 264

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ (sudo find /var/log/journal -name "*.journal" | xargs sudo rm) &&
$ (sudo systemctl restart systemd-journald)

It's not right, but it worked.

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ (sudo find /var/log/journal -name "*.journal" | xargs sudo rm) && (sudo systemctl restart systemd-journald)

It's not right, but it worked.

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ sudo find /var/log/journal -name "*.journal" | xargs sudo rm 
$ sudo systemctl restart systemd-journald

It's not right, but it worked.

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ (sudo find /var/log/journal -name "*.journal" | xargs sudo rm
$) && (sudo systemctl restart systemd-journald)

It's not right, but it worked.

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ find /var/log/journal -name "*.journal" | xargs sudo rm
$ sudo systemctl restart systemd-journald

It's not right, but it worked.

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ (sudo find /var/log/journal -name "*.journal" | xargs sudo rm) && (sudo systemctl restart systemd-journald)

It's not right, but it worked.

Source Link
Matt
  • 826
  • 1
  • 9
  • 9

Since --vacuum-time and --vacuum-size didn't do a thing for me I did the following:

$ find /var/log/journal -name "*.journal" | xargs sudo rm
$ sudo systemctl restart systemd-journald

It's not right, but it worked.