Skip to content

Commit 7278a32

Browse files
authored
Update ide-v2-downloading-and-installing.md
Install libsecret and warn about different boards
1 parent 10c6607 commit 7278a32

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,16 @@ 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. In case you cannot run the AppImage file, make sure that FUSE is installed on your system.
64+
You can now double click the file to launch the Arduino IDE 2 on your Linux machine.
65+
66+
##### Troubleshooting
67+
In case you cannot run the AppImage file, make sure that FUSE and libsecret are installed on your system.
6568

6669
In Ubuntu (>= 22.04):
6770
```bash
6871
sudo add-apt-repository universe
6972
sudo apt install libfuse2
73+
sudo apt install libsecret-1-0
7074
```
7175

7276
In Fedora
@@ -76,7 +80,9 @@ dnf install fuse
7680

7781
See instructions for installing FUSE on your distribution [here](https://github.com/AppImage/AppImageKit/wiki/FUSE).
7882

83+
##### Serial port access
7984
To enable the Arduino IDE to access the serial port and upload code to your board, the following rule can be added to `/etc/udev/rules.d/99-arduino.rules`.
8085
```
8186
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2341", GROUP="plugdev", MODE="0666"
8287
```
88+
You may need other different rules for different boards. More info [here](https://support.arduino.cc/hc/en-us/articles/9005041052444-Fix-udev-rules-on-Linux).

0 commit comments

Comments
 (0)