sgan81 / apfs-fuse

FUSE driver for APFS (Apple File System)
GNU General Public License v2.0
1.8k stars 163 forks source link

missing deps #82

Open yurikoles opened 5 years ago

yurikoles commented 5 years ago

Seems like zlib1g-dev is missing in build instructions, also on Ubuntu 19.04 you should install libfuse3-dev instead of libfuse-dev. BTW, this deps is also don't checked by CMake.

tinyapps commented 5 years ago

Under Ubuntu 19.04, I had to tweak the Example for Linux (sudo apt install fuse libfuse-dev bzip2 libbz2-dev cmake gcc-c++ git libattr1-dev) like so:

sudo apt install fuse3 libfuse3-dev libbz2-dev cmake git libattr1-dev zlib1g-dev

Did not need to add bzip2 or gcc-c++ on a fresh install. Replaced fuse and libfuse-dev with fuse3 and libfuse3-dev, but had to sudo add-apt-repository universe first in order to make them available.

jswhisperer commented 4 years ago

https://github.com/sgan81/apfs-fuse/issues/87#issuecomment-663772233