web-dev-qa-db-ja.com

CroutonにHPプリンターをインストールすると、HPLIPはCUPSが見つからないと言う

東芝Chromebookのクルトンを介してHP Deskjet 3000を接続しようとしています。 http://hplipopensource.com/hplip-web/install/install/index.html からインストール手順に従いましたが、最終的にこれに遭遇しました:

DEPENDENCY AND CONFLICT RESOLUTION
----------------------------------
Running 'Sudo apt-get install --assume-yes libcups2'
Please wait, this may take several minutes...
error: A required dependency 'cups (CUPS - Common Unix Printing System)' is still missing.


RUNNING POST-PACKAGE COMMANDS
-----------------------------
OK


RE-CHECKING DEPENDENCIES
------------------------
error: A required dependency 'cups (CUPS - Common Unix Printing System)' is still missing.
error: Installation cannot continue without this dependency.
error: Please manually install this dependency and re-run this installer.

しかし、次に実行すると:

Sudo apt-get install cups

私は得る:

Reading package lists... Done
Building dependency tree      
Reading state information... Done
cups is already the newest version.
The following package was automatically installed and is no longer required:
  libglade2-0
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
(precise)alan@localhost:~$ 

私はこの時点で少し迷っています。 hplipが認識し、インストールを完了する場所にCUPSをインストールするにはどうすればよいですか?

3
user255625

サービスを開始するには、次を実行します。

Sudo /etc/init.d/cups start

それは私のために働いた

1
user684118

私は同じ問題を抱えていたので、Cupsサービスを実行するだけで解決しました。

service cups start

HPインストールスクリプトは、パッケージがインストールされているかどうかを推測するためにサービスが開始されているかどうかを実際に確認しているようです。

1
calandoa

16.04 + systemd

Sudo systemctl start cups
Sudo systemctl start cups-browsed
0
int_ua