No subject


Mon Dec 1 11:34:25 GMT 2003


<<<<<<<<<<<<<
I connect my homedir from the testserver and start Lotus Notes.
Lotus Notes is infamous for it's sensitivity for 'non-optimal' network
connections. Notes tries to lock certain files and complains immediately if
that fails.

> 3. does the log message always fail at the same offset/count:
> (fcntl_lock: lock failed at offset 4294901760 count 65535)?

Yes, always the same with both samba 2.2.1 and the cvs version:
lock failed at offset 4294901760 count 65535 op 9 type 9
>>>>>>>>>>>>>


Reinout - any chance you could get us a netmon or ethereal network trace of
this 
operation, so we could see EXACTLY what is comming in from the client in
this locking 
request?

Thanks,
Don




-----Original Message-----
From: Jeremy Allison [mailto:jeremy at valinux.com]
Sent: Tuesday, September 04, 2001 8:07 PM
To: MCCALL,DON (HP-USA,ex1)
Cc: 'reinout.wijnveen at philips.com'; reinout.wijnveen at wanadoo.nl;
samba at lists.samba.org
Subject: Re: Locking issues with HP-UX 11.00


"MCCALL,DON (HP-USA,ex1)" wrote:
> 
> Hi Jeremy,
> More info:
> With the following program, I DO get an EFBIG error back.
> If I change the lock.l_start to a number greater than 2gbyte -1, then no
> matter what the offset i choose, I get a ENOLCK instead.
> The lseek ALWAYS gives back the EFBIG.
> 
> So what appears to be happening is that there is a 'hierarchy' - if the
lock
> start (offset) exceeds NFSv2 file limits, then you get ENOLCK, before the
> count is checked.  If the lock start falls within NFSv2 file limits, you
get
> a EFBIG only if the count is 65535 or greater...

Actually, I finally got time to look at this and it looks
like ENOLCK is a valid error that NFS v2 implementations
can return when the offset is larger that 31 bits.

So I've added the following patch to CVS - it's cleaner
than the original as it doesn't depend upon #ifdefs and
it should have the same effect.

Can you check out the 2.2 CVS and check if this works for
you ?

Thanks,

	Jeremy.

Index: locking/posix.c
===================================================================
RCS file: /data/cvs/samba/source/locking/posix.c,v
retrieving revision 1.19.4.9
diff -u -r1.19.4.9 posix.c
--- locking/posix.c	26 Aug 2001 19:39:29 -0000	1.19.4.9
+++ locking/posix.c	5 Sep 2001 00:01:30 -0000
@@ -705,10 +705,10 @@
 
 	ret = conn->vfs_ops.lock(fsp,fsp->fd,op,offset,count,type);
 
