Dashboard Status ist loading forever

Badrig

Member
Apr 2, 2022
10
0
6
I have installed PBS on my NAS in a privileged LXD container (debian bookworm). Everything works so far, including access to the mounted NAS folder as a datastore. The only problem is that the status window in the dashboard permanently loads. This also hides the fingerprint button.

Does anyone have any ideas?

1701971147306.png
 
Last edited:
This is a bug with 3.1.2 when getting the kernel version and timestamp with a kernel whose version string hasn't a timestamp in brackets.

I have reported this bug on the Bug Tracker

You can manually fix this by editing /usr/share/javascript/proxmox-backup/js/proxmox-backup-gui.js line 9353

Code:
   9352                 let kernel = data['current-kernel'];
   9353                 let buildDate = kernel.version.match(/\((.+)\)\s*$/)[1] ?? 'unknown';
   9354                 return `${kernel.sysname} ${kernel.release} (${buildDate})`;

to
Code:
   9353                 let buildDate = 'unknown';
 
Last edited:
  • Like
Reactions: Badrig
Side note: Same bug applies to current PVE release, v 8.1.3 tested here.

affected: /usr/share/pve-manager/js/pvemanagerlib.js

Fix of Wofferl works.

Edit: Bug filed for PVE #5121
 
Last edited: