Re: [Samba] Is there a way?

2003-03-12 Thread Sylvestre TABURET
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 12 March 2003 01:52 pm, Esler, Joel Contractor wrote:
 Is there a way to make clients not see hidden shares?  Like we have
 an I: drive, but it's actually a Common-Share...

 Thoughts?

 Joel

what clients? what servers? and what does Invisible mean?

I mean do you want to make a samba share non-browseable to windows users 
(1), or are you afraid linux users might see a windows share despite 
calling it COMMON$ so it's hidden to windows browsers (2)?

If your concern is (1) then you just need to add browseable = no to the 
share definition. If your concern is (2), then you need to switch from NT 
to samba, so you get a (1)-type configuration...

Cheers
- -- 
| Sylvestre TABURET - 1024D/030E1B7E
| . MandrakeSoft - [EMAIL PROTECTED]
| . Hewlett-Packard - [EMAIL PROTECTED]
| CCA07:7809, 20555 SH 249, Houston, TX, 77070 - USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD4DBQE+b5VGBot2zwMOG34RAqVeAKC47bFRxbcv4+3UmhqugWF5rWQ2BACWKO+3
eMZnWZpp9uUjws1c1OoUAA==
=aPUw
-END PGP SIGNATURE-

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] smbclient to access limited networks?

2003-03-06 Thread Sylvestre TABURET
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 06 March 2003 01:51 pm, Hiro Sugawara wrote:
 I am new to this ML and am sorry if this question has been answered
 already.

 I have a firewall router running Linux having two Ethernet ports (i.e.
 access to two networks) for INTRANET and INTERNET. This firewall needs
 to run smbclient to access a share on a Win2K host in the INTRANET.
 Looking into the Linux kernel message log, I found  smbclient is
 broadcasting NetBIOS name service queries to not only the INTRANET side
 but also the INTERNET side.

 I want to disable the queries to the INTERNET side because it could get
 forged responses and lead to a security bleach. I checked the hosts
 allowed field in smb.conf, but it seems to work only to limit accesses
 to a Samba server--not to limit anything with smbclient.

 I'll appreciate any suggestion.

 TIA.
 hiro
 --
 Hiro Sugawara [EMAIL PROTECTED]

Hi,

use the parameter interfaces in smb.conf:
- ---
man smb.conf:
...
interfaces (G)
This  option  allows  you to override the default network interfaces list 
that Samba will use for browsing,  name  registration and  other  NBT  
traffic. By default Samba will query the kernel for the list of all 
active interfaces  and  use  any  interfaces except 127.0.0.1 that are 
broadcast capable.

ex:
interfaces = eth0 192.168.2.10/24 192.168.3.10/255.255.255.0 .PP
would configure three network  interfaces  corresponding  to  the  eth0 
device and IP addresses 192.168.2.10 and 192.168.3.10.  The netmasks of 
the latter two interfaces would be set to 255.255.255.0.
[...]
Default: all active interfaces  except  127.0.0.1  that  are  broadcast 
capable...
- -
You also can combine it with bind interfaces only

Cheers
- -- 
| Sylvestre TABURET - 1024D/030E1B7E
| . MandrakeSoft - [EMAIL PROTECTED]
| . Hewlett-Packard - [EMAIL PROTECTED]
| CCA07:7809, 20555 SH 249, Houston, TX, 77070 - USA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE+Z6szBot2zwMOG34RAsORAJ0dtw2AbZXHPbJppnOLdCNd/8CI8QCfUdhd
yD7eVydmEF05DkmJMgY03yg=
=m6fQ
-END PGP SIGNATURE-

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] Samba 2.2.7a

2002-12-12 Thread Sylvestre Taburet
Le Jeudi 12 Décembre 2002 12:56, Ken Walker a écrit :
 Are the latest updates for Samba ( 2.2.7a ) available on the mandrake
 update system yet ?

 Mr Smiley

No, not yet. We have some QA to do before we put them on DL. You can still 
grab the 2.2.7a SRPM from cooker and recompile on 9.0. It works fine (though 
it's not an official update). I'll try to put 9.0 and 8.2 versions on my 
unofficial repository  http://people.mandrakesoft.com/~staburet/freshsamba 
today if I have some time. Also check with Buchan's site: 
http://ranger.dnsalias.com/

Cheers,
Sly
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Samba SWAT 2.2.7 Doesn't Work in Redhat8.0?

2002-12-03 Thread Sylvestre Taburet
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le Mardi 3 Décembre 2002 12:37, Ciba LO a écrit :
 Hello All Samba-list Members,

 I have installed a Samba 2.2.7, the samba-latest.tar.gz, as a PDC on a
 Redhat8.0 GNU/Linux server.  ( Of course, I first uninstalled the original

Hmmm... Never heard of that one. ;o)

[...]
 [root@ibmapt root]# cat /etc/xinetd.d/swat
 ## /etc/xinetd.d/swat
 service swat
 {
  disable = no
  port= 901
  socket_type = stream
  wait= no
  only_from = localhost
  user= root
  server  = /usr/local/samba/bin/swat
  log_on_failure  += USERID
 }

Try changing:
only_from = localhost

into:
only_from = 127.0.0.1

in /etc/xinetd.d/swat
and then, do a `service xinetd restart`

Cheers,
- -- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakesoft.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE97JuLBot2zwMOG34RAn9zAJ9jDvN6DvvouZMoaTViXGXx0AijHQCglKv6
nhJ7LoZrbuRDJbuN+Zu4rE4=
=SAS9
-END PGP SIGNATURE-

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Upgrade failed? 2.2.5-pre1 to 2.2.7

2002-11-27 Thread Sylvestre Taburet
Le Mercredi 27 Novembre 2002 15:48, Brent Torrenga a écrit :
 Hello,
   I downloaded the source, followed the instaructions to the T (make,
 install, etc...). Everything seemed to go fine, I think the compilation and
 installation were flawless (after all, I have compiled 2.2.5 sucessfully,
 and havent done anything to this box as far as removing software
 libraries), there were no reported errors. The install portion even had the
 messages saying all went well, you know the few lines bordered by the
 - at top and bottom.
   Anyways, I restart, and it is still reporting version 2.2.5-pre1. Any
 ideas? Any more info that would help?

 Mandrake 8.2 on a pentium 100, 40 MB ram, plenty of HD space.


The samba you compiled is probably installed in /usr/local if you didn't 
specify any --prefix options during configure phase. I suggest you do a make 
uninstall from the samba source directory to remove your faulty 2.2.7 
installation and install the compiled 2.2.7 RPMS for mandrake Linux 8.2 
(unofficial) you can get from this link:

http://people.mandrakesoft.com/~staburet/freshsamba

Cheers,
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Samba 3.0 alpha21 released

2002-11-27 Thread Sylvestre Taburet
Le Mercredi 27 Novembre 2002 16:45, Gerald (Jerry) Carter a écrit :
 On Wed, 27 Nov 2002 [EMAIL PROTECTED] wrote:
  And what about side-by-side installations?  Having both versions
  installed... so I can run 3.x for a bit, stop it, and turn 2.x smbd back
  on if needed?  I heard this was the case in tarball installation, but is
  this supported by the RPM?

 The 3.0alphaX RPMs will overwrite a 2.2.x RPM.  Downgrading is not
 supported as some TDB's will be upgraded to a newer format
 that would be unrecognized by 2.2.x.


Correct me if I'm wrong, but the Mandrake Linux contrib samba-3.0alpha20 RPM 
was designed specifically to allow testers to keep their existing 2.2.X 
version and try 3.0alpha20 (everything installed in /opt, /etc/samba3, 
/var/lib/samba3...)
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Printing from Linux to Windows 2000

2002-10-23 Thread Sylvestre Taburet
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le Mercredi 23 Octobre 2002 18:44, Hal Vaughan a écrit :
 I've seen a lot on printing from Win boxes to printers on Linux boxes. 
 I've found very little on printing from Linux to Windows printers.  The
 HOWTO has some information and I've found several other sources, but I
 still can't get my Linux box to print to a Windows 2000 printer.

 I'm using Mandrake Linux 8.2, Samba 2.2.3a, CUPS (I'm not sure of the
 version, I think it's ), which I'm managing through the KDE control panel. 
 I have an Epson C60 on a Windows 2000 box that I need to be able to access
 from Linux. I'm doing this on my home office lan, but I need to do the
 exact same thing (with a different printer) on a friend's lan.

 I used the CUPs control panel and told it to scan the network.  It found
 the Win2k box that's the host for the printer, but not the printer.  I
 tried typing in the info manually, but nothing prints.  I used the CUPS web
 admin tool and found I kept getting the error message:

 Unable to connect to SAMBA host, will retry again in 60
 seconds'Success

 That is the only message I get.

 I'm testing everything on my own LAN, since I figure once I get it to work
 on my LAN, it'll work okay on my friend's.

 I know I'm asking for free help, but I need to get my friend's computer
 printing to his Win2k box asap, so any help I can get on this soon is
 greatly appreciated.

 Thanks!

 Hal

This should work...

1- did your friend share his printer on his win2k box?
2- try a newer version of samba, e.g. 2.2.6 (get it here: 
http://people.mandrakesoft.com/~staburet/freshsamba )

Cheers
- -- 
Sylvestre Taburet - 1024D/030E1B7E
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9ttPQBot2zwMOG34RAtu/AJ4mWB5XMbdpJGFBf/DS97Kh8kCNlwCbBRU5
K/sQ/e8/a987rNm+cGn4n1A=
=kuuT
-END PGP SIGNATURE-

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] Samba 2.2.6 (final) RPMS released for Mandrake Linux 8.0, 8.1, 8.2 and 9.0

2002-10-17 Thread Sylvestre Taburet
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all:

Buchan Milne [EMAIL PROTECTED] and myself [EMAIL PROTECTED] are 
proud to present to you the latest RPMs for samba-2.2.6, compiled for 
Mandrake Linux 8.0, 8.1, 8.2 and 9.0 platforms, with or without LDAP.

We would like to thank the samba team for their great work on the 2.2.X 
versions of samba, and salute the upcoming 3.0.X.

These RPMs are provided as is (unofficial), and will be later released as an 
official update as soon as they undergo our usual validation process, so 
don't hesitate to download and test them as much as you like.


get them here:
http://people.mandrakesoft.com/~staburet/freshsamba
or there:
http://ranger.dnsalias.com/mandrake/samba

Get the SRPM at:
http://people.mandrakesoft.com/~staburet/SRPMS

Cheers,
Sly and Buchan
- -- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9rrEIBot2zwMOG34RAr+UAKCOVVygq/z0fAKCcqz/0ZWLnaDc5QCeLCQ2
y4lnfkO/NkXXBQqYEHajjkY=
=YcQh
-END PGP SIGNATURE-

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] Samba 2.2.6rc4 RPMS released for Mandrake Linux 8.2 and 9.0

