Hi,
Utter nextcloud n00b.
I followed the instructions as below.
- Download the [.tar.bz2] or [.zip] archive.
Done
- Check package integrity using MD5 ([.tar.bz2] / [.zip] or SHA256 ([.tar.bz2] / [.zip])
$ curl download.nextcloud.com/server/releases/nextcloud-23.0.0.zip.sha256
aa296b623b94f5bac65da18468c5f97918003743046a0de097aaea796198c281 nextcloud-23.0.0.zip
Done
- Verify the authenticity via PGP ([.tar.bz2 ]/ [.zip]). The Nextcloud GPG key [is here]. You can also grab the keys by issueing this command:
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 28806A878AE423A28372792ED75899B9A724937A
Ah. Problem:
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 28806A878AE423A28372792ED75899B9A724937A
gpg: keyserver receive failed: No name
After a bit of googling, I found that ha.pool.sks-keyservers.net is deprecated, and I should use different key servers. I did
$ gpg --keyserver keys.openpgp.org --recv-keys 28806A878AE423A28372792ED75899B9A724937A
gpg: key D75899B9A724937A: no user ID
gpg: Total number processed: 1
How does that tell me the package is correct?