web-dev-qa-db-fra.com

Installation de HP Printer sur Crouton, HPLIP indique que CUPS est manquant.

J'essaie de connecter mon HP Deskjet 3000 à un croûton sur mon Chromebook Toshiba. J'ai suivi les instructions d'installation depuis http://hplipopensource.com/hplip-web/install/install/index.html et j'ai finalement rencontré ceci:

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.

Mais quand je cours:

Sudo apt-get install cups

Je reçois:

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:~$ 

Je suis un peu perdu à ce stade. Comment puis-je installer CUPS là où hplip le reconnaît et termine l'installation?

3
user255625

Pour démarrer le service, exécutez:

Sudo /etc/init.d/cups start

ça a fonctionné pour moi

1
user684118

J'ai eu le même problème et je l'ai résolu en exécutant le service Cups:

service cups start

Il semble que le script d’installation de HP vérifie si le service est démarré pour indiquer si le package est installé.

1
calandoa

16.04 + systemd

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