2

I bought HP Laser MFP 135a black and white scanner/printer. I am new in Ubuntu and I use Ubuntu 18.04 LTS. I tried to open localhost:631 by installing CUPS in Terminal as seeing in one youtube video but no suceed. I do not know much to do. I use printer/scanner via USB. Could someone be kind and help me to set to work both scanner and printer.

:~$ lsusb -t 
/: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 5000M 
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/11p, 480M 
|__ Port 1: Dev 4, If 0, Class=Vendor Specific Class, Driver=, 480M
|__ Port 1: Dev 4, If 1, Class=Printer, Driver=usblp, 480M 
|__ Port 1: Dev 4, If 2, Class=Vendor Specific Class, Driver=, 480M 
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/3p, 480M 
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/8p, 480M
|__ Port 3: Dev 3, If 1, Class=Wireless, Driver=btusb, 12M 
|__ Port 3: Dev 3, If 0, Class=Wireless, Driver=btusb, 12M 
|__ Port 6: Dev 4, If 1, Class=Video, Driver=uvcvideo, 480M 
|__ Port 6: Dev 4, If 0, Class=Video, Driver=uvcvideo, 480M 
|__ Port 7: Dev 5, If 0, Class=Application Specific Interface, Driver=, 12M 
|__ Port 7: Dev 5, If 1, Class=Chip/SmartCard, Driver=, 12M 
|__ Port 7: Dev 5, If 2, Class=Chip/SmartCard, Driver=, 12M 
|__ Port 7: Dev 5, If 3, Class=Application Specific Interface, Driver=, 12M
N0rbert
  • 103,263

1 Answers1

0

You need sane-airscan. Refer page https://github.com/alexpevzner/sane-airscan/blob/master/README.md

You need to follow detail & steps mentioned in this and further in this post by selecting your operation system Ubuntu 18.04.

  1. Add repository

    sudo sh -c "echo 'deb http://download.opensuse.org/repositori ... ntu_18.04/ /' > /etc/apt/sources.list.d/home:pzz.list"

  2. Download key key

    wget -nv https://download.opensuse.org/repositor ... elease.key -O Release.key

  3. Add key

    sudo apt-key add - < Release.key

  4. update repositories

    sudo apt-get update

  5. install sane-airscan

    sudo apt-get install sane-airscan

Ajay
  • 688