Find the answer to your Linux question:
Results 1 to 3 of 3
I am trying to download FreeNx server from Kanotix and Debian repositories. After apt-get updating I get the following error related to public key: ------------------ Reading package lists... Done W: ...
  1. #1
    Linux Newbie exploder's Avatar
    Join Date
    Jun 2005
    Location
    127.0.0.1
    Posts
    164

    Public Key Error in Downloading FreeNx !!!

    I am trying to download FreeNx server from Kanotix and Debian repositories. After apt-get updating I get the following error related to public key:
    ------------------
    Reading package lists... Done
    W: GPG error: http://ftp.au.debian.org unstable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F1D53D8C4F368D5D
    W: GPG error: http://kanotix.com sid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FB1A399A71409CDF
    W: You may want to run apt-get update to correct these problems
    --------------------

    Any suggestions ?
    Registered Linux User#394486

  2. #2
    Linux User St. Joe's Avatar
    Join Date
    Jun 2005
    Location
    USA
    Posts
    271
    Install gnupg (if needed) then repeat steps for any needed keys.

    Code:
    # apt-get install gnupg
    # gpg --keyserver wwwkeys.eu.pgp.net --recv-keys F1D53D8C4F368D5D
    # gpg --armor --export F1D53D8C4F368D5D | sudo apt-key add -
    # gpg --export F1D53D8C4F368D5D >> /etc/apt/trusted.gpg
    # gpg --list-keys
    It may be that your sole purpose in life is simply to serve as a warning to others.

  3. #3
    Linux Newbie exploder's Avatar
    Join Date
    Jun 2005
    Location
    127.0.0.1
    Posts
    164
    Thank you Saint. You are a life saver. I really appreciate your help. It worked. But, now I have some other problems. I will fix it.
    Registered Linux User#394486

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •