• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Drucken von Windows-Rechner auf Linux-Rechner...geht nicht

Hallo
Zuerst einmal meine smb.conf:

Code:
# Samba config file created using SWAT
# from 127.0.0.1 (127.0.0.1)
# Date: 2005/01/16 16:05:53

# Global parameters
[global]
	workgroup = ARBEITSGRUPPE
	netbios name = DENNIS
	client schannel = No
	server schannel = No
	preferred master = No
	domain master = No
	ldap idmap suffix = ou=Idmap
	ldap machine suffix = ou=Computers
	ldap suffix = dc=example,dc=com

[freigabe]
	path = /freigabe
	read only = No
	guest ok = Yes
	case sensitive = No

[drucker]
	comment = Drucker
	path = /tmp
	guest ok = Yes
	printable = Yes

Leider passiert nichts, wenn ich drüben auf "Drucken" klicke...
Wenn ich hier etwas drucke, kommt es einwandfrei raus... :roll:

anscheinend läuft auch der smbd dienst nicht..zumindest sagt swat dies...kann man das irgendwie überprüfen?

Edit:

smbd scheint zu laufen...laut logmessages...
 
Da fehlt ja allerhand...
und einen client schannel kenn ich nicht, aber ich kann mich irren.

Ansonsten die üblichen Tipps: Nützliche Links durchgehen, Suchfunktion nutzen etc. steht alles drin.

Grüße
 
hier mal meine smb.conf, vielleicht hilft sie dir.

Code:
[global]
	workgroup = TUX-NET
	os level = 65

	security = user
	domain logons = Yes
	encrypt passwords = Yes
	guest account = Nobody
	allow hosts=192.168.1.
	time server = Yes
	map to guest = Bad User
	smb passwd file = /etc/samba/smbpasswd
	add user script = /usr/sbin/useradd -g machines -c sambaclient -d /dev/null -s /bin/false %m$
# This tells samba to use the file smbusers for user mapping.
;	username map = /etc/samba/smbusers

# This tells samba to write log files per machine.
	log file = /var/log/samba/%m
# This sets an alternate log level. Default is 2.
;	log level = 3

# Uncomment the following, if you want to use an existing NT-Server to
# authenticate users, but don't forget that you also have to create them
# locally!
;	security = server
;	password server = 192.168.1.10

	printing = LPRNG
	printcap name = /etc/printcap
	load printers = Yes

# These settings are a suggestion for a local network. Cf. section
# 'socket options' in the man page of smb.conf and socket(7).
	socket options = SO_KEEPALIVE IPTOS_LOWDELAY TCP_NODELAY 

# Uncomment this, if you want to integrate your server
# into an existing net e.g. with NT-WS to prevent nettraffic
;	local master = yes
	guest ok = No
# Please uncomment the following entry and replace the ip number and
# netmask with the values of your network interface configuration.
	interfaces = 192.168.1.1/255.255.255.0
   
# If you want Samba to act as a wins server, please set
# 'wins support' to yes.
	wins support = No

# If you want Samba to use an existing wins server, please uncomment the
# following line and replace the dummy with the wins server's ip number.
;	wins server = 192.168.1.1

# Set these two parameters to your DOS code page and appropriate UNIX
# character set. These values are for west European languages (Latin-9)
# UNIX character and MS-DOS Latin 1 code page.
	character set = ISO8859-15
	client code page = 850

# This is a simple measure against Nimba Worm. Cf. README.Win32-Viruses
	veto files = /*.eml/*.nws/riched20.dll/*.{*}/

# Do you wan't samba to act as a logon-server for your windows 95/98
# clients, so uncomment the following:
	local master = Yes
	preferred master = Yes
	domain master = Yes
# For a specific logon script per user
	logon script = %U.bat
# For a specific logon script per machine
;	logon script = %m.bat

# Where to store the logon scripts.
[netlogon]
	comment = Network Logon Service
	path = /var/lib/samba/netlogon
	public = no
	writeable = no
	browseable = no
# Where profiles of Windows 9x systems are stored.
# First example for a centralized place.
;	logon home = \\%L\profiles\%U
# Second example for a subdirectory of the users home.
;	logon path = \\%L\%U\profile
;	logon home = \\%L\%U\profile
# Where profiles of Windows NT systems are stored.
;	logon path = \\%L\profiles\%U

# Extra share for profiles. Default is the home of the user.
;[profiles]
;	comment = Network Profiles Service
;	path = /var/lib/samba/profiles
;	browseable = No

[homes]
	comment = Home von %U/%L
	read only = No
	create mask = 0640
	directory mask = 0750
	browseable = No
	guest ok = No
	valid users = %S


# The following share gives all users access to the Server's CD drive,
# assuming it is mounted under /media/cdrom. To enable this share,
# please remove the semicolons before the lines
;[cdrom]
;	comment = Linux CD-ROM
;	path = /media/cdrom
;	locking = No

[printers]
	comment = All Printers
	path = /var/tmp
	create mask = 0700
	printable = Yes
	browseable = No

grüße
blueshawk
 
Oben