Hi all, I’ve recently switched over to Linux Mint from Windows 10 and I’m having trouble installing a CH340 driver from Sparkfun. I’ve managed to unzip the contents and have it in this location: /home/user/Downloads/CH341SER_LINUX. I’ve tried running the files using the ./ command for both the ch34x.c and Makefile but ran into a bash issue which I’m stuck trying to figure out. Could someone please tell me how to make it work? I’ve already looked up a couple of different videos on Youtube but they kind of skip the explanation of how to install this driver on Linux in favor of Windows and MacOS.

Please see the attached image for the response I get in the terminal.

UPDATE: It turns out I had a bad micro USB cable. Most of the ones I was using to connect to an ESP32 board were charge only. Mint apparently had the driver for this all along. Thanks for the help everyone.

  • Jallu@sopuli.xyz
    link
    fedilink
    arrow-up
    2
    arrow-down
    14
    ·
    edit-2
    9 days ago

    Doesn’t look like the executable you are trying to run is with executable rights.

    chmod +x ch34x.c
    

    And retry.

    (I don’t have any knowledge of this driver or installing it. Just wanted to give some directions.)

    • sping@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      6
      ·
      9 days ago

      You don’t execute C source files. They have to be compiled.

      First point as someone else commented, that driver is already present in any mainstream kernel. It’s very unlikely you have any need to build it.

      But if you really want to build it the command will be make that will get instructions from Makefile on how to build the driver. But there will be other tools and libraries needed.