Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ide-v2-downloading-and-installing.md #2432

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @braxuss-eu

Thank you so much for your pull request. Can you provide us more information about the Linux distro you are using? , your fix seems interesting!

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @jcarolinares!
I'm using "Ubuntu 22.04.5 LTS" on WSL.

Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,16 @@ Before we can launch the editor, we need to first make it an **executable file**

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

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.
You can now double click the file to launch the Arduino IDE 2 on your Linux machine.

##### Troubleshooting
In case you cannot run the AppImage file, make sure that FUSE and libsecret are installed on your system.

In Ubuntu (>= 22.04):
```bash
sudo add-apt-repository universe
sudo apt install libfuse2
sudo apt install libsecret-1-0
```

In Fedora
Expand All @@ -76,7 +80,9 @@ dnf install fuse

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

##### Serial port access
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`.
```
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2341", GROUP="plugdev", MODE="0666"
```
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).