Hello! I have a trouble during installation of ownCloud on my Ubuntu 20.04. When i execute this line “curl https://download.owncloud.org/download/repositories/10.0/Ubuntu_18.04/Release.key | sudo apt-key add -” i get an error response “gpg: no valid OpenPGP data found”. Can anyone give me an advice what to do?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hello, @galiaskaruli
What you can do is to download the owncloud package from their website using wget :
cd /usr/src
wget https://download.owncloud.org/community/owncloud-10.4.1.zip
unzip owncloud-10.4.1.zip
sudo mv owncloud /var/www/owncloud
sudo chown -R www-data:www-data /var/www/owncloud/
sudo chmod -R 755 /var/www/owncloud/
You can then follow the tutorial and adjust the Apache configuration file.
Hope that this helps!
Regards, Alex