LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 05-04-2014, 07:52 AM   #1
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Rep: Reputation: Disabled
Issues installing Panasonic printer kxmb 2000


Hi, just recently installed Zorin 8 and I'm impressed so far. But I have a problem installing Panasonic printer KX-MB 2000. I got stuck in following the instructions in http://panasonic.net/pcc/support/fax...driver.html#PD

AFter connecting the printer and following the steps to add it, I get the message that I need to install: /usr/lib/cups/filter/L_HOJDGCZAZ, but how would I go about installing it? Any ideas? Thank you.
 
Old 05-04-2014, 08:36 AM   #2
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,214

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
L_HOJDGCZAZ
This file is part of the tar archive you downloaded. If you have extracted the archive, there is s sub-directory called 'filter'. The file is in there. As root copy the file to /usr/lib/cups/filter/

Then try the printer.
 
Old 05-04-2014, 09:50 AM   #3
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
ACtually not quite sure how to do that...I mean I know how to use root but I tried dragging the file from desktop to the Terminal but I probably did it incorrectly. IN any case, finally I have the printer printing pages, though, after also installing the scan driver, I don't know how to actually scan a document. Is there a way, for example, to access the Panasonic scanner from Graphics /simple scan? I tried simple scan, but no scanner is detected, although I have it turned on and connected.

Last edited by Seanog; 05-04-2014 at 09:53 AM.
 
Old 05-04-2014, 10:05 AM   #4
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,214

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
ACtually not quite sure how to do that
The command to use is 'cp' The command would look like this:

'cp /path/to/archivne/filter/L_HOJDGCZAZ /usr/lib/cups/filter/' as root user, or sudo if that is how your system is set up. Just what is between the quotes, not the quotes. Of course you have to enter the correct path to the archive.

Have you got sane installed? Sane is a set of packages to support scanners. These are the packages I have installed.

Quote:
ls -l /var/log/packages | grep sane
-rw-r--r-- 1 root root 781 Jan 14 10:41 ksaneplugin-4.10.5-i486-1
-rw-r--r-- 1 root root 1414 Jan 14 10:42 libksane-4.10.5-i486-1
-rw-r--r-- 1 root root 18056 Jan 14 11:24 sane-1.0.24-i486-1
-rw-r--r-- 1 root root 11464 Jan 14 11:25 xsane-0.998-i486-3
You do not need ksaneplugin unless you are running KDE desktop. libsane and sane are essential. xsane is a graphical front end to run the scanner. These packages are for Slackware 14.1, the names for your distro probably will be slightly different.

You have not said what distro you are using. Go into its package manager, and look for similar packages. Install them if they are not already installed.

Hope this helps.
 
Old 05-04-2014, 10:07 AM   #5
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
I'm using Zorin 8. OK, I will have a look now in Package manager, thanks.
 
Old 05-04-2014, 10:12 AM   #6
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
I see Sane-pygtk is listed. Would that be the one? But only has 1 star out of 5 for some reason...
 
Old 05-04-2014, 10:29 AM   #7
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,214

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Don't know exactly what that package is for. Just a guess, it has something to do with python ( a programming a language and GTK.

In a command prompt, try the command 'sane-find-scanner' ( no quotes ). If you get 'command not found' I don't think you have sane installed. If you get a few lines of output, you have sane.

I have no experience with Zorin, so I can not help much with the package manager.

This is the output I get with sane-find-scanner.

Quote:
sane-find-scanner

# sane-find-scanner will now attempt to detect your scanner. If the
# result is different from what you expected, first make sure your
# scanner is powered up and properly connected to your computer.

# No SCSI scanners found. If you expected something different, make sure that
# you have loaded a kernel SCSI driver for your SCSI adapter.
# Also you need support for SCSI Generic (sg) in your operating system.
# If using Linux, try "modprobe sg".

found USB scanner (vendor=0x03f0 [Hewlett-Packard], product=0x4505 [HP Scanjet G4000 Photo series]) at libusb:001:004
could not open USB device 0x0a12/0x0001 at 002:003: Access denied (insufficient permissions)
could not open USB device 0x1d6b/0x0002 at 001:001: Access denied (insufficient permissions)
could not open USB device 0x1d6b/0x0001 at 002:001: Access denied (insufficient permissions)
# Your USB scanner was (probably) detected. It may or may not be supported by
# SANE. Try scanimage -L and read the backend's manpage.

# Not checking for parallel port scanners.

# Most Scanners connected to the parallel port or other proprietary ports
# can't be detected by this program.

# You may want to run this program as root to find all devices. Once you
# found the scanner devices, be sure to adjust access permissions as
# necessary.
It finds my HP scanner.
 
Old 05-04-2014, 10:36 AM   #8
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
I get this in root:
Code:
root@John:/home/john# sane-find-scanner

  # sane-find-scanner will now attempt to detect your scanner. If the
  # result is different from what you expected, first make sure your
  # scanner is powered up and properly connected to your computer.

  # No SCSI scanners found. If you expected something different, make sure that
  # you have loaded a kernel SCSI driver for your SCSI adapter.

could not fetch string descriptor: Pipe error
could not fetch string descriptor: Pipe error
  # No USB scanners found. If you expected something different, make sure that
  # you have loaded a kernel driver for your USB host controller and have setup
  # the USB system correctly. See man sane-usb for details.

  # Not checking for parallel port scanners.

  # Most Scanners connected to the parallel port or other proprietary ports
  # can't be detected by this program.
root@John:/home/john# ^C
root@John:/home/john#
Can you help me with the next step? thanks
 
Old 05-04-2014, 10:49 AM   #9
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,214

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
Can you help me with the next step?
Be happy to.

Not sure what you think the next step is.

Right now, it appears you do have sane installed. sane-find-scanner will not always detect a scanner, and since this a multi-function device, and the printer part does work at some level, we know the USB connection is working.
 
Old 05-04-2014, 10:54 AM   #10
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
When I open Simple scan, it says "no scanner detected" It is connected and turned on. I'm lost...
 
Old 05-04-2014, 11:02 AM   #11
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,214

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Try as root user to run the program. It may be you are not a member of the correct group to access the scanner. You may have to add your user to the lp group, and or scanner group.
 
Old 05-04-2014, 12:18 PM   #12
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
ok, how would I go about adding my username to lp?
 
Old 05-04-2014, 12:22 PM   #13
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
oh...I just did
Code:
sudo adduser $USER lp
but I still get "no scanner detected" in simple scan
 
Old 05-04-2014, 12:25 PM   #14
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,214

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Try it as root user.
 
Old 05-04-2014, 12:32 PM   #15
Seanog
LQ Newbie
 
Registered: May 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
OK, just did it in root:

Code:
john@John:~$ su
Password: 
root@John:/home/john# adduser $USER lp
Adding user `root' to group `lp' ...
Adding user root to group lp
Done.
root@John:/home/john#
And it's working now! Just did my first Zorin scan! Thanks, I really appreciate the help!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
installing panasonic kx-mb2030 printer khlee Linux - Newbie 1 07-28-2011 09:44 AM
Installing Panasonic Printer DP-2310 on Linux Tony Busuyi Linux - Hardware 1 03-11-2006 09:22 AM
setting up Panasonic printer on apsfilter Bazbo DamnSmallLinux 1 10-17-2004 11:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 02:51 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration