When i run apt-get update on my debian system i get the following error :-
Thereisnopublic key available for the following key IDs:
How can I fix this issue?
9AA38DCD55BE302B
Type in the following commands in SSH /shell
apt-key update
apt-key is a program that is used to manage a keyring of gpg keys for secure apt. The keyring is kept in the file /etc/apt/trusted.gpg (not to be confused with the related but not very interesting /etc/apt/trustdb.gpg). apt-key can be used to show the keys in the keyring, and to add or remove a key.
Further info on the Debian wiki: http://wiki.debian.org/SecureApt
If that doesn't work, try:
gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 9AA38DCD55BE302B
apt-key add /root/.gnupg/pubring.gpg
apt-get update