You are not logged in.

#1 2015-07-16 18:16:50

andradx
Member
From: Portugal
Registered: 2015-07-16
Posts: 10

Linux-pf key "F6C85FEE79D661A4"

I am trying to install linux-pf. So I've followed the instructions on how to add the repository from Arch Linux Unofficial user repositories webpage. To /etc/pacman.conf I appended the lines:

[Linux-pf]
Server = https://dl.dropboxusercontent.com/u/172590784/Linux-pf/x86_64/
SigLevel = Optional

Then when I try to do "pacman -Sy" I get the error message

error: Linux-pf: key "F6C85FEE79D661A4" is unknown
error: key "F6C85FEE79D661A4" could not be looked up remotely

but importing this key, which in other cases solves the issue, yields

sudo pacman-key -r F6C85FEE79D661A4
gpg: keyserver receive failed: No data
==> ERROR: Remote key not fetched correctly from keyserver.

I assume my pacman keyring is working fine. I am able to fetch Linus Torvalds key.


sudo pacman-key -r 00411886
gpg: key 00411886: "Linus Torvalds <torvalds@linux-foundation.org>" not changed
gpg: Total number processed: 1
gpg:              unchanged: 1
==> Updating trust database...
gpg: next trustdb check due at 2016-01-22

Am I missing something here all too obvious? It also bugs me to see my google searches yielding 0 results whenever the F6C85FEE79D661A4 string is given.


Thank you.


I like my offshore with longboard and shorts

Offline

#2 2015-07-16 18:20:39

kminehart
Member
Registered: 2015-07-13
Posts: 11

Re: Linux-pf key "F6C85FEE79D661A4"

Happened to me when I was trying to install the infinality bundle.  You have to use a different keyserver now since you tried to sync before importing the key.  I think it's a bug?

Try this command:

 sudo pacman-key -r F6C85FEE79D661A4 --keyserver hkp://subkeys.pgp.net

Last edited by kminehart (2015-07-16 18:22:05)

Offline

#3 2015-07-16 18:23:44

andradx
Member
From: Portugal
Registered: 2015-07-16
Posts: 10

Re: Linux-pf key "F6C85FEE79D661A4"

Not working. I still get:

sudo pacman-key -r F6C85FEE79D661A4 --keyserver hkp://subkeys.pgp.net
gpg: keyserver receive failed: No data
==> ERROR: Remote key not fetched correctly from keyserver.

Last edited by andradx (2015-07-16 18:24:01)


I like my offshore with longboard and shorts

Offline

#4 2015-07-16 18:28:52

kminehart
Member
Registered: 2015-07-13
Posts: 11

Re: Linux-pf key "F6C85FEE79D661A4"

Well to at least help you in where to look, this issue I doubt is specific to that key or package.

Try searching for just the "Remote key not fetched correctly" error instead and see if you find any problems similar to yours.

This was the first thread I found on google that helped me.

https://bbs.archlinux.org/viewtopic.php?id=138498

https://bbs.archlinux.org/viewtopic.php?id=194358

Offline

#5 2015-07-16 18:41:59

andradx
Member
From: Portugal
Registered: 2015-07-16
Posts: 10

Re: Linux-pf key "F6C85FEE79D661A4"

It's of a more localized nature, I guess. I've looked at these before posting this. I think it bottoms to the fact that the F6C85FEE79D661A4 key is not in any of those servers tried, though nobody ever seems to mention this. Hence, my suspicion that I'm doing something wrong, though not sure what.


Thanks for helping.


I like my offshore with longboard and shorts

Offline

#6 2015-07-16 19:36:13

Tambalamba
Member
Registered: 2015-03-13
Posts: 45

Re: Linux-pf key "F6C85FEE79D661A4"

Did you try this procedure: https://bbs.archlinux.org/viewtopic.php … 9#p1501589

and this:

pacman-key --keyserver pgp.mit.edu --recv-keys <key>

and then:

pacman-key --lsign-key <key>

Offline

#7 2015-07-16 20:45:22

andradx
Member
From: Portugal
Registered: 2015-07-16
Posts: 10

Re: Linux-pf key "F6C85FEE79D661A4"

pacman-key --keyserver pgp.mit.edu --recv-keys F6C85FEE79D661A4
gpg: keyserver receive failed: No data
==> ERROR: Remote key not fetched correctly from keyserver.

The contents of gpg.conf in /etc/pacman.d/ are

no-greeting
no-permission-warning
lock-never
keyserver hkp://pool.sks-keyservers.net
keyserver-options timeout=10

I guess signing the key requires receiving it beforehand.


Tambalamba, are you able to import this key? Thanks.


I like my offshore with longboard and shorts

Offline

#8 2015-07-16 21:05:29

Tambalamba
Member
Registered: 2015-03-13
Posts: 45

Re: Linux-pf key "F6C85FEE79D661A4"

No, actually I've never tried this one.

EDIT: I don't see that you appended

index.html

after the server url.

Last edited by Tambalamba (2015-07-16 21:09:55)

Offline

#9 2015-07-16 21:28:42

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,744
Website

Re: Linux-pf key "F6C85FEE79D661A4"

andradx wrote:

Then when I try to do "pacman -Sy"

Don't do that, it will break your system.
https://wiki.archlinux.org/index.php/Pa … nsupported

Also: https://wiki.archlinux.org/index.php/Pa … icial_keys

Offline

#10 2015-07-16 21:32:37

Tambalamba
Member
Registered: 2015-03-13
Posts: 45

Re: Linux-pf key "F6C85FEE79D661A4"

andradx wrote:

I am trying to install linux-pf. So I've followed the instructions on how to add the repository from Arch Linux Unofficial user repositories webpage. To /etc/pacman.conf I appended the lines:

[Linux-pf]
Server = https://dl.dropboxusercontent.com/u/172590784/Linux-pf/x86_64/
SigLevel = Optional

I think the Server line should be

Server = https://dl.dropboxusercontent.com/u/172590784/Linux-pf/x86_64/index.html

See  Note

EDIT: On second thought, they say it's "to browse through the repository."

Last edited by Tambalamba (2015-07-16 21:43:32)

Offline

#11 2015-07-16 21:45:19

andradx
Member
From: Portugal
Registered: 2015-07-16
Posts: 10

Re: Linux-pf key "F6C85FEE79D661A4"

Thanks for the note on how to not break my system.


Regarding the index.html thing, appending it in the pacman.conf to the repo URL doesn't really cut it. I still get the key issue.

sudo pacman -Syu
error: Linux-pf: key "F6C85FEE79D661A4" is unknown
error: key "F6C85FEE79D661A4" could not be looked up remotely
:: Synchronizing package databases...
Downloading core.db... Complete!
Downloading core.db.sig...Downloading extra.db... Complete!
Downloading extra.db.sig...Downloading community.db... Complete!
Downloading community.db.sig...Downloading multilib.db... Complete!
Downloading multilib.db.sig...Downloading archlinuxfr.db... Complete!
Downloading repo-ck.db... Complete!
Downloading repo-ck.db.sig...Downloading Linux-pf.db...error: failed to update Linux-pf (error invoking external downloader)
error: database 'Linux-pf' is not valid (invalid or corrupted database (PGP signature))

Question is, can you replicate my problem? Can you please try and add that key to your pacman keyring and see if it works?


Would appreciate most. Thanks.


I like my offshore with longboard and shorts

Offline

#12 2015-07-16 22:44:06

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: Linux-pf key "F6C85FEE79D661A4"

Try a different repo that provides linux-pf: https://wiki.archlinux.org/index.php/Linux-pf

Offline

#13 2015-07-16 22:48:56

Tambalamba
Member
Registered: 2015-03-13
Posts: 45

Re: Linux-pf key "F6C85FEE79D661A4"

Got the same result. You should try what Karol suggests.

Offline

#14 2015-07-17 07:52:07

andradx
Member
From: Portugal
Registered: 2015-07-16
Posts: 10

Re: Linux-pf key "F6C85FEE79D661A4"

Ultimately I am able to compile my own linux-pf and linux-pf-headers from the AUR.

However, I'd prefer to just install a pre-compiled package for my cpu version and that would be the end of it.

Thanks for your kind help.


I like my offshore with longboard and shorts

Offline

#15 2015-08-06 02:40:53

Thaodan
Member
From: Dortmund, Nordrein-Westfalen
Registered: 2012-04-28
Posts: 448

Re: Linux-pf key "F6C85FEE79D661A4"

Sorry for the delay, see here [1]  for more infos about your issues why the delay and your problem.

[1] https://bbs.archlinux.org/viewtopic.php … 4#p1551004


Linux odin 3.13.1-pf #1 SMP PREEMPT Wed Mar 5 21:47:28 CET 2014 x86_64 GNU/Linux

Offline

Board footer

Powered by FluxBB