[SOLVED] Programm File Browser deinstallieren?

jim_os

Active Member
Oct 8, 2022
204
64
33
Germany
Als Proxmox Anfänger habe ich mal wieder eine Anfänger-Frage: Ich habe eben das Programm File Browser direkt unter Proxmox (pve --> Shell) installiert.

Code:
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/filebrowser.sh)"
Was ich eigentlich so gar nicht machen wollte - aber das nur so am Rande. :) Das Programm, bzw. dessen WebGUI, lässt sich jetzt über die IP [Proxmox-IP]:8080 aufrufen. Nun möchte ich File Browser wieder deinstallieren und bevor ich da bei Proxmox einen Fehler mache frage ich hier lieber nach.

Der "normale" Weg per cli wäre ja ich schaue per dpkg --list nach dem Progamm und würde es dann per sudo apt-get remove [Programm- bzw. Paket-Name] deinstallieren. Das Problem ist allerdings das es unter dpkg --list gar nicht auftaucht.


Code:
ii  efibootmgr                           17-1                           amd64        Interact with the EFI Boot Manager
ii  eject                                2.36.1-8+deb11u1               amd64        ejects CDs and operates CD-Changers under Linux
ii  faketime                             0.9.8-9                        amd64        Report faked system time to programs (command-line to>
ii  fdisk                                2.36.1-8+deb11u1               amd64        collection of partitioning utilities
ii  fdutils                              5.6-2                          amd64        Linux floppy utilities
ii  file                                 1:5.39-3                       amd64        Recognize the type of data in a file using "magic" nu>
ii  findutils                            4.8.0-1                        amd64        utilities for finding files--find, xargs
ii  fontconfig                           2.13.1-4.2                     amd64        generic font configuration library - support binaries
ii  fontconfig-config                    2.13.1-4.2                     all          generic font configuration library - configuration
ii  fonts-dejavu-core                    2.37-2                         all          Vera font family derivate with additional characters
ii  fonts-font-awesome                   5.0.10+really4.7.0~dfsg-4.1    all          iconic font designed for use with Twitter Bootstrap
ii  fonts-glyphicons-halflings           1.009~3.4.1+dfsg-2             all          icons made for smaller graphic
ii  fuse

Die Frage ist also: Wo und wie finde ich File Browser unter Proxmox und wie kann ich das wieder kompl. deinstallieren?


Nachtrag: Nachdem ich bereits div. Verzeichnisse durchsucht hatte habe ich das hier gelesen. Dann war klar das File Browser kein Verzeichnis anlegt, sondern es sich nur um eine Datei handelt, die sich unter root@pve:/usr/local/bin befindet. Also einfach die Datei löschen.
Ich habe dann auch noch die filebrowser.db Datei direkt unter root@pve: gefunden. Die habe ich dann ebenfalls gelöscht und jetzt ist hoffentlich alles von File Browser weg.
--> Solved

VG JIm
 
Last edited:
Die habe ich dann ebenfalls gelöscht und jetzt ist hoffentlich alles von File Browser weg.
Ich hab nur kurz das Installationsscript überflogen, es scheint aber zudem noch einen Service zu erstellen, der jetzt vermutlich jedes Mal mit einem Error abbricht:

[...]

msg_info "Creating Service"
service_path="/etc/systemd/system/filebrowser.service"
echo "[Unit]
Description=Filebrowser
After=network-online.target

[...]

Es kann daher sinnvoll sein, dieses auch zu entfernen (/etc/systemd/system/filebrowser.service) bzw. den service zu stoppen.
 
  • Like
Reactions: jim_os
Moin,

danke für den Hinweis! Ich habe eben mal im Syslog geschaut. Dort erscheint das Wort filebrowser nicht mehr, sodass ich davon ausgehe das der Service dort keinen Fehlereintrag erzeugt.

In der Tat gibt es unter /etc/systemd/system/filebrowser.service aber den service und ei # systemctl taucht er als load auf.

Ich bin ja noch Proxmox Anfänger. :) Ich nehme mal an bei Proxmox direkt gibt es keine Möglichkeit einen Service zu stoppen, sondern ich mache das direkt unter Debian, sprich systemctl stop filebrowser.service und im Anschluss dann einfach rm /etc/systemd/system/filebrowser.service


Nachtrag: OK der Service ist jetzt auch weg. BTW: Auf die Idee mal einen Blick auf das Install.-Script zu werfen bin ich gar nicht gekommen. :rolleyes: Dann hätte ich das mit dem WorkingDirectory und den filebrowser.service ja auch sehen können. :)


Code:
...
msg_info "Installing ${APP}"
curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash &>/dev/null
filebrowser config init -a '0.0.0.0' &>/dev/null
filebrowser config set -a '0.0.0.0' &>/dev/null
filebrowser users add admin changeme --perm.admin &>/dev/null
msg_ok "Installed ${APP} on $hostname"

msg_info "Creating Service"
service_path="/etc/systemd/system/filebrowser.service"
echo "[Unit]
Description=Filebrowser
After=network-online.target
[Service]
User=root
WorkingDirectory=/root/
ExecStart=/usr/local/bin/filebrowser -r /
[Install]
WantedBy=default.target" > $service_path

systemctl enable --now filebrowser.service &>/dev/null
msg_ok "Created Service"

msg_ok "Completed Successfully!\n"
echo -e "${APP} should be reachable by going to the following URL.
         ${BL}http://$IP:8080${CL} \n"

VG Jim
 
Last edited:
  • Like
Reactions: datschlatscher

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!