remove the alert popup message without buying it Promox: No valid subscription message popup Intro Sometimes, the popup message — “No valid subscription” bothers me. Fortunately, the popup window only show up only during the initial login. Today, I got curios if there is a way what brings up the popup? In the javascript, ` /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js `, there is a logic checking the subscription by making API call to Proxmox. If there is no valid subscription, then “No valid subscription” will popup. Here is the logic in the proxmoxlib.js checked_command : function ( orig_cmd ) { Proxmox . Utils . API2Request ( { url : '/nodes/localhost/subscription' , method : 'GET' , failure : function ( response, opts ) { Ext . Msg . alert ( gettext ( 'Error' ), response. htmlStatus ); }, success : function ( response, o...
this is how you re-add an existing datastore for Proxmox backup server (PBS) vim /etc/proxmox-backup/datastore.cfg add the datastore like so datastore: PBS path /mnt/datastore/PBS
so i haven't used my raspberry pi's in ages and they have changed the way they set static ip's from using /etc/network file to using network manager in raspbian os so after a bit of googling i found out this is how you should be setting static ips sudo nmcli c show sudo nmcli c mod 'Wired connection 1' ipv4.addresses 10.10.30.19/24 ipv4.method manual sudo nmcli con mod 'Wired connection 1' ipv4.gateway 10.10.30.1 sudo nmcli con mod 'Wired connection 1' ipv4.dns "10.10.30.1" sudo nmcli c down 'Wired connection 1' && sudo nmcli c up 'Wired connection 1' Source
Comments
Post a Comment