ubuntu22.04 install CH340
时间: 2023-09-30 22:04:03 浏览: 276
To install the CH340 driver on Ubuntu 22.04, you can follow these steps:
1. Open a terminal by pressing Ctrl+Alt+T.
2. Update the package lists by running the following command:
```
sudo apt update
```
3. Install the `git` package, which will be needed to download the driver source code:
```
sudo apt install git
```
4. Clone the CH34x driver repository from GitHub:
```
git clone https://github.com/juliagoda/CH34x_Install_Ubuntu.git
```
5. Navigate to the cloned repository:
```
cd CH34x_Install_Ubuntu
```
6. Make the installer script executable:
```
chmod +x install_CH34x.sh
```
7. Run the installer script with root privileges:
```
sudo ./install_CH34x.sh
```
8. Follow the on-screen instructions and provide your password when prompted.
9. After the installation is complete, reboot your system:
```
sudo reboot
```
Once your system reboots, the CH340 driver should be installed and ready to use.
阅读全文