-	if (!ret && (errno == EFBIG)) {
+	if (!ret && ((errno == EFBIG) || (errno == ENOLCK))) {
 		if( DEBUGLVL( 0 )) {
 			dbgtext("posix_fcntl_lock: WARNING: lock request at
offset %.0f, length %.0f returned\n", (double)offset,(double)count);
-			dbgtext("a 'file too large' error. This can happen
when using 64 bit lock offsets\n");
+			dbgtext("an %s error. This can happen when using 64
bit lock offsets\n", strerror(errno));
 			dbgtext("on 32 bit NFS mounted file systems.
Retrying with 32 bit truncated length.\n");
 		}
 		/* 32 bit NFS file system, retry with smaller offset */


-- 
--------------------------------------------------------
Buying an operating system without source is like buying
a self-assembly Space Shuttle with no instructions.
--------------------------------------------------------

Return-Path: <ml at centromultimediale.it>
Delivered-To: samba at lists.samba.org
Received: from mail.centromultimediale.it (unknown [213.88.101.15]) by
  lists.samba.org (Postfix) with SMTP id 229B74102 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 07:20:48 -0700 (PDT)
Received: (qmail 11778 invoked from network); 5 Sep 2001 14:31:14 -0000
Received: from mbox.centromultimediale.it (213.88.101.17) by
  mail.centromultimediale.it with SMTP; 5 Sep 2001 14:31:14 -0000
Message-ID: <29882728646563219CF000F2 at mbox.centromultimediale.it>
Received: From  [213.88.101.100] by mbox.centromultimediale.it
  [10.10.32.17] with MsgCore/NT [(C) 1998,2001 Nosque Workshop] BD0230
  id29882728646563219CF000F2; Wed, 5 Sep 2001 16:26:16 +0200
From: "Andrea Cerrito" <ml at centromultimediale.it>
To: <samba at lists.samba.org>
Subject: R: Samba with daemontools
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
In-Reply-To: <2986AD938C206730981700CF at mbox.centromultimediale.it>
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:41:21 2001
X-Original-Date: Wed, 5 Sep 2001 16:22:56 +0200

Is there any way to solve this problem?
Thank you
---
Cordiali saluti / Best regards
Andrea Cerrito
^^^^^^^^^^^^^^
Net.Admin @ Centro MultiMediale di Terni S.p.A.
P.zzale Bosco 3A
05100 Terni IT
Tel. +39 0744 5441330
Fax. +39 0744 5441372

> -----Messaggio originale-----
> Da: samba-admin at lists.samba.org [mailto:samba-admin at lists.samba.org]Per
> conto di Andrea Cerrito
> Inviato: martedl 4 settembre 2001 13.27
> A: samba at lists.samba.org
> Oggetto: Samba with daemontools
>
>
>
> *** PGP Signature Status: good
> *** Signer: Andrea Cerrito <cerrito at centromultimediale.it>
> *** Signed: 04/09/2001 13.27.14
> *** Verified: 04/09/2001 15.29.28
> *** BEGIN PGP VERIFIED MESSAGE ***
>
> Hi.
>
> I'm trying to use samba with Daemontools, but I'm having some
> problems because smbd and nmbd see that they are called not by socket
> so automatically set "-D" switch.
>
> How can I prevent this from happening? How can I force smbd and nmbd
> to not use the -D switch?
>
> Thank you :)
> ---
> Cordiali saluti / Best regards
> Andrea Cerrito
> ^^^^^^^^^^^^^^
> Net.Admin @ Centro MultiMediale di Terni S.p.A.
> P.zzale Bosco 3A
> 05100 Terni IT
> Tel. +39 0744 5441330
> Fax. +39 0744 5441372
>
>
> *** END PGP VERIFIED MESSAGE ***
> --
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba
>

Return-Path: <listclient at atlascollege.nl>
Delivered-To: samba at lists.samba.org
Received: from e4212.srv.kennisnet.nl (tr08.kennisnet.nl
  [212.178.7.199]) by lists.samba.org (Postfix) with ESMTP id 2DA0840C4
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 07:28:28 -0700 (PDT)
Received: from ntpeter ([213.34.198.239]) by e4212.srv.kennisnet.nl
  (Netscape Messaging Server 4.15) with SMTP id GJ71NX03.K1C; Wed, 5 Sep
  2001 16:31:09 +0200 
Message-ID: <002301c13617$73d3c290$efc622d5 at kennisnet.nl>
From: "List Client" <listclient at atlascollege.nl>
To: "Gerald Carter" <gcarter at valinux.com>, <p.kaagman at atlascollege.nl>,
  <samba at lists.samba.org>
References: <Pine.LNX.4.33.0109040849470.24046-100000 at pogo.plainjoe.org>
Subject: Re: Syslog entries which I do not understand
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.00.2314.1300
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:41:37 2001
X-Original-Date: Wed, 5 Sep 2001 16:31:29 +0200

----- Original Message -----
From: Gerald Carter <gcarter at valinux.com>
To: Peter Kaagman <p.kaagman at atlascollege.nl>
Cc: <samba at lists.samba.org>
Sent: Tuesday, September 04, 2001 3:51 PM
Subject: Re: Syslog entries which I do not understand


> On Mon, 3 Sep 2001, Peter Kaagman wrote:
>
> > Sep  3 12:31:30 ntcsg2 smbd[3187]:   call_nt_transact_ioctl: Currently
not
> > implemented.
>
> The client issued a SMB IOCTL call that we don't support.

That's nice ;)
Is there a way off preventing this error to show up in syslog.
Or perhaps better.. preventing the nt clients to make this call?

>
> > Aug 22 15:33:21 ntcsg2 smbd[683]:   Couldn't find free connection.
>
> There is a limit of 128 (maybe 256) connections per smbd.  Have
> you exceeded this?
>

The servers are used for providing home folders for student on 2 schools.
Each school has about 1,000 students and about 100 workstations for
students.
Would this be enough to go over the 128 (256) connections?

> > Sep  3 16:52:26 PDC_OSG smbd[10281]:   admin_01 (213.34.194.5) couldn't
find
> > service lock$
>
> Assuming [lock$] is defined in smb.conf, the SMBtcon failed because of the
> previous error.
>
>

The strange part is that admin_01 as the name implies is not really a
students machine. It has nothing to do with that samba server?
But perhaps this is because I preserved the nt netbios names for these linux
machines. Perhaps that is causing problems?

>
>
>
>
>
>
> cheers, jerrCy
>  ---------------------------------------------------------------------
>  www.samba.org              SAMBA Team              jerry_at_samba.org
>  www.plainjoe.org                                jerry_at_plainjoe.org
>  --"I never saved anything for the swim back." Ethan Hawk in Gattaca--
>
>

Problem is these things never showed up on my test setup last year.


cu


Peter

Return-Path: <listclient at atlascollege.nl>
Delivered-To: samba at lists.samba.org
Received: from e4212.srv.kennisnet.nl (tr08.kennisnet.nl
  [212.178.7.199]) by lists.samba.org (Postfix) with ESMTP id 3DD7540C4
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 07:28:44 -0700 (PDT)
Received: from ntpeter ([213.34.198.239]) by e4212.srv.kennisnet.nl
  (Netscape Messaging Server 4.15) with SMTP id GJ71O803.S25; Wed, 5 Sep
  2001 16:31:20 +0200 
Message-ID: <002401c13617$7d2b4520$efc622d5 at kennisnet.nl>
From: "List Client" <listclient at atlascollege.nl>
To: "Gerald Carter" <gcarter at valinux.com>, <p.kaagman at atlascollege.nl>,
  <samba at lists.samba.org>
References: <Pine.LNX.4.33.0109040849470.24046-100000 at pogo.plainjoe.org>
Subject: Re: Syslog entries which I do not understand
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.00.2314.1300
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:41:47 2001
X-Original-Date: Wed, 5 Sep 2001 16:31:40 +0200

----- Original Message -----
From: Gerald Carter <gcarter at valinux.com>
To: Peter Kaagman <p.kaagman at atlascollege.nl>
Cc: <samba at lists.samba.org>
Sent: Tuesday, September 04, 2001 3:51 PM
Subject: Re: Syslog entries which I do not understand


> On Mon, 3 Sep 2001, Peter Kaagman wrote:
>
> > Sep  3 12:31:30 ntcsg2 smbd[3187]:   call_nt_transact_ioctl: Currently
not
> > implemented.
>
> The client issued a SMB IOCTL call that we don't support.

That's nice ;)
Is there a way off preventing this error to show up in syslog.
Or perhaps better.. preventing the nt clients to make this call?

>
> > Aug 22 15:33:21 ntcsg2 smbd[683]:   Couldn't find free connection.
>
> There is a limit of 128 (maybe 256) connections per smbd.  Have
> you exceeded this?
>

The servers are used for providing home folders for student on 2 schools.
Each school has about 1,000 students and about 100 workstations for
students.
Would this be enough to go over the 128 (256) connections?

> > Sep  3 16:52:26 PDC_OSG smbd[10281]:   admin_01 (213.34.194.5) couldn't
find
> > service lock$
>
> Assuming [lock$] is defined in smb.conf, the SMBtcon failed because of the
> previous error.
>
>

The strange part is that admin_01 as the name implies is not really a
students machine. It has nothing to do with that samba server?
But perhaps this is because I preserved the nt netbios names for these linux
machines. Perhaps that is causing problems?

>
>
>
>
>
>
> cheers, jerrCy
>  ---------------------------------------------------------------------
>  www.samba.org              SAMBA Team              jerry_at_samba.org
>  www.plainjoe.org                                jerry_at_plainjoe.org
>  --"I never saved anything for the swim back." Ethan Hawk in Gattaca--
>
>

Problem is these things never showed up on my test setup last year.


cu


Peter

Return-Path: <Viviana.Basso at motorola.com>
Delivered-To: samba at lists.samba.org
Received: from ftpbox.mot.com (ftpbox.mot.com [129.188.136.101]) by
  lists.samba.org (Postfix) with ESMTP id EC13E40C6 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 08:13:15 -0700 (PDT)
Received: [from pobox3.mot.com (pobox3.mot.com [10.64.251.242]) by
  ftpbox.mot.com (ftpbox 2.1) with ESMTP id IAA11151 for
  <samba at lists.samba.org>; Wed, 5 Sep 2001 08:15:59 -0700 (MST)]
Received: [from zar04exm01.corp.mot.com ([199.2.34.67]) by
  pobox3.mot.com (MOT-pobox3 2.0) with ESMTP id IAA18942 for
  <samba at lists.samba.org. >; Wed, 5 Sep 2001 08:07:43 -0700 (MST)]
Received: by zar04exm01.corp.mot.com with Internet Mail Service
  (5.5.2654.52) id <S21N514B>; Wed, 5 Sep 2001 12:15:56 -0300
Message-ID: <5339217FD343D411830F00508BAD047602D2987A at zar04exm01.corp.mo
  t.com>
From: Basso Viviana-avb012 <Viviana.Basso at motorola.com>
To: Samba list <samba at lists.samba.org>
Subject: Cannot access SWAT after changing password
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2654.52)
Content-Type: text/plain; charset="ISO-8859-1"
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:43:58 2001
X-Original-Date: Wed, 5 Sep 2001 12:15:55 -0300

Hi!
I've found an anoying problem and I need help!!
I'm running HPUX 10.20 and I've set up Swat so that any user can access to change it's own password ( smb.conf has 0644 permisions only, so that no user can touch the configuration)
The first time a user access swat and change password it works fine. The problem appears when some days after that the user wants to access swat again. If the user gives his current credentials swat issues this message:
"401 Bad Authorization"
"username or password incorrect"
After that any attempt to connect is refused.
I tried providing the old password and Swat lets me access. Why is Swat remembering the old password? It happens to any user, root included.
Any idea??
Thanks,

	Viviana

Return-Path: <fabio at suam.edu.br>
Delivered-To: samba at lists.samba.org
Received: from servweb.suam.edu.br (unknown [200.20.20.30]) by
  lists.samba.org (Postfix) with ESMTP id 51BA340C4 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 08:57:26 -0700 (PDT)
Received: (from wwwrun at localhost) by servweb.suam.edu.br
  (8.11.2/8.10.2/SuSE Linux 8.10.0-0.3) id f85G1TW29744; Wed, 5 Sep 2001
  13:01:29 -0300
Message-Id: <200109051601.f85G1TW29744 at servweb.suam.edu.br>
From: "Fabio  Hochleitner" <fabio at suam.edu.br>
To: samba at lists.samba.org
Subject: Limit user connections
X-Mailer: NeoMail 1.23
X-IPAddress: 200.20.20.100
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:45:29 2001
X-Original-Date: Wed, 5 Sep 2001 13:01:29 -0300

Dear All,

  Hi! I am using a samba server and I am trying to limit the number of 
simultaneos user connections, e.g., the user is limited to logon in 
only one machine each time. Does any body knows how can I do that?

  Thank you very much!

  Prof. Fabio Hochleitner
___________________________________________________________________
Prof. Fabio Hochleitner               |Av. Paris, 72 - Bonsucesso
Coordenador Dep. Informatica          |21041-020 - Rio de Janeiro
Centro Universitario Augusto Motta    |(21) 3882-9722 
                           fabio at suam.edu.br

Return-Path: <abartlet at pcug.org.au>
Delivered-To: samba at lists.samba.org
Received: from dnscache.cbr.au.asiaonline.net
  (dnscache.cbr.au.asiaonline.net [210.215.8.100]) by lists.samba.org
  (Postfix) with ESMTP id AB0E440C4 for <samba at lists.samba.org>; Wed,  5
  Sep 2001 09:07:33 -0700 (PDT)
Received: from piglett.bartlett.house (as2-126.cbr.au.asiaonline.net
  [210.215.10.126]) by dnscache.cbr.au.asiaonline.net (8.10.2/8.10.2)
  with ESMTP id f85GA9I24956; Thu, 6 Sep 2001 02:10:10 +1000 (EST)
Received: from yowiee.bartlett.house (IDENT:root at yowiee.bartlett.house
  [192.168.1.99]) by piglett.bartlett.house (8.9.3/8.8.7) with ESMTP id
  CAA31157; Thu, 6 Sep 2001 02:10:03 +1000
Received: from bartlett.house (IDENT:abartlet at piglett.bartlett.house
  [192.168.1.1]) by yowiee.bartlett.house (8.9.3/8.8.7) with ESMTP id
  CAA09705; Thu, 6 Sep 2001 02:10:01 +1000
Message-ID: <3B964E58.7629FA9D at bartlett.house>
From: Andrew Bartlett <abartlet at pcug.org.au>
X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.4.8 i686)
X-Accept-Language: en
MIME-Version: 1.0
To: Michael Beddow <mbnospam at mbeddow.net>
Cc: samba at lists.samba.org
Subject: Re: User quotas on 2.2.1a + XFS 1.01 + Linux kernel 2.4.9
References: <7F0147C496F3D411813C0002B32BF1CC0111C36B at eesekkex001.kkekan
  t.ericsson.se> <20010903211008.C9519 at sackman.co.uk>
  <01ab01c1351a$510ca6d0$0201010a at michaelnt2k>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:45:54 2001
X-Original-Date: Thu, 06 Sep 2001 02:10:00 +1000

Michael Beddow wrote:
> 
> Mathew,
> 
> Thanks for the tip, but that turned out not to be the problem.
> 
> Thanks to the great work by Scott Armstrong (posted earlier today) it's
> plain enough that this is a Samba problem, not a kernel issue. With
> Scott's fixes, quotas on Linux ext2 fs now work fine with Samba, whereas
> I can't see how they could have done before. They still don't work with
> XFS, because the Samba code doesn't know about the XFS-specific commands
> needed when calling quotactl(), but I hope to fix that, using Scott's
> work.
> 
> I'm still a bit puzzled as to why nobody noticed, or cared(?), about the
> non-functionality of what for some of us is a very important feature.
> Maybe people assumed too readily that those reporting problems had an
> incorrect kernel configuration, or hadn't built Samba --with-quotas. Or
> was it only tested on non-Linux platforms, where it worked?

The problem is that (almost?) none of the developers use quotas on their
own workstations, and as such the barrier to testing is quite high.  And
while this is an important feature, if nobody is changing code in that
area then the barrier to testing is even higher, particularly when its
the kernel (and a particular kernel series) breaking samba, where samba
once did work.

This is why we rely on quality, persistent bug-reports from our users. 
This is also why patches really get peoples attention.  (even a 'wrong'
patch can greatly focus the mind on where the problem may be).

Finally, the whole team has been rather busy recently, and even
well-formed and logical patches have sat around for quite a while :-(.  

Hope this clears some of this up,

Andrew Bartlett

-- 
Andrew Bartlett                                 abartlet at pcug.org.au
Samba Team member, Build Farm maintainer        abartlet at samba.org
Student Network Administrator, Hawker College   abartlet at hawkerc.net
http://samba.org     http://build.samba.org     http://hawkerc.net

Return-Path: <lcoover at ycp.edu>
Delivered-To: samba at lists.samba.org
Received: from owl.ycp.edu (owl.ycp.edu [192.245.87.43]) by
  lists.samba.org (Postfix) with ESMTP id C8C7B40C6 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 09:11:19 -0700 (PDT)
Received: from ycp.edu (ba-dyn122.ycp.edu [208.192.128.122]) by
  owl.ycp.edu (8.10.2+Sun/8.10.2) with ESMTP id f85GE1R26945 for
  <samba at lists.samba.org>; Wed, 5 Sep 2001 12:14:02 -0400 (EDT)
Message-ID: <3B964F48.26B9F738 at ycp.edu>
From: LeAnne Coover <lcoover at ycp.edu>
X-Mailer: Mozilla 4.77 [en] (Win95; U)
X-Accept-Language: en
MIME-Version: 1.0
To: samba at lists.samba.org
Subject: [Fwd: cvs_head and winbind problems]
Content-Type: text/plain; charset="us-ascii"
X-Converted-To-Plain-Text: from multipart/mixed by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/plain
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:46:05 2001
X-Original-Date: Wed, 05 Sep 2001 12:14:00 -0400

Return-Path: <samba-admin at lists.samba.org>
Received: from mosquito.ycp.edu (mosquito.ycp.edu [192.245.87.13]) by
  owl.ycp.edu (8.10.2+Sun/8.10.2) with SMTP id f7U00EI29117; Wed, 29 Aug
  2001 20:00:14 -0400 (EDT)
Received: from samba.sourceforge.net(198.186.203.85) by mosquito.ycp.edu
  via csmap  id 28645; Wed, 29 Aug 2001 19:59:37 -0400 (EDT)
Received: from va.samba.org (localhost [127.0.0.1]) by lists.samba.org
  (Postfix) with ESMTP id BE3214256; Wed, 29 Aug 2001 16:57:03 -0700
  (PDT)
Delivered-To: samba at lists.samba.org
Received: from mail.compudigm.co.nz (unknown [203.96.63.155]) by
  lists.samba.org (Postfix) with SMTP id B9CB64256 for
  <samba at lists.samba.org>; Wed, 29 Aug 2001 16:56:10 -0700 (PDT)
Received: (qmail 14682 invoked by uid 505); 29 Aug 2001 23:57:01 -0000
Received: from simon at compudigm.co.nz by mail with qmail-scanner-0.94 (.
  Clean. Processed in 2.436866 secs); 30/08/2001 11:56:58
X-Qmail-Scanner-Mail-From: simon at compudigm.co.nz via mail
X-Qmail-Scanner-Rcpt-To: samba at lists.samba.org
X-Qmail-Scanner: 0.94 (No viruses found. Processed in 2.438146 secs)
Received: from dasboot.compudigm.co.nz (HELO compudigm.co.nz)
  (10.0.0.254) by mail.compudigm.co.nz with SMTP; 29 Aug 2001 23:56:58
  -0000
Message-ID: <3B8D8131.9090302 at compudigm.co.nz>
From: Simon Travers-Jones <simon at compudigm.co.nz>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3)
  Gecko/20010801
X-Accept-Language: en-us
MIME-Version: 1.0
To: samba at lists.samba.org
Subject: cvs_head and winbind problems
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0beta6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
  <mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
  <mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: http://lists.samba.org/pipermail/samba/
Date: Thu, 30 Aug 2001 11:56:33 +1200

Hello,
I have installed the winbind and samba from cvs_head without problems.   
I can login to the machine
via console using DOMAIN\administrator for example and it works fine.   
However, If I try to connect to the
appliance from an nt machine (with the same user details as above), the 
"enter network password" box is thrown
up and the nothing I try works.

I can also successfully auth that user with "wbinfo -a".

This is what appears in log.smbd:
[2001/08/30 11:48:51, 0] 
rpc_client/cli_netlogon.c:cli_net_sam_logon_internal(407)
  cli_net_sam_logon_internal: NT_STATUS_NO_SUCH_USER
[2001/08/30 11:48:51, 0] 
libsmb/domain_client_validate.c:domain_client_validate(329)
  domain_client_validate: unable to validate password for user 
tewhenua\administrator in domain TEWHENUA to Domain controller 10.0.0.2. 
Error was NT_STATUS_NO_SUCH_USER.
[2001/08/30 11:48:52, 0] 
rpc_client/cli_netlogon.c:cli_net_sam_logon_internal(407)
  cli_net_sam_logon_internal: NT_STATUS_NO_SUCH_USER
[2001/08/30 11:48:52, 0] 
libsmb/domain_client_validate.c:domain_client_validate(329)
  domain_client_validate: unable to validate password for user 
tewhenua\administrator in domain TEWHENUA to Domain controller 10.0.0.2. 
Error was NT_STATUS_NO_SUCH_USER.

Here is the global section from the conf:
[global]
   workgroup = TEWHENUA
   netbios name = UNICRONC
   server string = pre3samba
   security = DOMAIN
   encrypt passwords = Yes
   password server = 10.0.0.2
;      10.0.0.2 is an NT4 PDC named "Vader"
   socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
   strip dot = Yes
   winbind uid = 10000-20000
   winbind gid = 10000-20000
   template homedir = /home/%U
   template shell = /bin/bash
;   winbind separator = +
   winbind cache time = 10   

Any help is appreciated.
Cheers

-- 

Simon Travers-Jones
Network Engineer
Compudigm International Ltd.
PH: +64 4 4999 881
FX: +64 4 4999 853
CL: +64 21 499 065 
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <mbnospam at mbeddow.net>
Delivered-To: samba at lists.samba.org
Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com
  [62.253.162.45]) by lists.samba.org (Postfix) with ESMTP id ADD9A40C4
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 10:47:09 -0700 (PDT)
Received: from michaelnt2k ([62.252.240.177]) by mta05-svc.ntlworld.com
  (InterMail vM.4.01.03.00 201-229-121) with SMTP id
  <20010905174950.EVMM20588.mta05-svc.ntlworld.com at michaelnt2k>; Wed, 5
  Sep 2001 18:49:50 +0100
Message-ID: <02cd01c13633$e19ba330$0201010a at michaelnt2k>
From: "Michael Beddow" <mbnospam at mbeddow.net>
To: <samba at lists.samba.org>
Cc: "Andrew Bartlett" <abartlet at pcug.org.au>, "Michels, Gustavo
  [EES/BR]" <gustavo.michels at emersonenergy.com>,
  <matthew at arts.usyd.edu.au>, "Scott Armstrong" <scottbird7 at home.com>
References: <001d01c134ce$dfd9ba20$0801a8c0 at cj501503a.dlcty1.va.home.com
   > <3B94A617.5351C382 at bartlett.house>
Subject: Re: Updated Quotas.c (Linux section)
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4807.1700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:48:16 2001
X-Original-Date: Wed, 5 Sep 2001 18:54:58 +0100

Re my query on XFS quotas under Linux, posted around the same time as
Scott's q and fix for ext2 quotas:

I've now discovered that  Matthew Geier matthew at arts.usyd.edu.au
posted a fix for Linux-XFS quotas under 2.1.1a on samba-technical on 24
July.

I've applied it, thrashed it hard, and it works fine. As a result, a
site with which I'm associated will be sticking with Samba instead of
going to W2K (quotaed shares on a journalling filesystem were that
important).

I'm a bit disappointed that the Samba team apparently regard this issue
as so unimportant. Couldn't someone who really knows the innards of this
stuff spend a couple of hours integrating Scott's and Mathew's fixes
into the core distribution, since the (non-working) code is already
there? Don't get me wrong. No one could admire the Samba team's work
more than I do,  but that makes me all the more puzzled that what ought
surely to be an important feature (which the docs, after all, claim does
work) is being a bit neglected.

Michael
---------------------------------------------------------
Michael Beddow   http://www.mbeddow.net/
XML and the Humanities page:  http://xml.lexilog.org.uk/
---------------------------------------------------------
----- Original Message -----
From: "Andrew Bartlett" <abartlet at pcug.org.au>
To: "Scott Armstrong" <scottbird7 at home.com>
Cc: <samba at lists.samba.org>
Sent: Tuesday, September 04, 2001 10:59 AM
Subject: Re: Updated Quotas.c (Linux section)


> Scott Armstrong wrote:
> >
> > I've included an updated quotas.c which includes no additional
> > functionality - other than it actually works for user quotas on
Linux. Since
> > no one else replied to me about my inquiry, I decided to see what I
could do
> > with it myself.
> > Scott
>
> Thankyou very much for this.  As you have noticed, some bits of samba
> get a bit dated over time...  Could you please make up the diff -u and
> mail it to samba-patches at samba.org as a text attachment?  Your mailer
> seems to have chewed on the one you sent here.
>
> Hopefully then one of the team-members who knows a bit about this area
> will be able to look it over and apply it.
>
> Thanks,
>
> Andrew Bartlett
> --
> Andrew Bartlett                                 abartlet at pcug.org.au
> Samba Team member, Build Farm maintainer        abartlet at samba.org
> Student Network Administrator, Hawker College   abartlet at hawkerc.net
> http://samba.org     http://build.samba.org     http://hawkerc.net
> --
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba
>

Return-Path: <valites at geneseo.edu>
Delivered-To: samba at lists.samba.org
Received: from helios.geneseo.edu (helios.geneseo.edu [137.238.1.100])
  by lists.samba.org (Postfix) with ESMTP id C1BC340C6 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 11:49:12 -0700 (PDT)
Received: from localhost (valites at localhost) by helios.geneseo.edu
  (8.11.5/8.11.5) with ESMTP id f85Ipo709062 for
  <samba at lists.samba.org>; Wed, 5 Sep 2001 14:51:50 -0400 (EDT)
From: "Mark T. Valites" <valites at geneseo.edu>
To: <samba at lists.samba.org>
Subject: nfs, oplocks & samba 2.2.1a
Message-ID: <Pine.GSO.4.33.0109051415360.20115-100000 at helios.geneseo.edu
  >
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:50:00 2001
X-Original-Date: Wed, 5 Sep 2001 14:51:50 -0400 (EDT)

I posted a previous message asking if any other had been having problems
with office XP and samba. After looking further into the problem, I no
longer think that the problem I am experiencing is related to this.
Looking through syslog errors, I see a lot of entries for oplock errors:

Sep  5 14:20:31 helios smbd[18611]: [ID 702911 daemon.error] [2001/09/05
14:20:31, 0] smbd/oplock.c:request_oplock_break(997)
Sep  5 14:20:31 helios smbd[18611]: [ID 702911 daemon.error]
request_oplock_break: no response received to oplock break request to pid
1312 on port 42333 for dev = 3b40004, inode = 158517
Sep  5 14:20:31 helios smbd[18611]: [ID 702911 daemon.error]   for dev =
3b40004, inode = 158517, tv_sec = 3b96611c, tv_usec = 32e60

Since the last post, the daemon has been moved to a robust sunfire 280R.
The machine is serving nfs exports, some of which are also shared by way
of samba.  It is again running 2.2.1a.

After noticing the oplock errors, and doing a little research, I also
added "kernel oplocks = no" to the conf file with hopes of solving the
problem.

Unfortuneatly, the problem was not solved.  oplock errors still appear in
syslog.   Samba processes accumulate and some acquire tremendous amounts
of CPU.  The load average on the machine has sky rocketed.  Lab machines
here require users to log onto our 2000 domain, and then mount the user's
home direcory from this samba server.  The mounts are hanging terribly.

Here's the config file for anyone who might be able to help.  strick
locking in the two shares was added by me and isn't in production right
now.

Thanks in advance again!

#======================= Global Settings
=====================================
[global]

# turn off kernel oplocks
   kernel oplocks = no

# workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4
   workgroup = geneseo
   netbios name = MAIN

# server string is the equivalent of the NT Description field
   server string = Main E-mail & Web Server

# This option is important for security. It allows you to restrict
# connections to machines which are on your local network. The
# following example restricts access to two C class networks and
# the "loopback" interface. For more examples of the syntax see
# the smb.conf man page
;   hosts allow = 192.168.1. 192.168.2. 127.
# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
;   load printers = yes

# you may wish to override the location of the printcap file
;   printcap name = /etc/printcap

# on SystemV system setting printcap name to lpstat should allow
# you to automatically obtain a printer list from the SystemV spool
# system
;   printcap name = lpstat

# It should not be necessary to specify the print system type unless
# it is non-standard. Currently supported print systems include:
# bsd, sysv, plp, lprng, aix, hpux, qnx
;   printing = bsd
        printing = bsd
        print command = /usr/bin/lpr -r -P%p %s
        lpq command = /usr/bin/lpq %p
        lprm command = /usr/bin/lprm -P%p %j
        queuepause command = /usr/sbin/lpc stop %p
        queueresume command = /usr/sbin/lpc start %p

# Uncomment this if you want a guest account, you must add this to
/etc/passwd
# otherwise the user "nobody" is used
;  guest account = pcguest

# this tells Samba to use a separate log file for each machine
# that connects
   log file = /usr/local/samba-2.2.1a/var/log/log.%m

# Put a capping on the size of the log files (in Kb).
   max log size = 5000

# Security mode. Most people will want user level security. See
# security_level.txt for details.
   #security = domain
   security = server
   encrypt passwords = yes
# Use password server option only with security = server
   password server = server1 server2

# You may wish to use password encryption. Please read
# ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation.
# Do not enable this option unless you have read those documents
#  encrypt passwords = yes
#  smb passwd file = /usr/local/samba-2.0.7/private/smbpasswd

# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
;   include = /usr/local/samba-2.0.7/lib/smb.conf.%m

# Most people will find that this option gives better performance.
# See speed.txt and the manual pages for details
   socket options = TCP_NODELAY

# Configure Samba to use multiple interfaces
# If you have multiple network interfaces then you must list them
# here. See the man page for details.
;   interfaces = 192.168.12.2/24 192.168.13.2/24
    interfaces = xxx.xxx.xxx.xxx/32

# Browser Control Options:
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
   local master = no

# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
;   os level = 30

# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
;   domain master = yes

# Preferred Master causes Samba to force a local browser election on
startup
# and gives it a slightly higher chance of winning the election
;   preferred master = yes

# Use only if you have an NT server on your network that has been
# configured at install time to be a primary domain controller.
;   domain controller = <NT-Domain-Controller-SMBName>

# Enable this if you want Samba to be a domain logon server for
# Windows95 workstations.
;   domain logons = yes

# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
;   logon script = %m.bat
# run a specific logon batch file per username
;   logon script = %U.bat

# Where to store roving profiles (only for Win95 and WinNT)
#        %L substitutes for this servers netbios name, %U is username
#        You must uncomment the [Profiles] share below
;   logon path = \\%L\Profiles\%U

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS
Server
;   wins support = yes

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
#       Note: Samba can be either a WINS Server, or a WINS Client, but NOT
both
   wins server = xxx.xxx.xxx.xxx

# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one  WINS Server on the network. The default is NO.
;   wins proxy = yes

# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The built-in default for versions 1.9.17 is yes,
# this has been changed in version 1.9.18 to no.
   dns proxy = no

remote announce = 137.238.1.22

#============================ Share Definitions
==============================

[homes]
   strict locking = yes
   comment = Home Directories
   browseable = no
   writable = yes

# Un-comment the following and create the netlogon directory for Domain
Logons
; [netlogon]
;   comment = Network Logon Service
;   path = /usr/local/samba/lib/netlogon
;   guest ok = yes
;   writable = no
;   share modes = no

;[Inbox]
;    comment = Inbox Directory
;    path = /export/home/faculty/In/PC
;    guest ok = yes
;    writable = yes
;    public = yes
;    write list = @staff

;[Outbox]
;    comment = Outbox Directory
;    path = /export/home/faculty/Out/PC
;    guest ok = yes
;    writable = yes
;    public = yes
;    write list = @staff

# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;[Profiles]
;    path = /usr/local/samba/profiles
;    browseable = no
;    guest ok = yes


# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
;[printers]
;   comment = All Printers
;   path = /usr/spool/samba
;   browseable = no
# Set public = yes to allow user 'guest account' to print
;   guest ok = no
;   writable = no
;   printable = yes

# This one is useful for people to share files
;[tmp]
;   comment = Temporary file space
;   path = /tmp
;   read only = no
;   public = yes

# A publicly accessible directory, but read only, except for people in
# the "staff" group
;[public]
;   comment = Public Stuff
;   path = /home/samba
;   public = yes
;   writable = yes
;   printable = no
;   write list = @staff

# Other examples.
#
# A private printer, usable only by fred. Spool data will be placed in
fred's
# home directory. Note that fred must have write access to the spool
directory,
# wherever it is.
;[fredsprn]
;   comment = Fred's Printer
;   valid users = coloccia
;   path = /home/coloccia
;   printer = lp
;   public = no
;   writable = no
;   printable = yes
;       browseable = yes

# A private directory, usable only by fred. Note that fred requires write
# access to the directory.
;[fredsdir]
;   comment = Fred's Service
;   path = /usr/somewhere/private
;   valid users = fred
;   public = no
;   writable = yes
;   printable = no

# a service which has a different directory for each machine that connects
# this allows you to tailor configurations to incoming machines. You could
# also use the %U option to tailor it by user name.
# The %m gets replaced with the machine name that is connecting.
;[pchome]
;  comment = PC Directories
;  path = /usr/pc/%m
;  public = no
;  writable = yes

# A publicly accessible directory, read/write to all users. Note that all
files
# created in the directory by users will be owned by the default user, so
# any user with access can delete any other user's files. Obviously this
# directory must be writable by the default user. Another user could of
course
# be specified, in which case all files would be owned by that user
instead.
;[public]
;   path = /usr/somewhere/else/public
;   public = yes
;   only guest = yes
;   writable = yes
;   printable = no

# The following two entries demonstrate how to share a directory so that
two
# users can place files there that will be owned by the specific users. In
this
# setup, the directory should be writable by both users and should have
the
# sticky bit set on it to prevent abuse. Obviously this could be extended
to
# as many users as required.
;[myshare]
;   comment = Mary's and Fred's stuff
;   path = /usr/somewhere/shared
;   valid users = mary fred
;   public = no
;   writable = yes
;   printable = no
;   create mask = 0765

[labs$]
        strict locking = yes
        comment = Lab Images
        path = /labs/PC
	public = no
        writable = yes
        printable = no
        write list = @labs

Return-Path: <tomfsamba at yahoo.com>
Delivered-To: samba at lists.samba.org
Received: from m1.bezeqint.net (m1.bezeqint.net [192.115.106.45]) by
  lists.samba.org (Postfix) with ESMTP id 8DFDC4102 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 12:00:29 -0700 (PDT)
Received: from yahoo.com (bzq-230-11.red.bezeqint.net [212.179.230.11])
  by m1.bezeqint.net (Mirapoint) with ESMTP id AHG65886; Wed, 5 Sep 2001
  22:03:02 +0300 (IDT)
Message-ID: <3B96773B.4030108 at yahoo.com>
From: tomfsamba <tomfsamba at yahoo.com>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3)
  Gecko/20010808
X-Accept-Language: en-us
MIME-Version: 1.0
To: samba at lists.samba.org
Subject: "Path too deep" error message in Windows 2000 Pro
Content-Type: text/plain; charset="us-ascii"
X-Converted-To-Plain-Text: from multipart/mixed by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/plain
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:51:36 2001
X-Original-Date: Wed, 05 Sep 2001 22:04:27 +0300

Hi,
I have samba2.2.1a installed on a RedHat Linux 7.1.
I'm using : security = user.

Authentication is successful. I can copy files from the Samba server to 
Win2000 pro.file:/usr/local/samba/lib/smb.conf
[global]
    workgroup = TOMAS
    guest ok = no
    server string = Samba kramer %v 
    netbios name = hydra    
    encrypt passwords = yes
    os level = 34
    security = user
    wins support = yes
    local master = yes
    read only = yes
    hosts deny =  ALL EXCEPT 192.168.0.
    hosts allow = 192.168.0.
    interfaces = 192.168.0.2/24 localhost
    bind interfaces only = yes	
    kernel oplocks = no	
    oplocks = no
    level2 oplocks = no
    posix locking = no
    
	#Debug logging info
	log level = 2
	max log size = 250
	log file = /var/log/samba/samba.log.%m
	debug timestamp = no

[homes]
	comment = %U's Home
	browseable = no
	writeable = yes
	
[mayastuff]
    path = /home/maya/stuff
    browseable = yes
    writeable = yes

Return-Path: <root at www.postofis.com>
Delivered-To: samba at samba.org
Received: from www.postofis.com (www.postofis.com [209.61.158.179]) by
  lists.samba.org (Postfix) with ESMTP id 9FBE840C6 for
  <samba at samba.org>; Wed,  5 Sep 2001 12:21:22 -0700 (PDT)
Received: by www.postofis.com (Postfix, from userid 0) id C41EC18C3B3;
  Wed,  5 Sep 2001 14:23:56 -0500 (CDT)
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
X-Mailer: MIME::Lite 2.117  (F2.6; B2.11; Q2.03)
From: Dunkin Donuts & Coca Cola <dunkindonuts_cocacola at postofis.com>
To: samba at samba.org
Subject: TANKER COLA alana, yanýnda BEDAVA DONUT
Message-Id: <20010905192356.C41EC18C3B3 at www.postofis.com>
X-Converted-To-Plain-Text: from multipart/mixed by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/html
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:52:40 2001
X-Original-Date: Wed, 5 Sep 2001 19:23:56 UT

[demime could not interpret encoding binary - treating as plain text]
[TABLE NOT SHOWN]

Return-Path: <urban at teststation.com>
Delivered-To: samba at lists.samba.org
Received: from fungus.teststation.com (fungus.teststation.com
  [212.32.186.211]) by lists.samba.org (Postfix) with ESMTP id 977644102
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 13:06:35 -0700 (PDT)
Received: from cola.teststation.com (tron.teststation.com
  [212.32.186.212]) by fungus.teststation.com (8.11.2/8.11.2) with ESMTP
  id f85K9C331331; Wed, 5 Sep 2001 22:09:12 +0200
From: Urban Widmark <urban at teststation.com>
X-Sender: <puw at cola.teststation.com>
To: Andrew Church <achurch at achurch.org>
Cc: <samba at lists.samba.org>
Subject: Re: smbmount and NFS? + ERRDOS 66 (smbmount 2.2.1a)
In-Reply-To: <3b945ee2.45101 at achurch.org>
Message-ID: <Pine.LNX.4.30.0109052158240.2005-100000 at cola.teststation.co
  m>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:54:19 2001
X-Original-Date: Wed, 5 Sep 2001 22:09:12 +0200 (CEST)

On Tue, 4 Sep 2001, Andrew Church wrote:

>      (I apologize ahead of time if this is not the correct forum for this
> question; if not, please direct me to the right place to ask.)

samba at lists.samba.org may be the right place. Or some nfs list.

>      I've got an (admittely unusual) problem cropping up on my local
> network: files inside subdirectories on an SMB mount don't seem to be
> visible through NFS.  My network setup is like this:
> 
>   innerbox               outerbox
> (192.168.0.1) ------- (192.168.0.254)          W2Kserver
>                        (10.100.0.15) ------- (10.100.0.10)
>  /nfs/share             /smb/share         //W2Kserver/share
> 
> innerbox is firewalled from the outer network, so it can't mount the Win2k
> server's share directly; what I decided to do instead was mount the share
> on outerbox, then NFS-export that to innerbox.

If innerbox is a linux machine then you should be able to do this:

xterm1% ssh -L 1234:10.100.0.10:139 outerbox
xterm2% mount -t smbfs -o <normal options>,port=1243,ip=127.0.0.1 //W2Kserver/share /smb/share


>      Unfortunately, that didn't quite work; outerbox can mount the share
> just fine(*), but when innerbox mounts that via NFS, only files and
> directories in the top level of the share (i.e. /smb/share/filename on
> outerbox) appear on innerbox (/nfs/share/filename), but files and

So the mount works on outerbox ... doesn't that make this a NFS problem :)

Actually I think your problem could be related to requirements from the
nfs daemon. I believe one such is that it wants inode numbers to stay the
same, smbfs does not guarantee that.

Is this knfsd? It may require things from a filesystem that smbfs simply
does not, and possibly even cannot, provide.

> (*) This was with samba 2.0.3; I tried upgrading to 2.2.1a, and now I
>     can't even mount the share on outerbox--I get "tree connect failed:
>     ERRDOS - 66".  What does this mean and how can I remedy it?

I don't know what that error is. But does smbclient give you the same?
Verify the usual stuff first (username, password, workgroup).

/Urban

Return-Path: <jasons at NJAQUARIUM.ORG>
Delivered-To: samba at lists.samba.org
Received: from mail.njaquarium.org (unknown [207.106.229.227]) by
  lists.samba.org (Postfix) with ESMTP id 99A9240C6 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 13:37:27 -0700 (PDT)
Received: by NJSA_MAIL with Internet Mail Service (5.5.2650.21) id
  <R0Y3XJQ3>; Wed, 5 Sep 2001 16:40:10 -0400
Message-ID: <D7C702733EC9D3119BE30050DA6B3ED4678D8D at NJSA_MAIL>
From: Jason Staudenmayer <jasons at NJAQUARIUM.ORG>
To: "'samba at lists.samba.org'" <samba at lists.samba.org>
Subject: samba with ipchains
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2650.21)
Content-Type: text/plain; charset="iso-8859-1"
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:55:16 2001
X-Original-Date: Wed, 5 Sep 2001 16:40:09 -0400

