Skip to content

Commit b301431

Browse files
authored
Document FUSE as pre-requisite to running AppImage
I was unable to install Arduino IDE on Ubuntu 22.04 with the current instructions. - State FUSE (https://github.com/AppImage/AppImageKit/wiki/FUSE) as pre requisite for running AppImage in Linux - Provide installation instruction for Ubuntu and Fedora - Point users to FUSE documentation for instructions on other distributions.
1 parent 7b8f10e commit b301431

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

content/software/ide-v2/tutorials/getting-started/01.ide-v2-downloading-and-installing/ide-v2-downloading-and-installing.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,17 @@ Before we can launch the editor, we need to first make it an **executable file**
6161

6262
![Allow execution of file.](assets/linux-installation.gif)
6363

64-
You can now double click the file to launch the Arduino IDE 2 on your Linux machine.
64+
You can now double click the file to launch the Arduino IDE 2 on your Linux machine. In case you cannot run the AppImage file, make sure that FUSE is installed on your system.
65+
66+
In Ubuntu (>= 22.04):
67+
```bash
68+
sudo add-apt-repository universe
69+
sudo apt install libfuse2
70+
```
71+
72+
In Fedora
73+
```bash
74+
dnf install fuse
75+
```
76+
77+
See instructions for installing FUSE on your distribution [here](https://github.com/AppImage/AppImageKit/wiki/FUSE).

0 commit comments

Comments
 (0)