aboutsummaryrefslogtreecommitdiff
path: root/content/blog/debian
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/debian')
-rw-r--r--content/blog/debian/_index.md5
-rw-r--r--content/blog/debian/error-during-signature-verification.md15
-rw-r--r--content/blog/debian/force-package-removal.md14
-rw-r--r--content/blog/debian/no-public-key-error.md12
4 files changed, 46 insertions, 0 deletions
diff --git a/content/blog/debian/_index.md b/content/blog/debian/_index.md
new file mode 100644
index 0000000..4a0403f
--- /dev/null
+++ b/content/blog/debian/_index.md
@@ -0,0 +1,5 @@
+---
+title: "Debian"
+linkTitle: "Debian"
+weight: 40
+---
diff --git a/content/blog/debian/error-during-signature-verification.md b/content/blog/debian/error-during-signature-verification.md
new file mode 100644
index 0000000..87d7e3a
--- /dev/null
+++ b/content/blog/debian/error-during-signature-verification.md
@@ -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 >}}
diff --git a/content/blog/debian/force-package-removal.md b/content/blog/debian/force-package-removal.md
new file mode 100644
index 0000000..c1a4862
--- /dev/null
+++ b/content/blog/debian/force-package-removal.md
@@ -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!
diff --git a/content/blog/debian/no-public-key-error.md b/content/blog/debian/no-public-key-error.md
new file mode 100644
index 0000000..15e9a01
--- /dev/null
+++ b/content/blog/debian/no-public-key-error.md
@@ -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 >}}