FUSE install log (3.10.5, Ubuntu-20.04.3 server)
FUSE 3.10.5 (最新版) を Ubuntu-20.04.3 server に installしました.
ダウンロード、コンパイル、インストール
sudo su -
apt -y install meson pkg-config python3-pip
pip3 install pytest
wget https://github.com/libfuse/libfuse/releases/download/fuse-3.10.5/fuse-3.10.5.tar.xz
tar xfJ fuse-3.10.5.tar.xz
cd fuse-3.10.5/
mkdir build
cd build/
meson ..
meson configure
meson configure -D disable-mtab=true
ninja
python3 -m pytest test/
ninja install
ln -s /usr/local/lib/x86_64-linux-gnu/libfuse3.so.3 /usr/lib/x86_64-linux-gnu/
サンプルの動作
こちらにある hello.c をローカルに保存してください.
gcc -Wall hello.c `pkg-config fuse3 --cflags --libs` -o hello
./hello -f /mnt/
別のターミナルで,以下をやってっましょう
この記事が気に入ったらサポートをしてみませんか?