2002-10-16 Thread Sylvestre Taburet

Hi!

As usual, get them at:

http://people.mandrakesoft.com/~staburet/freshsamba
or 
http://ranger.dnsalias.com/mandrake/samba

Get the SRPM at:

http://people.mandrakesoft.com/~staburet/SRPMS

Cheers,
Sly
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] Samba 2.2.6rc3 RPMS released for 8.2 and 9.0

2002-10-14 Thread Sylvestre Taburet

Hi!

As usual, get them at:

http://people.mandrakesoft.com/~staburet/freshsamba
or 
http://ranger.dnsalias.com/mandrake/samba

Get the SRPM at:

http://people.mandrakesoft.com/~staburet/SRPMS

Cheers,
Sly
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Samba 2.2.6rc3 RPMS released for 8.2 and 9.0

2002-10-14 Thread Sylvestre Taburet

Hi!

As usual, get them at:

http://people.mandrakesoft.com/~staburet/freshsamba
or 
http://ranger.dnsalias.com/mandrake/samba

Get the SRPM at:

http://people.mandrakesoft.com/~staburet/SRPMS

Cheers,
Sly
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com



[Samba] Mandrake RPMS for 2.2.6rc2

2002-10-10 Thread Sylvestre Taburet

Hi!

samba-2.2.6rc2 RPMS are ready for Mandrake Linux 8.2 and 9.0
Get them here:

http://people.mandrakesoft.com/~staburet/freshsamba/

Cheers.
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] How best to get ACL support?

2002-09-26 Thread Sylvestre Taburet

Le Jeudi 26 Septembre 2002 14:58, Noel Kelly a écrit :
 Suse have a policy of not having ISO downloads - if you want the CD media
 you have to buy a Suse boxed set.

 Redhat 8 is imminent - that also will have ACLs out of the box I believe.
 Redhat always have downloadable ISOs.

 Mandrake 8 has XFS support at install time if you needed something now.


mdk 9.0 has support for XFS and EXT2/3 out of the box.
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] How best to get ACL support?

2002-09-26 Thread Sylvestre Taburet

Le Jeudi 26 Septembre 2002 15:03, Sylvestre Taburet a écrit :
 Le Jeudi 26 Septembre 2002 14:58, Noel Kelly a écrit :
  Suse have a policy of not having ISO downloads - if you want the CD media
  you have to buy a Suse boxed set.
 
  Redhat 8 is imminent - that also will have ACLs out of the box I believe.
  Redhat always have downloadable ISOs.
 
  Mandrake 8 has XFS support at install time if you needed something now.

 mdk 9.0 has support for XFS and EXT2/3 out of the box.