I have samba 2.0.10 on RH 7.1
and ipchains 1.3.10
when I setup my ipchains to filter normal firewall
protection I can't access my smb server even though I 
have rules set for ports 137 - 139.
Anybody else run into this problem. I've tried every thing
I can think of also I can't do nmblookup from the firewall 
to my inside net. I get ERRNO=Operation not permitted

any ideas?

jason

Return-Path: <Markus.Dreyer at gmx.de>
Delivered-To: samba at lists.samba.org
Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by
  lists.samba.org (Postfix) with SMTP id 309C64102 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 14:18:20 -0700 (PDT)
Received: (qmail 24901 invoked by uid 0); 5 Sep 2001 21:21:02 -0000
Received: from h705.ibc.de.easynet.net (HELO pcmarkus) (212.224.50.193)
  by mail.gmx.net (mp003-rz3) with SMTP; 5 Sep 2001 21:21:02 -0000
From: "Markus Dreyer" <Markus.Dreyer at gmx.de>
To: <samba at lists.samba.org>
Subject: PDC Help wanted
Message-ID: <DJEPLGEKJIMKMFNLPILJMENBCAAA.Markus.Dreyer at gmx.de>
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:56:03 2001
X-Original-Date: Wed, 5 Sep 2001 23:22:39 +0200

Hi there,

I have a problem with my Domain Controller setup:

My network is at the moment just  the Linux maschin with a HP LaserJet 4 and
a win2k maschine. At the moment I'm running Samba 2.2.1a.

Everytime my win2k PC tries to write the profile datas to the Linux
directory, the Linux maschine totally stop running. The login runs without
any problems.

After installing a printer I have the same problem everytime I try to print
from the win2k maschine, but printing from linux is no problems. To proove
this I totally rewrote the smb.conf to the user level share and put up the
printers share with guest ok = Yes. I got the same result.

Return-Path: <dennis.moreno at pop.safetran.com>
Delivered-To: samba at lists.samba.org
Received: from endeavor.safetran.com (endeavor.safetran.com
  [207.175.180.130]) by lists.samba.org (Postfix) with ESMTP id
  7D9FD4102 for <samba at lists.samba.org>; Wed,  5 Sep 2001 14:28:10 -0700
  (PDT)
Received: from pop.safetran.com (defiant [10.232.48.55]) by
  endeavor.safetran.com (no.no.no/no.no.no) with ESMTP id OAA12126 for
  <samba at lists.samba.org>; Wed, 5 Sep 2001 14:30:48 -0700 (PDT)
Message-ID: <3B96997C.F4DFE52F at pop.safetran.com>
From: dennis <dennis.moreno at pop.safetran.com>
X-Mailer: Mozilla 4.77 [en] (WinNT; U)
X-Accept-Language: en
MIME-Version: 1.0
Newsgroups: comp.protocols.smb
To: samba at lists.samba.org
Subject: Samba 2.09 on Sol 8 - "admin users" parameter
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:56:16 2001
X-Original-Date: Wed, 05 Sep 2001 14:30:36 -0700

Hi

I have a situation where I'd like to use the "admin users" parameter to
allow
a user root privileges on a share. There are various file on this share
that are owned
by different users and I need to allow this user to delete any file for
cleanup purposes.

I setup the share to include the "admin users" parameter like this:

[disk1]
    comment = unused files
    path =/disk1
    read only = No
    create mask = 0775
    directory mask = 0775
    case sensitive = No
    admin users = randy

