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

Samba .... zeitüberschrittung

spaiky07

Newbie
Hallo,
Ich habe mir Opensuse heruntergeladen und wollte einen Server machen für unser Netzwerk ein Fileserver, Win7 soll darauf zugreifen so Firewall ist konfiguriert. Jetzt gehe ich auf Netzwerk Samba freigaben: Dann steht dort Workgroup ?! Ich gehe darauf und ziehe etwas drauf nichts passiert auf den Laptop, wo dies normaler weise angezeigt werden soll wird auch nichts angezeigt ich wies einfach nicht mehr weiter jetzt zeigt er an: Zeitüberschreitung auf dem Server Workgrupp.

Könnt ihr mir Helfen ?


LG


http://nopaste.info/d2edd4c46a.html Code
 

lOtz1009

Moderator
Teammitglied
Bitte lesen: http://www.linux-club.de/viewtopic.php?f=6&t=105877
Und bitte auch mal 'nen Punkt zwischendrin machen ;)
 

lOtz1009

Moderator
Teammitglied
Lade den Inhalt der Datei doch nach http://www.nopaste.info
Das ist viel einfacher als dass sich wer hier ein ZIP runterladen muss ;)
 

stka

Guru
Wo hast du denn diese smb.conf her? Da ist ja alles durcheinander. Spiel erst mal die original Datei wieder ein und versuche es dann noch mal. Alles was du an Anpassungen machen musst, kannst du mit dem yast machen.
 

stka

Guru
Nie im Leben ist das die original Datei, denn die folgenden Parameter sind so entweder gar nicht gesetzt oder haben ganz andere Werte:
logon path = \\%25L\profiles\.msprofile
logon home = \\%25L\%25U\.9xprofile
security = domain
restrict anonymous = no
password server = KMEKME
workgroup =
Das hier sind normal die Standardeinstellungen:
logon path = \\%L\profiles\.msprofile
logon home = \\%L\%U\.9xprofile
security = users
workgroup = TUX-NET
Und der Parameter " password server = KMEKME" wird gar nicht gesetzt. Die Workgroup musst du natürlich auf deine Umgebung anpassen.
 

stka

Guru
Hier mal die von Kubuntu, die ist aber für den Einstig auch schon mal ganz gut:
Code:
[global]                                                                     
   workgroup = WORKGROUP                                                     
   server string = %h server (Samba, Ubuntu)                                 
   dns proxy = no                                                            
   log file = /var/log/samba/log.%m                                          
   max log size = 1000                                                       
   syslog = 0                                                                
   panic action = /usr/share/samba/panic-action %d                           
   encrypt passwords = true                                                  
   passdb backend = tdbsam                                                   
   obey pam restrictions = yes                                               
   unix password sync = yes
   passwd program = /usr/bin/passwd %u
   passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
   pam password change = yes
   map to guest = bad user
   usershare allow guests = yes
[printers]
   comment = All Printers
   browseable = no
   path = /var/spool/samba
   printable = yes
   guest ok = no
   read only = yes
   create mask = 0700
[print$]
   comment = Printer Drivers
   path = /var/lib/samba/printers
   browseable = yes
   read only = yes
   guest ok = no
 
OP
S

spaiky07

Newbie
Code:
1.  # smb.conf is the main Samba configuration file. You find a full commented
   2. # version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the
   3. # samba-doc package is installed.
   4. # Date: 2009-10-27
   5. [global]
   6.     workgroup = WORKGROUP
   7.     passdb backend = tdbsam
   8.     printing = cups
   9.     printcap name = cups
  10.     printcap cache time = 750
  11.     cups options = raw
  12.     map to guest = Bad User
  13.     include = /etc/samba/dhcp.conf
  14.     logon path = \\%L\profiles\.msprofile
  15.     logon home = \\%L\%U\.9xprofile
  16.     logon drive = P:
  17.     usershare allow guests = Yes
  18. [homes]
  19.     comment = Home Directories
  20.     valid users = %S, %D%w%S
  21.     browseable = No
  22.     read only = No
  23.     inherit acls = Yes
  24. [profiles]
  25.     comment = Network Profiles Service
  26.     path = %H
  27.     read only = No
  28.     store dos attributes = Yes
  29.     create mask = 0600
  30.     directory mask = 0700
  31. [users]
  32.     comment = All users
  33.     path = /home
  34.     read only = No
  35.     inherit acls = Yes
  36.     veto files = /aquota.user/groups/shares/
  37. [groups]
  38.     comment = All groups
  39.     path = /home/groups
  40.     read only = No
  41.     inherit acls = Yes
  42. [printers]
  43.     comment = All Printers
  44.     path = /var/tmp
  45.     printable = Yes
  46.     create mask = 0600
  47.     browseable = No
  48. [print$]
  49.     comment = Printer Drivers
  50.     path = /var/lib/samba/drivers
  51.     write list = @ntadmin root
  52.     force group = ntadmin
  53.     create mask = 0664
  54.     directory mask = 0775
  55.

Soo sieht aus was muss ich bearbeiten ?!
 
Oben