You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
2.5 KiB

  1. # Installation
  2. If you are using a non-rolling release Linux distro such as Debian or
  3. Ubuntu then you are almost certainly going to have an old version of
  4. mergerfs installed if you use the "official" package. For that reason
  5. we provide packages for major stable released distros.
  6. Before reporting issues or bugs please be sure to upgrade to the
  7. latest release to confirm they still exist.
  8. All provided packages can be found at [https://github.com/trapexit/mergerfs/releases](https://github.com/trapexit/mergerfs/releases)
  9. ## Debian
  10. Most Debian installs are of a stable branch and therefore do not have
  11. the most up to date software. While mergerfs is available via `apt` it
  12. is suggested that users install the most recent version available from
  13. the [releases page](https://github.com/trapexit/mergerfs/releases).
  14. ### prebuilt deb
  15. ```
  16. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs_<ver>.debian-<rel>_<arch>.deb
  17. sudo dpkg -i mergerfs_<ver>.debian-<rel>_<arch>.deb
  18. ```
  19. ### apt
  20. ```
  21. sudo apt install -y mergerfs
  22. ```
  23. ## Ubuntu
  24. Most Ubuntu installs are of a stable branch and therefore do not have
  25. the most up to date software. While mergerfs is available via `apt` it
  26. is suggested that users install the most recent version available from
  27. the [releases page](https://github.com/trapexit/mergerfs/releases).
  28. ### prebuilt deb
  29. ```
  30. wget https://github.com/trapexit/mergerfs/releases/download/<version>/mergerfs_<ver>.ubuntu-<rel>_<arch>.deb
  31. sudo dpkg -i mergerfs_<ver>.ubuntu-<rel>_<arch>.deb
  32. ```
  33. ### apt
  34. ```
  35. sudo apt install -y mergerfs
  36. ```
  37. ## Raspberry Pi OS
  38. The same as Debian or Ubuntu.
  39. ## Fedora
  40. Get the RPM from the [releases page](https://github.com/trapexit/mergerfs/releases).
  41. ```
  42. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.fc<rel>.<arch>.rpm
  43. sudo rpm -i mergerfs-<ver>.fc<rel>.<arch>.rpm
  44. ```
  45. ## CentOS / Rocky
  46. Get the RPM from the [releases page](https://github.com/trapexit/mergerfs/releases).
  47. ```
  48. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.el<rel>.<arch>.rpm
  49. sudo rpm -i mergerfs-<ver>.el<rel>.<arch>.rpm
  50. ```
  51. ## ArchLinux
  52. 1. Setup AUR
  53. 2. `pacman -S mergerfs`
  54. ## Other
  55. Static binaries are provided for situations where native packages are
  56. unavailable.
  57. Get the tarball from the [releases page](https://github.com/trapexit/mergerfs/releases).
  58. ```
  59. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-static-linux_<arch>.tar.gz
  60. sudo tar xvf mergerfs-static-linux_<arch>.tar.gz -C /
  61. ```