Skip to content

Instantly share code, notes, and snippets.

@sebsto
Created April 6, 2022 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebsto/b53e61c5c8cfc38ad87289dd089b8174 to your computer and use it in GitHub Desktop.
Save sebsto/b53e61c5c8cfc38ad87289dd089b8174 to your computer and use it in GitHub Desktop.
To mount an APS volume on Ubuntu
# build Fuse from the source
mkdir -pv ~/src && cd ~/src
git clone https://github.com/sgan81/apfs-fuse.git
cd apfs-fuse
git submodule init
git submodule update
mkdir build
cd build
cmake ..
make -j $(nproc)
sudo cp apfs-* /usr/local/bin/
# Install from the repo
sudo apt-get update
sudo apt-get install -y fuse libfuse3-dev bzip2 libbz2-dev cmake g++ git libattr1-dev zlib1g-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment