J josch12 Well-Known Member Oct 20, 2017 37 1 48 36 May 13, 2022 #1 Hi, i want change the Standard Proxmoxlogo :8006/pve2/images/proxmox_logo.png but, where is the .png file locatet ?
Hi, i want change the Standard Proxmoxlogo :8006/pve2/images/proxmox_logo.png but, where is the .png file locatet ?
P poetry Active Member May 28, 2020 206 63 33 May 13, 2022 #2 It should be here /usr/share/javascript/pmg-gui/images/proxmox_logo.png Use command below to search: Code: find / -name "proxmox_logo.png" To search for text in the files use the command: Code: grep -rnw '/' -e 'proxmox_logo.png' You might find something like this: /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js:2262: src: '/image s/proxmox_logo.png', It will take a long time to search if you use path / if you have better location to search use it to shorten the search time. Reactions: pedromagician
It should be here /usr/share/javascript/pmg-gui/images/proxmox_logo.png Use command below to search: Code: find / -name "proxmox_logo.png" To search for text in the files use the command: Code: grep -rnw '/' -e 'proxmox_logo.png' You might find something like this: /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js:2262: src: '/image s/proxmox_logo.png', It will take a long time to search if you use path / if you have better location to search use it to shorten the search time.