Skip to content

Commit

Permalink
Create ubuntu.md
Browse files Browse the repository at this point in the history
  • Loading branch information
urmilparikh authored Jan 22, 2023
1 parent ad168a6 commit a69a454
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions ubuntu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Recipe for Ubuntu systems

### Install dependencies:

```bash
apt install linux-headers-$(uname -r)
```

### Build and load / unload

```bash
make

sudo make load

ls /dev/ttyUSB*

sudo make unload
```

### Troubleshooting

If you see `usbfs: interface 0 claimed by ch34x while 'brltty' sets config #1` in `sudo demsg`:

```bash
for f in /usr/lib/udev/rules.d/*brltty*.rules; do
sudo ln -s /dev/null "/etc/udev/rules.d/$(basename "$f")";
done

sudo udevadm control --reload-rules

sudo systemctl mask brltty.path

sudo dmesg
```

0 comments on commit a69a454

Please sign in to comment.