From 9566fb31c48672b5d4bb2bbde405bc2341e94765 Mon Sep 17 00:00:00 2001 From: Francis Date: Tue, 14 Nov 2023 12:22:24 +0100 Subject: [PATCH 1/3] Update README.md Clarified instructions based on personal bugs in ubuntu --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 84bf994..6ae5c20 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,17 @@ Example for Linux: sudo apt update sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc-c++ git libattr1-dev zlib1g-dev ``` +If you get an error at the above step complaining about "c+" not found or similar, it seems your distro does not like installing c++ using regular apt, so we use apt-get with quotes: +``` +sudo apt-get install "c++" +``` Of course these commands depend on the Linux distribution. +Lastly, if running apfs-fuse directly in terminal returns command not recognized, do this inside the apfs-fuse/build folder: +``` +sudo cp -a . /usr/local/bin +``` + Clone the repository: ``` git clone https://github.com/sgan81/apfs-fuse.git From d61ee0d8e20d0683c7228137488afc0bf5a75b2d Mon Sep 17 00:00:00 2001 From: Francis Date: Tue, 14 Nov 2023 12:24:01 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ae5c20..9fcdf5b 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ sudo apt-get install "c++" ``` Of course these commands depend on the Linux distribution. -Lastly, if running apfs-fuse directly in terminal returns command not recognized, do this inside the apfs-fuse/build folder: +Lastly, if running apfs-fuse directly in terminal returns command not recognized then it has not been added to path correctly, do this inside the apfs-fuse/build folder: ``` sudo cp -a . /usr/local/bin ``` From 6637b033b3161ddca502ac955bc7df1214de65b1 Mon Sep 17 00:00:00 2001 From: Francis Date: Tue, 14 Nov 2023 13:42:31 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9fcdf5b..060efed 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,6 @@ sudo apt-get install "c++" ``` Of course these commands depend on the Linux distribution. -Lastly, if running apfs-fuse directly in terminal returns command not recognized then it has not been added to path correctly, do this inside the apfs-fuse/build folder: -``` -sudo cp -a . /usr/local/bin -``` - Clone the repository: ``` git clone https://github.com/sgan81/apfs-fuse.git @@ -73,6 +68,11 @@ Note that the driver uses FUSE 3.0 by default (required on 32-bit systems). If you want do compile using FUSE 2.6, use `ccmake .` to change the option `USE_FUSE3` to `OFF`. +Lastly, if running apfs-fuse directly in terminal returns command not recognized then it has not been added to path correctly, do this inside the apfs-fuse/build folder: +``` +sudo cp -a . /usr/local/bin +``` + ### Mount a drive ``` apfs-fuse