Update orangepi5plus.md

This commit is contained in:
René Preuß
2025-07-20 12:48:12 +02:00
committed by GitHub
parent fd0c32b32e
commit 06765121cb

View File

@@ -19,7 +19,7 @@ Recommended configuration:
**Tested Printers:** **Tested Printers:**
- Epson Expression ET-2750 EcoTank - CUPS+Gutenprint v5.3.3 (color) - EPSON ET-2860 Series with driver: Epson Expression ET-2750 EcoTank - CUPS+Gutenprint v5.3.3 (color)
Next, we need to install the required packages for Print-CLI to work. Run the following commands and grab a coffee while Next, we need to install the required packages for Print-CLI to work. Run the following commands and grab a coffee while
the packages are being installed (it may take a while): the packages are being installed (it may take a while):
@@ -28,10 +28,18 @@ the packages are being installed (it may take a while):
sudo apt-get update sudo apt-get update
sudo add-apt-repository ppa:ondrej/php sudo add-apt-repository ppa:ondrej/php
sudo apt-get install -y git cups zip unzip supervisor \ sudo apt-get install -y git cups zip unzip supervisor \
composer php-zip php-curl php-xml php-mbstring \ php-zip php-curl php-xml php-mbstring \
printer-driver-gutenprint printer-driver-gutenprint
``` ```
Install Composer as usual:
```
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
```
Finally, add the Composer bin directory to your PATH, so you can run the `print-cli` command from anywhere: Finally, add the Composer bin directory to your PATH, so you can run the `print-cli` command from anywhere: