From a1520749755ae7b9ac35a0740240791b99c2167a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Mon, 28 Jul 2025 21:18:46 +0200 Subject: [PATCH] Update raspberry.md --- raspberry.md | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/raspberry.md b/raspberry.md index b2e9ca3..5660dc6 100644 --- a/raspberry.md +++ b/raspberry.md @@ -17,14 +17,30 @@ Recommended configuration: ## Step 2: Install Required Packages +**Tested Printers:** + +- EPSON ET-2750 Series with driver: 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 the packages are being installed (it may take a while): ```bash sudo apt-get update +sudo apt-get upgrade -y sudo add-apt-repository ppa:ondrej/php sudo apt-get install -y git cups zip unzip supervisor \ - composer php-zip php-curl php-xml php-mbstring + php-cli php-zip php-curl php-xml php-mbstring \ + 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: @@ -103,7 +119,7 @@ print-cli serve If everything is configured correctly, you should see the following output: ```text -Starting service... +Starting service... Reading configuration... Service started! ``` @@ -131,15 +147,6 @@ sudo supervisorctl start print-cli # Troubeshooting -## Orange PI 5 Plus Driver - -### EPSON ET 2750 -Driver: Epson Expression ET-2750 EcoTank - CUPS+Gutenprint v5.3.3 (color) - -```bash -sudo apt install printer-driver-gutenprint -``` - ## WLAN https://www.makeuseof.com/connect-to-wifi-with-nmcli/