From 70bb5d5a801428b0fb390abf79f19ffcf5e29c67 Mon Sep 17 00:00:00 2001 From: breadcat Date: Fri, 19 Jun 2020 12:23:15 +0100 Subject: Simple migration of existing posts to hugo format --- content/posts/compiling-bsd-tar-on-linux.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 content/posts/compiling-bsd-tar-on-linux.md (limited to 'content/posts/compiling-bsd-tar-on-linux.md') diff --git a/content/posts/compiling-bsd-tar-on-linux.md b/content/posts/compiling-bsd-tar-on-linux.md new file mode 100644 index 0000000..dcba810 --- /dev/null +++ b/content/posts/compiling-bsd-tar-on-linux.md @@ -0,0 +1,23 @@ +--- +title: "Compiling BSD Tar on Linux" +date: 2018-11-09T12:09:00 +tags: ["guides", "linux", "snippets", "software"] +--- + +While researching Arch Linux ARM for the ODroid HTPC project, I came across an issue with unpacking the image. + +It turns out that Arch Linux ARM requires `bsdtar` version 3.3 or above, and only versions 3.2.x are available in the [Debian and Ubuntu repositories](https://packages.debian.org/search?keywords=bsdtar). + +To resolve this, simply run the following: +``` +sudo apt-get install build-essential +wget https://www.libarchive.org/downloads/libarchive-3.3.3.tar.gz +tar -xzf libarchive-3.3.3.tar.gz +cd libarchive-3.3.3/ +./configure +make +sudo make install +bsdtar --version +``` + +Now you'll have the latest (at time of writing) version of bsdtar all working, all ready to proceed with the rest of the already convoluted installation guide. -- cgit v1.2.3