Every time I perform an apt command (fi sudo apt install <package-name>
I receive the following warning messages regarding snap:
sudo apt-get install supertux
Pakketlijsten worden ingelezen... Klaar
Boom van vereisten wordt opgebouwd
De statusinformatie wordt gelezen... Klaar
De volgende extra pakketten zullen geïnstalleerd worden:
libsdl2-image-2.0-0 supertux-data
2018/11/06 11:15:08.533901 main.go:150: description of sign's "k" is lowercase: "naam van de te gebruiken sleutel, gebruik anders de standaardsleutel"
2018/11/06 11:15:08.534162 main.go:150: description of install's "dangerous" is lowercase: "installeer het opgegeven snapbestand zelfs indien er geen vooraf erkende handtekeningen voor zijn, hetgeen betekent dat het niet werd geverifieerd en dus gevaarlijk zou kunnen zijn (--devmode impliceert dit)"
De volgende NIEUWE pakketten zullen geïnstalleerd worden:
libsdl2-image-2.0-0 supertux supertux-data
0 opgewaardeerd, 3 nieuw geïnstalleerd, 0 te verwijderen en 0 niet opgewaardeerd.
Er moeten 83,8 MB aan archieven opgehaald worden.
Na deze bewerking zal er 135 MB extra schijfruimte gebruikt worden.
Wilt u doorgaan? [J/n]
My own translation of the error lines regarding snap:
2018/11/06 10:21:08.236205 main.go:150: description of sign's "k" is lowercase: "name of the key in use, use the default key"
2018/11/06 10:21:08.236582 main.go:150: description of install's "dangerous" is lowercase: "Install the snap even if there are no recognized keys which means that these were not verified and could be potentially dangerous (--devmode implies this")
I remember installing some snaps with this --devmode
switch but cannot tell which. How can I search for them and uninstall?
I found the same issue reported on the snapcraft forum around two weeks ago here.
Seems to be a combination of incorrect translations in
snap
, causing it to print these warnings, and an incorrect script inapt
that should hide these internal warnings...A forum moderator called "chipaca" advised to change that internal
apt
script so that it correctly hides warnings fromsnap
in that place, as intended. Quoting their reply: