Skip to content

Commit

Permalink
fsarchiver-0.8.6 (2021-02-27)
Browse files Browse the repository at this point in the history
  • Loading branch information
fdupoux committed Feb 27, 2021
1 parent fa49e10 commit fa5dfc4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fsarchiver: Filesystem Archiver for Linux [http://www.fsarchiver.org]
=====================================================================
* 0.8.6:
* 0.8.6 (2021-02-27):
- Add support for EXT4 fast_commit feature (Marcos Mello)
- Add support for XFS features inobtcount and bigtime (Marcos Mello)
- Fix handling of compression options on the command line (Marcos Mello)
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

AC_PREREQ(2.59)

AC_INIT([fsarchiver], 0.8.6-git)
AC_DEFINE([PACKAGE_RELDATE], "YYYY-MM-DD", [Define the date of the release])
AC_INIT([fsarchiver], 0.8.6)
AC_DEFINE([PACKAGE_RELDATE], "2021-02-27", [Define the date of the release])
AC_DEFINE([PACKAGE_FILEFMT], "FsArCh_002", [Define the version of the file format])
AC_DEFINE([PACKAGE_VERSION_A], 0, [Major version number])
AC_DEFINE([PACKAGE_VERSION_B], 8, [Medium version number])
Expand Down
2 changes: 1 addition & 1 deletion website/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ the whole tar is compressed with gzip. In that case, the data which are written
after the corruption are lost.

## Download
* You can download either [the sources](https://github.com/fdupoux/fsarchiver/releases/download/0.8.5/fsarchiver-0.8.5.tar.gz)
* You can download either [the sources](https://github.com/fdupoux/fsarchiver/releases/download/0.8.6/fsarchiver-0.8.6.tar.gz)
or a static binary from the [github releases page](https://github.com/fdupoux/fsarchiver/releases).
* You can also download [SystemRescue](https://www.system-rescue.org/) which is
a livecd that provides a recent FSArchiver and all the file-system tools and
Expand Down
5 changes: 5 additions & 0 deletions website/content/changelog/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ nameInMenu = "ChangeLog"
draft = false
+++

* **0.8.6 (2021-02-27):**
- Add support for EXT4 fast_commit feature (Marcos Mello)
- Add support for XFS features inobtcount and bigtime (Marcos Mello)
- Fix handling of compression options on the command line (Marcos Mello)
- Specify device as the last argument in mkfs calls (Marcos Mello)
* **0.8.5 (2018-07-10):**
* Improved support for extfs filesystems (Contribution from Marcos Mello)
* Fixed build issue with e2fsprogs < 1.41 (Contribution from Marcos Mello)
Expand Down
16 changes: 8 additions & 8 deletions website/content/installation/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To compile the sources, you have to run follow these instructions:

#### Download the latest sources
First, you have to download
[fsarchiver-0.8.5.tar.gz](https://github.com/fdupoux/fsarchiver/releases/download/0.8.5/fsarchiver-0.8.5.tar.gz).
[fsarchiver-0.8.6.tar.gz](https://github.com/fdupoux/fsarchiver/releases/download/0.8.6/fsarchiver-0.8.6.tar.gz).
Just save it to a temporary directory.

#### Extract the sources in a temporary directory
Expand Down Expand Up @@ -136,26 +136,26 @@ Package [information](https://www.archlinux.org/packages/extra/x86_64/fsarchiver
pacman -S fsarchiver
```

### Installation on RHEL / CentOS / Scientific Linux versions 7.x
### Installation on RHEL / CentOS 7.x

You should use these RPM packages that have been built for RHEL7 based
distributions, that is the recommended way for most users:

* [fsarchiver-0.8.5-1.el7.x86_64.rpm](https://github.com/fdupoux/fsarchiver/releases/download/0.8.5/fsarchiver-0.8.5-1.el7.x86_64.rpm)
* [fsarchiver-0.8.6-1.el7.x86_64.rpm](https://github.com/fdupoux/fsarchiver/releases/download/0.8.6/fsarchiver-0.8.6-1.el7.x86_64.rpm)

NOTE: Installing fsarchiver's rpm requires [EPEL](https://fedoraproject.org/wiki/EPEL) enabled.

Use the following commands to install:
```
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install https://github.com/fdupoux/fsarchiver/releases/download/0.8.5/fsarchiver-0.8.5-1.el7.x86_64.rpm
yum install https://github.com/fdupoux/fsarchiver/releases/download/0.8.6/fsarchiver-0.8.6-1.el7.x86_64.rpm
```

If you want to compile fsarchiver yourself, use the following instructions:
```
yum install zlib-devel bzip2-devel lzo-devel lz4-devel xz-devel e2fsprogs-devel libgcrypt-devel libattr-devel libblkid-devel
tar xfz fsarchiver-0.8.5.tar.gz
cd fsarchiver-0.8.5
yum install zlib-devel bzip2-devel lzo-devel lz4-devel xz-devel libzstd-devel e2fsprogs-devel libgcrypt-devel libattr-devel libblkid-devel
tar xfz fsarchiver-0.8.6.tar.gz
cd fsarchiver-0.8.6
./configure --prefix=/usr && make && make install
```

Expand All @@ -173,4 +173,4 @@ emerge app-backup/fsarchiver

### Installation on Guix

There is an [official fsarchiver package for Guix](https://guix.gnu.org/en/packages/fsarchiver-0.8.5/).
There is an [official fsarchiver package for Guix](https://guix.gnu.org/en/packages/F/).

0 comments on commit fa5dfc4

Please sign in to comment.