I recently had my ubuntu 8.04 server die so im rebuilding it with 10.04 lts

I had the system setup to be the domain for a few laptops and to share folders both shared dirs and the persons home dir

I've been useing the samba gui that comes in 10.04lts and I'm able to see shares become avaliable as I create them

I however do not seem to be able to add any laptops (xp) to the domain its giving me an error that it does not see the domain contorler.

I would prefer to work with it via the gui as im not 100% comfy with the command line but I can if there is no other option.

here is my current smb.conf file

[global]

   workgroup = MARKON40

   netbios name = MARKON40-PDC

   server string = %h server (Samba, Ubuntu)



   security = user
   os level = 255
   username map = /etc/samba/smbusers
   name resolve order = wins bcast hosts bind dns
   domain logons = yes
   preferred master = yes
   wins support = yes

   smb ports = 139
   hosts allow = 192.168.40.
   bind interfaces only = true
   interfaces = 192.168.40.40

   encrypt passwords = true

   logon drive = H:

   # LEAVE LOGON PATH EMPTY OR ELSE PROFILES WILL MOVE TO THE SERVER
   logon path =
   logon script = 
   logon home = \\%L\%U

   directory mask = 0750
   create mask = 0750
   follow symlinks = no


   # Useradd scripts
   # add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u
   add user script = /usr/sbin/useradd -m '%u' -g users -G users
   delete user script = /usr/sbin/userdel -r %u
   add group script = /usr/sbin/groupadd %g
   delete group script = /usr/sbin/groupdel %g
   add user to group script = /usr/sbin/usernod -G %g %u

   add machine script = /usr/sbin/useradd -s /bin/false/ -d /var/lib/nobody %u
   idmap uid = 15000-20000
   idmap gid = 15000-20000
   template shell = /bin/bash

   # sync smb passwords woth linux passwords
   passwd program = /usr/bin/passwd %u
   passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n *password\supdated\ssuccessfully* .
   passwd chat debug = yes
   unix password sync = yes


   # set the loglevel
   log file = /var/log/samba/smbd-%U.log
   log level = 3


########
#  BEGIN BUILT-IN SAMBA / NT SPECIAL SHARES
#  These files are 'managed' by the
#  MARKON network admins, and are handled by
#  SAMBA.
#########


[homes]

        comment = Home
        path = /home/%S/smbhome
        browseable = no
        writable = yes
        read only = no

        veto files = /.recycle/
        vfs objects = recycle
                recycle:keeptree=True
                recycle:versions=True
                recycle:touch=True
        hide dot files = yes

        force directory mode = 0770
        force create mode = 0660
        force group = grp-it

        valid users = @grp-it, %S
        invalid users =


[netlogon]

        path = /home/0-samba/netlogon
        browseable = no
        read only = yes
        public = no

########
#  BEGIN WORKGROUP SHARES SECTION
#  These files are 'owned' by
#  specific workgroups, and access
#  is limited.
#  Security must be maintained here!
#########


[home]
    comment = Backup Drive
    path = /home
    browsable = no
    writeable = no
    write list = @grp-it
    read only = yes

    veto files = /.recycle/
    vfs object = recycle
            recycle:keeptree=True
                recycle:versions=True
                recycle:touch=True
        hide dot files = yes

        force directory mode = 0770
        force create mode = 0660
        force group = grp-it

        valid users = @grp-it
        invalid users =

[it]

        comment = IT Drive
        path = /home/0-samba/it
        browseable = no
        writeable = yes
        write list = @grp-it
        read only = no

        veto files = /.recycle/
        vfs object = recycle
                recycle:keeptree=True
                recycle:versions=True
                recycle:touch=True
        hide dot files = yes

        force directory mode = 0770
        force create mode = 0660
        force group = grp-it

        valid users = @grp-it
        invalid users =


[woodbridge]

        comment = WOODBRIDGE
        path = /home/0-samba/woodbridge
        browseable = yes
        writeable = yes
        write list = @grp-woodbridge
        read only = no

        veto files = /.recycle/
        vfs object = recycle
                recycle:keeptree=True
                recycle:versions=True
                recycle:touch=True
        hide dot files = yes

        force directory mode = 0770
        force create mode = 0660
        force group = grp-woodbridge


        valid users = @grp-woodbridge
        invalid users =




[public]

        comment = Public
        path = /home/0-samba/public
        browseable = yes
        writeable = yes
        write list = @grp-users
        read only = no

        veto files = /.recycle/
        vfs object = recycle
                recycle:keeptree=True
                recycle:versions=True
                recycle:touch=True
        hide dot files = yes

        force directory mode = 0770
        force create mode = 0660
        force group = grp-users

        valid users = @grp-users
        invalid users = wins support = no
link|improve this question

40% accept rate
What defined as DNS on the those Windows XP workstations? You need it to point to the DNS server that has SRV records for your domain. – Vick Vega Apr 6 '11 at 17:41
I didn't ahve dns records before or at least i just have open dns on all the desktops and it worked fine before – Crash893 Apr 6 '11 at 19:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.