Quota failed to start after upgrading to Ubuntu 20.04  [SOLVED]

Locked
User avatar
hexacube
Posts: 18
Joined: Mon 27. Jul 2020, 09:48
Location: India
Contact:

Quota failed to start after upgrading to Ubuntu 20.04  [SOLVED]

Post by hexacube »

The quota failed to start after upgrading to ubuntu 20.04. Issue is the disk usage of email & database were calculated properly but web space usage is zero for all users.

Later researched and found that the issue is with custom kernel provided by GCP / AWS. The issue has been solved by following procedure:

1. Remove GCP / AWS kernels
For GCP:

Code: Select all

sudo apt-get remove linux-image-*-gcp
For AWS:

Code: Select all

sudo apt-get remove linux-image-*-aws
2. Install generic:

Code: Select all

sudo apt-get -y install linux-image-generic
sudo apt-get -y install linux-headers-generic
3. Reboot

4. Run disk checking schedule and voila. Quota is back. 8-)

I though this maybe usefull for someone facing same issues with VMs hosted in GCP / AWS.

Also, please let me know whether I did everything right? :roll:

Thank You.
Locked