并行端口无法与 HP Laserjet 6P 配合使用

并行端口无法与 HP Laserjet 6P 配合使用

我正在运行 Precise (12.04 LTS) 的旧硬件 (Gateway E4300) 上设置旧打印机 (HP LaserJet 6P)。当我尝试在 中选择并行端口时hp-setup -i,它给出了以下错误:

$ sudo hp-setup -i

--------------------------------
| SELECT CONNECTION (I/O) TYPE |
--------------------------------

  Num       Connection  Description
            Type
  --------  ----------  ----------------------------------------------------------
  0*        usb         Universal Serial Bus (USB)
  1         net         Network/Ethernet/Wireless (direct connection or JetDirect)
  2         par         Parallel Port (LPT:)

Enter number 0...2 for connection type (q=quit, enter=usb*) ? 2

Using connection type: par

error: No device selected/specified or that supports this functionality.

到目前为止我已经检查过的内容:

1) 打印机已插入并连接。

2)打印机已打开。

3) 在BIOS中启用并行端口。

4) BIOS 中未设置并行端口模式(没有选项)。

5) 并行端口模块已加载。 lsmod 的输出,修剪到相关位:

wdmartin@woot:~$ lsmod
Module                  Size  Used by
ppdev                  12850  0
lp                     17456  0
parport                40931  3 ppdev,parport_pc,lp
parport_pc             32115  1

6)/dev/lp0/dev/parport0存在:

$ ls -hal /dev/lp0 /dev/parport0
crw-rw---- 1 root lp  6, 0 Aug 15 11:58 /dev/lp0
crw-rw---- 1 root lp 99, 0 Aug 15 11:58 /dev/parport0

7)我的用户是 lp 和 lpadmin 组的成员:

$ groups
wdmartin adm lp cdrom sudo dip plugdev lpadmin sambashare

8)dmesg显示已加载的并口驱动:

[   17.206314] parport_pc 00:08: reported by Plug and Play ACPI
[   17.206349] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[   17.317279] lp0: using parport0 (interrupt-driven).
[   17.527946] ppdev: user-space parallel port driver

9)lspci 才不是显示并行端口:

$ lspci
00:00.0 Host bridge: Intel Corporation 82915G/P/GV/GL/PL/910GL Memory Controller Hub (rev 04)
00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL Integrated Graphics Controller (rev 04)
00:02.1 Display controller: Intel Corporation 82915G Integrated Graphics Controller (rev 04)
00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (rev 03)
00:1c.2 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 3 (rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 4 (rev 03)
00:1d.0 USB controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03)
00:1d.1 USB controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03)
00:1d.2 USB controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03)
00:1d.3 USB controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 03)
00:1d.7 USB controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d3)
00:1f.0 ISA bridge: Intel Corporation 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03)
00:1f.2 IDE interface: Intel Corporation 82801FB/FW (ICH6/ICH6W) SATA Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03)
02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8050 PCI-E ASF Gigabit Ethernet Controller (rev 17)
05:05.0 FireWire (IEEE 1394): LSI Corporation FW322/323 (rev 61)

为什么并行端口没有显示在 lspci 中?这是否意味着并行端口无法正常工作,尽管其他一切看起来都很好?

我尝试通过 CUPS 而不是使用 来配置打印机hp-setup,它似乎接受了设置并执行了打印作业,但没有实际进行打印。

欢迎大家提出意见。

答案1

好的,那么您声明您的用户是 lp 组的成员。

/etc/group 中的这一行是什么样的?

这将让我们确切地知道该用户是否是该组的成员。

相关内容