I meant has ACLs support for $_, of course. ;o)
As usual, you can get 9.0 isos on any mirrors.
Cheers
-- 
Sylvestre Taburet - Project Manager - 1024D/030E1B7E
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (0) 1 40 41 00 41 - http://www.mandrakelinux.com
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Quick Question

2002-06-18 Thread Sylvestre Taburet

Le Mardi 18 Juin 2002 05:49, Don Williams a écrit :
 Hi,

 I'm wondering whether there is an existing compiled and installable version
 of Samba or some components of Samba which will allow me to move files
 between a Win XP (NTFS) partition and a UNIX partition on the same drive on
 the same computer.


samba is a client/server application. As the 2 partitions are on the same 
computer, you won't be able to access either NTFS and EXT2/3/REiserfs... at 
the same time using samba. NTFS access from linux is built in the kernel.

You will be able to access a NTFS4/5 partition from linux (Mandrake Linux 
allows it since 8.0), but you won't be able to access your linux partition 
from XP (depending on what kind of FS you're using, you might be able to find 
a software for windows to do it). For SCO, that's a different story.

 I do independent support for a major medical practice management software
 system and most of the installations (some 30,000 in the U.S.) run on UNIX
 servers.  For that reason I boot into UNIX (SCO Open Server 5.0.6) for
 program development and generally email the result, in zipped form, using a
 Windows email system running on a cable modem.

 For many years my Windows drives were set as FAT partitions and the
 standard UNIX Commands of dosdir and docsp worked just fine.  Then I
 changed to FAT32 and these commands became non-functional.  I was able to
 generate and install some Mtools components, mdir and mcopy and read and
 write to the C: drive from UNIX.


right, mtools are designed for FAT16/32, not for NTFS.

 Now I have a NTFS system on the first partition of my first drive and UNIX
 on the second partition.  When I am in UNIX there seems to be no capability
 to see these NTFS drives.  I notice that when I run fdisk from UNIX the
 UNIX operating system recognizes the first partition as OS2, which is
 clearly an anomaly.

 For small files I can use the floppy drive to move files back and forth,
 but am of course limited to 1.44 MB by this method.

 I now have the task of downloading over a modem some rather large files
 from a remote UNIX system, moving them to Windows, and then transferring
 them by Internet to a client who will do further work with them.

 I'm look for some replacement for the mdir and mcopy commands, and when I
 presented my question to the mtools group the answer was Samba.


well, then you'll need 2 computers. The XP computer, running XP and sharing 
the NTFS partition/directory you're looking for, and another computer running 
linux, with samba-client. You will then be able to mount the NTFS partition 
on the linux machine using smbmount. You won't be able to use samba from a 
linux computer to read a NTFS partition located on the same computer.

 That's fine and I have looked at the Samba websites, but it's been so long
 since I compiled code and made executable programs under UNIX that my
 deadline will be long gone before I get that done.

 Hence the question.  Is there something out there which will allow me to
 communicate between the first two partitions on my first drive, C: for
 Windows XP and /u which is the UNIX boot partition on that same drive?


you can create a small FAT32 partition for the data, but you won't have the 
NT/XP ACLs/security anymore... but then you'll be able to use the mtools 
again.

 Right now I have a bootable floppy to change the active partition from
 Windows to UNIX, and use the UNIX fdisk program to change back to a Windows
 active partition.   Alternatively if I want to work mostly in UNIX I simply
 execute at the boot: prompt

 bootos 4

 and it boots into windows, however the active boot partition remains UNIX.

 If this is too much to deal with please don't bother.  If it's something
 straightforward I would surely appreciate some help.

 Thanks,


  Don Williams
  La Jolla, CA
  If not the best city in the world, which one is?
A: Paris.

Salut!
-- 
Sylvestre Taburet - Project Manager
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (1) 40 41 00 41 - http://www.linux-mandrake.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] samba 2.2.5a

2002-06-10 Thread Sylvestre Taburet

Le Lundi 10 Juin 2002 11:24, Alexander Saers a écrit :
 Hello

 I saw that samba 2.2.5a is out. Whats the difference with 2.2.4? Is there
 currently any problem with 2.2.4 or 2.2.5a? I want to uppgrade my server
 from 2.2.3a so i want to know if there are any thing that i should be
 prepared for.

 Ive heard that 2.2.4 had some printing problems? Is this true?

 /Alexander

2.2.5 is almost out. In fact, Jerry Carter just released 2.2.5pre1 for 
testing purpose. And yes, there are some problems with printing on 2.2.4, 
which have been adressed in a patch you can find here:

ftp://samba.org/pub/jerry/samba-2.2.4-patches

along with some other 2.2.4-specific patches.

Cheers
-- 
Sylvestre Taburet - Project Manager
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (1) 40 41 00 41 - http://www.linux-mandrake.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Profiles

2002-06-10 Thread Sylvestre Taburet

Le Lundi 10 Juin 2002 17:07, Michael Ott a écrit :
 Hallo!

 Since i have updated my os (rh-7.3) and my samba (2.2.4) I have a problem
 with my profile.

 When I start my WinNT-box i get the message, that the profile cannot
 create profile-dir \\server\profiles\michael.pds

 My netlogon tell me that there are error while savin my profile and look
 at HELPMSG 3678



 What's going wrong?



Make sure that the domain account you're using is allowed to open a session 
on the workstation (basically, make sure that the global account michael is 
member of the local workstation users group.

Check also that /var/lib/samba/profiles is writable by michael.

Cheers
-- 
Sylvestre Taburet - Project Manager
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (1) 40 41 00 41 - http://www.linux-mandrake.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Trust Domains ...

2002-06-04 Thread Sylvestre Taburet

Le Mardi 4 Juin 2002 15:23, C.Lee Taylor a écrit :
 Greetings ...

   Please could someone confirm that Samba 2.2.x and Samba 3.0 ( Head ) does
 not support Trusts between domains.


2.2.X doesn't, 3.0 will, though I don't know if CVS version does it yet.

It should be possible with TNG, but I never tried:
http://mordor.clayton.edu/samba-tng/tng-pdc-trust.html

 Thanks
 Mailed
 Lee

-- 
Sylvestre Taburet - Project Manager
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (1) 40 41 00 41 - http://www.linux-mandrake.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Re: Problem with samba 2.2.4 and Mandrake 8.2

2002-05-13 Thread Sylvestre Taburet

Le Lundi 13 Mai 2002 13:43, Buchan Milne a écrit :
 | Message: 12
 | Date: Fri, 10 May 2002 14:15:39 -0300
 | From:
 | To: samba [EMAIL PROTECTED]
 | Subject: [Samba] Problem with samba 2.2.4 and Mandrake 8.2
 |
 | Hello all,
 |
 | I updated my mandrake 8.2 samba from version 2.2.3a to 2.2.4, using

 mandrake cooker package, but after the update my

 | win98 clients can not logon on the server any more, the clients can't

 even find the pdc, because i get a big time from

 | the time that the user type his username and pass, and the logon error

 message. So is this a problem with mandrake's

 | package or the logon procedure (smbpasswd file) has changed from this

 versions?? Do i have to change something in

 | smb.conf??? My other problem is that i still get errors when mounting

 windows directories on mandrake 8.2, someone told

 | me this was a problem with 2.4.18 kernel, is it right?? The new kernel

 from cooker (2.4.18.14mdk) correct this

 | problem?? Tanks very much in advance for the help...


Cooker packages aren't supposed to work out of the box. That's precisely the 
reason for cooker to exist! ;o)

2.2.4-1mdk was compiled with ldap support by default, which isn't such a 
great idea. 

2.2.4-2mdk was uploaded to the cooker repository this morning, Paris time. It 
should be available on mirrors very soon. 2.2.4-2mdk isn't ldap aware 
anymore. That doesn't mean it is bug free.

Feel free to use the cooker mailing list to report any bug you might come 
across.

http://www.linux-mandrake.com/en/fdevlists.php3

Cheers,
-- 
Sylvestre Taburet - Project Manager
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (1) 40 41 00 41 - http://www.linux-mandrake.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] Problem with samba 2.2.4 and Mandrake 8.2

2002-05-11 Thread Sylvestre Taburet

Le Vendredi 10 Mai 2002 20:11, Alexander Skwar a écrit :
 »[EMAIL PROTECTED]« sagte am 2002-05-10 um 14:15:39 -0300 :
  Hello all,
 
  I updated my mandrake 8.2 samba from version 2.2.3a to 2.2.4, using
  mandrake cooker package, but after the update my

 The cooker package (2.2.4-1mdk) was built with LDAP support.  Thus, it
 cannot (?) do normal lookups and needs a LDAP.

 Rebuild the src.rpm with rpmbuild --without-ldap samba.spec.

 PS: Your lines are very long and hard to read.

 Alexander Skwar

Yes, that's it.
I will rebuild them next monday.
-- 
Sylvestre Taburet - Project Manager
Mandrakesoft S.A. - 43, rue d'Aboukir, 75002 Paris - FRANCE
+33 (1) 40 41 00 41 - http://www.mandrakesoft.com

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba