It didn't fixed the error. So, how do I fix my GUI update?
For every software I have to install it from command line because I got same error when install software from Ubuntu Software Center.
It didn't fixed the error. So, how do I fix my GUI update?
For every software I have to install it from command line because I got same error when install software from Ubuntu Software Center.
Write in a terminal:
sudo apt-get update && sudo apt-get upgrade
or edit Update Manager settings (try this first if you have already configured Update Manager).Launch Update Manager and try again.
Running update through a terminal gives option whether to allow or disallow untrusted packages.
If you trust the package source, type
y
.This happens due to the missing of some GPG keys. To fix this , Open a terminal and run the below commands:
You will get an error saying that some public key is not available. Note the key string ( after the NO_PUBKEY; eg:D6B6DB186A68F637 )
Replace the XXXXX with the key string
eg :
gpg --keyserver keyserver.ubuntu.com --recv D6B6DB186A68F637
eg:
gpg --export --armor D6B6DB186A68F637 | sudo apt-key add -
Now try updating your system again.
Here is a similar post: "Requires to install untrusted updates" Error in Update Manager
Hope this helps.
You can install it via the command line:
sudo apt-get install --allow-unauthenticated exiv2
.To permanently "trust" the repo, execute this:
sudo apt-add-repository ppa:pmjdebruijn/darktable-release && sudo apt-get update
. I believe that is the PPA you are using.In answer to your question, you cannot "fix" the GUI update (i.e. Update Manager), because it is apparent that that application does not currently have the capability of installing untrusted packages. If you want to install untrusted packages, you must do it at the command line.
There are, however, two ways you can stop Update Manager from reporting this error: either remove the untrusted software from your system OR trust the repository in question, as outlined in the answer to the other question ( Updates don't install because of "untrusted packages" ).
The first step is to find out which repository is causing the problem. You can find this out by typing
apt-cache policy ambiance-colors
at the command line.However, a quick google reveals that
ambiance-colors
andradiance-colors
are fromppa:ravefinity-project
. So you should be able to fix your problem by typingtaken from http://www.webupd8.org/2012/01/ambiance-and-radiance-colors-theme-pack.html
why its saying like that means , the packages you're trying to install are third party software.so if you want to install them , enable the Canonical Check box at other software Tab in the settings of update manager and then try again installing .
hope that helps .
I had the same problem. For me, this command worked:
The advantage of this compared to the other solutions is its simplicity. You can continue to use the GUI and no need to find out which repository is broken. I found the solution here in a comment. I don't know Ubuntu enough to explain, but I suppose it gets the keys necessary for all the repos to work.
Your question is unclear: you "fix your GUI update" by fixing the error. The other question will show you what to do.
You can deselect whatever of your updates is relying on an untrusted source, or you can go ahead and use the command line to trust that particular source permanently. Once you've done one of these, the message won't pop up. If you do the latter, then the message won't ever appear again for that specific source.