sgan81 / apfs-fuse

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

install instructions `sudo apt install gcc-c++` library is invalid #101

Open AMDphreak opened 5 years ago

AMDphreak commented 5 years ago

I seem to have gotten around it by simply removing "c++" from gcc-c++. Not sure why that's even there. gcc is the package name, and g++ is the c++ compiler name when executed. gcc-c++ isn't any package I know of.

AMDphreak commented 5 years ago

Submitted PR #102

Andrew-J-Larson commented 3 years ago

You actually need 2 packages.

I think they were using debian, instead of Ubuntu.

In Ubuntu, at least for me, I needed to install gcc and g++.

ElectricRCAircraftGuy commented 1 year ago

+1 on this. I'm on Ubuntu 20.04. sudo apt install gcc-c++ is an invalid package. sudo apt install gcc g++ works, though.

So, here is the full command I need for Linux Ubuntu 20.04:

# NOT this (`gcc-c++`)
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc-c++ git libattr1-dev zlib1g-dev

# do this instead (`gcc g++`)
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc g++ git libattr1-dev zlib1g-dev
AMDphreak commented 1 year ago

Submitted in 2019, and yet this bug is still around? Sheesh

winter-hi commented 4 months ago
sudo vim /etc/apt/sources.list  

#append 
deb http://cz.archive.ubuntu.com/ubuntu noble main universe

sudo apt update
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc g++ git libattr1-dev zlib1g-dev 

problem solving

sscotti commented 3 months ago

You actually need 2 packages.

I think they were using debian, instead of Ubuntu.

In Ubuntu, at least for me, I needed to install gcc and g++.

I ran into the same issue. Let me try what you suggest. UBUNTU 24.x