LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 04-14-2009, 09:04 PM   #1
b-RAM
Member
 
Registered: Apr 2009
Distribution: OpenSuse, Slackware
Posts: 70

Rep: Reputation: 15
configure smb.conf for set permission file and folder


Hi all, need help please, can i know how to set/rule the permission file and directory on smb.conf so everytime user create/save file the permission not use default from samba 744, i had try several ways for this issue:
Code:
[DataSamba]
        comment = Data Samba
        path = /DataSamba
        valid users = %S, %D%w%S
        browseable = No
        read only = Yes
        inherit acls = Yes
[engineering]
       comment = Data engineering
       path = /DataSamba/engineering
       valid users = %S, %D%w%S
       browseable = No
       read only = No
       inherit acls = Yes
       create mask = 0770
       force create mode = 0770
       directory mask = 0770
       force directory mode = 0770
for that part of my smb.conf that i want to configure but it's not work
on directory engineering that owner of that directory i set to user "eng02" and part group "Engineering" i also create one user for test out "eng01" which part group "Engineering", when first time i create folder engineering on path /DataSamba/engineering i change the ownership and permission to 770 cause every member group "Engineering" wants they can
create a new file, edit by their part of group, save it, create new folder, save file to that new folder by their members.

i also try to add force group but it's not work, and is there any major effect global setting on smb.conf for this issue ?
actually i only domain master and add machine script to global setting smb.conf.

Thank you and please advice.
 
Old 04-15-2009, 08:40 AM   #2
cyprinidae
Member
 
Registered: Oct 2008
Distribution: Fedora, CentOS, Crunchbang
Posts: 46

Rep: Reputation: 16
You have "inherit acls" set to yes, which means that the default directory acls are propagated.... that can be the case...

Also you need to set SGID for the /DataSamba/engineering directory and change group membership to Engineering group, so if any of the users create a file in the directory, it will be marked with Engineering as the group, even though their primary group is different..

Code:
# chown eng02:Engineering /DataSamba/engineering
# chmod g+s /DataSamba/engineering
 
Old 04-15-2009, 08:26 PM   #3
b-RAM
Member
 
Registered: Apr 2009
Distribution: OpenSuse, Slackware
Posts: 70

Original Poster
Rep: Reputation: 15
thanks for your reply cyprinidae, i had try to set inherit acl on path DataSamba and engineering to set No but not work at all and about change ownership and group at folder
engineering i had do that at first time create folder.
Can you explain to me about chmod g+s to directory engineering.

thank's a lot.
 
Old 04-15-2009, 08:47 PM   #4
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
What distro are you using?
 
Old 04-15-2009, 09:30 PM   #5
b-RAM
Member
 
Registered: Apr 2009
Distribution: OpenSuse, Slackware
Posts: 70

Original Poster
Rep: Reputation: 15
I use Suse 10.2,

thank's.
 
Old 04-15-2009, 09:43 PM   #6
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
I can't recall if Suse uses SELinux, but can you try "ls -Z /DataSamba" and "ls -Z /DataSamba/engineering"
 
Old 04-15-2009, 10:52 PM   #7
b-RAM
Member
 
Registered: Apr 2009
Distribution: OpenSuse, Slackware
Posts: 70

Original Poster
Rep: Reputation: 15
Hi billymayday, i try that on my suse but it shows invalid option, and
i had been checked man ls and not found options using "Z".
Could you tell me what exactly ls -Z function for ?

thank's a lot.
 
Old 04-15-2009, 11:06 PM   #8
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
I was wanting to check the security context of the files if SELinux was running, but apparently it isn't, so that's not the problem.
 
Old 04-15-2009, 11:13 PM   #9
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Are you mixing up masks with modes?

From man smb.conf
Quote:
Following this Samba will bit-wise 'OR' the UNIX mode created from
this parameter with the value of the force create mode parameter
which is set to 000 by default.
Try "create mode 770" in place of "create mask 0770" and similarly for directory mask.
 
Old 04-16-2009, 02:21 AM   #10
b-RAM
Member
 
Registered: Apr 2009
Distribution: OpenSuse, Slackware
Posts: 70

