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:

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!