Page 1 of 1

How to install rar2fs in raspbian?

Posted: Mon Feb 26, 2018 12:55 pm
by moh86
Hello, can anybody tell me how I can install this application?
I have downloaded "rar2fs-1.26.0.tar.gz" from the official developer website and followed the installation tutorial:

Code: Select all

./configure && make && make install
But it ends up with an error like fuse.h couldn't be found:

Code: Select all

Cannot find fuse.h - add alternative include search path using
--with-fuse and rerun configure.
Sorry but I'm not a Linux guru.

Link to the website:
https://hasse69.github.io/rar2fs/

Re: How to install rar2fs in raspbian?

Posted: Mon Feb 26, 2018 1:29 pm
by n67
You probably need to install libfuse-dev.

Observe:

$ apt-cache search libfuse-dev
libfuse-dev - Filesystem in Userspace (development)
$

Usually, when you need to compile a new program that uses some existing library, you need to install the "-dev" version of that package (library).

Re: How to install rar2fs in raspbian?

Posted: Mon Feb 26, 2018 8:12 pm
by moh86
n67 wrote:
Mon Feb 26, 2018 1:29 pm
You probably need to install libfuse-dev.

Observe:

$ apt-cache search libfuse-dev
libfuse-dev - Filesystem in Userspace (development)
$

Usually, when you need to compile a new program that uses some existing library, you need to install the "-dev" version of that package (library).
Thank you!