Rocky 9.x Owncloud client via AppImage
From Notes_Wiki
Revision as of 04:16, 10 April 2024 by Saurabh (talk | contribs) (Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud > Rocky 9.x Owncloud client via AppImage Latest owncloud client are packaged as AppImage. They can be installed using: # (Optionally) Changed the gnome desktop display to "Standard (X11 Display manager)" from "Standard (Wayland)". This is not mandatory for owncloud to work on Rocky 9.2 onwards. # Check for latest release...")
Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud > Rocky 9.x Owncloud client via AppImage
Latest owncloud client are packaged as AppImage. They can be installed using:
- (Optionally) Changed the gnome desktop display to "Standard (X11 Display manager)" from "Standard (Wayland)". This is not mandatory for owncloud to work on Rocky 9.2 onwards.
- Check for latest release of AppImageLauncher from https://github.com/TheAssassin/AppImageLauncher/releases Install using something similar to
- dnf -y install https://github.com/TheAssassin/AppImageLauncher/releases/download/v2.2.0/appimagelauncher-2.2.0-travis995.0f91801.x86_64.rpm
- Go to https://owncloud.com/desktop-app/ and see the version / link of latest AppImage. Version 4.0.0 is linked in below steps. This can be replaced with other version appropriately
- As local (not ssh -X) graphical login for non-root user do
- cd ~
- wget https://download.owncloud.com/desktop/ownCloud/stable/4.0.0.10896/linux-appimage/ownCloud-4.0.0.10896-x86_64.AppImage
- chmod +x ownCloud-4.0.0.10896-x86_64.AppImage
- ./ownCloud-4.0.0.10896-x86_64.AppImage
- Add the application to AppLauncher and allow it to be moved ~/Applications folder
- Now we can launch owncloud from activities launcher directly
- Do not try to sync local cache with server. It mostly does not works. Delete local folder (Assuming no unsaved changes) and download everything from server once for any new installation.
- Edit '~/.config/autostart/ownCloud.desktop' which might get created automatically and append '/usr/bin/AppImageLauncher' in Exec line to have:
[Desktop Entry] Name=ownCloud GenericName=File Synchronizer Exec=/usr/bin/AppImageLauncher /home/saurabh/Applications/ownCloud-2.11.1.8438_ea6e60c86079a0631cafa30f477eddd4.AppImage Terminal=false Icon=owncloud Categories=Network Type=Application StartupNotify=false X-GNOME-Autostart-enabled=true X-GNOME-Autostart-Delay=10
- Must do below to stop owncloud from overwriting this on every lauch
- sudo chattr +ia ~/.config/autostart/ownCloud.desktop
- sudo lsattr ~/.config/autostart/ownCloud.desktop
Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud > Rocky 9.x Owncloud client via AppImage