Nextcloud-GUI-Client auf Ubuntu über das PPA installieren
English
Deutsch
Das folgende Skript installiert den Nextcloud-Client und Dateimanager-Integrationen für alle installierten Dateimanager. Als root ausführen!
install_nextcloud_client.sh
sudo add-apt-repository -y ppa:nextcloud-devs/client
sudo apt-get update
sudo apt -y install nextcloud-client
# Nautilus-Integration installieren, wenn Nautilus installiert ist
dpkg --status nautilus > /dev/null 2>/dev/null
retVal=$?
if [ $retVal -eq 0 ]; then
sudo apt -y install nautilus-nextcloud
fi
# Dolphin-Integration installieren, wenn Dolphin installiert ist
dpkg --status dolphin > /dev/null 2>/dev/null
retVal=$?
if [ $retVal -eq 0 ]; then
sudo apt -y install dolphin-nextcloud
fi
# Caja-Integration installieren, wenn Caja installiert ist
dpkg --status caja > /dev/null 2>/dev/null
retVal=$?
if [ $retVal -eq 0 ]; then
sudo apt -y install caja-nextcloud
fi
# Nemo-Integration installieren, wenn Nemo installiert ist
dpkg --status nemo > /dev/null 2>/dev/null
retVal=$?
if [ $retVal -eq 0 ]; then
sudo apt -y install nemo-nextcloud
fiCheck out similar posts by category:
Linux
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow