Linux网络管理之三:从windows访问Linux共享打印
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-13
环境:客户端为windows xp(10.0.0.10); 打印服务器为FC7(10.0.0.100).
要求:客户端可以通过FC7上的打印机进行网络打印,并可进行基于Web的远程管理.
实现过程:
一、在FC7上安装SMB共享打印机
1、在FC7环境中,点击 settings---->printers,以便进行打印机的安装.
2、在打印配置窗口中中,点击Add按钮.然后在添加打印向导中,选择 SMB shared printer 以便实现windows客户端的连接访问.
3、在用户凭证对话框中,选择 Anonymous 以允许匿名访问.
4、在打印设置中设置打印服务器IP、工作组名等信息.
5、在打印机选择中选择打印机生产厂商和打印机型号.
6、接受默认设置以完成打印机的安装.下图为完成安装前的确认信息.
二、在FC7上修改 smb.conf 和 cupsd.conf 配置文件
1、配置smb.conf文件以允许windows客户端访问
[root@lgfc7 ~]# vi /etc/samba/smb.conf
#================= Global Settings ======================
[global]
# ----------------------- Netwrok Related Options ------------------------- # # workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH …………# specifiy it as a per share option as well # workgroup = workgroup ----定义samba服务器所在的工作组或域 server string = printer server ----定义计算机的描述信息 netbios name = lgfc7 ; interfaces = lo eth0 192.168.12.2/24 192.168.13.2/24 ; hosts allow = 127. 192.168.12. 192.168.13. # ----------------------- Standalone Server Options ------------------------ # Scurity can be set to user, share(deprecated) or server(deprecated) …………# compatibility. tdbsam requires no further configuration. security = share ---------------设置安全级别为共享级别 passdb backend = tdbsam # --------------------------- Printing Options ----------------------------- # # Load Printers let you load automatically the list of printers rather # than setting them up individually # ……# You can choose a non default printing system using the Printing option load printers = yes -----自动加载打印机列表,设置yes后就不必单独设置每一台打印机的共享 cups options = raw printcap name = /etc/printcap #obtain list of printers automatically on SystemV ; printcap name = lpstat printing = cups ----打印系统名称为CUPS(Common UNIX Print System) #================ Share Definitions ==================== [homes] comment = Home Directories browseable = no writable = yes ; valid users = %S ; valid users = MYDOMAIN%S [printers] comment = All Printers path = /var/spool/samba browseable = no guest ok = yes -----允许匿名访问共享打印机 writable = no printable = yes ----允许打印 2、配置cupsd.conf文件以允许指定主机或网络访问[root@lgfc7 cups]# pwd /etc/cups [root@lgfc7 cups]# cp cupsd.conf cupsd.conf.bak ----先作备份,以便容错 [root@lgfc7 cups]# vi cupsd.conf # # "$Id: cupsd.conf.in 5454 2006-04-23 21:46:38Z mike $" # # Sample configuration file for the Common UNIX Printing System (CUPS) # scheduler. See "man cupsd.conf" for |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 修改Linux系统时间下一篇: 使用批处理实现mysql数据库备份与上传
关于Linux网络管理之三:从windows访问Linux共享打印的所有评论