Ubuntu16.04 CUPS安装与Andoird ndk交叉编译CUPS(待续...)

ubuntu安装cups

在Ubuntu上安装CUPS(打印系统)的步骤如下:

1、打开终端。
2、更新软件包列表:

sudo apt update

3、安装CUPS:

sudo apt install cups​​​​​​​

4、安装foomatic-filters与ghostscript:
bash 复制代码
sudo apt-get install foomatic-filters
sudo apt-get install ghostscript

sudo apt-get install cups --reinstall

sudo /etc/init.d/cups restart
5、安装完成后,启动CUPS服务:
bash 复制代码
sudo service cups start
  1. 你可以通过以下命令检查CUPS服务的状态:通过浏览器访问CUPS的网页界面,在地址栏输入:http://localhost:631
6、以上步骤会在Ubuntu系统上安装CUPS,并启动打印服务。如果你的系统中还没有安装Web浏览器,你可以在安装CUPS之后,通过命令行使用lpinfolpadmin工具来配置打印机。
7、安装遇到的问题

Failed to connect to bus: No such file or directory

bash 复制代码
sudo /etc/init.d/dbus start

Failed to start cups.service: Launch helper exited with unknown return code 1

bash 复制代码
sudo /etc/init.d/cups restart
8、打印应用与测试:

添加打印机:

bash 复制代码
lpadmin -p epson-xxx -E -v "ipp://11.22.33.44/ipp/print" -m everywhere

9、设置默认打印队列

如果你有一个或多个打印队列可用,但是没有设置默认,你可以使用 lpoptions 命令来设置默认打印队列。假设你有一个名为 printer1 的打印队列,你可以这样设置它为默认:

bash 复制代码
lpoptions -d epson-xxx
10、开始打印:
bash 复制代码
lp -o media=A4 -o resolution=600dpi xxx.pdf

未完成验证,待续...

相关推荐
1024小神28 分钟前
tauri2.0版本开发苹果ios和安卓android应用,环境搭建和最后编译为apk
android·ios·tauri
兰琛36 分钟前
20241121 android中树结构列表(使用recyclerView实现)
android·gitee
Y多了个想法1 小时前
RK3568 android11 适配敦泰触摸屏 FocalTech-ft5526
android·rk3568·触摸屏·tp·敦泰·focaltech·ft5526
写点什么啦2 小时前
[debug]不同的window连接ubuntu的vscode后无法正常加载kernel
linux·vscode·ubuntu·debug
NotesChapter2 小时前
Android吸顶效果,并有着ViewPager左右切换
android
wellnw2 小时前
[ubuntu]编译共享内存读取出现read.c:(.text+0x1a): undefined reference to `shm_open‘问题解决方案
linux·ubuntu
_祝你今天愉快3 小时前
分析android :The binary version of its metadata is 1.8.0, expected version is 1.5.
android
暮志未晚Webgl4 小时前
109. UE5 GAS RPG 实现检查点的存档功能
android·java·ue5
麦田里的守望者江4 小时前
KMP 中的 expect 和 actual 声明
android·ios·kotlin
Dnelic-4 小时前
解决 Android 单元测试 No tests found for given includes:
android·junit·单元测试·问题记录·自学笔记