When the user "randy" connects to the share from WNT4 and deletes a
file, the file disappears
as if deleted, but when the window is refreshed...it reappears! I
monitored this operation
in unix while the user deleted the file and it never really is deleted
from the file system.

Anyone have any ideas what might be happening or how I can fix this?

Dennis

Return-Path: <JMoore at bellhelicopter.textron.com>
Delivered-To: samba at samba.org
Received: from srv2.dc1.textron.com (srv2.dc1.textron.com
  [216.148.246.98]) by lists.samba.org (Postfix) with ESMTP id 0E6724173
  for <samba at samba.org>; Wed,  5 Sep 2001 15:23:44 -0700 (PDT)
Received: from mrbbdc101.textron.com (mrbbdc101.textron.com
  [10.231.4.37]) by srv2.dc1.textron.com (AIX4.3/8.9.3/8.9.3) with SMTP
  id SAA40686 for <samba at samba.org>; Wed, 5 Sep 2001 18:26:13 -0400
Received: by dfwsrv101.bh.textron.com with Internet Mail Service
  (5.5.2653.19) id <RX4RF3L9>; Wed, 5 Sep 2001 17:26:11 -0500
Message-ID: <062130671039D311BB730001FA7E02FB03A7B59D at BHTINTEXCH1>
From: "Moore, Jim (BHTI)" <JMoore at bellhelicopter.textron.com>
To: "'samba at samba.org'" <samba at samba.org>
Subject: Java Access to User Samba File Privileges 
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain; charset="iso-8859-1"
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 18:58:47 2001
X-Original-Date: Wed, 5 Sep 2001 17:25:35 -0500

Greetings to All:

I am inquiring to determine if anyone knows of Java code that has been
written to directly Access Samba security for the purpose of obtaining file
rights of specific files associated with a Samba user id/password.  A
contact and/or website related to this issue would be highly appreciated.   

Jim Moore
Design Architect
(817)280-6820 (office)
(817)425-1709 (pager)
jmoore at bellhelicopter.textron.com

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 2834D4169 for <samba at lists.samba.org>; Wed,  5
  Sep 2001 17:54:59 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id UAA05517 for samba at lists.samba.org; Wed, 5 Sep 2001
  20:57:41 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Where are the client programs with 2.2.1a ?
Message-ID: <20010905205740.A5497 at hammershome.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 19:03:11 2001
X-Original-Date: Wed, 5 Sep 2001 20:57:40 -0400

I just installed 2.2.1a over time a 2.0.6. Painless, but I couldn't find any
installation instructions.
Now I am done, and I want to be sure I am using the most updated client
tools, too.
I believe these are installed in /usr/local/samba/bin by default, in which I
find:
smbpasswd  smbstatus  swat      testprns
make_smbcodepage  nmbd             rpcclient  smbclient  smbd
smbspool   smbtar     testparm
Is this all there is?
In the client source directory the following is found after compiling:
client.c  client.o  clitar.c  clitar.o  smbmnt.c  smbmount.c  smbspool.c
smbspool.o  smbumount.c 
So, I guess I have several questions:
1. Why were smbmnt, smbmount, and smbumount not compiled and installed?
2. Where is smbclient ? Is it client.o ? It has a different md5sum.
Is it safe to keep using my old smbmount client?
Thanks,
Joel

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id DFD654F44 for <samba at lists.samba.org>; Wed,  5
  Sep 2001 18:33:51 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id VAA05680 for samba at lists.samba.org; Wed, 5 Sep 2001
  21:36:34 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: Log (Logins)
Message-ID: <20010905213633.A5671 at hammershome.com>
References: <02d001c1334e$2698fa70$65d4a8c0 at brandon>
  <20010901223406.A7956 at hammershome.com>
  <003701c13671$d2dfa100$65d4a8c0 at brandon>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <003701c13671$d2dfa100$65d4a8c0 at brandon>; from
  admin at larkhavengolf.com on Wed, Sep 05, 2001 at 09:18:19PM -0400
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 19:50:03 2001
X-Original-Date: Wed, 5 Sep 2001 21:36:33 -0400

I don't know about preload.
preexec works on with 2.2.1a.
Joel
On Wed, Sep 05, 2001 at 09:18:19PM -0400, Brandon Caudle wrote:
> does preload = the same thing as preexec because in 2.2.1a there is no
> preexec

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 2204E5064 for <samba at lists.samba.org>; Wed,  5
  Sep 2001 18:37:11 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id VAA05688 for samba at lists.samba.org; Wed, 5 Sep 2001
  21:39:53 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: Log (Logins)
Message-ID: <20010905213953.B5671 at hammershome.com>
References: <02d001c1334e$2698fa70$65d4a8c0 at brandon>
  <20010901223406.A7956 at hammershome.com>
  <003701c13671$d2dfa100$65d4a8c0 at brandon>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <003701c13671$d2dfa100$65d4a8c0 at brandon>; from
  admin at larkhavengolf.com on Wed, Sep 05, 2001 at 09:18:19PM -0400
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 20:16:01 2001
X-Original-Date: Wed, 5 Sep 2001 21:39:53 -0400

One caveat with preexec.
There is a 1024 byte limit on any samba parameter, I just found out. So, 
if you really have a big command to run or multiple commands to run, put them
into a script and reference the script with preexec.
Joel

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 10F4B59A4 for <samba at lists.samba.org>; Wed,  5
  Sep 2001 20:26:25 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id XAA06116 for samba at lists.samba.org; Wed, 5 Sep 2001
  23:29:06 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: Samba printing from Linux to winNT
Message-ID: <20010905232906.A6086 at hammershome.com>
References: <3B960BC3.2EB25AE9 at jet.uk>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <3B960BC3.2EB25AE9 at jet.uk>; from kpur at jet.uk on Wed, Sep
  05, 2001 at 12:25:55PM +0100
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 22:35:40 2001
X-Original-Date: Wed, 5 Sep 2001 23:29:06 -0400

As I understand this situation, linux has to supply the print drivers. The
NT box does no filtering for the linux client.
SO, this solution will be specific to your printer and the printer drivers
you have in linux.
This can get complicated.
Give some more details:
1. Printer: You may need to hack your print filter script (not hard) to get
just what you want and the printer manual might be very useful. On the
other hand, if you have a lexmark printer, lexmark may provide some 
nice software which may take care of you. Is it a postscript printer?
2. Driver you use.
3. Your print filter script (:if in /etc/printcap)
4. The printing system on linux (cups, lprng, whatever)
Joel




On Wed, Sep 05, 2001 at 12:25:55PM +0100, Krishan Purahoo wrote:
> Hi all,
>            I have set up SAMBA on my Linux box, to print to
> an NT print server, and it works fine. But, all print jobs
> gets printed on the default A4 paper size/tray.
> 
> My question is, how do I configure SAMBA (parameters
> to smbclient, or otherwise ) that will allow me to send print
> jobs to any of the available trays (A4, A3) and also in
> portrait/landscape mode, etc. Where/How do I configure
> these??
> 
> Any help will be greatly appreciated.
> 
> 
> TIA
> 
> krishan
> 
> krishan.purahoo at jet.uk
> 
> --
> EFDA/JET Facility
> Culham Science Centre
> Oxford
> -- 
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <techteachers92010 at yahoo.com>
Delivered-To: samba at samba.org
Received: from yahoo.com (unknown [208.133.198.130]) by lists.samba.org
  (Postfix) with SMTP id 08F245C35 for <samba at samba.org>; Wed,  5 Sep
  2001 21:56:30 -0700 (PDT)
From: techteachers92010 at yahoo.com
Reply-To: techteachers92010 at yahoo.com
To: samba at samba.org
Subject: Tools for Web Publishing 
Message-Id: <20010906045630.08F245C35 at lists.samba.org>
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 22:39:11 2001
X-Original-Date: Wed,  5 Sep 2001 21:56:30 -0700 (PDT)

Hey there,
I found a web page with some links off of it to companies and other web pages that talk about web page development.  I like the ones that let you choose the look and feel of the web pages, and not just the content.  Let me know what you think.

http://www.somers.k12.ny.us/intranet/Web_des/tools/extended_resources.html

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 49D1D58E5 for <samba at lists.samba.org>; Wed,  5
  Sep 2001 20:05:10 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id XAA06051 for samba at lists.samba.org; Wed, 5 Sep 2001
  23:04:43 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: a simple SAMBA problem
Message-ID: <20010905230443.A5947 at hammershome.com>
References: <20010905032846.26639.qmail at web11201.mail.yahoo.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <20010905032846.26639.qmail at web11201.mail.yahoo.com>; from
  fredstevens at yahoo.com on Tue, Sep 04, 2001 at 08:28:46PM -0700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Wed Sep  5 23:17:23 2001
X-Original-Date: Wed, 5 Sep 2001 23:04:43 -0400

My stress detectors are indicating dangerous levels.
But,
Have you tried:
1. Right clicking network neighborhood and finding your linux computer? This
sort of thing may well be a windows problem.
2. Walked through the DIAGNOSIS.txt file in the samba docs in your samba
sources?

About SWAT. Have you upgraded from a different version? It may be that you
are using a different version of swat that is looking for smb.conf in a
different directory. With the 2.2.1a, smb.conf is in /usr/local/samba/lib by
default. If Mandrake provided this version of samba, they may have placed it
in another location. I have fun by running strings against binaries, and 
seeing what files they are looking for.
Try:
strings `which swat` | grep smb.conf 
and see where your version of swat thinks that file is.
Also, by default, swat should be in /usr/local/samba/bin. Where is yours? 
When I upgraded from 2.0.6 to 2.2.1a, I had to edit inetd.conf to point to
the new location of swat, because, naturally, the location of swat changed
when I upgraded but inetd.conf didn't know that!

About reading the right smb.conf on starting samba. With:
strings `which smbd` | grep smb.conf 
I get
/usr/local/samba/lib/smb.conf
That, again is the default. You might check your startup scripts to see if
they are giving smbd options which change the location of the smb.conf file.
AND, make sure the correct version of smbd is being started.
AND, I don't find your questions at all embarrassing. Its my answers which
will likely embarrass me.
Joel





On Tue, Sep 04, 2001 at 08:28:46PM -0700, Fred wrote:
> I have a simple SAMBA problem that shouldn't take very long to solve, except
> that I have burned way too many hours on it and am frustrated enough that I do
> not mind embarrassing myself before the whole list membership.
> 
> I am running Samba 2.2.0 on Mandrake 8.0 with a Win98 box connected to it via
> eth0. The win98 IE gets the Apache home page, telnet to the Linux box works,
> and NetMonitor shows  connections from the Linux box to the C: and D: drives.
> The KDE file browser shows the win98 files and folders like they are supposed
> to be, so what's the problem? Network Neighborhood cannot see Linux. Obviously
> a Samba config prob, but I cannot figure it out and I am tired of hacking. Yes,
> I RTFM, such as they were.  
> 
> I am as frustrated with the shortcomings of Samba configuration documentation
> as I am with anything. Not the depth of detail, because that is wonderful. But
> is there not a simple overview of how to set up these two machines so that they
> will talk to each other? To make a point, I can boot this box to Win95 and the
> win98 and it are working as soon as it comes up. No muss, no fuss and none of
> this b.s. Where is that ease of setup in Linux/Samba? And as a side question,
> why doesn't SWAT update the /etc/smb.conf file when "Commit Changes" is
> clicked? It updates something, but not that file. And when >samba stop and
> >samba start are invoked, it is the /etc/smb.conf file that gets read, not
> whatever SWAT is working with. 
> 
> Thanks in advance for any insight that you can offer. 
> 
> Fred Stevens
>  
> 
> __________________________________________________
> Do You Yahoo!?
> Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
> http://im.yahoo.com
> -- 
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <kourosh at loop.com>
Delivered-To: samba at lists.samba.org
Received: from atlanticpearl.com (unknown [64.63.42.245]) by
  lists.samba.org (Postfix) with SMTP id 93E9B52B4 for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 23:04:51 -0700 (PDT)
Received: (qmail 12861 invoked by uid 517); 6 Sep 2001 06:11:54 -0000
Received: from kourosh at loop.com by hera.atlanticpearl.com with
  qmail-scanner-0.96 (uvscan: v4.1.40/v4157. . Clean. Processed in
  0.835642 secs); 06 Sep 2001 06:11:54 -0000
Received: from  (HELO ryoko.loop.com) () by hera.atlanticpearl.com with
  SMTP; 6 Sep 2001 06:11:53 -0000
Message-Id: <5.1.0.14.0.20010905230048.0382c890 at pop.loop.com>
X-Sender: kourosh at pop.loop.com
X-Mailer: QUALCOMM Windows Eudora Version 5.1
To: samba at lists.samba.org
From: Kourosh Ghassemieh <kourosh at loop.com>
Subject: Re: a simple SAMBA problem
In-Reply-To: <20010905032846.26639.qmail at web11201.mail.yahoo.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 01:39:03 2001
X-Original-Date: Wed, 05 Sep 2001 23:09:35 -0700

It sounds like you have two versions of samba installed.
The 2.2.x series installs it's config files in /etc/samba/
now.  If Network Neighborhood doesn't see the samba
machine then nmbd is likely not started on your server.
Have you checked the logs to see what they say?
How did you install samba?  I know that on RedHat
the samba package is split into three individual packages
and they need to be removed before 2.2.x is installed.
I'm not sure about Mandrake.  What does "rpm -qa | grep samba"
report?  Try removing all samba packages and installing
2.2.1.  It sounds like the install script is from an older
package and didn't get upgraded.

At 08:28 PM 9/4/2001 -0700, you wrote:
>I have a simple SAMBA problem that shouldn't take very long to solve, except
>that I have burned way too many hours on it and am frustrated enough that I do
>not mind embarrassing myself before the whole list membership.
>
>I am running Samba 2.2.0 on Mandrake 8.0 with a Win98 box connected to it via
>eth0. The win98 IE gets the Apache home page, telnet to the Linux box works,
>and NetMonitor shows  connections from the Linux box to the C: and D: drives.
>The KDE file browser shows the win98 files and folders like they are supposed
>to be, so what's the problem? Network Neighborhood cannot see Linux. Obviously
>a Samba config prob, but I cannot figure it out and I am tired of hacking. 
>Yes,
>I RTFM, such as they were.
>
>I am as frustrated with the shortcomings of Samba configuration documentation
>as I am with anything. Not the depth of detail, because that is wonderful. But
>is there not a simple overview of how to set up these two machines so that 
>they
>will talk to each other? To make a point, I can boot this box to Win95 and the
>win98 and it are working as soon as it comes up. No muss, no fuss and none of
>this b.s. Where is that ease of setup in Linux/Samba? And as a side question,
>why doesn't SWAT update the /etc/smb.conf file when "Commit Changes" is
>clicked? It updates something, but not that file. And when >samba stop and
> >samba start are invoked, it is the /etc/smb.conf file that gets read, not
>whatever SWAT is working with.
>
>Thanks in advance for any insight that you can offer.
>
>Fred Stevens
>
>
>__________________________________________________
>Do You Yahoo!?
>Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
>http://im.yahoo.com
>--
>To unsubscribe from this list go to the following URL and read the
>instructions:  http://lists.samba.org/mailman/listinfo/samba

--
------------------------------------------------------------------------
Kourosh Ghassemieh
MindWare Information Systems & Technologies
9255 Sunset Blvd, Penthouse
West Hollywood CA 90069
(310) 729-1784
kourosh at loop.com

++++Networking Solutions for Your Business++++

Return-Path: <rvt at dds.nl>
Delivered-To: samba at samba.org
Received: from et.schoenmakerstraat.org (qn-213-73-192-55.quicknet.nl
  [213.73.192.55]) by lists.samba.org (Postfix) with ESMTP id 4C44B5504
  for <samba at samba.org>; Wed,  5 Sep 2001 23:34:10 -0700 (PDT)
Received: from dds.nl (localhost [127.0.0.1]) by
  et.schoenmakerstraat.org (8.11.4/8.11.4/Debian) with ESMTP id
  f866b4212272; Thu, 6 Sep 2001 08:37:04 +0200
Message-ID: <3B971990.754E0907 at dds.nl>
From: Ries van twisk <rvt at dds.nl>
Reply-To: rvt at dds.nl
X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.4.9 i586)
X-Accept-Language: en
MIME-Version: 1.0
To: David.Collier-Brown at Sun.COM
Cc: Tony Nichols <tony at mail.applog.com>, Samba mailing list
  <samba at samba.org>, tech at chilisoft.com
Subject: Re: MS Access [ Was Disconnection Problem]
References: <3B961762.421C5AF2 at canada.sun.com>
Content-Type: text/plain; charset=iso-8859-2
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 01:46:07 2001
X-Original-Date: Thu, 06 Sep 2001 08:37:04 +0200

I think thee only real answer is, also shown in the message below.
Install a real rdbm and use Access only as a frontend. No more troubles
what so ever. PostgreSQL will do the trick.

Ries


David Collier-Brown wrote:
> 
> Tony Wrote:
> | I would be very interested also ....
> | I found several articles on sun's chilisoft asp support pages;
> | giving the impression that you can't open ms access database that
> | are stored on a non microsoft file system. Here is a link:
> [snip]
> | I would really like to know the "real" answer. I've used ms
> | access limitedly (only 2-4 users) without corruption, however
> | if I put 8-10 users on ..... Crash .....
> 
>         Access will work on local (including network) files
>         for a few users, but doesn't scale well. It should
>         be used as an "access method" to a real back-end database.
> 
>         If you do need to run it from a network filesystem
>         provided by Samba, you need to put the database files
>         in a share of their own and set oplocks = no for that
>         share: otherwise performance is so bad that the
>         clients occasionally time out and crash!
> 
> --dave
> --
> David Collier-Brown,           | Always do right. This will gratify
> Performance & Engineering Team | some people and astonish the rest.
> Americas Customer Engineering  |                      -- Mark Twain
> (905) 415-2849                 | davecb at canada.sun.com
> --
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <mbnospam at mbeddow.net>
Delivered-To: samba at lists.samba.org
Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com
  [62.253.162.41]) by lists.samba.org (Postfix) with ESMTP id 83E99554C
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 23:36:19 -0700 (PDT)
Received: from michaelnt2k ([62.252.196.43]) by mta01-svc.ntlworld.com
  (InterMail vM.4.01.03.00 201-229-121) with SMTP id
  <20010906063900.NUDT15984.mta01-svc.ntlworld.com at michaelnt2k>; Thu, 6
  Sep 2001 07:39:00 +0100
Message-ID: <03c901c1369f$549a41a0$0201010a at michaelnt2k>
From: "Michael Beddow" <mbnospam at mbeddow.net>
To: "Joel Hammer" <Joel at HammersHome.com>, <samba at lists.samba.org>
References: <20010905205740.A5497 at hammershome.com>
Subject: Re: Where are the client programs with 2.2.1a ?
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4807.1700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 01:48:21 2001
X-Original-Date: Thu, 6 Sep 2001 07:44:07 +0100

> I believe these are installed in /usr/local/samba/bin by default, in
which I
> find:
> smbpasswd  smbstatus  swat      testprns
> make_smbcodepage  nmbd             rpcclient  smbclient  smbd
> smbspool   smbtar     testparm
> Is this all there is?

Well, it's all *I've* got, and it's enough to keep most people busy for
weeks (especially rpcclient, which can do some really hairy things)

> 1. Why were smbmnt, smbmount, and smbumount not compiled and
installed?

If you're on Linux with a recent kernel, the whole samba mounting thing
is now done differently (and much better). Info is in the updated docs.
If you aren't on Linux, I don't know. BTW if on Linux you did
configure --with-smbmount, didn't you?

> 2. Where is smbclient ?

Er, you listed it as being right where you expected it to be...

Michael
---------------------------------------------------------
Michael Beddow   http://www.mbeddow.net/

Return-Path: <darren.r.gyde at mainroads.qld.gov.au>
Delivered-To: samba at lists.samba.org
Received: from inet02.citec.qld.gov.au (inet02.citec.qld.gov.au
  [203.5.10.130]) by lists.samba.org (Postfix) with ESMTP id E84C55B7F
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 21:27:54 -0700 (PDT)
Received: by inet02.citec.qld.gov.au; id OAA06133; Thu, 6 Sep 2001
  14:30:33 +1000 (EST)
From: <darren.r.gyde at mainroads.qld.gov.au>
Received: from mimein.qdot.qld.gov.au(notesgw.qdot.qld.gov.au
  165.240.0.68) by inet02.citec.qld.gov.au via smap (V2.0) id xma006026;
  Thu, 6 Sep 01 14:30:18 +1000
Received: from shb1ln11.transport.qld.gov.au (unverified) by
  mimein.qdot.qld.gov.au (Content Technologies SMTPRS 4.2.1) with SMTP
  id <T55d455ceb6a5f000440cf at mimein.qdot.qld.gov.au> for
  <samba at lists.samba.org>; Thu, 6 Sep 2001 14:30:13 +1000
Received: by shb1ln11.transport.qld.gov.au(Lotus SMTP MTA v4.6.7  (934.1
  12-30-1999))  id 4A256ABF.0018BB73 ; Thu, 6 Sep 2001 14:30:08 +1000
X-Lotus-FromDomain: QDOT
To: samba at lists.samba.org
Cc: robert.j.howlett at mainroads.qld.gov.au
Message-ID: <4A256ABF.0018B953.00 at shb1ln11.transport.qld.gov.au>
Subject: pam_smbpass with Solaris 2.6 and SAMBA 2.2.1a
Mime-Version: 1.0
Content-type: text/plain; charset="us-ascii"
Content-Disposition: inline
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 02:08:15 2001
X-Original-Date: Thu, 6 Sep 2001 14:26:44 +1000

Hi all,

 is anyone using pam_smbpass on Solaris to sync unix passwords with Samba
passwords ?

 I got the pam_smbpass library compiled, but I'm a bit unsure how to configure
the pam.conf file on Solaris 7 - The examples for
pam_smbpass in the Samba distribution are for Linux and it looks a bit
different.

I had a play with the pam.conf file and got things half working, these are the
entries I added:

telnet password required /usr/local/samba/lib/pam_smbpass.so nonull
try_first_pass
passwd password required /usr/local/samba/lib/pam_smbpass.so nonull
try_first_pass

With the following results:

passwd - running passwd <userid> as root works fine, it changes the users unix
password and the samba password.  If you run it as a
normal user though, it prompts you for the samba password and the unix password
before it asks for the new password.  I don't want
users getting the prompt for the samba password,a nd I thought setting
try_first_pass would eliminate the need for that, but no dice.

telnet/login - with password aging on, if the password expires, when the user
logs in and changes their unix password, it changes
the samba password as well - success!  BUT, once they have changed their
password the system then logs them in as root! Not good!

Anyone got any ideas about these two problems ?

Cheers
Darren




************************************************************
Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or National Transport Secretariat, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.
************************************************************

Return-Path: <kourosh at loop.com>
Delivered-To: samba at lists.samba.org
Received: from atlanticpearl.com (unknown [64.63.42.245]) by
  lists.samba.org (Postfix) with SMTP id CF529565D for
  <samba at lists.samba.org>; Wed,  5 Sep 2001 22:29:37 -0700 (PDT)
Received: (qmail 12782 invoked by uid 517); 6 Sep 2001 05:36:35 -0000
Received: from kourosh at loop.com by hera.atlanticpearl.com with
  qmail-scanner-0.96 (uvscan: v4.1.40/v4157. . Clean. Processed in
  0.560254 secs); 06 Sep 2001 05:36:35 -0000
Received: from  (HELO ryoko.loop.com) () by hera.atlanticpearl.com with
  SMTP; 6 Sep 2001 05:36:34 -0000
Message-Id: <5.1.0.14.0.20010905222827.03925468 at pop.loop.com>
X-Sender: kourosh at pop.loop.com
X-Mailer: QUALCOMM Windows Eudora Version 5.1
To: samba at lists.samba.org
From: Kourosh Ghassemieh <kourosh at loop.com>
Subject: Re: samba with ipchains
In-Reply-To: <D7C702733EC9D3119BE30050DA6B3ED4678D8D at NJSA_MAIL>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 02:15:49 2001
X-Original-Date: Wed, 05 Sep 2001 22:34:17 -0700

Unplug the computer from the Internet and turn off IPchains.
Does samba work?  Turn IPchains back on.  Does it still work?
If it works with IPchains off and stops when IPchains is on
then it's the rules.  The packets traverse the chains sequentially.
If you have a rule that blocks that IP address or port higher
up in the chain then it will be blocked regardless of what
rules are below it.  Look through the rule set again looking
for a rule that blocks those ports or the IP of the machine
you are trying to connect from.  Are your rules for tcp or
udp?  IIRC netbios lookups work over udp so make sure
your rules allow both tcp and udp.

At 04:40 PM 9/5/2001 -0400, you wrote:
>I have samba 2.0.10 on RH 7.1
>and ipchains 1.3.10
>when I setup my ipchains to filter normal firewall
>protection I can't access my smb server even though I
>have rules set for ports 137 - 139.
>Anybody else run into this problem. I've tried every thing
>I can think of also I can't do nmblookup from the firewall
>to my inside net. I get ERRNO=Operation not permitted
>
>any ideas?
>
>jason
>--
>To unsubscribe from this list go to the following URL and read the
>instructions:  http://lists.samba.org/mailman/listinfo/samba

--
------------------------------------------------------------------------
Kourosh Ghassemieh
MindWare Information Systems & Technologies
9255 Sunset Blvd, Penthouse
West Hollywood CA 90069
(310) 729-1784
kourosh at loop.com

++++Networking Solutions for Your Business++++

Return-Path: <razvan at net1.ro>
Delivered-To: samba at lists.samba.org
Received: from mail.xnet.ro (mail.remote1.xnet.ro [217.10.192.17]) by
  lists.samba.org (Postfix) with ESMTP id D95CB4D74 for
  <samba at lists.samba.org>; Thu,  6 Sep 2001 01:38:41 -0700 (PDT)
Received: from RAZVAN ([213.233.70.223]) by mail.xnet.ro  with Microsoft
  SMTPSVC(5.5.1877.387.38); Thu, 6 Sep 2001 10:29:30 +0300
Message-ID: <00a701bfe19b$6fbed0e0$126ea8c0 at RAZVAN>
From: "Razvan Popescu" <razvan at net1.ro>
To: <samba at lists.samba.org>
References: <3B950F34.EBF3ACC1 at slu.edu>
Subject: I cannot change the password using CTRL+ALT+DEL
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 02:21:12 2001
X-Original-Date: Thu, 29 Jun 2000 10:27:04 +0300

I set up samba as a PDC. Everything works fine except that I cannot change
my password using CTRL+ALT+DEL from a WIN 2000 workstation. The samba
version is 2.2.1a. What is wrong . Is this a known problem? Please help

Return-Path: <Pieter.Vankeerberghen at afigp.fgov.be>
Delivered-To: samba at lists.samba.org
Received: from phimail.afigp.fgov.be (phimail.afigp.fgov.be
  [193.121.175.245]) by lists.samba.org (Postfix) with SMTP id 9DA924B55
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 01:42:57 -0700 (PDT)
Received: FROM phimail.afigp.fgov.be BY phimail.afigp.fgov.be ; Thu Sep
  06 09:43:13 2001 +0200
Received: by PHIMAIL with Internet Mail Service (5.5.2653.19) id
  <SKKGQ05R>; Thu, 6 Sep 2001 09:43:13 +0200
Message-ID: <25880C7A96C1D211B93800A0C9EB09D2384EB7 at PHIMAIL>
From: "Vankeerberghen, Pieter" <Pieter.Vankeerberghen at afigp.fgov.be>
To: samba at lists.samba.org
Subject: Winbind
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain; charset="us-ascii"
X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/plain
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 02:26:21 2001
X-Original-Date: Thu, 6 Sep 2001 09:43:12 +0200

Friends,

Can someone point me to some documentation to configure Winbind ?
Thank you in advance,
Pieter

Return-Path: <goetz.reinicke at filmakademie.de>
Delivered-To: samba at lists.samba.org
Received: from mail.filmakademie.de (mail.filmakademie.de
  [193.196.129.129]) by lists.samba.org (Postfix) with ESMTP id
  AF2414ED8 for <samba at lists.samba.org>; Thu,  6 Sep 2001 01:47:07 -0700
  (PDT)
Received: from filmakademie.de (g3goetz.filmakademie.de [172.17.20.7])
  by mail.filmakademie.de (8.11.2/8.11.2) with ESMTP id f866hfk06361 for
  <samba at lists.samba.org>; Thu, 6 Sep 2001 08:43:41 +0200
Message-ID: <3B971B79.1060100 at filmakademie.de>
From: Goetz Reinicke <goetz.reinicke at filmakademie.de>
Organization: Filmakademie
User-Agent: Mozilla/5.0 (Macintosh; U; PPC; de-DE; rv:0.9.2)
  Gecko/20010726 Netscape6/6.1
X-Accept-Language: de-DE
MIME-Version: 1.0
To: samba at lists.samba.org
Subject: Questions concerning PDC, authentification with multiple
  IT-networks
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 02:27:06 2001
X-Original-Date: Thu, 06 Sep 2001 08:45:13 +0200

Hi,

may be a simple question, may be not :-)

I have a Linux-Samba-Server (kernel 2.2.19, Samba 2.0.7) in network 
172.17.20.0/24, and two NT4sp6a-clients (only IP protokoll installed); 
one in the same network as the server, the other client in network 
172.27.10.0/24. The networks are connected by a 3Com Router (because I 
dont have that mutch knowledge of this, I haven't looked at it yet.)

The server is configured to act as a PDC and I added the two clients. 
Now I only can login to my domain with the client in the same IP-network 
like the server; from the other IP-network I can't; but I can access 
shares on the server if I use the servers IP.

So what can be the Problem? and of course the solution, that fixes the 
problem :-)

If you need more information, please ask fo it!


Thanks and so long...
...Gvtz

-- 
- Gvtz Reinicke -------------------- mailto: greinick at filmakademie.de -
  IT Koordinator                                   Tel: 07141/969-420 
  IT-OfficeNet Filmakademie Baden-W|rttemberg    Fax: 07141/969-55420
- Mathildenstr. 20, 71638 Ludwigsburg ----------- www.filmakademie.de -

Return-Path: <andrew at andrew.net.au>
Delivered-To: samba at lists.samba.org
Received: from daedalus.andrew.net.au (daedalus.andrew.net.au
  [210.215.5.53]) by lists.samba.org (Postfix) with ESMTP id 854C15B50
  for <samba at lists.samba.org>; Wed,  5 Sep 2001 21:20:19 -0700 (PDT)
Received: from daedalus.andrew.net.au (localhost [127.0.0.1]) by
  localhost (8.12.0.Beta7/8.12.0.Beta7/Debian 8.12.0.Beta7-1) with ESMTP
  id f864Mxfs025306 for <samba at lists.samba.org>; Thu, 6 Sep 2001
  14:22:59 +1000
Received: (from www-data at localhost) by daedalus.andrew.net.au
  (8.12.0.Beta7/8.12.0.Beta7/Debian 8.12.0.Beta7-1) id f864MxTG025305
  for samba at lists.samba.org; Thu, 6 Sep 2001 14:22:59 +1000
Message-Id: <200109060422.f864MxTG025305 at daedalus.andrew.net.au>
X-Authentication-Warning: daedalus.andrew.net.au: www-data set sender to
  andrew at andrew.net.au using -f
X-Mailer: JAWmail 0.9.17
X-Originating-IP: 210.215.7.252
From: Andrew Pollock <andrew at andrew.net.au>
To: <samba at lists.samba.org>
Subject: Samba problem with user level share permissions under Windoze
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 02:47:01 2001
X-Original-Date: Thu, 6 Sep 2001 14:22:59 +1000

Hi, 

I'm trying to configure a Windoze 98 PC on my home network to use user level 
share permissions instead of share level permissions, and when I go to add
users

to a particular share, Windows barfs: 

You cannot view the list of users at this time. Please try again. 

and I get: 

[2001/09/03 14:21:29, 1] smbd/ipc.c:api_fd_reply(3314) 
  api_fd_reply: INVALID PIPE HANDLE: 0 
[2001/09/03 14:21:29, 1] smbd/ipc.c:api_fd_reply(3314) 
  api_fd_reply: INVALID PIPE HANDLE: 0 
[2001/09/03 14:24:15, 1] smbd/service.c:close_cnum(583) 

in /var/log/smb 

I haven't been able to find any mention of this in the Samba FAQ, and nothing 
overly useful with Google. Microsoft Knowledge Base article Q177607 refers to 
something related to Outlook Express, but I'm not sure if it affects me or 
not. 

Has anyone else been there, done that? 

I'm running Samba 2.0.8

Andrew

Return-Path: <sabrina.lautier at imaginebroadband.com>
Delivered-To: samba at lists.samba.org
Received: from uadvg134.cms.usa.net (uadvg134.cms.usa.net
  [165.212.11.134]) by lists.samba.org (Postfix) with SMTP id 695324BED
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 02:20:08 -0700 (PDT)
Received: (qmail 8474 invoked from network); 6 Sep 2001 07:37:35 -0000
Received: from uadvg131.cms.usa.net (165.212.11.131) by
  corprelay.cms.usa.net with SMTP; 6 Sep 2001 07:37:35 -0000
Received: (qmail 22256 invoked by uid 0); 6 Sep 2001 07:37:38 -0000
Received: USA.NET MXFirewall, messaging filters applied; Thu, 06 Sep
  2001 07:37:38 GMT
Received: from wsslautier [195.101.210.187] by cm27
  (ASMTP/sabrina.lautier at imaginebroadband.com) via mtad
  (53CM.0801.1.07A)  with ESMTP id 971FiFHlh0409M27; Thu, 06 Sep 2001
  07:37:33 GMT
From: "Sabrina LAUTIER" <sabrina.lautier at imaginebroadband.com>
To: "Samba mailing list" <samba at lists.samba.org>
Subject: Samba compilation on solaris 7 with option '--with-smbwrapper'
Message-ID: <FHEAIBKIDCIEBKNCPHFMIEGECCAA.sabrina.lautier at imaginebroadba
  nd.com>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0)
X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/plain
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 03:02:20 2001
X-Original-Date: Thu, 6 Sep 2001 09:37:32 +0200

Hi !

I'm have some troubles compiling samba-2.2.1a on a Solaris 7 box (Netra T1
105).

I ran
./configure --with-automount --with-nis --with-syslog --with-smbwrapper

After the configure finished I ran make.

it goes almost all the way to the end...and then I get the following error:
****************************************************
...
Using LIBS = -lsec -lgen -lsocket -lnsl  -ldl
Compiling smbwrapper/wrapped.c with -fpic
smbwrapper/wrapped.c:466: conflicting types for `utimes'
/usr/include/sys/time.h:327: previous declaration of `utimes'
*** Error code 1
make: Fatal error: Command failed for target `smbwrapper/wrapped.po'
...
****************************************************

I don't understand why utimes caused it to fail.

in the configure it read as this:

checking for utime.h... yes

and then further:

checking for utime... yes
checking for utimes... yes

there is a warning during make before the compile fails:

Compiling lib/system.c
lib/system.c: In function `sys_readdir':
lib/system.c:350: warning: return from incompatible pointer type

Any suggestions?

It looked as though it was going to go but the smbwrapper is failing make.
Samba runs fine when compiled without option --with-smbwrapper.

System info: Solaris 7, Sun Netra T1 105

Any help would be greatly appreciated.

Sabrina

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 9502149B7 for <samba at lists.samba.org>; Thu,  6
  Sep 2001 03:55:18 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id GAA07784 for samba at lists.samba.org; Thu, 6 Sep 2001
  06:59:28 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: I cannot change the password using CTRL+ALT+DEL
Message-ID: <20010906065928.A7779 at hammershome.com>
References: <3B950F34.EBF3ACC1 at slu.edu>
  <00a701bfe19b$6fbed0e0$126ea8c0 at RAZVAN>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <00a701bfe19b$6fbed0e0$126ea8c0 at RAZVAN>; from
  razvan at net1.ro on Thu, Jun 29, 2000 at 10:27:04AM +0300
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 03:59:21 2001
X-Original-Date: Thu, 6 Sep 2001 06:59:28 -0400

The date here is Sept 6. Please fix your date.
Joel
On Thu, Jun 29, 2000 at 10:27:04AM +0300, Razvan Popescu wrote:
> I set up samba as a PDC. Everything works fine except that I cannot change
> my password using CTRL+ALT+DEL from a WIN 2000 workstation. The samba
> version is 2.2.1a. What is wrong . Is this a known problem? Please help
> -- 
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 21C39410A for <samba at lists.samba.org>; Thu,  6
  Sep 2001 03:59:03 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id HAA07803 for samba at lists.samba.org; Thu, 6 Sep 2001
  07:03:13 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: error
Message-ID: <20010906070313.B7779 at hammershome.com>
References: <5.1.0.14.0.20010904150011.00a97218 at pop3.spa.norton.antiviru
  s>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <5.1.0.14.0.20010904150011.00a97218 at pop3.spa.norton.antivir
  u s>; from walrawi at htcengineers.com on Tue, Sep 04, 2001 at 03:02:20PM
  -0700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 04:00:04 2001
X-Original-Date: Thu, 6 Sep 2001 07:03:13 -0400

Does the path /tmp/root-tmp exist?
What about permissions? I just don't know  who is trying to change to that
directory, smbd as root, your guest user, or the logged in user.
Joel

On Tue, Sep 04, 2001 at 03:02:20PM -0700, Waleed Alrawi wrote:
> the following is an error i get on /var/log/samba any ideas what would 
> cause it?. I am running RH7.1 with Samba 2.2.1a.
> 
> Thanks in advance
> 
> 
> [2001/09/04 14:46:12, 0] smbd/service.c:make_connection(560)
>    htc88 (192.168.1.88) Can't change directory to 
> /tmp/root-tmp.02261201722b0731$
> [2001/09/04 14:46:12, 0] smbd/service.c:make_connection(560)
>    htc88 (192.168.1.88) Can't change directory to 
> /tmp/root-tmp.02261201722b0731$
> [2001/09/04 14:46:12, 0] smbd/service.c:make_connection(560)
>    htc88 (192.168.1.88) Can't change directory to 
> /tmp/root-tmp.02261201722b0731$
> [2001/09/04 14:46:12, 0] smbd/service.c:make_connection(560)
>    htc88 (192.168.1.88) Can't change directory to 
> /tmp/root-tmp.02261201722b0731$
> [2001/09/04 14:46:12, 0] smbd/service.c:make_connection(560)
>    htc88 (192.168.1.88) Can't change directory to 
> /tmp/root-tmp.02261201722b0731$
> 
> 
> 
> 
> _____________________________
> 
> Waleed Alrawi
> HTC Engineers
> 1529 Cypress Street, Suite 103
> Walnut Creek, CA 94596
> E-mail: waleed at htcengineers.com
> Phone: 925-937-4147
> Fax: 925-937-6931
> -- 
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 2A5C6415C for <samba at lists.samba.org>; Thu,  6
  Sep 2001 04:03:52 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id HAA07810 for samba at lists.samba.org; Thu, 6 Sep 2001
  07:08:02 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: a simple SAMBA problem
Message-ID: <20010906070802.A7806 at hammershome.com>
References: <20010905032846.26639.qmail at web11201.mail.yahoo.com>
  <5.1.0.14.0.20010905230048.0382c890 at pop.loop.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <5.1.0.14.0.20010905230048.0382c890 at pop.loop.com>; from
  kourosh at loop.com on Wed, Sep 05, 2001 at 11:09:35PM -0700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 04:15:08 2001
X-Original-Date: Thu, 6 Sep 2001 07:08:02 -0400

On Wed, Sep 05, 2001 at 11:09:35PM -0700, Kourosh Ghassemieh wrote:
> It sounds like you have two versions of samba installed.
> The 2.2.x series installs it's config files in /etc/samba/
> now.  If Network Neighborhood doesn't see the samba
> machine then nmbd is likely not started on your server.

I have 2.2.1a, downloaded from samba.org, and it installs in:
/usr/local/samba
Everything is there, libraries, binaries, logs, and so on.
Joel

Return-Path: <jlh at cc846558-a.twsn1.md.home.com>
Delivered-To: samba at lists.samba.org
Received: from cc846558-a.twsn1.md.home.com
  (cc846558-a.twsn1.md.home.com [24.182.146.18]) by lists.samba.org
  (Postfix) with ESMTP id 02C8244C7 for <samba at lists.samba.org>; Thu,  6
  Sep 2001 04:07:40 -0700 (PDT)
Received: (from jlh at localhost) by cc846558-a.twsn1.md.home.com
  (8.9.1a/8.9.1) id HAA07827 for samba at lists.samba.org; Thu, 6 Sep 2001
  07:11:50 -0400
From: Joel Hammer <Joel at HammersHome.com>
To: samba at lists.samba.org
Subject: Re: Where are the client programs with 2.2.1a ?
Message-ID: <20010906071150.B7806 at hammershome.com>
References: <20010905205740.A5497 at hammershome.com>
  <03c901c1369f$549a41a0$0201010a at michaelnt2k>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <03c901c1369f$549a41a0$0201010a at michaelnt2k>; from
  mbnospam at mbeddow.net on Thu, Sep 06, 2001 at 07:44:07AM +0100
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 04:16:09 2001
X-Original-Date: Thu, 6 Sep 2001 07:11:50 -0400

Thanks for the help.
I did not customize my configuration at all before I ran configure. I
could't find any install instructions so I just went with all the defaults.
So, that may explain it.
When I referred to smbclient not being there, I meant in the source
directories.
I am using linux.
Joel

On Thu, Sep 06, 2001 at 07:44:07AM +0100, Michael Beddow wrote:
> 
> > I believe these are installed in /usr/local/samba/bin by default, in
> which I
> > find:
> > smbpasswd  smbstatus  swat      testprns
> > make_smbcodepage  nmbd             rpcclient  smbclient  smbd
> > smbspool   smbtar     testparm
> > Is this all there is?
> 
> Well, it's all *I've* got, and it's enough to keep most people busy for
> weeks (especially rpcclient, which can do some really hairy things)
> 
> > 1. Why were smbmnt, smbmount, and smbumount not compiled and
> installed?
> 
> If you're on Linux with a recent kernel, the whole samba mounting thing
> is now done differently (and much better). Info is in the updated docs.
> If you aren't on Linux, I don't know. BTW if on Linux you did
> configure --with-smbmount, didn't you?
> 
> > 2. Where is smbclient ?
> 
> Er, you listed it as being right where you expected it to be...
> 
> Michael
> ---------------------------------------------------------
> Michael Beddow   http://www.mbeddow.net/
> 

Return-Path: <andrew at andrew.net.au>
Delivered-To: samba at lists.samba.org
Received: from daedalus.andrew.net.au (daedalus.andrew.net.au
  [210.215.5.53]) by lists.samba.org (Postfix) with ESMTP id B86D8471A
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 04:25:19 -0700 (PDT)
Received: from daedalus.andrew.net.au (localhost [127.0.0.1]) by
  localhost (8.12.0.Beta7/8.12.0.Beta7/Debian 8.12.0.Beta7-1) with ESMTP
  id f86BTSfs026730 for <samba at lists.samba.org>; Thu, 6 Sep 2001
  21:29:28 +1000
Received: (from www-data at localhost) by daedalus.andrew.net.au
  (8.12.0.Beta7/8.12.0.Beta7/Debian 8.12.0.Beta7-1) id f86BTSrx026729
  for samba at lists.samba.org; Thu, 6 Sep 2001 21:29:28 +1000
Message-Id: <200109061129.f86BTSrx026729 at daedalus.andrew.net.au>
X-Authentication-Warning: daedalus.andrew.net.au: www-data set sender to
  andrew at andrew.net.au using -f
In-Reply-To: <200109060422.f864MxTG025305 at daedalus.andrew.net.au>
References: <200109060422.f864MxTG025305 at daedalus.andrew.net.au>
X-Mailer: JAWmail 0.9.17
X-Originating-IP: 144.137.82.86
From: Andrew Pollock <andrew at andrew.net.au>
To: <samba at lists.samba.org>
Subject: Re: Samba problem with user level share permissions under
  Windoze
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 04:30:29 2001
X-Original-Date: Thu, 6 Sep 2001 21:29:28 +1000

I've managed to solve this problem by upgrading to Samba 2.2.1a

regards

Andrew

On 06.09.2001 at 20:35:20, Andrew Pollock <andrew at andrew.net.au> wrote:

> Hi, 
> 
> I'm trying to configure a Windoze 98 PC on my home network to use user level

> share permissions instead of share level permissions, and when I go to add
> users
> 
> to a particular share, Windows barfs: 
> 
> You cannot view the list of users at this time. Please try again. 
> 
> and I get: 
> 
> [2001/09/03 14:21:29, 1] smbd/ipc.c:api_fd_reply(3314) 
>   api_fd_reply: INVALID PIPE HANDLE: 0 
> [2001/09/03 14:21:29, 1] smbd/ipc.c:api_fd_reply(3314) 
>   api_fd_reply: INVALID PIPE HANDLE: 0 
> [2001/09/03 14:24:15, 1] smbd/service.c:close_cnum(583) 
> 
> in /var/log/smb 
> 
> I haven't been able to find any mention of this in the Samba FAQ, and nothing

> overly useful with Google. Microsoft Knowledge Base article Q177607 refers to

> something related to Outlook Express, but I'm not sure if it affects me or 
> not. 
> 
> Has anyone else been there, done that? 
> 
> I'm running Samba 2.0.8
> 
> Andrew
> -- 
> To unsubscribe from this list go to the following URL and read the
> instructions:  http://lists.samba.org/mailman/listinfo/samba
> 

Return-Path: <Mr.Chief at spselh.sk>
Delivered-To: samba at lists.samba.org
Received: from eniac.spselh.sk (eniac.spselh.sk [195.146.155.240]) by
  lists.samba.org (Postfix) with ESMTP id 26D78415C for
  <samba at lists.samba.org>; Thu,  6 Sep 2001 04:57:52 -0700 (PDT)
Received: from sapo.spselh.sk (root at sapo.spselh.sk [10.1.200.34]) by
  eniac.spselh.sk (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id OAA20061
  for <samba at lists.samba.org>; Thu, 6 Sep 2001 14:02:01 +0200
Received: (from chief at localhost) by sapo.spselh.sk (8.9.3/8.9.3/Debian
  8.9.3-21) id OAA08074 for samba at lists.samba.org; Thu, 6 Sep 2001
  14:00:59 +0200
From: Mr CHIEF <Mr.Chief at spselh.sk>
To: samba at lists.samba.org
Subject: Problem with samba 2.2.0-alpha1
Message-ID: <20010906140059.A8038 at sapo.spselh.sk>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 04:58:03 2001
X-Original-Date: Thu, 6 Sep 2001 14:00:59 +0200

Hi, 
i have a problem with samba 2.2.0-alpha1. My problem is so :
When a user will change password with smbpasswd print the system this
message :
Failed to open /usr/local/samba/lib/private/secrets.tdb
Old SMB password:
New SMB password:
Retype new SMB password:


Please help me


					Thanks

Return-Path: <mbnospam at mbeddow.net>
Delivered-To: samba at lists.samba.org
Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com
  [62.253.162.42]) by lists.samba.org (Postfix) with ESMTP id AE92E44B9
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 05:26:11 -0700 (PDT)
Received: from michaelnt2k ([62.252.196.43]) by mta05-svc.ntlworld.com
  (InterMail vM.4.01.03.00 201-229-121) with SMTP id
  <20010906072428.OQJP20588.mta05-svc.ntlworld.com at michaelnt2k>; Thu, 6
  Sep 2001 08:24:28 +0100
Message-ID: <041b01c136a5$aea18810$0201010a at michaelnt2k>
From: "Michael Beddow" <mbnospam at mbeddow.net>
To: "Fred" <fredstevens at yahoo.com>, <samba at lists.samba.org>
References: <20010905032846.26639.qmail at web11201.mail.yahoo.com>
Subject: Re: a simple SAMBA problem
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4807.1700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 05:28:03 2001
X-Original-Date: Thu, 6 Sep 2001 08:29:35 +0100

On Wednesday, September 05, 2001 4:28 AM
Fred wrote:

