Author Topic: Guest user for printing  (Read 1698 times)

computerfixitguy

  • Zen Apprentice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Guest user for printing
« on: December 06, 2008, 01:20:30 am »
I don't get it.  Is there any way to enable a guest user (no authentication of any kind) for a printer?   I cannot use blank passwords at all so what can I do?

Thanks,

Derek

javi

  • Zen Hero
  • *****
  • Posts: 1042
  • Karma: +0/-0
    • View Profile
Re: Guest user for printing
« Reply #1 on: December 11, 2008, 03:29:56 am »
Nope sorry, you must use a user/password. This is a feature on our TODO list :(

kerridge0

  • Zen Monk
  • **
  • Posts: 57
  • Karma: +1/-0
    • View Profile
Re: Guest user for printing
« Reply #2 on: May 13, 2009, 12:01:50 am »
Hi

Is there any update/Can anyone think of a workaround for this?

actually want a guest share for vpn users who are studying and need to access an audio stream from a windows share from their home PC- would love to allow anonymous read-only access...

Chris

  • Zen Apprentice
  • *
  • Posts: 19
  • Karma: +0/-0
    • View Profile
Re: Guest user for printing
« Reply #3 on: May 16, 2009, 03:05:34 am »
You could always modify your smb.conf file by hand.  Here is an example read-only share:
Code: [Select]
[share_name]
comment = Share_comment
security = share
public = yes
force user = nobody
force group = nogroup
inherit acls = No
path = /path/to/share
read only = Yes

To give write access, just set read only to No.  I haven't tested it with eBox, but I had a server that used a similar share.
I assume a similar thing could be done with printers by modifying the [printers] or [print$] sections of smb.conf, but I don't know for sure.
Good luck!

kerridge0

  • Zen Monk
  • **
  • Posts: 57
  • Karma: +1/-0
    • View Profile
Re: Guest user for printing
« Reply #4 on: June 04, 2009, 03:24:26 pm »
thanks, will try it, and document what i did here...