Long overdue first commit with content

This commit is contained in:
Julien Dessaux 2020-04-28 17:29:52 +02:00
parent f63ce5bdd8
commit 6cc9d8c72a
92 changed files with 2031 additions and 97 deletions

View file

@ -0,0 +1,5 @@
---
title: "Debian"
linkTitle: "Debian"
weight: 40
---

View file

@ -0,0 +1,15 @@
---
title: "Error occured during the signature verification"
linkTitle: "Error occured during the signature verification"
date: 2015-02-27
description: >
Error occured during the signature verification
---
Here is how to fix the apt-get “Error occured during the signature verification” :
{{< highlight sh >}}
cd /var/lib/apt
mv lists lists.old
mkdir -p lists/partial
aptitude update
{{< /highlight >}}

View file

@ -0,0 +1,14 @@
---
title: "Force package removal"
linkTitle: "Force package removal"
date: 2015-01-27
description: >
Force package removal
---
Here is how to force package removal when post-uninstall script fails :
{{< highlight sh >}}
dpkg --purge --force-all <package>
{{< /highlight >}}
There is another option if you need to be smarter or if it is a pre-uninstall script that fails. Look at `/var/lib/dpkg/info/<package>.*inst`, locate the line that fails, comment it out and try to purge again. Repeat until success!

View file

@ -0,0 +1,12 @@
---
title: "Fix the no public key available error"
linkTitle: "Fix the no public key available error"
date: 2016-01-27
description: >
Fix the no public key available error
---
Here is how to fix the no public key available error :
{{< highlight sh >}}
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys KEYID
{{< /highlight >}}