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

Document Linux error with online installer #227

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
7 changes: 7 additions & 0 deletions docs/basics/install-binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ This installer is not yet available for ESPs with flash chips smaller than 4MB (
Several users reported that this alternative, unofficial installer site may work better: [https://wled-install.github.io/](https://wled-install.github.io/).
After using the standard WLED installer, microphone hardware sometimes cannot be initialized properly by WLED.

!!! tip
If your serial port is listed on linux ('ttyUSB0 CP2102' or similar) but you are unable to open it, make sure you give yourself permission to use that device.
Find the owner with:
`ls -la /dev/ttyUSB0` (replace ttyUSB0 with your device). If it says `root`, Chrome will not be able to open it.
Make yourself the owner by running `whoami` to get your username, and then to change the owner:
`sudo chown {your username} /dev/ttyUSB0`(replace ttyUSB0 with your device).

### Flashing method 2: esptool

- First of all, please follow the steps to install esptool.py [here](https://github.com/espressif/esptool).
Expand Down