You are not logged in.
Hello, I am getting an error when trying to install "xorgxrdp":
[user@user xorgxrdp]$ makepkg -Si
==> Making package: xorgxrdp 0.2.18-1 (Thu 07 Jul 2022 11:46:11 PM EDT)
==> Retrieving sources...
-> Found xorgxrdp-0.2.18.tar.gz
-> Found xorgxrdp-0.2.18.tar.gz.asc
==> Validating source files with sha256sums...
xorgxrdp-0.2.18.tar.gz ... Passed
xorgxrdp-0.2.18.tar.gz.asc ... Skipped
==> Verifying source file signatures with gpg...
xorgxrdp-0.2.18.tar.gz ... FAILED (unknown public key 03993B4065E7193B)
==> ERROR: One or more PGP signatures could not be verified!
I would like to use RDP as the backend for remote desktop since VNC is slow.
Thanks
Last edited by rajhlinux (2022-07-08 04:49:44)
Offline
Please see GnuPG#Searching_and_receiving_keys.
Offline
Please see GnuPG#Searching_and_receiving_keys.
Thanks for the quick reply, will check into it.
Offline
Alright, for
$ gpg --search-keys user-id
I do not know who the "user-id" is, here is the link of where the "xorgxrdp" AUR package is found: https://aur.archlinux.org/packages/xorgxrdp
and for:
$ gpg --recv-keys key-id
I get this error:
[user@user xorgxrdp]$ gpg --recv-key 03993B4065E7193B
gpg: keyserver receive failed: Server indicated a failure
Also tried these:
[user@user xorgxrdp]$ gpg --keyserver hkps://keys.openpgp.org/ --search-keys 03993B4065E7193B
gpg: error searching keyserver: Server indicated a failure
gpg: keyserver search failed: Server indicated a failure
[user@user xorgxrdp]$ gpg --keyserver hkp://keyserver.ubuntu.com --search-keys 03993B4065E7193B
gpg: error searching keyserver: Server indicated a failure
gpg: keyserver search failed: Server indicated a failure
Thanks.
Last edited by rajhlinux (2022-07-08 04:17:33)
Offline
─[Shiv ~]
└─╼ gpg --keyserver hkps://keys.openpgp.org/ --search-keys 03993B4065E7193B
gpg: data source: https://keys.openpgp.org:443
(1) 4096 bit RSA key 9F72CDBC01BF10EB, created: 2017-06-20
Keys 1-1 of 1 for "03993B4065E7193B". Enter number(s), N)ext, or Q)uit > 1
gpg: key 9F72CDBC01BF10EB: no user ID
gpg: Total number processed: 1
Offline
Possibly a DNS issue https://bbs.archlinux.org/viewtopic.php … 1#p1929421
Offline
─[Shiv ~] └─╼ gpg --keyserver hkps://keys.openpgp.org/ --search-keys 03993B4065E7193B gpg: data source: https://keys.openpgp.org:443 (1) 4096 bit RSA key 9F72CDBC01BF10EB, created: 2017-06-20 Keys 1-1 of 1 for "03993B4065E7193B". Enter number(s), N)ext, or Q)uit > 1 gpg: key 9F72CDBC01BF10EB: no user ID gpg: Total number processed: 1
Thanks for your reply, I do not understand why it does not work for me.
What should I do with your output results?
Offline
Possibly a DNS issue https://bbs.archlinux.org/viewtopic.php … 1#p1929421
Alright, I will look into that.
Thanks.
Offline
Alright, seems like I got it to work now after adding DNS servers to the "resolv.conf" file:
sudo nano /etc/resolve.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
Now I get:
[user@user xorgxrdp]$ gpg --keyserver hkps://keys.openpgp.org/ --search-keys 03993B4065E7193B
gpg: data source: https://keys.openpgp.org:443
(1) 4096 bit RSA key 9F72CDBC01BF10EB, created: 2017-06-20
Keys 1-1 of 1 for "03993B4065E7193B". Enter number(s), N)ext, or Q)uit >
Thanks everyone.
Last edited by rajhlinux (2022-07-08 04:47:09)
Offline
Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.
Offline
Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.
Doing that now.
Offline
I was still getting same errors when running:
makepkg -Si
However, I did some google search and found a link which "jasonwryan" referenced from a different thread which OP on that thread had same issue.
Here is the link: http://allanmcrae.com/2015/01/two-pgp-k … rch-linux/
I ran these two code:
gpg --recv-key 03993B4065E7193B
sudo pacman-key --lsign 03993B4065E7193B
and "makepkg -Si" did not gave errors any more when building the AUR source package:
Offline
That's also documented in the wiki:
https://wiki.archlinux.org/title/Pacman … icial_keys
Offline
gpg --recv-key 03993B4065E7193B
sudo pacman-key --lsign 03993B4065E7193B
and "makepkg -Si" did not gave errors any more when building the AUR source package:
Please reread the blog post and the link Jason provided. Adding keys to pacman's keyring can not fix the error you posted in your original post as that is not the keyring used by makepkg.
Offline