this post was submitted on 07 Jul 2024
28 points (88.9% liked)
Linux
48031 readers
1176 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Have you setup a rules file for USB? You must have a udev rule setup that gives your user access to the hardware. It is trivial to create, but is one of those little headaches you learn as you go. Sparkfun and Adafruit should both have good tutorials if you search either of them for udev rules.
Mine for a ch340 is done like this:
I just told you to enter the terminal editor nano and enter a note that will help you remember that this is for the ch340
# ch340
followed by a line that sets the permissions for the device using a rule for which users have access to the device. I'm assigning the rule based on the vendor and product ID numbers. You can find these numbers by using the$ lsusb
command. FYI, the $ is standard shorthand for command line as your standard user. This is opposed to # which is short for the root user at the command line.Once you enter this line in nano, follow the instructions to save the file in nano
:qw
IIRC. The next time you plug in the device, the kernel should use this rule to set the permissions for the device to 0666 which means everyone can read write, but not execute stuff from the port; with execute would be 0777.When you are trying to find info about a USB device the following may be helpful:
Note that the last line should be the most recently connected device.
$ dmesg
is the system-d boot log. Depending on how system-d is configured, you'll probably see timestamps on the left. The initial bootup devices will show up with a tightly grouped time stamp, while later connections will show a much larger number.There have been some recent changes in Fedora that have broken a script I wrote to help me with all the various places where USB hardware is located and finding the right info. I'm trying to parse that script for the key elements. The first step is to find the location of the hardware. You are looking for something like
/dev/bus/usb/003/003
or wherever the new device got mounted. This is only the start, because different parts of the device may be mounted in different locations. I'm not just talking about the CH340, but like, if you are doing microcontrollers stuff that gets more complicated like forth, micropython and circuit python where there will be more going on than just the serial port, or you need to know low level stuff. Once you know the specific port, you can use$ udevadm info --attribute-walk --path=$(udevadm info --query=path --name=/dev/bus/usb/003/003) # enter the port for the device in question
.In the past, my script used
$ dmesg
to retrieve the device location, then used$ lsusb -D *device location*
to get the basic info. Then I went a layer deeper with the udevadm command to see everything related to the device. The command$ fdisk -l
might also help with some STM32 type stuff that has a dfu bootloader and identifies as a USB drive when plugged in... At least, I think that was the reason I kept that option in my script, it has been awhile since I used one of those.Edit: I can get the actual port location of a device now using
$ lsusb -t -vv
.