Fix Public Key Parrot OS Update Error
Page 1 of 1
Fix Public Key Parrot OS Update Error
Get:1 http://mirrordirector.archive.parrotsec.org/parrot stable InRelease [14.6 kB]
Err:1 http://mirrordirector.archive.parrotsec.org/parrot stable InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY ED05F7B2EC3C9224
Fix command line:
- Code:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ED05F7B2EC3C9224
Notice the Key and should be same as in your error!
then
- Code:
sudo apt update --fix-missing
- Code:
sudo apt update -y && sudo apt upgrade -y
Or
- Code:
sudo apt update -y && sudo apt full-upgrade -y --allow-downgrades
Re: Fix Public Key Parrot OS Update Error
Bashrc Function
- Code:
function updatekey(){
# Usage: ./fix.sh "Key"
#
# Setups:
var=$1
#
#
# See if args are missing!.....
if [ $# -lt 1 ]; then
echo "Enter Public Key To Add"
read var
fi
#
#
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $var
}
put above into your bashrc file!!!
Similar topics
» Fixing Kali Linux Update Error
» Fixing Network Share Error: mount error
» Fix out of date expired kali update key to allow old kalis to update without errors
» Seting youyr own custom Error messages instead of getting generic error messages!
» How to fix a broken Parrot OS
» Fixing Network Share Error: mount error
» Fix out of date expired kali update key to allow old kalis to update without errors
» Seting youyr own custom Error messages instead of getting generic error messages!
» How to fix a broken Parrot OS
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum