diff options
author | Julien Dessaux | 2021-03-11 19:47:26 +0100 |
---|---|---|
committer | Julien Dessaux | 2021-03-11 19:47:26 +0100 |
commit | 1a4981a826bb94c478c6f49721396ec03e02649c (patch) | |
tree | cbd779f6f8e36a28f4d6bd2788c21ce10d9ef122 /content/blog/debian | |
parent | Several fixes (diff) | |
download | www-1a4981a826bb94c478c6f49721396ec03e02649c.tar.gz www-1a4981a826bb94c478c6f49721396ec03e02649c.tar.bz2 www-1a4981a826bb94c478c6f49721396ec03e02649c.zip |
First big articles reformatting now that I properly understand hugo
Diffstat (limited to 'content/blog/debian')
-rw-r--r-- | content/blog/debian/_index.md | 5 | ||||
-rw-r--r-- | content/blog/debian/error-during-signature-verification.md | 9 | ||||
-rw-r--r-- | content/blog/debian/force-package-removal.md | 9 | ||||
-rw-r--r-- | content/blog/debian/no-public-key-error.md | 9 |
4 files changed, 18 insertions, 14 deletions
diff --git a/content/blog/debian/_index.md b/content/blog/debian/_index.md deleted file mode 100644 index 4a0403f..0000000 --- a/content/blog/debian/_index.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -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 index 87d7e3a..67ef11e 100644 --- a/content/blog/debian/error-during-signature-verification.md +++ b/content/blog/debian/error-during-signature-verification.md @@ -1,11 +1,14 @@ --- 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 +description: Fixing the "Error occured during the signature verification" +tags: + - debian + - linux --- +## How to fix + Here is how to fix the apt-get “Error occured during the signature verification” : {{< highlight sh >}} cd /var/lib/apt diff --git a/content/blog/debian/force-package-removal.md b/content/blog/debian/force-package-removal.md index c1a4862..fedeee2 100644 --- a/content/blog/debian/force-package-removal.md +++ b/content/blog/debian/force-package-removal.md @@ -1,11 +1,14 @@ --- title: "Force package removal" -linkTitle: "Force package removal" date: 2015-01-27 -description: > - Force package removal +description: How to force the removal of a package +tags: + - debian + - linux --- +## How to force the removal of a package + Here is how to force package removal when post-uninstall script fails : {{< highlight sh >}} dpkg --purge --force-all <package> diff --git a/content/blog/debian/no-public-key-error.md b/content/blog/debian/no-public-key-error.md index 15e9a01..a16938e 100644 --- a/content/blog/debian/no-public-key-error.md +++ b/content/blog/debian/no-public-key-error.md @@ -1,11 +1,14 @@ --- 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 +description: How to fix this common debian error when using non official repositories +tags: + - debian + - linux --- +## How to fix + Here is how to fix the no public key available error : {{< highlight sh >}} apt-key adv --keyserver keyserver.ubuntu.com --recv-keys KEYID |