Original Poster
Rep: Reputation: 15
Thanks billymayday for your reply,
I had try to change like this:
Code:
create mode = 770
force create mode = 770
I changed that way on path engineering.
Still it not work, as i know create mask same as create mode.
Anyway how do you think about this http://forum.soft32.com/linux/Newbie...ict374307.html cause based on that i try to change that
create mask = 000 and just use force create mode = 0770
and still again it not work.
Need advise please, or there is something rule when first time create user
samba cause i just do :
useradd "username"(without password so in /etc/passwd nologin)
groupadd "groupname"
smbpasswd -a "username"(same like useradd)
And this is global setting on my smb.conf, i hope you can help me to check it out if something wrong cause i use this to on my home
Code:
[global]
   workgroup = WORKGROUP
   printing = cups
   printcap name = cups
   printcap cache time = 750
   cups options = raw
   map to guest = Bad User
   include = /etc/samba/dhcp.conf
   logon path = \\%L\profiles\.msprofile
   logon home = \\%L\%U\.9xprofile
   logon drive = P:
   usershare allow guests = Yes
  add machine script = /usr/sbin/ useradd -c Machine -d /var/lib/nobody -s /bin/false%m$
  domain master = No
  domain logons = No
  security = user
  passdb backend = smbpasswd
thanks a lot billymayday,

regards,
b-RAM
 
Old 04-16-2009, 02:36 AM   #11
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Here's a share that works
Code:
[spare]
        comment = Spare drive - not backed up
        path = /storage/samba
        browseable = yes
        writable = yes
;       valid users = %S
;       valid users = MYDOMAIN\%S
        create mode = 664
        directory mode =775
Why do you include dhcp.conf? What's in that?

Comment out the logon stuff - that's for domains

Can you tell me exactly what happens when you try to connect, and look for anything relevant in the samba logs.
 
Old 04-16-2009, 03:15 AM   #12
b-RAM
Member
 
Registered: Apr 2009
Distribution: OpenSuse, Slackware
Posts: 70

Original Poster
Rep: Reputation: 15
I had try setting that you gave to me billymayday and it's not work,
i really don't know what's goin on,
And for part dhcp.conf at my smb.conf i just forget to delete it from line.
When connect to samba the exactly thing is i always do search computer
from windows and put the ip address of samba pc and it connect
about log samba, honestly i just see log samba for those who connect to
samba, cause this is just new samba i never watch this log file(my stupidity).
when i see it it seems from date 19th January 2009 the first time i try this new pc to samba had some errors,
Code:
[2009/01/19 10:38:32, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 1 (min password length), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 2 (password history), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 3 (user must logon to change password), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 4 (maximum password age), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 5 (minimum password age), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 6 (lockout duration), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 7 (reset count minutes), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 8 (bad lockout attempt), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 9 (disconnect time), returning 0
[2009/01/19 10:38:32, 1] lib/account_pol.c:account_policy_get(332)
  account_policy_get: tdb_fetch_uint32 failed for field 10 (refuse machine password change), returning 0
[2009/01/19 10:52:59, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/01/19 10:59:34, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/01/19 11:01:19, 1] smbd/service.c:make_connection_snum(950)
  pc-test (10.1.0.3) connect to service users initially as user eng04 (uid=1002, gid=1000) (pid 18007)
[2009/04/14 09:30:07, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 09:30:18, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 09:30:37, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9300)
[2009/04/14 09:30:37, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 09:30:37, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9303)
[2009/04/14 09:37:24, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 09:37:32, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 09:37:49, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 09:37:56, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=100) (pid 9423)
[2009/04/14 09:37:56, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 09:37:56, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=100) (pid 9425)
[2009/04/14 09:43:23, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 09:43:24, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 09:43:25, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9538)
[2009/04/14 09:43:32, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 09:43:57, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 09:44:03, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9542)
[2009/04/14 09:44:03, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 09:44:03, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9545)
[2009/04/14 10:06:53, 0] lib/util_sock.c:read_data(534)
  read_data: read failure for 4 bytes to client 10.1.0.66. Error = No route to host
[2009/04/14 10:06:53, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 10:38:22, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 10:39:08, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9676)
[2009/04/14 10:54:39, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 10:54:39, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 11:19:32, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 11:19:38, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9772)
[2009/04/14 11:19:38, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:19:38, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9775)
[2009/04/14 11:21:59, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:22:00, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 11:22:01, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9805)
[2009/04/14 11:22:05, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:22:29, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 11:22:34, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9809)
[2009/04/14 11:22:34, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:22:34, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9811)
[2009/04/14 11:24:03, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:24:03, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 11:24:04, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9841)
[2009/04/14 11:24:16, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:24:44, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 11:24:51, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9845)
[2009/04/14 11:24:51, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:24:51, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9848)
[2009/04/14 11:27:23, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:27:23, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/14 11:27:47, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/14 11:27:54, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9902)
[2009/04/14 11:27:54, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/14 11:27:54, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 9902)
[2009/04/14 11:31:35, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 09:59:27, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/15 10:00:09, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/15 10:01:17, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/15 10:01:35, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/15 10:01:42, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5245)
[2009/04/15 10:01:42, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 10:01:42, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5247)
[2009/04/15 10:05:13, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5256)
[2009/04/15 10:09:06, 0] lib/util_sock.c:read_data(534)
  read_data: read failure for 4 bytes to client 10.1.0.66. Error = Connection reset by peer
[2009/04/15 10:09:06, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 10:29:01, 0] lib/util_sock.c:read_data(534)
  read_data: read failure for 4 bytes to client 10.1.0.66. Error = No route to host
[2009/04/15 10:29:01, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 10:44:07, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/15 10:45:46, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5393)
[2009/04/15 11:09:51, 0] lib/util_sock.c:read_data(534)
  read_data: read failure for 4 bytes to client 10.1.0.66. Error = No route to host
[2009/04/15 11:09:51, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 11:48:50, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5847)
[2009/04/15 11:50:00, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 11:50:00, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/15 11:50:10, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5879)
[2009/04/15 11:52:04, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/15 11:52:05, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/15 11:52:09, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5911)
[2009/04/15 12:53:36, 0] lib/util_sock.c:read_data(534)
  read_data: read failure for 4 bytes to client 10.1.0.66. Error = No route to host
[2009/04/15 12:53:36, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/16 14:11:34, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/16 14:12:07, 0] passdb/pdb_smbpasswd.c:build_sam_account(1202)
  build_sam_account: smbpasswd database is corrupt!  username toor with uid 1001 is not in unix passwd database!
[2009/04/16 14:12:12, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 4859)
[2009/04/16 14:12:12, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/16 14:12:12, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 4861)
[2009/04/16 14:17:14, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/16 14:17:14, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/16 14:17:27, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5045)
[2009/04/16 14:19:32, 1] smbd/service.c:close_cnum(1150)
  pc (10.1.0.66) closed connection to service users
[2009/04/16 14:19:33, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/16 14:19:41, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5076)
[2009/04/16 14:42:58, 0] lib/util_sock.c:read_data(534)
  read_data: read failure for 4 bytes to client 10.1.0.66. Error = No route to host
[2009/04/16 14:42:58, 0] lib/util_sock.c:write_data(562)
  write_data: write failure in writing to client 10.1.0.66. Error Broken pipe
[2009/04/16 14:42:58, 0] lib/util_sock.c:send_smb(769)
  Error writing 75 bytes to client. -1. (Broken pipe)
[2009/04/16 14:59:47, 0] smbd/server.c:main(847)
  smbd version 3.0.23d-6-1083-SUSE-SL10.2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2009/04/16 15:01:04, 1] smbd/service.c:make_connection_snum(950)
  pc (10.1.0.66) connect to service users initially as user eng01 (uid=1001, gid=1000) (pid 5198)
well maybe i will try first your method at my home and if it success
i will inform you and i will try to reinstall this new pc and setup the samba from the beginning again.

Sorry for bothering you billymayday and i'm very appreciated your help.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to set smb.conf if I only need see window machine from linux side QianChen Linux - Newbie 16 01-12-2007 12:17 PM
Samba in Debian, smb.conf: smb passwd file = ?????????? henrnorl Linux - Software 1 10-06-2006 09:43 AM
smb.conf file. vexer Linux - Networking 2 10-17-2004 03:42 AM
smb.conf file write permission jbraum Mandriva 3 01-09-2004 05:11 PM
Can I still use my old smb.conf file? jspaceman Linux - Networking 2 10-01-2003 11:55 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 11:10 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration