diff --git a/README.md b/README.md index 2908df627..c15c76318 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,38 @@ [![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/internxt/drive-desktop-linux) +## Compatibility +As of right now, Internxt Drive Desktop for Linux is only compatible with Ubuntu and Debian with the File explorer **Nautilus** (The default file explorer for Gnome). + +We cannot guarantee that the app will work properly on other Linux distributions or with other file explorers as our development and testing efforts are focused on ensuring the best experience for Ubuntu and Debian users. + +### FUSE 2 +This application requires **FUSE 2** for the virtual drive functionality. FUSE 3 is not supported. On recent Ubuntu versions, `libfuse2` may need to be installed manually: + +#### For example, on Debian (>= 13) and Ubuntu (>= 24.04): +```bash +sudo add-apt-repository universe +sudo apt install libfuse2t64 +``` +**Note:** In Ubuntu 24.04, the libfuse2 package was renamed to libfuse2t64. + +#### For example, on Ubuntu (>= 22.04): +```bash +sudo add-apt-repository universe +sudo apt install libfuse2 +``` +**Warning:** While libfuse2 is OK, do not install the fuse package as of 22.04 or you may break your system. If the fuse package did break your system, you can recover as described [here](https://github.com/orgs/AppImage/discussions/1339). + +#### For example, on Ubuntu (<= 21.10): +```bash +sudo apt install fuse libfuse2 +sudo modprobe fuse +sudo groupadd fuse + +user="$(whoami)" +sudo usermod -a -G fuse $user +``` + ## Installation Internxt Drive is available for Linux in two formats: @@ -117,4 +149,4 @@ Check that the internxt protocol is correctly registered: `gio mime x-scheme-handler/internxt` -Verify by logging into the application. \ No newline at end of file +Verify by logging into the application.