mirror of
https://github.com/anikeen-com/print-cli.git
synced 2026-03-13 13:46:07 +00:00
Add autowire
Add logs command Improve print jobs handling Improve installation/documentation
This commit is contained in:
76
docs/orangepi5plus.md
Normal file
76
docs/orangepi5plus.md
Normal file
@@ -0,0 +1,76 @@
|
||||
# Installation
|
||||
|
||||
Installing Print-CLI on a Orange Pi 5 Plus is a straightforward process but requires some time to install the necessary
|
||||
packages. This guide will help you to install Print-CLI on a Orange Pi 5 Plus.
|
||||
|
||||
Estimated time: 30-60 minutes
|
||||
|
||||
## Step 1: Install the Orange Pi OS
|
||||
|
||||
Before we start, make sure you have created a bootable SD card with the **Orange Pi 1.2.0 Jammy** image. The
|
||||
simplest way is to use the Balena Etcher which helps you flash the Orange Pi image onto your SD card.
|
||||
|
||||
Recommended configuration:
|
||||
|
||||
- **OS**: Orange Pi 1.2.0 Jammy with Linux 5.10.160-rockchip-rk3588
|
||||
- **Username**: orangepi
|
||||
|
||||
## 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)
|
||||
|
||||
With the Orange Pi OS installed, we need to install the required packages for Print-CLI to work. Run the following
|
||||
command and grab a coffee while the packages are being installed (it may take a while):
|
||||
|
||||
> **Note:** It may ask you for your password during the installation process.
|
||||
|
||||
```bash
|
||||
curl -sfL https://print-cli.b-cdn.net/install | bash -
|
||||
```
|
||||
|
||||
## Step 3: Configuration
|
||||
|
||||
After the installation is complete, you can configure your printer and other settings. Just run the following command:
|
||||
|
||||
```bash
|
||||
print-cli init
|
||||
```
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
## WLAN
|
||||
|
||||
https://www.makeuseof.com/connect-to-wifi-with-nmcli/
|
||||
|
||||
# Printer Offsets
|
||||
|
||||
### EPSON ET-2750 Series (with Gutenprint @ OrangePI)
|
||||
|
||||
> Some other OS and drivers need other offsets.
|
||||
|
||||
```json
|
||||
{
|
||||
"badge": {
|
||||
"offset": {
|
||||
"y": 0,
|
||||
"x": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### EPSON ET-2860 Series (with Gutenprint @ OrangePI)
|
||||
|
||||
```json
|
||||
{
|
||||
"badge": {
|
||||
"offset": {
|
||||
"y": -80,
|
||||
"x": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
46
docs/raspberry.md
Normal file
46
docs/raspberry.md
Normal file
@@ -0,0 +1,46 @@
|
||||
# Installation
|
||||
|
||||
Installing Print-CLI on a Raspberry Pi is a quite simple process but requires some time installing the required
|
||||
packages. This guide will help you to install Print-CLI on a Raspberry Pi.
|
||||
|
||||
Estimated time: 30-60 minutes
|
||||
|
||||
## Step 1: Install the Raspberry Pi OS
|
||||
|
||||
Before we start, make sure you have created a bootable SD card with the **Ubuntu Server 22.04 LTS 64-bit** image. The
|
||||
simplest way is to use the Raspberry Pi Imager which enables you to select an Ubuntu image when flashing your SD card.
|
||||
|
||||
Recommended configuration:
|
||||
|
||||
- **OS**: Ubuntu Server 22.04 LTS 64-bit
|
||||
- **Username**: print-cli
|
||||
|
||||
## 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)
|
||||
|
||||
With the Raspberry Pi OS installed, we need to install the required packages for Print-CLI to work. Run the following
|
||||
command and grab a coffee while the packages are being installed (it may take a while):
|
||||
|
||||
> **Note:** It may ask you for your password during the installation process.
|
||||
|
||||
```bash
|
||||
curl -sfL https://print-cli.b-cdn.net/install | bash -
|
||||
```
|
||||
|
||||
## Step 3: Configuration
|
||||
|
||||
After the installation is complete, you can configure your printer and other settings. Just run the following command:
|
||||
|
||||
```bash
|
||||
print-cli init
|
||||
```
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
## WLAN
|
||||
|
||||
https://www.makeuseof.com/connect-to-wifi-with-nmcli/
|
||||
Reference in New Issue
Block a user