Long overdue first commit with content
This commit is contained in:
parent
f63ce5bdd8
commit
6cc9d8c72a
92 changed files with 2031 additions and 97 deletions
5
content/en/blog/debian/_index.md
Normal file
5
content/en/blog/debian/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: "Debian"
|
||||
linkTitle: "Debian"
|
||||
weight: 40
|
||||
---
|
|
@ -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 >}}
|
14
content/en/blog/debian/force-package-removal.md
Normal file
14
content/en/blog/debian/force-package-removal.md
Normal 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!
|
12
content/en/blog/debian/no-public-key-error.md
Normal file
12
content/en/blog/debian/no-public-key-error.md
Normal 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 >}}
|
Loading…
Add table
Add a link
Reference in a new issue