From 2030e738dc67d7fed5cfb2c7789c8f444c7a8c3f Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Mon, 9 Feb 2026 17:51:33 +0100 Subject: [PATCH 1/3] chore: Update readme stating ubuntu/debian compatibilities --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2908df627..e217e083f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ [![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. + ## Installation Internxt Drive is available for Linux in two formats: @@ -117,4 +122,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. From f3c8871c1858fa9a65b7d27cc1ce0dd56b893656 Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Tue, 10 Feb 2026 10:15:09 +0100 Subject: [PATCH 2/3] update fuse2 section --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index e217e083f..aa9121212 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,14 @@ As of right now, Internxt Drive Desktop for Linux is only compatible with Ubuntu 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: + +| Ubuntu Version | Package | Command | +|---|---|---| +| 22.04 – 23.10 | `libfuse2` | `sudo apt install libfuse2` | +| 24.04+ | `libfuse2t64` | `sudo apt install libfuse2t64` | + ## Installation Internxt Drive is available for Linux in two formats: From 4eebc9172965b74afc4a118a50c8502844ce1045 Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Tue, 10 Feb 2026 10:21:27 +0100 Subject: [PATCH 3/3] add fuse 2 section --- README.md | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index aa9121212..c15c76318 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,29 @@ We cannot guarantee that the app will work properly on other Linux distributions ### 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: -| Ubuntu Version | Package | Command | -|---|---|---| -| 22.04 – 23.10 | `libfuse2` | `sudo apt install libfuse2` | -| 24.04+ | `libfuse2t64` | `sudo apt install libfuse2t64` | +#### 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