[...]
> Network Neighborhood cannot see Linux. Obviously
> a Samba config prob, but I cannot figure it out and I am tired of
hacking.

Not so "obvious", I'm afraid. SMB browsing alsways has had huge
problems, and the Samba team aren't in any way responsible for them.
Many users live with shares that appear and disappear in Network
Neighbourhoods apparently at random. Remember that browsability of
shares is completely separate from the ability to connect to and use
them.

> Yes,  I RTFM, such as they were.

Did that include the html version of the fine O'Reilly book, which is in
the source tarball (though maybe not in all binary packages?)? There's a
lot of good information on the browsing issue there, all clearly laid
out, along with an excellent diagnostics section. But even when you have
it, it may not help with this particular question. Incidentally, this
problem does occur in pure MS networks as well, even simple unrouted
single workgroup/domain ones. At the moment my wife is logged into her
WIN2k machine and I am on mine, just a switch and 10m of cable away on a
single-segment ethernet. I can't see her machine in my Network
Neighbourhood, though she can see mine. But I am at thus very moment
playing music from her shared CDROM drive, even though it's not
browsable on Thursday mornings in Leeds UK..

Your SWAT problems sound as though you have installed from a binary
distribution that doesn't use the locations compiled into SWAT. And
unless it's specially and correctly tailored for a given distribution,
SWAT doesn't (and can't) know about how your particilar init scripts are
organised. If you can't get SWAT configured to your satisfaction, you
might want to consider the Samba admin module in Webmin, which is very
savvy about the different layouts of current distros, including their
init scripts. Moreover, Webmin doesn't strip out the comments from the
smb.conf file, a practice I find very irritating.

Michael
---------------------------------------------------------
Michael Beddow   http://www.mbeddow.net/

Return-Path: <gcarter at valinux.com>
Delivered-To: samba at samba.org
Received: from pogo.plainjoe.org (24-216-84-59.hsacorp.net
  [24.216.84.59]) by lists.samba.org (Postfix) with ESMTP id 8091449BB
  for <samba at samba.org>; Thu,  6 Sep 2001 05:46:30 -0700 (PDT)
Received: from localhost ([127.0.0.1]) by pogo.plainjoe.org with esmtp
  (Exim 3.32 #2) id 15eyee-0005b9-00; Thu, 06 Sep 2001 07:53:12 -0500
From: Gerald Carter <gcarter at valinux.com>
X-X-Sender: <gcarter at pogo.plainjoe.org>
To: Amin Ferdous <ferdous at mccb.org>
Cc: Jason Walls <jason at ogham.com.au>, <samba at samba.org>
Subject: Re: Bug?
In-Reply-To: <3.0.32.20010904095715.00878730 at mccb.org>
Message-ID: <Pine.LNX.4.33.0109060752490.21505-100000 at pogo.plainjoe.org>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 06:03:11 2001
X-Original-Date: Thu, 6 Sep 2001 07:53:12 -0500 (CDT)

On Tue, 4 Sep 2001, Amin Ferdous wrote:

> hello there
>
> I am using samba 2.0.5. Some of my windows MSWord and Excell file get
> corrupted. But it is ok when I put those files on local windows
> machine. Is this for samba? Please help me.

Please upgrade to 2.2.1a and see if you can still reproduce the
problem.






cheers, jerry
 ---------------------------------------------------------------------
 www.samba.org              SAMBA Team              jerry_at_samba.org
 www.plainjoe.org                                jerry_at_plainjoe.org
 --"I never saved anything for the swim back." Ethan Hawk in Gattaca--

Return-Path: <gcarter at valinux.com>
Delivered-To: samba at lists.samba.org
Received: from pogo.plainjoe.org (24-216-84-59.hsacorp.net
  [24.216.84.59]) by lists.samba.org (Postfix) with ESMTP id 9E0864ADA
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 05:52:10 -0700 (PDT)
Received: from localhost ([127.0.0.1]) by pogo.plainjoe.org with esmtp
  (Exim 3.32 #2) id 15eyjd-0005bB-00; Thu, 06 Sep 2001 07:58:21 -0500
From: Gerald Carter <gcarter at valinux.com>
X-X-Sender: <gcarter at pogo.plainjoe.org>
To: Mr CHIEF <Mr.Chief at spselh.sk>
Cc: <samba at lists.samba.org>
Subject: Re: Problem with samba 2.2.0-alpha1
In-Reply-To: <20010906140059.A8038 at sapo.spselh.sk>
Message-ID: <Pine.LNX.4.33.0109060757540.21505-100000 at pogo.plainjoe.org>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 06:05:07 2001
X-Original-Date: Thu, 6 Sep 2001 07:58:21 -0500 (CDT)

On Thu, 6 Sep 2001, Mr CHIEF wrote:

> Hi,
> i have a problem with samba 2.2.0-alpha1. My problem is so :
> When a user will change password with smbpasswd print the system this
> message :
> Failed to open /usr/local/samba/lib/private/secrets.tdb
> Old SMB password:
> New SMB password:
> Retype new SMB password:

Best to upgrade to 2.2.1a.





cheers, jerry
 ---------------------------------------------------------------------
 www.samba.org              SAMBA Team              jerry_at_samba.org
 www.plainjoe.org                                jerry_at_plainjoe.org
 --"I never saved anything for the swim back." Ethan Hawk in Gattaca--

Return-Path: <fernando at univel.br>
Delivered-To: samba at lists.samba.org
Received: from ns.univel.br (unknown [200.250.120.130]) by
  lists.samba.org (Postfix) with ESMTP id A181E470E for
  <samba at lists.samba.org>; Thu,  6 Sep 2001 06:09:27 -0700 (PDT)
Received: from wsdes424 (ws-1-15 [192.168.1.15]) by ns.univel.br
  (8.9.3+3.2W/8.9.3/Debian 8.9.3-21) with SMTP id NAA21329 for
  <samba at lists.samba.org>; Thu, 6 Sep 2001 13:08:20 +0300
X-Authentication-Warning: ns.univel.br: Host ws-1-15 [192.168.1.15]
  claimed to be wsdes424
Message-ID: <001a01c136d5$ad7bf300$0f01a8c0 at univel.br>
Reply-To: "Fernando Schutz" <fernando at univel.br>
From: "Fernando Schutz" <fernando at univel.br>
To: <samba at lists.samba.org>
Subject: can't log
Organization: UNIVEL - Uniao Educacional de Cascavel
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Mailer: Microsoft Outlook Express 5.00.2615.200
X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/plain
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 06:14:17 2001
X-Original-Date: Thu, 6 Sep 2001 10:13:10 -0300

Hi!
When somebody try to log on the system, only few users can log....
Others, simply receive a negative message from NT or 98 (the system could not
login)

Why can I do?
My configurations seems to be OK!!!!!

[]'s - schutz.
77777777777777777777777777777777777777777777777777777
       ___________________ .         Obrigado!
      /                  /\     ---------------------
     /  //~~~  //~~~    / /\      7Fernando Sch|tz
    /  //~~   //___    / /\     ---------------------
   /  //         //   / /\      Analista de Sistemas
  /  77      ~~~~~   / /\       ---------------------
 /__________________/ /\        Work: +55(45)226.0026
 \__________________\/\               +55(45)222.4411
  \\\\\\\\\\\\\\\\\\\\           ICQ: 7371212

Return-Path: <jwilson at western-reflections.com>
Delivered-To: samba at lists.samba.org
Received: from gatekeeper.western-reflections.com (unknown
  [63.115.49.82]) by lists.samba.org (Postfix) with ESMTP id 814034252
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 06:35:20 -0700 (PDT)
Received: (from smapper at localhost) by gatekeeper.western-reflections.com
  (8.7.5/8.7.3) id IAA16339 for <samba at lists.samba.org>; Thu, 6 Sep 2001
  08:58:43 -0500
Received: from aix2.western-reflections.com(192.168.1.100) by
  gatekeeper.western-reflections.com via smap (V2.0) id xma016335; Thu,
  6 Sep 01 08:58:25 -0500
Received: from jwilson (jwilson.western-reflections.com [192.168.1.11])
  by aix2.western-reflections.com (AIX4.3/8.9.3/8.8.8) with SMTP id
  IAA56432 for <samba at lists.samba.org>; Thu, 6 Sep 2001 08:41:11 -0500
Message-Id: <1.5.4.32.20010906133949.006bd2a0 at aix2.western-reflections.c
  om>
X-Sender: jwilson at aix2.western-reflections.com
X-Mailer: Windows Eudora Light Version 1.5.4 (32)
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
To: samba at lists.samba.org
From: Jonathan Wilson <jwilson at western-reflections.com>
Subject: booting Win clients via PXE?
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 06:36:02 2001
X-Original-Date: Thu, 06 Sep 2001 08:39:49 -0500

I know this is only peripherally related to Samba, but as a sysadmin
trying to reduce time and money spent on supporting Windows clients
(that's why we're all using Samba, right?) I'd like to start buying
floppy-less, CDROM-less PCs. That will give the users less opportunity
to screw themselves. However, that also leaves me with no way to
boot them in case of a problem with the hard disk.

The PCs in question support PXE, which allows loading a boot file
via tftp. A search of the web led me to lots of ways to boot Linux
clients from Linux servers, but no hint as to how to boot Windows
clients from Linux servers. Anyone give me a clue?

Thanks
Jonathan Wilson

Return-Path: <andre.macara at clix.pt>
Delivered-To: samba at lists.samba.org
Received: from doninha.ip.pt (doninha.ip.pt [195.23.132.12]) by
  lists.samba.org (Postfix) with SMTP id 8BC2846CC for
  <samba at lists.samba.org>; Thu,  6 Sep 2001 06:37:47 -0700 (PDT)
Received: (qmail 66547 invoked by uid 1037); 6 Sep 2001 13:41:55 -0000
Received: from unknown (HELO clix.pt) (195.23.132.2) by doninha2.ip.pt
  with SMTP; 6 Sep 2001 13:41:55 -0000
Received: (qmail 12310 invoked from network); 6 Sep 2001 13:41:55 -0000
Received: from unknown (HELO vodka2k) (195.23.182.253) by polvo.ip.pt
  with SMTP; 6 Sep 2001 13:41:55 -0000
Reply-To: <andre.macara at clix.pt>
From: "Andre Macara" <andre.macara at clix.pt>
To: <samba at lists.samba.org>
Subject: =?iso-8859-1?Q?RE:_Siegfried__Gro=DF/Abt1/Verwaltung/Uni-Kassel
  _ist_au=DF?= =?iso-8859-1?Q?er_Hau__s.?=
Message-ID: <KJEMLHCJHCKOPAGGJOIOOEKCCAAA.andre.macara at clix.pt>
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
In-Reply-To: <OFA862FD1F.AE957640-ONC1256ABD.007E663B at verwaltung.uni-kas
  s  el.de>
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 06:38:23 2001
X-Original-Date: Thu, 6 Sep 2001 14:35:11 +0100

ora am esta uma mensagem original, acho que para resolveres o teu problema o
melhor i formatar o disco rigido, mas aquele que ss tem os dados

Espero que tenha ajudado
Andre


-----Original Message-----
From: samba-admin at lists.samba.org [mailto:samba-admin at lists.samba.org]On
Behalf Of gross at uni-kassel.de
Sent: quarta-feira, 5 de Setembro de 2001 0:01
To: samba at lists.samba.org
Subject: Siegfried Gro_/Abt1/Verwaltung/Uni-Kassel ist au_er Hau s.


Ich werde ab  09.08.2001 nicht im B|ro sein. Ich kehre zur|ck am
06.09.2001.

Ich werde Ihre Nachricht nach meiner R|ckkehr beantworten.
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

Return-Path: <mbnospam at mbeddow.net>
Delivered-To: samba at lists.samba.org
Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com
  [62.253.162.42]) by lists.samba.org (Postfix) with ESMTP id 44E244BB4
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 06:54:42 -0700 (PDT)
Received: from michaelnt2k ([62.252.200.142]) by mta02-svc.ntlworld.com
  (InterMail vM.4.01.03.00 201-229-121) with SMTP id
  <20010906135851.KSEN29790.mta02-svc.ntlworld.com at michaelnt2k>; Thu, 6
  Sep 2001 14:58:51 +0100
Message-ID: <054301c136dc$c76e3c80$0201010a at michaelnt2k>
From: "Michael Beddow" <mbnospam at mbeddow.net>
To: "Joel Hammer" <Joel at HammersHome.com>, <samba at lists.samba.org>
References: <20010905205740.A5497 at hammershome.com> 
  <03c901c1369f$549a41a0$0201010a at michaelnt2k>
  <20010906071150.B7806 at hammershome.com>
Subject: Re: Where are the client programs with 2.2.1a ?
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4807.1700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 06:55:14 2001
X-Original-Date: Thu, 6 Sep 2001 15:03:59 +0100

> Thanks for the help.
> I did not customize my configuration at all before I ran configure. I
> could't find any install instructions so I just went with all the
defaults.
> So, that may explain it.
> When I referred to smbclient not being there, I meant in the source
> directories.

Sorry, I misunderstood, I thought you meant it wasn't in the bin
directory you listed. You won't find a smbclient.o, cos it's built from
a number of object components. You *will* find smbclient in the
source/bin/directory after the build, and then later in the default (or
user-specified) install directory if you did make install. The default
installed location is /usr/local/samba/bin

And yes, for newer Linux kernels you need to configure --with-smbmount.
Do a ./configure | more in the source directory to see the available
options. Moreover, you don't use the command smbmount any more, you pass
 -t smbfs to the normal mount command (you need to have smbfs enabled in
the kernel).

And, as others have pointed out, if you're using a distro that comes
with Samba pre-installed, you will avoid a lot of grief if you uninstall
that version via your package manager before deploying your
self-compiled one.

You can use the -V switch with all the bits and pieces as well as the
main daemon binaries to check out which version your're actually
running.

Michael
---------------------------------------------------------
Michael Beddow   http://www.mbeddow.net/

Return-Path: <mbnospam at mbeddow.net>
Delivered-To: samba at lists.samba.org
Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com
  [62.253.162.47]) by lists.samba.org (Postfix) with ESMTP id 2014C46BD
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 07:06:05 -0700 (PDT)
Received: from michaelnt2k ([62.252.200.142]) by mta07-svc.ntlworld.com
  (InterMail vM.4.01.03.00 201-229-121) with SMTP id
  <20010906141013.BGTG710.mta07-svc.ntlworld.com at michaelnt2k>; Thu, 6
  Sep 2001 15:10:13 +0100
Message-ID: <059e01c136de$5e0637f0$0201010a at michaelnt2k>
From: "Michael Beddow" <mbnospam at mbeddow.net>
To: <samba at lists.samba.org>, "Jonathan Wilson"
  <jwilson at western-reflections.com>
References: <1.5.4.32.20010906133949.006bd2a0 at aix2.western-reflections.c
   om>
Subject: Re: booting Win clients via PXE?
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4807.1700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 07:07:21 2001
X-Original-Date: Thu, 6 Sep 2001 15:15:21 +0100

> The PCs in question support PXE, which allows loading a boot file
> via tftp. A search of the web led me to lots of ways to boot Linux
> clients from Linux servers, but no hint as to how to boot Windows
> clients from Linux servers. Anyone give me a clue?

I suggest you start at http://www.ltsp.org/index.php and work out from
their resources and links. OK, I realise you're not asking about
terminal servers, but these folks of necessity know more about remote
booting than anyone else I can think of, and they're very helpful.

Michael
---------------------------------------------------------
Michael Beddow   http://www.mbeddow.net/
XML and the Humanities page:  http://xml.lexilog.org.uk/
---------------------------------------------------------

Return-Path: <Alton_Coalter at labcorp.com>
Delivered-To: samba at samba.org
Received: from lcagw.labcorp.com (lcagw.labcorp.com [162.134.170.49]) by
  lists.samba.org (Postfix) with SMTP id D8BE4423D for
  <samba at samba.org>; Thu,  6 Sep 2001 07:24:06 -0700 (PDT)
Received: from LCAPRI-Message_Server by lcagw.labcorp.com with
  Novell_GroupWise; Thu, 06 Sep 2001 10:28:01 -0400
Message-Id: <sb974fb1.074 at lcagw.labcorp.com>
X-Mailer: Novell GroupWise Internet Agent 5.5.5.1
From: "Alton Coalter" <Alton_Coalter at labcorp.com>
To: <samba at samba.org>
Subject: secondary groups on Linux
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 07:25:07 2001
X-Original-Date: Thu, 06 Sep 2001 10:27:57 -0400

Info:
RedHat Linux version: 2.4.2-2smp     on a Dell 2500
Samba version: samba-2.0.7-36

Synopsis of problem:
Cannot get Samba to recognise a user as belonging to a secondary group.

Details:
User 'fessis' is in primary group 'sis' (GID=12000), and in secondary group
'branch' (GID=10000).
Directory /feprod has group 'sis' for most of the directories and files
there.
Directory /branch/data/aoe is group 'branch' with 770 permissions.

Because this /branch/data/aoe directory contains sensitive data to be accessed
only by groups 'sis' and 'branch', I cannot open permissions on the directory.
If the 'fessis' user is logged in to *NIX in a normal fashion, the secondary
group gives the desired access and security.

The question becomes: how do I implement something like this for 'fessis' user
connecting through Samba since Samba doesn't recognise 'fessis' as being part
of the (secondary) group 'branch'? Note that he *must* remain a part of the
'sis' group to access all the other directories he needs.

Thanks,
Alton B. Coalter
I.S. Support / LabCorp
Alton_Coalter at labcorp.com

Return-Path: <MHooper at MeshNetworks.com>
Delivered-To: samba at lists.samba.org
Received: from meshpdc.meshnetworks.com (unknown [205.245.27.196]) by
  lists.samba.org (Postfix) with ESMTP id 4423140C4 for
  <samba at lists.samba.org>; Thu,  6 Sep 2001 07:43:25 -0700 (PDT)
Received: by meshpdc.meshnetworks.com with Internet Mail Service
  (5.5.2653.19) id <SFGR0KX7>; Thu, 6 Sep 2001 10:47:33 -0400
Message-ID: <0DF9FBC42474A24CA50F7A27FB08E048371EA6 at meshpdc.meshnetworks
  .com>
From: Mack Hooper <MHooper at MeshNetworks.com>
To: "'samba at lists.samba.org'" <samba at lists.samba.org>
Subject: Winbind + Samba HEAD CVS error messages
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain; charset="iso-8859-1"
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 07:44:04 2001
X-Original-Date: Thu, 6 Sep 2001 10:47:29 -0400

Hi all,

Using latest CVS of the HEAD branch.  Built samba with PAM, Winbindd, and
ACL support.  It is authenticating against the domain (finally!), but when I
try to view the properties on a share I get the error "The server FS1 does
not accept remote requests."   When I try to add a user to the security
settings, I get the error "Object Picker cannot open because it cannot
determine whether FS1 is joined to a domain."  I have already added the
machine to Active Directory and added a trust account (via smbpasswd -j
CORP).  The only objects that show up in the Security dialog are for the
everyone group and the owner (root).  I can grant permissions through my
smb.conf file, but that isn't what I'm going for.  It was my understanding
that building ACL support into Samba (also have it built into the kernel and
fileutils) would allow me to view/edit the ACLs through the Windows security
dialog.  Is this a lost cause?

I'm using the latest CVS of the HEAD branch, on Redhat 7.1.  Kernel is 2.4.7
with ACL support built-in.  If there is any other information that would
prove useful please let me know.

Thanks for your help!

Mack
****************************************************************************
This e-mail is intended only for the addressee named above and may contain
confidential, proprietary or privileged information. If you are not the
named addressee or the person responsible for delivering the message to the
named addressee, please inform us promptly by reply e-mail, then delete the
e-mail and destroy any printed copy. The contents should not be disclosed to
anyone and no copies should be made. We take reasonable precautions to
ensure that our emails are virus free. However we accept no responsibility
for any virus transmitted by us and recommend that you subject any incoming
e-mail to your own virus checking procedures. 

Return-Path: <mbnospam at mbeddow.net>
Delivered-To: samba at lists.samba.org
Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com
  [62.253.162.43]) by lists.samba.org (Postfix) with ESMTP id BE7B549CA
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 08:06:37 -0700 (PDT)
Received: from michaelnt2k ([62.252.237.54]) by mta03-svc.ntlworld.com
  (InterMail vM.4.01.03.00 201-229-121) with SMTP id
  <20010906151046.RCOZ23687.mta03-svc.ntlworld.com at michaelnt2k>; Thu, 6
  Sep 2001 16:10:46 +0100
Message-ID: <05c101c136e6$d2f7d5c0$0201010a at michaelnt2k>
From: "Michael Beddow" <mbnospam at mbeddow.net>
To: "Goetz Reinicke" <goetz.reinicke at filmakademie.de>,
  <samba at lists.samba.org>
References: <3B971B79.1060100 at filmakademie.de>
Subject: Re: Questions concerning PDC, authentification with multiple 
  IT-networks
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 5.50.4807.1700
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 08:07:03 2001
X-Original-Date: Thu, 6 Sep 2001 16:15:54 +0100

On Thursday, September 06, 2001 7:45 AM
Goetz Reinicke wrote:

[...]

> The server is configured to act as a PDC and I added the two clients.
> Now I only can login to my domain with the client in the same
IP-network
> like the server; from the other IP-network I can't; but I can access
> shares on the server if I use the servers IP.

The good news is that the accessibility of shares across the router
shows your actual routing is fine. The bad news is that the need to
provide the IP address rather than the NetBios name shows that your
NetBios names are not propagating correctly between the nets.

You'll need to look carefully at the "Troubleshooting Name Services"
section in Chapter 9 of the Using Samba book (in your tarball if you
installed from source, otherwise on line at any Samba mirror or
O'Reilly). Your friend here is the nmblookup utility (with debugging
turned on) that is part of recent Samba packages (and documented in
Appendix D of the Samba book).

One further point, though it's *not* your problem here: you can't do a
domain login across many NAT or ip masquerading gateways, because the
NAT routines rewrite only the TCP/IP headers and don't make the
necessary changes to the NetBios packets wrapped inside them. But even
there you can map shares by NetBios name if your setup is correct, since
this issue affects only full domain logins, not basic domain
authentication itself.

Michael
---------------------------------------------------------
Michael Beddow   http://www.mbeddow.net/

Return-Path: <teg at redhat.com>
Delivered-To: samba at lists.samba.org
Received: from halden.devel.redhat.com (nat-pool-meridian.redhat.com
  [199.183.24.200]) by lists.samba.org (Postfix) with ESMTP id 166644362
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 08:42:40 -0700 (PDT)
Received: (from teg at localhost) by halden.devel.redhat.com
  (8.11.6/8.11.6) id f86Fklo19295; Thu, 6 Sep 2001 11:46:47 -0400
X-Authentication-Warning: halden.devel.redhat.com: teg set sender to
  teg at redhat.com using -f
To: samba at lists.samba.org
Subject: Samba and 64bit architectures
Organization: Red Hat, Inc.
From: teg at redhat.com (Trond Eivind =?iso-8859-1?q?Glomsr=F8d?=)
In-Reply-To: <3B971B79.1060100 at filmakademie.de>
Message-ID: <xuyd7549va0.fsf at halden.devel.redhat.com>
Lines: 37
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.105
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 08:43:03 2001
X-Original-Date: 06 Sep 2001 11:46:47 -0400

We've reproduced unaligned accesses on 64bit architectures (IA64 and
Alpha) for Samba 2.2.1a.

The accesses are coming from source/locking/locking.c:489, the
memcpy() line of the following:

/*******************************************************************
fill a share mode entry
********************************************************************/
static void fill_share_mode(char *p, files_struct *fsp, uint16 port, uint16 op_type)
{
        share_mode_entry *e = (share_mode_entry *)p;
        e->pid = sys_getpid();
        e->share_mode = fsp->share_mode;
        e->op_port = port;
        e->op_type = op_type;
        memcpy((char *)&e->time, (char *)&fsp->open_time, sizeof(struct timeval));
}

It looks like fill_share_mode is simply called with some structure
which is not 8 byte aligned, but only 4 byte aligned (at least the
code looks like that: struct locking_data contains just an int, so it
is 4 byte aligned and 4 byte in size, but fill_share_mode is called
with result from malloc (8 bytes aligned) plus sizeof(struct
locking_data)).

The question is whether samba wants this unaligned (in which case the
memcpy is not appropriate - gcc is clever beast: you need to: void *x
= &e->time; memcpy(x, ..., ...); because otherwise gcc figures out
that &e->time must be 64 bits aligned and thus copies it using 64bit
accesses) or whether this is a design bug, in which case it needs to
be fixed.  For the former case, perhaps the easiest solution would be
to add __attribute__((packed)) to struct share_mode_entry.

-- 
Trond Eivind Glomsrxd
Red Hat, Inc.

Return-Path: <fernando at univel.br>
Delivered-To: samba at lists.samba.org
Received: from ns.univel.br (unknown [200.250.120.130]) by
  lists.samba.org (Postfix) with ESMTP id EBD334C23 for
  <samba at lists.samba.org>; Thu,  6 Sep 2001 09:01:26 -0700 (PDT)
Received: from wsdes424 (ws-1-15 [192.168.1.15]) by ns.univel.br
  (8.9.3+3.2W/8.9.3/Debian 8.9.3-21) with SMTP id QAA23062 for
  <samba at lists.samba.org>; Thu, 6 Sep 2001 16:00:34 +0300
X-Authentication-Warning: ns.univel.br: Host ws-1-15 [192.168.1.15]
  claimed to be wsdes424
Message-ID: <001201c136ed$bd4be020$0f01a8c0 at univel.br>
Reply-To: "Fernando Schutz" <fernando at univel.br>
From: "Fernando Schutz" <fernando at univel.br>
To: <samba at lists.samba.org>
Subject: Number of users
Organization: UNIVEL - Uniao Educacional de Cascavel
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Mailer: Microsoft Outlook Express 5.00.2615.200
X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98b
X-Converted-To-Plain-Text: Alternative section used was text/plain
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 09:02:11 2001
X-Original-Date: Thu, 6 Sep 2001 13:05:25 -0300

Hi palls

My question is: I'm using Debian 2.2 and Samba 2.2.0

Is there a maximun number of users?
I'm trying to create new users. It works, but then I can't login with theese
new users.

Help please.

[]'s - schutz.

Return-Path: <m.sapsed at bangor.ac.uk>
Delivered-To: samba at lists.samba.org
Received: from agnostix.bangor.ac.uk (agnostix.bangor.ac.uk
  [147.143.2.39]) by lists.samba.org (Postfix) with ESMTP id 7FA354350
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 09:18:28 -0700 (PDT)
Received: from martin (martin [147.143.1.29]) by agnostix.bangor.ac.uk
  (8.9.3+Sun/8.9.3) with ESMTP id RAA02022; Thu, 6 Sep 2001 17:22:26
  +0100 (BST)
From: Martin Sapsed <m.sapsed at bangor.ac.uk>
X-Sender: <iss081 at martin.bangor.ac.uk>
To: Jonathan Wilson <jwilson at western-reflections.com>
Cc: <samba at lists.samba.org>
Subject: Re: booting Win clients via PXE?
In-Reply-To: <1.5.4.32.20010906133949.006bd2a0 at aix2.western-reflections.
  c  om>
Message-ID: <Pine.LNX.4.30.0109061719500.23263-100000 at martin.bangor.ac.u
  k>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 09:19:04 2001
X-Original-Date: Thu, 6 Sep 2001 17:21:30 +0100 (BST)

On Thu, 6 Sep 2001, Jonathan Wilson wrote:

> The PCs in question support PXE, which allows loading a boot file
> via tftp. A search of the web led me to lots of ways to boot Linux
> clients from Linux servers, but no hint as to how to boot Windows
> clients from Linux servers. Anyone give me a clue?

2 (free) possibilities I can think of:

1. PXE support in the grub boot loader at ftp://alpha.gnu.org/gnu/grub/

2. BPBatch from http://www.bpbatch.org

Cheers,

Martin

-- 
Martin Sapsed				To have no errors
Information Services			Would be life without meaning
University of Wales, Bangor, LL57 2UX	No struggle, no joy.
Fax: +44 (0)1248 383826

Return-Path: <rob.leadbeater at lynx.co.uk>
Delivered-To: samba at lists.samba.org
Received: from mailhost.lynx.co.uk (mailhost.lynx.co.uk
  [194.203.251.189]) by lists.samba.org (Postfix) with SMTP id 4D0A24C5D
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 09:19:45 -0700 (PDT)
Message-Id: <TFSAOSZC at lynx.co.uk>
From: rob.leadbeater at lynx.co.uk
To: samba at lists.samba.org
Subject: Maximum number of files in a samba share
MIME-version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: 7bit
X-Mailer: TFS Secure Messaging /222000000/223042434/223004594/223091115/
X-Mailer: Version 4 Build 219
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 09:20:27 2001
X-Original-Date: Thu, 6 Sep 2001 17:21:31 +0000

Hi,

Is there a maximum number of files that can be located in a samba share ?

We're running Samba 2.2.0 on Compaq Tru64 Unix 4.0F.
Everything had been running fine up until yesterday when suddenly we were
getting lots of odd network looking faults.

We eventually pin pointed that an smbd process was taking 99.9% CPU time,
which was related to a Windows machine attempting to copy files onto the Unix
box.

The number of files in the file system which is shared out is currently around
6.4 million.
I'm pretty sure that we've not got a unix problem, as creating files directly
from unix works fine.
Attempting to create files via Windows (NT) eventually gives an "Unexpected
network error".
If I delete some files from the samba share, then the Windows to Unix copy
starts working again...

Any ideas would be greatly welcomed.


Regards,

Rob Leadbeater





This message is intended only for the use of the person(s) ("The intended
Recipient(s)") to whom it is addressed.  It may contain information which
is privileged and confidential within the meaning of applicable law.  If
you are not the intended recipient, please contact the sender as soon as
possible.  The views expressed in this communication are not necessarily
those held by LYNX Express Limited.

Return-Path: <rvt at dds.nl>
Delivered-To: samba at lists.samba.org
Received: from porgy.srv.nld.sonera.net (mbox-01.soneraplaza.nl
  [195.66.15.137]) by lists.samba.org (Postfix) with ESMTP id CF4114BB4
  for <samba at lists.samba.org>; Thu,  6 Sep 2001 09:40:37 -0700 (PDT)
Received: from qn-213-73-192-55.quicknet.nl ([213.73.192.55]:62592 "EHLO
  et.schoenmakerstraat.org") by soneramail.nl with ESMTP id
  <S92476AbRIFQnn>; Thu, 6 Sep 2001 18:43:43 +0200
Received: from localhost ([127.0.0.1] helo=dds.nl) by
  et.schoenmakerstraat.org with esmtp (Exim 3.12 #1 (Debian)) id
  15f2Fz-0003JB-00; Thu, 06 Sep 2001 18:43:59 +0200
Message-ID: <3B97A7CF.38E36AAB at dds.nl>
From: Ries van twisk <rvt at dds.nl>
Reply-To: rvt at dds.nl
X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.4.9 i586)
X-Accept-Language: en
MIME-Version: 1.0
To: Martin Sapsed <m.sapsed at bangor.ac.uk>
Cc: Jonathan Wilson <jwilson at western-reflections.com>,
  samba at lists.samba.org
Subject: Re: booting Win clients via PXE?
References: <Pine.LNX.4.30.0109061719500.23263-100000 at martin.bangor.ac.u
  k>
Content-Type: text/plain; charset=iso-8859-2
Content-Transfer-Encoding: 7bit
Sender: samba-admin at lists.samba.org
Errors-To: samba-admin at lists.samba.org
X-BeenThere: samba at lists.samba.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:samba-request at lists.samba.org?subject=help>
List-Post: <mailto:samba at lists.samba.org>
List-Subscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=subscribe>
List-Id: General questions regarding Samba <samba.lists.samba.org>
List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>,
	<mailto:samba-request at lists.samba.org?subject=unsubscribe>
List-Archive: <http://lists.samba.org/pipermail/samba/>
Date: Thu Sep  6 09:41:02 2001
X-Original-Date: Thu, 06 Sep 2001 18:43:59 +0200



More information about the samba mailing list