[Samba] SMS 2003 and Samba

2005-06-15 Thread Kristyan Osborne
Hi,

I was wondering if anyone has played with Microsoft's SMS 2003? I've got
a Samba 3 PDC using an LDAP backend, and a Windows 2003 server running
SMS 2003. The SMS 2003 setup moans that it cannot verify the service
account in the domain. Its reasons are it cannot connect to the domain
as either the user account does not have access to the domain or the
domain controller is down. I know the PDC is up and running and I have
logged in as root to prove that I have full access.

I was wondering if this is a Samba compatibility issue or whether it's
something else.

Cheers


--
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

---
Computers are like airconditioners: They stop working properly if you
open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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


RE: [Samba] quota management

2005-06-15 Thread Kristyan Osborne
 -Original Message-
 From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]
]
 On Behalf Of Romeo Theriault
 Sent: 15 June 2005 16:10
 To: samba@lists.samba.org
 Subject: [Samba] quota management
 
 How does a samba administrator control how much space each share is
 allowed?

Check out the Linux Quota man page. If you decide to use this you'll
need to configure Samba at build time with the --with-quotas

 
 Thanks, Romeo.
 

Cheers

--
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

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


RE: [Samba] Windows update

2005-02-16 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

 For this to work you must have AD, right?
 And what if the machines are in a pure Samba+OpenLDAP environment?
 Any ideas?

Nope, you can use it in a Samba environment just like I'm doing here :)

No special setup is needed, just following the M$ instructions.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open 
windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFCExI1qrr+KdRYU5gRAv1qAKC6ot/Q26xV9GHjyI3GZzUdJuAXpwCdEdkK
nc/BJDZUQlLaAJh5zjNa4CQ=
=YNoC
-END PGP SIGNATURE-

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


[Samba] Problem with privlidges after applying patch

2005-02-16 Thread Kristyan Osborne
Hi,
 
I have recently upgraded to 3.0.11 and the new user privileges worked fine. 
Since I applied the user privileges and trust patch, I am now unable to grant 
privileges to users or groups.
 
The error I am getting is
 
Failed to grant privileges for longhill\Domain Admins 
(NT_STATUS_NO_SUCH_PRIVILEGE)
 
I have tried all 5 privileges and I get the same error. I suspect it has 
something to do with the patch, but I'm unsure as to what.
 
Cheers
 
Kristyan Osborne
Longhil High School
01273 391672
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/listinfo/samba

RE: [Samba] Problem with privlidges after applying patch

2005-02-16 Thread Kristyan Osborne
 I have recently upgraded to 3.0.11 and the new user privileges worked
 fine. Since I applied the user privileges and trust patch, I am now
 unable to grant privileges to users or groups.
 
 The error I am getting is
  Failed to grant privileges for longhill\Domain Admins
 (NT_STATUS_NO_SUCH_PRIVILEGE)

 I have tried all 5 privileges and I get the same error. I suspect it has
 something to do with the patch, but I'm unsure as to what.

Did you set 'enable privileges = yes' in [global] in smb.conf?

Doh!! I copied the smb.conf file from 3.0.9 not from the vanilla 3.0.11.

 

Cheers

Kris






cheers, jerry
=
Alleviating the pain of Windows(tm)  --- http://www.samba.org
GnuPG Key- http://www.plainjoe.org/gpg_public.asc
I never saved anything for the swim back. Ethan Hawk in Gattaca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)
Comment: For info see http://quantumlab.net/pine_privacy_guard/

iD8DBQFCE8DeIR7qMdg1EfYRAp9WAKDPT+rYljvPsra8J70UpWoVrUkgNwCfYgAY
h5Jyr/5XjBYwNr/478RLrok=
=e9J/
-END PGP SIGNATURE-

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

RE: [Samba] Samba PDC and logon.bat questions

2005-01-16 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 Hello,
 
Hi 
 
 
 Since logon.bat is being processed by a windows client 
 machine that has no
 idea what to do with Samba variables, how do you avoid having 
 to create a
 separate logon script for each user? To flesh this out bit, I 
 am attempting
 to setup a very common set of shares, they are; 1) a personal share,
 /home/username 2) a group share, /home/samba/group 3) a public share,
 /home/samba/public. And my login script is very basic and 
 looks like this:
 
  
 
 Net time \\sambahost /set /yes
 
 Net use h: \\sambahost\username file:///\\sambahost\username 
 
 Net use g: \\sambahost\group file:///\\sambahost\group 
 
 Net use p: \\sambahost\public file:///\\sambahost\public 
 
You want something like this:
net time \\sambahost /set /yes
net use h: \\sambahost\homes
net use g: \\sambahost\group
net use p: \\sambahost\public
 
 But there username varies as does the group name, so for now 
 I have setup
 the netlogon share like this:
  
 
 [netlogon]
 
 Path = /home/samba/netlogon/u%
 
Change this back to path = /home/samba/netlogon

as for the group share, create a share like:
[group]
comment = group share
path = /home/groups/%G

providing you have put users in to appropiate groups it should work.

   
 
 And in the /home/samba/netlogon directory, I have a 
 directories for each
 user and a logon.bat. I'm sure there's a better way to do this, could
 someone help a guy out?
 
delete all the user directories and have a single login.bat file
 
 Second question:
 
 When using roaming profiles, and I have a global parameter like this
 profile home = \home\samba\profile and I logon using an XP 

I can't say i've ever seen this parameter!!!

You want this in your global section:
logon path = \\sambahost\Profiles

create a share called Profiles
[Profiles]
comment = profile share
path = /home/profiles/%u

you'll need to create the /home/profile directory and the user directories 
under it. Make sure they have the correct permissions for each user.

 Thanks so much,
 Mike Partyka

The majority of this is covered in the samba HOWTO collection.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open 
windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFB6mHOqrr+KdRYU5gRAsF7AJ999TBu+PROv2q6Jvl9O/r7hFZMNgCgtxa3
iVDorE8KhBqJ1rNSN/vYsDw=
=0e5d
-END PGP SIGNATURE-

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


[Samba] Using WMI Classes to join worksation to domain

2005-01-13 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I have been working on a Kix script to automatically change the workstation 
name and join the workstation to the domain. I have written most of the script 
(which works quite nicely) except the joining to the domain part. I have been 
using WMI classes to change the worksation name, and was hoping to do the same 
with the domain join. The workstations are WinXP.

The code i'm using is 

$objWMIService = GetObject(winmgmts: + {impersonationLevel=impersonate, 
authenticationLevel=Pkt}!\\.\root\cimv2)
$colComputers = $objWMIService.ExecQuery (Select * from Win32_ComputerSystem)
For Each $objComputer in $colComputers
$ERRH = 
$ObjComputer.joindomainorworkgroup(domainname,password,domainname\root,,1)
Next

if $ERRH  0
color r+/n
AT (2,6) [ERROR: DOMAIN JOIN FAILED -  + $ERRH + ]
exit
else
color g+/n
AT (2,6) [INFO: Workstation joined to domain LONGHILL]
sleep 2
endif

This always fails with error code 1326 (username or password invalid). However 
looking at the logs on the Samba server, it tells me that the authentication 
for user root was successful.

Is this a fundermental mistake of mine, where Samba doesn't support these WMI 
calls, or is it something I'm overlooking.

Any help would be good

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open 
windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFB5nq9qrr+KdRYU5gRAux6AJ9ukLm1ErvYR2h5NtEi9tIBCjMrKQCcC13l
JirfE+hKvk2f6MdgvpgyfKc=
=ulw8
-END PGP SIGNATURE-

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


RE: [Samba] installing printer in a logon script

2004-11-08 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 -Original Message-
 From: Tomasz Chmielewski [mailto:[EMAIL PROTECTED]
 Sent: 08 November 2004 14:40
 To: Kristyan Osborne
 Cc: [EMAIL PROTECTED]
 Subject: Re: [Samba] installing printer in a logon script
 
 
 Kristyan Osborne wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Hi,
  
  Just use Kixtart. The syntax is really easy and it just works.
  
  addprinterconnection(\\sambaserver\printername)
  setdefaultprinter(\\sambaserver\printername)
  
  really easy.
 
 Maybe it's easy, but it doesn't add any printer, so it's of no use:
 
 kixprint.kix:
 
 addprinterconnection(\\server\HP_2000C)
 setdefaultprinter(\\server\HP_2000C)
 
 
 C:\KiX c:\kixprint.kix
 17972
 C:\KiX
 
 and this is all it does.
 how can you specify printer drivers to KiX? I didn't find it 
 in manual - 
 in fact - I found only these two above commands (addprinterconnection 
 and setdefaultprinter) concernig printing (and one more to 
 remove printer).
 
You don't. As long as the drivers have been installed on the Samba server via 
the method mentioned in the Samba HOW-TO docs and in this list on numerous 
occasions. The numbers you go after the script has ran are error codes. I 
suggest you look these up in the Kixtart manual and see whats going wrong.

This is the setup i'm using at my site. I have a print server with about 15 
printers attached and over 450 workstations map to this server everyday using 
the method above. It works great!
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBj4egqrr+KdRYU5gRAoyJAJ0UXx2zmePLvmvqoavAifzESaxK/ACdE4Eq
Yx3Fzq9jrTP1BNLG3k97nN4=
=5WtY
-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] FreeBSD and subversion

2004-10-31 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 Dear Sirs!
 
 can anyone tell me how to compile subversion on FreeBSD ?
 I just want to checkout samba-4, but subversion totally refuses to 
 compile.

I would suggest looking at http://subversion.tigris.org/ as this is not a samba 
question. Refer to the FAQ on this site or join the mailing list for subverion, and 
ask your question there giving the exact errors you get.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBhOGpqrr+KdRYU5gRAmWdAJ9/mLpKqHZjLgUr8eJ5+iln0aJfrwCfZsZ5
bave8aonuqMhHFG+bPSSfK0=
=ZOzu
-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 + ldap pdc and SUS

2004-10-06 Thread Kristyan Osborne
Has anyone of you guys ever tried a setup like this?
Yes. Use NT policy editor. I have attached the policy file I use for SUS updates.

Cheers

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

RE: [Samba] Mixed Network Diagnostics

2004-09-29 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Maybe I'm naively blind, which could be the case, but I don't see any 
links to download an executable.  MS has documentation up, but where 
can I get the .exe??

http://www.petri.co.il/download_free_reskit_tools.htm

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBW0uHqrr+KdRYU5gRAmCIAJ9jOYUJh2ye1xvD++MDs4llYfR/eACgsKv7
CYNb67H/e7pC2mxnHUAvbvA=
=sVJt
-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] Desktop.ini showing up

2004-09-15 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

The desktop.ini file appears on winXP machines. It stores various settings for 
explorer windows and things. Hence if you login to a win2K machine you will see the 
desktop.ini file, as it doesn't know what to do with it

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



- -Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of rruegner
Sent: 15 September 2004 16:21
To: Shane McBride
Cc: Samba List
Subject: Re: [Samba] Desktop.ini showing up


hide files = /desktop.ini/ntuser.ini/NTUSER.*/
in the profiles share should solve this
regards

Shane McBride schrieb:

 First of all I am new to Samba. I successfully deployed Samba 3.0.6 as a PDC
 w/roaming profiles.
 
 All the workstations have a desktop.ini file that shows up on the desktop
 after joining the domain. The contents of the ini differ from workstation to
 workstation.
 
 
From my understanding this file is a supposed to be a hidden file, but it is
 
 not.
 
 Any ideas?
 
 I apologize if I have not included enough system info, such as the smb.conf.
 
 Shane
 
- -- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBSGk+qrr+KdRYU5gRAlWRAJ9svvehDeN9DgaJOG+M+eYJVTe2WwCgvrMz
E9S2J0FzYGaMb6K+HtlD09k=
=bwU7
-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] Network LookUp

2004-09-06 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I'm building a litle program to audit my samba network, by i don't
know how can get a machine name from ip. Can anybady help me?
Thanks

It depends on your setup and how you want to aquire the ip.

Assuming you want to do it from a shell. If your clients are on DHCP and you are 
updating a DNS server with the clients ips. A simple nslookup ip.add.re.ss would do 
the job.

Or if you want to do it whils someone is logged on. You can use smbstatus -S. This 
will show you user,machine name and ip addy stats.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBPJXiqrr+KdRYU5gRAvxGAJ9TH2Dze5ur6vGzL+N83DhKOaCAoQCfRCfv
IPxtTnEJhD6jyB/Yak1PMz0=
=bCrT
-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] Re: Network LookUp

2004-09-06 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Kristyan, sorry, i must be explain the situation.
I have squid and samba in the some server. With squid log, i have the
list of machines contected to the server. With this ip, i want to do a
lookup to give the machine name. I build my program in C++, with him i
audit the squid log to make the ip, but i don't have idea about the
samba api and libsmbclient api to give the samba name from ip.
Thank's again.

My best suggestion would be to use the /etc/hosts file. This file (if you have added 
the entries) will list IPs against hostnames. This will allow you to use programs like 
ping from the command line using hostnames, and you can use it to cross refernce your 
squid logs.

If you don't fancy setting up a hosts file, you could set samba up as a WINS server. 
Then you can cross reference the wins data against the squid logs.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBPNPvqrr+KdRYU5gRAn3eAKCJqRnwFsmSZWj+DEahvn+h0Ut7/wCgmxMW
NjA/eikxpHCrNoy8sleIXUM=
=Iy8f
-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] Re: Network LookUp

2004-09-06 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Kristyan, sorry, i must be explain the situation.
I have squid and samba in the some server. With squid log, i have the
list of machines contected to the server. With this ip, i want to do a
lookup to give the machine name. I build my program in C++, with him i
audit the squid log to make the ip, but i don't have idea about the
samba api and libsmbclient api to give the samba name from ip.
Thank's again.

I forgot to mention if you want to do the lookup when the client is on you can use:

smbstatus -S | grep ipaddy

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBPNWLqrr+KdRYU5gRAgqYAJ0TEW53x0JWtyruTWVgXeu5dGhgjwCgunNU
c2gqBcrCphKpscqtfOWEIcQ=
=CZop
-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] Re: Matching Group ID Numbers With Names

2004-09-02 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Or since this data is coming from winbind...

Yes I had considered that, but the assumed that the Linux OS itself still
needed standard group info for the file system, thus assumed that /etc/group is
maintained / synced by the winbind process.

The GIDs are not standard OS groups. Winbind does not touch /etc/group, its simliar to 
using an LDAP backend. The OS will resolve from whatever is in /etc/nsswitch.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBN34sqrr+KdRYU5gRAvNhAKDI+0shdN3MCxC0O6UXY6uTc542lACgtgiU
MvxBB4nt9KgS9oL4BejMifk=
=G9M2
-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 3 as pdc : Roaming profile cannot be created....win2k workstation

2004-08-28 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hiya,

A bit more info is needed. Can you send your smb.conf to have a look at.

Ta

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



- -Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of Phillip K
Sent: 28 August 2004 16:30
To: [EMAIL PROTECTED]
Subject: [Samba] Samba 3 as pdc : Roaming profile cannot be
createdwin2k workstation


I have Samba 3 running on gentoo as a pdc. I read in someone's forum
posting to try enabling acls and that didn't seem to do much good.  I
can get the computers to be added to the domain using their smb
username/passwords and when they login, the correct shares
corresponding to their users map perfectly; however, my biggest
problem is when they do login it says the following:

Windows cannot locate your roaming profile and is attempting to log
you on with your local profile. Changes to the profile will not be
propagated to the server.

DETAIL - The specified user does not exist. 

Afterwards, it says it will create a temporary profile which won't be
saved.  My guess is that the user is having trouble writing the
profile settings on the local computer.  Has anyone come across this
problem before?

thanks in advance,

Phill
- -- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBMNapqrr+KdRYU5gRAkJZAKCFCnO+Fkaf/DWKlDwkMO1KKiiHqACgw/Gu
3GK/ikra+EWhXQ0R3Tc2rZk=
=6tUF
-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] You must supply a password to make this connection - IPC$

2004-08-22 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hiya,

Does the user you are logging on the Win95 box exist on the FreeBSD box??

Ta

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



- -Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of W. D.
Sent: 22 August 2004 08:13
To: [EMAIL PROTECTED]
Subject: [Samba] You must supply a password to make this connection -
IPC$


Hi Folks,

Just installed Samba 2.2.10 on my FreeBSD 4.9 computer.

I can see the FreeBSD box on all of my Win 9x boxes, 
but when I double click on its icon, I get a rude box 
message that says something like:


You must supply a password to make this connection
Resource: \\SAMMY\IPC$


I've checked the archives and Google, and I still 
don't understand where the problem lies:
http://marc.theaimsgroup.com/?l=sambaw=2r=1s=ipc%24q=b 
http://tinyurl.com/6etgn

Here is my 'smb.conf' file:
http://www.US-Webmasters.com/Samba/smb.conf.txt

Here is the output I get from 'testparm':
http://www.US-Webmasters.com/Samba/Samba-testparm-output.txt


Can anyone see some glaring error I've made?


Thank you so kindly if you can help!!







Start Here to Find It Fast!(tm) - http://www.US-Webmasters.com/best-start-page/
$8.77 Domain Names - http://domains.us-webmasters.com/

- -- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBKIAiqrr+KdRYU5gRAqyIAJ9s7zpN4yVEVDnws4KxXNURMFIFDACdEryh
j+HL1mN9hoMVkEHlS0/RL2s=
=ec9b
-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] changing a windowsxp machine name

2004-08-22 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hiya,

You could probably get away with this:

1. remove the machines from the domain / change the name whilst you're at it ( change 
to a workgroup )
2. Reboot XP machine
3. change the machines names in the smbpasswd / /etc/passwd files
4. add machines to the domain

You should need to start/stop samba for this.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



- -Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of Greg Andrews
Sent: 22 August 2004 12:46
To: [EMAIL PROTECTED]
Subject: [Samba] changing a windowsxp machine name


Howdy All,

I need to change the machine names on about 10 machines ( winxp ) on a
samba 3.05/redhat9 network ( NO LDAP )

Am I correct in the order I have listed below to accomplish this

1. remove the machines from the domain ( change to a workgroup )
2. remove the machines from the smbpasswd file ( I can use webmin for this )
3. stop samba
4. remove the machines from /etc/passwd
5. add new machines names to /etc/passwd
6. start samba
7. add new machines to smbpasswd
8. add machines to the domain

Greg Andrews
- -- 
System Manager
RGTechnologies Pty Ltd
606 Skipton Street
Ballarat 3350
613 53363603
0417 511 731
[EMAIL PROTECTED]

- -- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFBKImCqrr+KdRYU5gRAg+iAJ9w3jAFW5aoGHoCEHqFDG9gkFg4dQCgmV4n
FxZTNcXbxyRl6vxeDaR6Ixg=
=Kfa+
-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] Re: films on Desktops and roaming profiles

2004-05-30 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hiya,

I suggest you have a read of http://us1.samba.org/samba/docs/man/howto/PolicyMgmt.html 
this should get you started.

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



- -Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Michal Kurowski
Sent: 30 May 2004 02:34
To: Adam Tauno Williams
Cc: [EMAIL PROTECTED]
Subject: [Samba] Re: films on Desktops and roaming profiles


Adam Tauno Williams [EMAIL PROTECTED] wrote:
  I'd like to ask you what do you limit Desktops syncing in case users
  put large files on them, e.g. films.
  
  Downloading / uploading such large files can generate lots of
  unnecessary traffic. Is there any kind of filtering possible ?
  Other solutions ?
 
 Via policies, just like with a Windows DC.

Could you please elaborate ?

The only thing I could find is the windows Slow network setting
supposed to disable network share checkout in case of slow network,
timeout, etc. There is a registry setting enabling enforcing slow
network for good.

Samba has got csc policy, but frankly, I do not quite get how to use
it. Could provide some clue in here ?

Thanks,

- -- 
Michal Kurowski
perl -e '$_=q#: 13_2: 12/o{: 8_4) (_4: 6/2^-2; 3;-2^\2: 5/7\_/\7: 12m m::#;
y#:#\n#;s#(\D)(\d+)#$1x$2#ge;print'

- -- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFAudGGqrr+KdRYU5gRAg9yAKCWg601eyD495IdLc0I2Wxn4peQcQCdFswN
VWlZNTV49kZtWt0ZYa5vTLg=
=PxZJ
-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] films on Desktops and roaming profiles

2004-05-29 Thread Kristyan Osborne
Hiya,
 
If these are NT4, Win2K or XP machines you can use the NT4 policy editor to limit the 
size of the profile. Once you have created the policy file you just need to put it in 
the netlogon share and all should work. I believe there are detailed notes in the 
Samba Howto collection and probably the example docs by John T.
 
Cheers
 

Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Michal Kurowski 
Sent: Sat 29/05/2004 17:21 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] films on Desktops and roaming profiles 



Hi,

I'd like to ask you what do you limit Desktops syncing in case users
put large files on them, e.g. films.

Downloading / uploading such large files can generate lots of
unnecessary traffic. Is there any kind of filtering possible ?
Other solutions ?

Cheers,

--
Michal Kurowski
perl -e '$_=q#: 13_2: 12/o{: 8_4) (_4: 6/2^-2; 3;-2^\2: 5/7\_/\7: 12m m::#;
y#:#\n#;s#(\D)(\d+)#$1x$2#ge;print'

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


-- 
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.4.tar.gz Is not available

2004-05-17 Thread Kristyan Osborne
Hiya,
 
Works fine for me.
http://us1.samba.org/samba/ftp/samba-3.0.4.tar.gz
 
Ta
--
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Tom Skeren 
Sent: Mon 17/05/2004 16:40 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] samba-3.0.4.tar.gz Is not available



What's going on?  Have you pulled it?  Like to know.   Last official
email said to use 3.0.4 as production release.

TMS III


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


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

RE: [SAMBA] and a FULL Disk

2004-03-22 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hiya,

Are you by any chance tring to copy a file bigger than 2GB???

Cheers

- -
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



- -Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of [EMAIL PROTECTED]
Sent: 21 March 2004 10:10
To: [EMAIL PROTECTED]
Subject: [SAMBA] and a FULL Disk


A beautiful good one morning, I have a problem. 
I have a Samba server that have 4 HDDs in it.
3 has a 40GB partition (reiserfs) and one has a 30GB partition with xfs.
These are approved also as 4 SHARES. If a XP Client tries to copy file on
the server comes an error message FULL DISK. The Archiv that i will copy has
many files that are bigger as 500MB, and a Volumne with max. 20GB... 
... but that cannot be ... 

Can someone help me?

- -- 
+++ NEU bei GMX und erstmalig in Deutschland: TÜV-geprüfter Virenschutz +++
100% Virenerkennung nach Wildlist. Infos: http://www.gmx.net/virenschutz

- -- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFAXqMIqrr+KdRYU5gRAu53AJ9tXNtAHP00PXmruDMdLokbX1M5+ACbBq6M
4LtKSo366Uv9SKvxUyslnRM=
=x62G
-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] Home share

2004-02-23 Thread Kristyan Osborne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hiya,

I am sending this email again as our email server died over the weekend and I'm not 
sure if I had any responses.

I want to stop students from writing .bat .exe .com .jar etc files to their w drives 
but allow staff to do so. I have the normal homes share in the smb.conf file.

I decided to put the parameter include = /usr/local/samba/lib/%G_smb.conf

I have a staff_smb.conf and a students_smb.conf file.

In these files it has just the homes share in it. The only difference is in the 
students file it has veto files for the above.

It seems to work quite nicely except, after a few minutes of being logged on, you 
loose the mapped drive to your homes share.

If you put it back to just having one conf file it works all day.

Can someone suggest where I'm going wrong or a better solution to the problem.

Cheers

- -
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

- --
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (MingW32)

iD8DBQFAOdZYqrr+KdRYU5gRAtf4AKCjgeAOfhNHHONAWjV9I+/KSgRdZACff8wY
W7DnmIwtSv2psYIzCoT+8uY=
=3EtV
-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] Home share

2004-02-20 Thread Kristyan Osborne
Hiya,

I want to stop students from writing .bat .exe .com .jar etc files to their w drives 
but allow staff to do so. I have the normal homes share in the smb.conf file.

I decided to put the parameter include = /usr/local/samba/lib/%G_smb.conf

I have a staff_smb.conf and a students_smb.conf file.

In these files it has just the homes share in it. The only difference is in the 
students file it has veto files for the above.

It seems to work quite nicely except, after a few minutes of being logged on, you 
loose the mapped drive to your homes share.

If you put it back to just having one conf file it works all day.

Can someone suggest where I'm going wrong or a better solution to the problem.

Cheers

-
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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


RE: [Samba] Hide printer icon

2004-02-19 Thread Kristyan Osborne
Hi mike,
 
If you add this gloabal variable in smb.conf it should go away.
 
disable spoolss = yes
 
hope that helps
 
Cheers
 
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Mike Stewart 
Sent: Thu 19/02/2004 12:04 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] Hide printer icon



Hi,  is there any way I can hide the printers icon/folder from the Windows 
users ?  We don't have any printers attached to the Samba server and find that it's 
confusing the users a little !

Thanks

Mike Stewart


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.592 / Virus Database: 375 - Release Date: 18/02/2004
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


-- 
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 CLIENTS TO LINUX PRINTER SERVER WITHSAMBA

2004-02-17 Thread Kristyan Osborne
I think we all have your email now??!?!!?!?!?

-
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of zynkx
Sent: 17 February 2004 15:00
To: [EMAIL PROTECTED]
Subject: [Samba] PRINTING FROM LINUX CLIENTS TO LINUX PRINTER SERVER
WITHSAMBA


hi all and thanks in advance for reading this

i have worked with samba for a while, sharing drives on
 my linux boxes and all went well until now.

now, i tried to share a printer.

1 i setup a printer in a box with cups. the printer is
working fine in that host printing everything as it is
told.

2 i tried to share the printer to:
 2.1 one windows wrokstation in the lan
 2.2 two linux boxes on the lan

with the following config file:
[global]
   workgroup = PRINTSERVER
   netbios name = NEPTUN
   server string = neptun print server
   log file = /var/log/samba/log.%m
   max log size = 50
   security = share
   encrypt passwords = yes
   socket options = TCP_NODELAY SO_RCVBUF=8192
SO_SNDBUF=8192
   printcap name = lpstat
   printing = cups
[printers]   
   comment = All Printers
   printer = hp_670C 
   path = /var/spool/samba
   browseable = no
   guest ok = yes
   writable = no
   printable = yes
   create mode = 0700
   print command = lpr -P %p -o raw %s -r
   lpq command = lpstat -o %p
   lprm command = cancel %p-%j
   use client driver = yes  

i then made the client configuration on the windows
workstation, and windows is printing well to my linux
printing server with samba. it shares drives and the
printer without any kind of problem.

the problem is that i cannot print form my linux boxes
to that shared printer...

on linux boxes i made the following

1 configured one printer queue with cups linking the
smbspool to /usr/lib/cups/backend/ 

ln -s /usr/bin/smbspool /usr/lib/cups/backend/smb

2 loaded the driver for hp 670c in cups

3 tried to print a test page and i did it successfully

now... the only thing is that i am only able to print
test pages... and i can't figure out the command line
options to print from my linux print clients to my
linux print server...

windows is doing fine though. 

other thing is that when I:

smbclient //neptun/printers

i can mount the share but it does not print.




-
Email Enviado utilizando o serviço MegaMail
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


RE: [Samba] Daylight saving

2004-02-13 Thread Kristyan Osborne
Hi,

have a look at the time offset option in the man pages.

Cheers

-
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
]On Behalf Of Tercio Ferdinando Gaudencio Filho
Sent: 13 February 2004 14:35
To: [EMAIL PROTECTED]
Subject: [Samba] Daylight saving


Hello there,

I have a samba PDC 3.0.0 running ok, but I had turned on the option Time
Server in smb.conf, to synchronize the workstations time with server. But
the workstations synchronize 1 hour less than it is. I think that the
workstations isn´t considering the daylight saving time.

I´m using the command: net time \\server /set /yes

Thank´s,

[]´s Tercio

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


RE: [Samba] SAMBA and Netware

2004-01-22 Thread Kristyan Osborne
Hmmm interesting. I suggest you read a bit more about SAMBA and what it actually does 
and what platforms you can run it on.
 
Cheers
---
Kristyan Osborne - IT Technician
Longhill High School
01273 391672/304086

-Original Message- 
From: [EMAIL PROTECTED] on behalf of helen radford 
Sent: Thu 22/01/2004 13:59 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] SAMBA and Netware



How do I download and install SAMBA on a Netware server?

Any help gratefully appreciated!

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


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

RE: [Samba] info required

2003-12-24 Thread Kristyan Osborne
Hiya,
 
Me thinks your teacher was telly porkies. Samba 3 can not act as an Active Directory. 
You can do some policies but this has to be done though an NT 4 syle policy file. ACL 
will work aslong as the underlying filesystem can support them.
 
If you want to find out how samba works, I suggest you buy a book or look at the 
Samba-HOWTO.
 
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Sahibzada Junaid Noor 
Sent: Wed 24/12/2003 22:02 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] info required



Hi,

 ok i was told by my teacher that the newer version of samba i.e. version 3 
will be a perfect clone of  active directory and it will have all the features that 
active directory domains have.

so tell me if this is true. can a samba version 3 server act like a ACTIVE 
directory based windows domain controller?

and also if u can tell me that the domain policies defined by a windows active 
directory domain controller will remain undisturbed if it is replaced by a samba 
server.

like if i was restricted from accessing the networl folder of one of my 
teacher which contains the question paper for  tomorrow exam , will i still be unable 
to access it
or the permissions will go crazy and i would be able to access it.

plz inform me more about how the concept of a active directory domain and 
permissions have been incorporated or not incorporated into the new version of samba

waiting for ur replies



  Sahibzada Junaid Noor 
  Ph   #  (+92) (051) 5950 940
  Cell #   (+92) (0333) 5223586
  Qazi plaza,Third Floor,Commerical Market,Chaklala Scheme 3,
  Rawalpindi
  Islamic Republic of Pakistan






-
Do you Yahoo!?
Yahoo! Photos - Get your photo on the big screen in Times Square
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


-- 
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.0.7 poor performance

2003-12-23 Thread Kristyan Osborne
Hiya,
 
That's like saying my washing machine is broken, how can I fix it?.
 
Can you be more specific on what the problem is. Is it a PDC or just a server. What is 
it doing, file serving or is it a print server? Do the log files indicate anything?
 
Cheers

Kristyan Osborne - IT Technician
Longhill High School
01273 391672 / 304086

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Michael McLean 
Sent: Tue 23/12/2003 15:58 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] Samba 2.0.7 poor performance



Recently I shutdown my RS6000 running AIX 4.3.3 and Samba 2.0.7 and rebooted.  
Since rebooting, the performance of the Samba server has dramatically decreased.  
Nothing has changed on the AIX box.  I recently added a Microsoft Small Business 
Server 2003 to the network.  I thought that may be the culprit.  I shutdown that 
server for a few days and the problem still exists.  Any help would be much 
appreciated.

Thanks.

Michael McLean
Director of Information Systems
D. Myers  Sons , Inc.
4311 Erdman Avenue
Baltimore, Maryland 21213
Email: [EMAIL PROTECTED]
800.367.7463 Voice
410.522.7575 Fax
Website: www.dmyers.com



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


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

RE: [Samba] Folder Redirection with NT4 Domains

2003-12-15 Thread Kristyan Osborne
Hi John,
 
I'll try and get some documentation written on how to use regedit32 to modify the 
default user profile. This is basically changing the default registry every user gets 
the first time they logon to the network. I'll put a bit of background info on the 
network and how we use shares for storing stuff. Another neat trick (which I will also 
document) is how we have changed the default saving/opening location for programs such 
as Word and Excel etc. this has been extremly helpful.
 
I'll get back to you soon.
 
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672


-Original Message- 
From: John H Terpstra [mailto:[EMAIL PROTECTED] 
Sent: Mon 15/12/2003 00:24 
To: Kristyan Osborne 
Cc: [EMAIL PROTECTED] 
Subject: RE: [Samba] Folder Redirection with NT4 Domains



On Mon, 15 Dec 2003, Kristyan Osborne wrote:

 Hi,
  The changes would be done on the network copy of the Default User
 directory under the netlogon share, rather than per machine. This is the
 method we have adopted. You could Kixtart to modify the registry on
 login for that user.

Please would you provide a little more information on how you did this for
the default user. I'm sure others would value that tidbit.

How much work have you done with KixStart? What has been your experience?

Cheers,
John T.


 Cheers

 -
 Kristyan Osborne - IT Technician
 Longhill High School
 01273 391672


   -Original Message-
   From: John H Terpstra [mailto:[EMAIL PROTECTED]
   Sent: Sun 14/12/2003 16:31
   To: Kristyan Osborne
   Cc: [EMAIL PROTECTED]
   Subject: RE: [Samba] Folder Redirection with NT4 Domains



   On Sun, 14 Dec 2003, Kristyan Osborne wrote:

Hiya,
 Redirecting My Documnets isn't a tricky one. Just right click -
properties and change the target location. This is automatically 
done in
our network by changing the location in the default profile. This is
then applied to every user when they first logon. Do you mean Local
Settings or the Application Data folder. The Applications Data 
folder is
part of the profile anyway. I cant see why you would want to copy the
Local Settings directory with your profile.

   Got that bit. Changing the default profile is the obvious answer but 
not
   what some admins want. The objection I have run into is that this 
requires
   per machine changes and for a large shop this is labour intensive.

   On Win2Kx ADS this can be done through a GPO (group policy object). 
With
   Samba the technique has to change a little to get around the lack of 
ADS
   GPO support.

   Seems that with Win2kx/XPP the use of '.reg' files does not work for 
other
   than limited local machine changes only. The result is that running 
from
   the login script:
   regedt32 /S fixup.reg
   where 'fixup.reg' contains the hive changes necessary largely does not
   work for changes other than to HKLM (HIVE_KEY_LOCAL_MACHINE). I am
   searching for insight into how other admins affect profile management
   (particularly for folder redirection) in the absence of GPOs.

   Cheers,
   John T.

   
Hope that helps
   
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672
   
  -Original Message-
  From: [EMAIL PROTECTED] on behalf of John H Terpstra
  Sent: Sun 14/12/2003 00:44
  To: [EMAIL PROTECTED]
  Cc:
  Subject: [Samba] Folder Redirection with NT4 Domains
   
   
   
  Hi,
   
  I'd like to hear off-list from anyone who is currently 
successfully using
  folder redirection with an NT4 domain controller.
   
  If you are doing this, please would help me to understand your 
secret.
  There are two ways I know of that should work, however I have 
received
  feedback from separate sources that claim problems with both 
of these
  methods

RE: [Samba] Folder Redirection with NT4 Domains

2003-12-14 Thread Kristyan Osborne
Hiya,
 
Redirecting My Documnets isn't a tricky one. Just right click - properties and change 
the target location. This is automatically done in our network by changing the 
location in the default profile. This is then applied to every user when they first 
logon. Do you mean Local Settings or the Application Data folder. The Applications 
Data folder is part of the profile anyway. I cant see why you would want to copy the 
Local Settings directory with your profile.
 
Hope that helps
 
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: [EMAIL PROTECTED] on behalf of John H Terpstra 
Sent: Sun 14/12/2003 00:44 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] Folder Redirection with NT4 Domains



Hi,

I'd like to hear off-list from anyone who is currently successfully using
folder redirection with an NT4 domain controller.

If you are doing this, please would help me to understand your secret.
There are two ways I know of that should work, however I have received
feedback from separate sources that claim problems with both of these
methods.

I would like to include in the new book Samba-3 by Example a detailed
presentation of how to reliably affect redirection of the My Documents
and Local Applications profile resources to a network share.

If you know of any site that is doing this reliably please let me know so
that it can be documented for the benefit of all. The new book will be
part of the Samba-3 CVS official documentation.

Thanks.

cheers,
John T.
--
John H Terpstra
Email: [EMAIL PROTECTED]
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


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

RE: [Samba] Folder Redirection with NT4 Domains

2003-12-14 Thread Kristyan Osborne
Hi,
 
The changes would be done on the network copy of the Default User directory under the 
netlogon share, rather than per machine. This is the method we have adopted. You could 
Kixtart to modify the registry on login for that user.
 
Cheers
 
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672


-Original Message- 
From: John H Terpstra [mailto:[EMAIL PROTECTED] 
Sent: Sun 14/12/2003 16:31 
To: Kristyan Osborne 
Cc: [EMAIL PROTECTED] 
Subject: RE: [Samba] Folder Redirection with NT4 Domains



On Sun, 14 Dec 2003, Kristyan Osborne wrote:

 Hiya,
  Redirecting My Documnets isn't a tricky one. Just right click -
 properties and change the target location. This is automatically done in
 our network by changing the location in the default profile. This is
 then applied to every user when they first logon. Do you mean Local
 Settings or the Application Data folder. The Applications Data folder is
 part of the profile anyway. I cant see why you would want to copy the
 Local Settings directory with your profile.

Got that bit. Changing the default profile is the obvious answer but not
what some admins want. The objection I have run into is that this requires
per machine changes and for a large shop this is labour intensive.

On Win2Kx ADS this can be done through a GPO (group policy object). With
Samba the technique has to change a little to get around the lack of ADS
GPO support.

Seems that with Win2kx/XPP the use of '.reg' files does not work for other
than limited local machine changes only. The result is that running from
the login script:
regedt32 /S fixup.reg
where 'fixup.reg' contains the hive changes necessary largely does not
work for changes other than to HKLM (HIVE_KEY_LOCAL_MACHINE). I am
searching for insight into how other admins affect profile management
(particularly for folder redirection) in the absence of GPOs.

Cheers,
John T.


 Hope that helps

 Cheers
 -
 Kristyan Osborne - IT Technician
 Longhill High School
 01273 391672

   -Original Message-
   From: [EMAIL PROTECTED] on behalf of John H Terpstra
   Sent: Sun 14/12/2003 00:44
   To: [EMAIL PROTECTED]
   Cc:
   Subject: [Samba] Folder Redirection with NT4 Domains



   Hi,

   I'd like to hear off-list from anyone who is currently successfully 
using
   folder redirection with an NT4 domain controller.

   If you are doing this, please would help me to understand your secret.
   There are two ways I know of that should work, however I have received
   feedback from separate sources that claim problems with both of these
   methods.

   I would like to include in the new book Samba-3 by Example a detailed
   presentation of how to reliably affect redirection of the My 
Documents
   and Local Applications profile resources to a network share.

   If you know of any site that is doing this reliably please let me know 
so
   that it can be documented for the benefit of all. The new book will be
   part of the Samba-3 CVS official documentation.

   Thanks.

   cheers,
   John T.
   --
   John H Terpstra
   Email: [EMAIL PROTECTED]
   --
   To unsubscribe from this list go to the following URL and read the
   instructions:  http://lists.samba.org/mailman/listinfo/samba




--
John H Terpstra
Email: [EMAIL PROTECTED]


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

RE: [Samba] User may Log On To These Workstations does not work

2003-12-10 Thread Kristyan Osborne
Hiya,
 
Have a look at the announce as parameter. 
http://us1.samba.org/samba/docs/man/smb.conf.5.html#ANNOUNCEAS
 
Cheers
 

Kristyan Osborne - IT Technician
Longhill High School
01273 391672/304086

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Eddie 
Sent: Wed 10/12/2003 23:09 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] User may Log On To These Workstations does not work



When I set (through UserMgr) a list of workstations onto which a specific
user may log on to, that user can no longer access the shares of any samba
domain member (the user can still access the shares of the Samba machine
acting as our PDC).  After playing around and reproducing this with another
Samba domain member, I realized that it might have to do with the fact that
Samba appears (at least in the ServerMgr) as an NT Server and not as an NT
workstation.  Thus, restricting the workstations to which a user may log
on may prevent them from logging onto the samba servers altogether.

So my questions are as follows.

1. Is there a workaround for this problem?
2. Is there a way to force Samba to present itself as a workstation and not
a server (assuming that this would fix the problem)?
3. Is this problem one that has already been identified (and is thus being
worked on)?

Thanks
--
Eddie



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


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

RE: [Samba] can't add a user to Samba with Ldap passwd backend

2003-12-02 Thread Kristyan Osborne
Looks like you haven't populated your LDAP server yrt with any objects. Have a look 
for the smbldap tools, they will get you going.
 
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: [EMAIL PROTECTED] on behalf of Wim Moons 
Sent: Tue 02/12/2003 13:51 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] can't add a user to Samba with Ldap passwd backend




Whem i want to add a user to samba, witch act as a PDC, with LDAP passwd
backend i get the following error:

Problem during LDAPsearch: No such object
Query was: , ((objectClass=sambaDomain)(sambaDomainName=TESTVGC.WIM))
pdb_init_ldapsam: WARNING: Could not get domain info, nor add one to the
domain
pdb_init_ldapsam: Continuing on regardless, will be unable to allocate new
users/groups, and will risk BDCs having inconsistant SIDs
smbldap_search_suffix: searching
for:[((uid=wim)(objectclass=sambaSamAccount))]
smbldap_search_suffix: Problem during the LDAP search:  (No such object)
smbldap_search_suffix: Query was: ,
((uid=wim)(objectclass=sambaSamAccount))
ldapsam_search_one_group: searching
for:[((objectClass=sambaGroupMapping)(gidNumber=1000))]
ldapsam_search_one_group: Problem during the LDAP search: LDAP error:  (No
such object)ldapsam_search_one_group: Query was: ,
((objectClass=sambaGroupMapping)(gidNumber=1000))
smbldap_search_suffix: searching
for:[((uid=wim)(objectclass=sambaSamAccount))]
smbldap_search_suffix: Problem during the LDAP search:  (No such object)
smbldap_search_suffix: Query was: ,
((uid=wim)(objectclass=sambaSamAccount))
Failed to add entry for user wim.
Failed to modify password entry for user wim


can somebody say me what is wrong, because I can't find any solution on the
net.

Wim

_
Volg Expeditie Robinson op de voet!
http://entertainment.msn.be/tv/expeditierobinson/

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


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

[Samba] Samba Print Server

2003-11-28 Thread Kristyan Osborne
Hiya,

Can someone explain why I am seeing  chmod of W32X86/3/PSCRIPT5.DLL failed (Operation 
not permitted) in the log files.

It is a samba 3.0.1pre3 print server, which has the drivers on it for loading to the 
clients.

Here is the log file of errors.

Thanx in advanced

Kris

[2003/11/27 16:29:15, 2] smbd/open.c:open_file(250)
  aclarke opened file W32X86/3/PSCRIPT.HLP read=Yes write=No (numopen=4)
[2003/11/27 16:29:15, 2] smbd/close.c:close_normal_file(228)
  aclarke closed file W32X86/3/PSCRIPT.HLP (numopen=3)
[2003/11/27 16:29:15, 2] smbd/open.c:open_file(250)
  aclarke opened file W32X86/3/PSCRIPT.HLP read=Yes write=No (numopen=4)
[2003/11/27 16:29:15, 2] smbd/open.c:open_file(250)
  aclarke opened file W32X86/3/PSCRIPT.NTF read=Yes write=No (numopen=5)
[2003/11/27 16:29:15, 2] smbd/close.c:close_normal_file(228)
  aclarke closed file W32X86/3/PSCRIPT.NTF (numopen=4)
[2003/11/27 16:29:15, 2] smbd/open.c:open_file(250)
  aclarke opened file W32X86/3/PSCRIPT.NTF read=Yes write=No (numopen=5)
[2003/11/27 16:29:15, 2] smbd/open.c:open_file(250)
  aclarke opened file W32X86/3/PSCRIPT5.DLL read=Yes write=No (numopen=6)
[2003/11/27 16:29:15, 2] smbd/trans2.c:call_trans2setfilepathinfo(3105)
  chmod of W32X86/3/PSCRIPT5.DLL failed (Operation not permitted)
[2003/11/27 16:29:15, 2] smbd/close.c:close_normal_file(228)
  aclarke closed file W32X86/3/PSCRIPT5.DLL (numopen=5)

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


[Samba] Samba-3.0.1pre1 and LDAP

2003-11-03 Thread Kristyan Osborne
Hiya,

I have recently upgrade samba to 3.0.1pre1 from alpha3-19. The upgrade went well with 
no real problems, except .

I have noticed today that the load on the LDAP server is extremely high. CPU usage on 
slapd is anywhere between 10%-80%. At one point to day everything came to a grinding 
halt. The only difference between I can think of is the samba upgrade. This is with an 
average load of about 300 users.

Can anyone think why samba is causing slapd to max out??

Cheers

-
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


--
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.1pre1 and LDAP

2003-11-03 Thread Kristyan Osborne
Hi Jerry

The index's I have are uid, uidNumber, gidNumber, cn, objectClass, default  eq

when I start slapd with debug level 2, I can see a lot of searches  for users and a 
hell of a lot of searches for groups. These happen virtually every second. 

Cheers

-
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



-Original Message-
From: Gerald (Jerry) Carter [mailto:[EMAIL PROTECTED]
Sent: 03 November 2003 16:58
To: Kristyan Osborne
Cc: Samba (E-mail)
Subject: Re: [Samba] Samba-3.0.1pre1 and LDAP


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Kristyan Osborne wrote:
| Hiya,
|
| I have recently upgrade samba to 3.0.1pre1 from alpha3-19. The
| upgrade went well with no real problems, except .
|
| I have noticed today that the load on the LDAP server is
| extremely high. CPU usage on slapd is anywhere between 10%-80%.
| At one point to day everything came to a grinding halt. The
| only difference between I can think of is the samba upgrade.
| This is with an average load of about 300 users.

Check you indexes on the OpenLDAP server.
Look at the searches being made.  Make sure you
are indexing the rigth attributes.

Also see the OpenLDAP FAQ (http://www.openldap.org/)
for details on tuning bdb backends.  Limit regex's
in slapd.conf ACLs as well.





cheers, jerry
~ --
~ Hewlett-Packard- http://www.hp.com
~ SAMBA Team -- http://www.samba.org
~ GnuPG Key   http://www.plainjoe.org/gpg_public.asc
~ You can never go home again, Oatman, but I guess you can shop there.
~--John Cusack - Grosse Point Blank (1997)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQE/pokBIR7qMdg1EfYRAnmRAJ93GJTyE3/PBYRVIkedA3NltsyMkwCglP/n
yiZ0S9fqpJ5U1bFFgbqof4Y=
=VOHL
-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] net groupmap modify bug

2003-10-29 Thread Kristyan Osborne
Hi,

After a successful upgrade from samba3alpha19 to samba3.0.1pre1 I am now doing the 
group mapping stage.

The problem I am having is modifying a group in the LDAP directory. I am using net 
groupmap modify ntgroup=staff unixgroup=staff type=domain.

The error it is coming up with is 
[2003/10/29 17:21:39, 2] passdb/pdb_ldap.c:ldapsam_search_one_group(1615)
  ldapsam_search_one_group: searching for:[((objectClass=posixGroup)(gidNumber=203))]
net: decode.c:500: ber_scanf: Assertion `(( ber )-ber_opts.lbo_valid==0x2)' failed.
Aborted

Is this a bug in the code or am I doing something silly??

I have attached to the bottom a level 10 debug of the net command

Cheers

-
Kristyan Osborne - IT Technician / Community Manager
Longhill High School
01273 391672 / 304086

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



[2003/10/29 17:21:39, 5] passdb/pdb_interface.c:make_pdb_methods_name(431)
  Attempting to find an passdb backend to match ldapsam:ldap://10.108.1.87 (ldapsam)
[2003/10/29 17:21:39, 5] passdb/pdb_interface.c:make_pdb_methods_name(452)
  Found pdb backend ldapsam
[2003/10/29 17:21:39, 2] lib/smbldap.c:smbldap_search_domain_info(1295)
  Searching for:[((objectClass=sambaDomain)(sambaDomainName=LONGHILL))]
[2003/10/29 17:21:39, 2] lib/smbldap.c:smbldap_search_suffix(1066)
  smbldap_search_suffix: searching 
for:[((objectClass=sambaDomain)(sambaDomainName=LONGHILL))]
[2003/10/29 17:21:39, 10] lib/smbldap.c:smbldap_open_connection(527)
  smbldap_open_connection: ldap://10.108.1.87
[2003/10/29 17:21:39, 2] lib/smbldap.c:smbldap_open_connection(623)
  smbldap_open_connection: connection opened
[2003/10/29 17:21:39, 10] lib/smbldap.c:smbldap_connect_system(750)
  ldap_connect_system: Binding to ldap server ldap://10.108.1.87 as 
cn=root,dc=longhill,dc=brighton-hove,dc=sch,dc=uk
[2003/10/29 17:21:39, 3] lib/smbldap.c:smbldap_connect_system(785)
  ldap_connect_system: succesful connection to the LDAP server
[2003/10/29 17:21:39, 4] lib/smbldap.c:smbldap_open(836)
  The LDAP server is succesful connected
[2003/10/29 17:21:39, 5] passdb/pdb_interface.c:make_pdb_methods_name(455)
  pdb backend ldapsam:ldap://10.108.1.87 has a valid init
[2003/10/29 17:21:39, 5] passdb/pdb_interface.c:make_pdb_methods_name(431)
  Attempting to find an passdb backend to match guest (guest)
[2003/10/29 17:21:39, 5] passdb/pdb_interface.c:make_pdb_methods_name(452)
  Found pdb backend guest
[2003/10/29 17:21:39, 5] passdb/pdb_interface.c:make_pdb_methods_name(455)
  pdb backend guest has a valid init
[2003/10/29 17:21:39, 2] passdb/pdb_ldap.c:ldapsam_search_one_group(1615)
  ldapsam_search_one_group: searching 
for:[((objectClass=sambaGroupMapping)(|(displayName=staff)(cn=staff)))]
[2003/10/29 17:21:39, 2] passdb/pdb_ldap.c:init_group_from_ldap(1659)
  init_group_from_ldap: Entry found for group: 203
[2003/10/29 17:21:39, 2] passdb/pdb_ldap.c:ldapsam_search_one_group(1615)
  ldapsam_search_one_group: searching 
for:[((objectClass=sambaGroupMapping)(sambaSID=S-1-5-21-3582397119-3001034316-1885025900-1407))]
[2003/10/29 17:21:39, 2] passdb/pdb_ldap.c:init_group_from_ldap(1659)
  init_group_from_ldap: Entry found for group: 203
[2003/10/29 17:21:39, 2] passdb/pdb_ldap.c:ldapsam_search_one_group(1615)
  ldapsam_search_one_group: searching for:[((objectClass=posixGroup)(gidNumber=203))]
net: decode.c:500: ber_scanf: Assertion `(( ber )-ber_opts.lbo_valid==0x2)' failed.
Aborted



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


[Samba] Strange problem with password server

2003-10-16 Thread Kristyan Osborne
Hi,

We have a samba 3alpha19 PDC with a LDAP password backend. We have several samba 
servers runnign as file servers and print servers all fetching their password auth 
from the PDC.

Most of the time clients can connect to the servers, however sometimes people can not 
connect to printers. The errors we are getting are:

[2003/10/15 13:51:50, 1] auth/auth_server.c:check_smbserver_security(259) 
  the challenge that the password server (MC095) supplied us is not the one we gave 
our client. This just can't work :-(
[2003/10/15 13:51:50, 2] auth/auth.c:check_ntlm_password(309)
  check_ntlm_password:  Authentication for user [jpither] - [jpither] FAILED with 
error NT_STATUS_LOGON_FAILURE

and

[2003/07/08 08:54:59, 0] passdb/pdb_smbpasswd.c:pdb_getsampwnam(1367)
  unable to open passdb database.
[2003/07/08 08:54:59, 0] passdb/pdb_smbpasswd.c:pdb_getsampwnam(1367)
  unable to open passdb database.
[2003/07/08 13:09:50, 0] smbd/password.c:server_cryptkey(1054)
  password server not available
[2003/07/08 13:09:59, 0] smbd/password.c:server_cryptkey(1054)
  password server not available
[2003/07/08 13:09:59, 0] passdb/pdb_smbpasswd.c:pdb_getsampwnam(1367)
  unable to open passdb database.
[2003/07/08 13:09:59, 0] passdb/pdb_smbpasswd.c:pdb_getsampwnam(1367)
  unable to open passdb database.
[2003/07/08 13:10:43, 0] smbd/password.c:server_cryptkey(1054)
  password server not available
[2003/07/08 13:10:51, 0] smbd/password.c:server_cryptkey(1054)
  password server not available
[2003/07/08 13:10:58, 0] passdb/pdb_smbpasswd.c:pdb_getsampwnam(1367)
  unable to open passdb database.
[2003/07/08 13:10:58, 0] passdb/pdb_smbpasswd.c:pdb_getsampwnam(1367)
  unable to open passdb database.
[2003/07/08 13:11:24, 0] smbd/password.c:server_cryptkey(1054)
  password server not available

any ideas???

Cheers

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


[Samba] WINS

2003-09-19 Thread Kristyan Osborne
Hi,

Is there a way of viewing the current WINS entries which samba knows about???

Thanx in advanced.

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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


[Samba] Trust domains

2003-09-09 Thread Kristyan Osborne
Hi,

I have one domain (DOMA) on a network 10.108.x.x mask 255.255.224.0 and DOMB is on 
10.251.x.x mask 255.255.224.0. These domains are connected accros a WAN. I wish to set 
up a trust relationship between the two. DOMA has a samba 3 PDC and DOMB is a WIN2K 
PDC. The problem I'm having is the Samba PDC can't see the DOMB domains PDC. I have 
set up the intertrust accounts on the samba server and if I do net rpc trustdom 
establish DOMB I get Coulnd find domain controller for domain DOMB.

If I do smbclient -L 10.251.1.1 (DOMB) I can see the PDC for DOMB. IF I do the same on 
10.108.1.1 (DOMA) I can see the PDC for DOMA.

Should each PDC have the other PDC in there workgroup list??

I would welcome any ideas on this.

Cheers

Kristyan Osborne
IT Technicain - Longhill High School
01273 391672
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


RE: [Samba] Win XP home

2003-07-11 Thread Kristyan Osborne
Hi,

Correct, XP Home will only function in a workgroup, you need XP Pro to join a domain

Cheers

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



-Original Message-
From: Davide Parise [mailto:[EMAIL PROTECTED]
Sent: 11 July 2003 10:03
To: Samba
Subject: [Samba] Win XP home


How can I join a Win XP home edition to a samba domain? It seems it support
only workgroups !!

Bye


Davide Parise
E-Mail: [EMAIL PROTECTED]
Cel.: +39 063640
FAX:  +39 06233241981


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


RE: [Samba] Question on PDC's and BDC's

2003-07-10 Thread Kristyan Osborne
Hi,

I have a samba3alpha19 PDC with an LDAP backend. The BDC is also samba3alpha19 with 
the LDAP backend. It is fairly simple to setup if you follow the instruction in the 
samba-bdc howto.

Cheers

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.



-Original Message-
From: Jason Williams [mailto:[EMAIL PROTECTED]
Sent: 09 July 2003 17:15
To: [EMAIL PROTECTED]
Subject: [Samba] Question on PDC's and BDC's


Morning everyone.

I have a question about something i've been thinking about lately.
I recently rolled out a samba server running 2.2.8a with OpenLDAP 2.0.27 on 
the backend to hold the user account info.

My question is, how many people out there are running samba as their PDC 
and have implemented a BDC as well? I'm starting to consider about putting 
up a BDC for safeties sake.

Does anyone have any suggestions or recommendations on a BDC? A good idea? 
Bad idea? What they recommend and so forth.

Lastly, does anyone know of a document or link that has statistics in a 
comparison between samba as a PDC and Windows as a PDC? Maybe for instance, 
the load level, how many users each server can support etc.

Thank you everyone.

Cheers,

Jason

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


RE: [Samba] Problems with Default user profiles.

2003-04-04 Thread Kristyan Osborne
You need to put the Default User directory in the netlogin share. Make sure it is 
readable by everyone

Cheers

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 04 April 2003 11:24
To: [EMAIL PROTECTED]
Subject: [Samba] Problems with Default user profiles.


All,

I currently have a problem where the default user profile is not being picked up - 
Windows simply ingores it and creates one based on local settings.

I understand samba supports default user profiles, and one can be put into the 
profiles share like this:

/export/profiles/Default User/

This directory contains a copy of a working profile from a proper user.
 
The relevant smb.conf sections are:

logon path = \\%L\profiles\%U
 
[profiles]
browsable = no
public = yes
path = /export/profiles
writeable = yes
csc policy = disable

Any help would be much appreciated!

Thanks,

Chris.

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


[Samba] New schema for samba

2003-04-02 Thread Kristyan Osborne
Hi,

Looking over the new schema in samba3.0alpha23, for ntGroupType should the value be NT 
Globalgroup or just global??

Cheers

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.

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


[Samba] RE: New Schema for Samba

2003-04-02 Thread Kristyan Osborne
Hi,

Maybe it was too early in the morning but I have now realised that ntGroupType is an 
integer vale and not a string. Doh!!!

So This leads me to say what are the values you need to enter for group types. 
(Hope that made sense) i.e. 0= Local or  1= Global

Cheers

-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.

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


RE: [Samba] Cdrom

2003-03-06 Thread Kristyan Osborne
Hi,
 
You need to be a little more specific. Can you see your samba server from your windows 
box. ie can you see it in network neighbourhood or if you goto start-run and type 
\\your-server
 
If you can see your server can you see the share on the server. If you can can you see 
the contents of the share?
 
 
 

-Original Message- 
From: Rodrigo Schmidt Nrmberg [mailto:[EMAIL PROTECTED] 
Sent: Thu 06/03/2003 21:56 
To: smb 
Cc: 
Subject: [Samba] Cdrom



Hi
I had a Novell Netware server, I used to mount a cd on the serer and share
this with the network.
Now with samba I can't run the softwares like I used to.
I istall the software in a client and I tell to the program that the shared
directory is the cdrom drive. With Novell it works but now with samba it no
more works.
What I need to do.

I have a samba PDC - 2.2.7a
And 70 Workstations with windows 98, login in to the Novell and Samba
servers.

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


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


RE: [Samba] smaba 3.0 - domain groups : OS info

2003-03-04 Thread Kristyan Osborne
I dont think its a OS problem, Im using suse 8.1.
 
If you log into the windows box as root you can see the groups and the users in the 
groups. Any other user including domain admins can not. This would indicate that there 
is a problem with samba, either with ACLs accessing group information or passing 
group/user information from the system to a smbd process owned by a user other than 
root.
 
Still no closer to an answer
 
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: Ken Innes [mailto:[EMAIL PROTECTED] 
Sent: Tue 04/03/2003 18:20 
To: Lukasz Tomaszewski; Kristyan Osborne; Samba Users 
Cc: 
Subject: RE: [Samba] smaba 3.0 - domain groups : OS info



I'm using Red Hat 7.3 on both the Samba 2.2.7 and 3.0 installations

-Ken

 -Original Message-
 From: ukasz Tomaszewski [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2003 11:57 AM
 To: Ken Innes; Kristyan Osborne; Samba Users
 Subject: Re: [Samba] smaba 3.0 - domain groups


 i use 'truss' to trace the system calls (nmbd proccess) after 'wbinfo -g'
 request. it returns

 ioctl(14,SIOCGIFFLAGS,0xbfbfcdc0)   = 0 (0x0)
 ioctl(14,SIOCGIFNETMASK,0xbfbfcdc0)   = 0 (0x0)
 ioctl(14,SIOCGIFADDR,0xbfbfcde0)   ERR#49 'Can't assign requested address'
 ioctl(14,SIOCGIFADDR,0xbfbfce28)   ERR#49 'Can't assign requested address'
 ioctl(14,SIOCGIFADDR,0xbfbfce70)   ERR#49 'Can't assign requested address'
 close(14)  = 0 (0x0)
 gettimeofday(0xbfbff838,0x0)= 0 (0x0)
 sigprocmask(0x2,0xbfbff760,0x0)= 0 (0x0)

 i'm going to check samba logs after 'debug level' change (higher
 than 2) in
 smb.conf .

 anyway. i was thinking that maybe its OS problem. i use FreeBSD 4.7.

 regards
 Uki

 - Original Message -
 From: Ken Innes [EMAIL PROTECTED]
 To: Kristyan Osborne [EMAIL PROTECTED]; Lukasz
 Tomaszewski [EMAIL PROTECTED]; Samba Users [EMAIL PROTECTED]
 Sent: Monday, March 03, 2003 6:07 PM
 Subject: RE: [Samba] smaba 3.0 - domain groups


  I have this problem too with Samba 3.0. I've tried security = domain and
  security = server
  (using an NT PDC) and still get the 'Error looking up domain groups.'
 error.
  My 2.2.7a Samba server does provide the groups. Anyone have any ideas
 about
  this? Its
  clearly not an entirely isolated problem!
 
  -Ken
 
  _
 
  Ken Innes
  Chief Information Officer
  EKOS Research Associates Inc.
  99 Metcalfe St., Suite 1100
  Ottawa, Ontario
  K1P 6L7
 
  www.ekos.com
 
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] Behalf
   Of Kristyan Osborne
   Sent: Monday, March 03, 2003 10:42 AM
   To: Lukasz Tomaszewski; Samba Users
   Subject: RE: [Samba] smaba 3.0 - domain groups
  
  
   Hi,
  
   I've had exactly the same problem since august 2002, after
   several emails it was not resolved so i gave up and i thought i
   would leave it until someone else (like u) had the same problem.
   Maybe then it might be answered
  
   -
   Kristyan Osborne IT Technician
   Longhill High School
   01273 391672
  
   -Original Message-
   From: Lukasz Tomaszewski [mailto:[EMAIL PROTECTED]
   Sent: 02 March 2003 19:17
   To: Samba Users
   Subject: [Samba] smaba 3.0 - domain groups
  
  
   few day ago, i've asked about mapping unix-windows groups under samba
   2.2.7a.
  
   now, i know that it is impossible. so i've changed samba on my PDC to
 3.0
   version (smbgroupedit).
  
   but still i've got problems with groups.
  
   before - from another machine when i've used 'wbinfo -g'i've got
 response
   from my PDC:
   Domain Admins
   Domain Users
  
   after change to samaba 3.0 with the same config file 'wbinfo -g'
 returns:
   Error looking up domain groups.
  
   any suggestions?
  
   regards
   Uki
  
   --
   To unsubscribe from this list go to the following URL and read the
   instructions:  http://lists.samba.org/mailman/listinfo/samba

RE: [Samba] 2gb file size limit

2003-03-04 Thread Kristyan Osborne
I think this was fixed in 2.2.7a. You will need to upgrade
 
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tue 04/03/2003 20:29 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] 2gb file size limit



What possible factors can cause a 2 gig file size limit ?  I've verified
that the underlying filesystem can handle much larger files.  I'm using
the standard samba package from Debian testing, version is 2.2.3a-12.

Please cc me on responses.  Thanks in advance !

--
Josh Litherland ([EMAIL PROTECTED])


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


[Samba] Printing

2003-03-03 Thread Kristyan Osborne
Hi guys,

Our printer server has been up for the past 2 years and we haven't had one problem.

I'm running samba 2.2.7 with lprng.

I wanted to make the printer installation on windoz 2000 boxes easier by putting the 
printer drivers on the server and using the [print$] share.

I had it all working nicely and u could just click on a printer on the print sever and 
it would install along with the drivers.
However when another user logs on to the same machine they do not see the printer. We 
are using profiles here, and my first thought was it could be saving it in my profile. 
However if I or another one of my collegues logon (Domain Admins) they can see the 
printer but no one else can (normal users).

Any suggestions???

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.

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


RE: [Samba] smaba 3.0 - domain groups

2003-03-03 Thread Kristyan Osborne
Hi,

I've had exactly the same problem since august 2002, after several emails it was not 
resolved so i gave up and i thought i would leave it until someone else (like u) had 
the same problem. Maybe then it might be answered

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

-Original Message-
From: Lukasz Tomaszewski [mailto:[EMAIL PROTECTED]
Sent: 02 March 2003 19:17
To: Samba Users
Subject: [Samba] smaba 3.0 - domain groups


few day ago, i've asked about mapping unix-windows groups under samba
2.2.7a.

now, i know that it is impossible. so i've changed samba on my PDC to 3.0
version (smbgroupedit).

but still i've got problems with groups.

before - from another machine when i've used 'wbinfo -g'i've got response
from my PDC:
Domain Admins
Domain Users

after change to samaba 3.0 with the same config file 'wbinfo -g' returns:
Error looking up domain groups.

any suggestions?

regards
Uki

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


RE: [Samba] explorer.exe crashing at login

2003-02-20 Thread Kristyan Osborne
Hi,

Reading your email, are u implying that the default user settings are updated in the 
SP3. If this is the case if you have a Default User directory under the netlogin share 
does this mean it will have to updated. If this is the case then our highly modified 
NTUSER.dat will need to be updated from SP3 then all the mods will need to be 
reapplied. Is this the case???

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Sam Hart [mailto:[EMAIL PROTECTED]]
Sent: 19 February 2003 16:54
To: Orion Poplawski
Cc: [EMAIL PROTECTED]
Subject: Re: [Samba] explorer.exe crashing at login


I don't think I'll be able to help solve your problem completely, but I 
may be able to send you in the right direction. We recently had this 
problem as well, and found that giving the users higher priviledges on 
their local client machines solved the problem (which, for our users, was 
not a desirable solution).

It turns out in our situation it had nothing to do with samba being 
configured incorrectly, but in the fact that the ntuser.* files in their 
profile directories had older (now incorrect) information in them (after 
the upgrade).

The way I had to solve it was to log in the users (non-priviledged) with 
out having their profiles roaming (so that Windows created a new profile 
for them) and then manually copy their new ntuser.* (uh... ntuser.dat, 
ntuser.dat.log and ntuser.ini, I think) files from the new profile back 
into their old profile (and then setting them back up to access their old 
profile) Doing this kludge solved the problem you are talking about in our 
system.

I am guessing (and this is just a shot in the dark) that in our case, the 
upgrade caused Winwoes (W2K) to think the domain had changed, and that 
this caused the previous profile information on the client machine to be 
lost (at least, when viewing ownership on the client machine, the user 
name was replaced with a long string of garbage).

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



RE: [Samba] still not working

2003-01-24 Thread Kristyan Osborne
Make sure you have a linux user setup, either a generic one or one for each user. if 
it's win2k/xp you will need to look at the man page for encrypted passwords.
 
Hope this helps
 
Cheers
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: Jason Kirschenmann [mailto:[EMAIL PROTECTED]] 
Sent: Fri 24/01/2003 19:27 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] still not working



Hi and sorry to bother you again,
I've been trying to get this going, and now i'm able to access my server,
but not the shares.  When i try and access a share it says, you might not
have permission, network path was not found.  As i'm going through the
diagnosis.txt, i get the same error on steps 3 and 7.  That error is
session setup failed: NT_STATUS_LOGON_FAILURE.   Once again here is my
smb.conf
[global]
netbios name = jasonsdt
guest ok = yes
log file = /var/log/samba/%m.log
load printers = yes
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE 
SO_RCVBUF=8192
SO_SNDBUF=8192
wins server = Enterprise
encrypt passwords = yes
dns proxy = no
server string = Samba Server
printing = lprng
password server = Enterprise
unix password sync = Yes
workgroup = Trinitynet
printcap name = /etc/printcap
security = domain
log level = 5

[download]
path = /home/jason/downloads
read only = No

[music]
path = /home/jason/music
read only = No

again, any help will be greatly appreciated.
thank you,
jason

_
Protect your PC - get McAfee.com VirusScan Online 
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963

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


èº{.nÇ+‰·Ÿ®‰­†+%ŠË`¢Ú-…çè–Z0ŠxD¶§v·švØ^Š{-®ç-Š‰ì†Ûiÿùb²Û,jfÚ¢¸?™¨¥™©ÿ–+-ŠwèþƦm


RE: [Samba] Strange behaviour with M$ WORD 97 under Win 2K

2003-01-24 Thread Kristyan Osborne
Check the permissions on the file under linux. also check your share in the smb.conf 
file, make sure it hasn't got writable=no etc.
 
Cheers
 

Kristyan Osborne - IT Technician
Longhill High School
01273 391672

-Original Message- 
From: Jean-Paul ARGUDO [mailto:[EMAIL PROTECTED]] 
Sent: Fri 24/01/2003 13:45 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] Strange behaviour with M$ WORD 97 under Win 2K



Hi all,

I searched thru excellent http://marc.theaimsgroup.com/?l=sambar=1w=2
(samba ML archive...) answer to my questions.
I asked Google too.

Both doesnt know about my problem. That's why I finaly decided to polute
samba ML :-(

Here's the environment: a Linux Box under Debian Woody (stable, nothing
compiled by hand EXCEPT KERNEL (aacraid issue..)):

master:~# uname -a
Linux master 2.4.20 #2 SMP Mon Dec 2 18:49:26 CET 2002 i686 unknown

master:~# smbd -V
Version 2.2.3a-12 for Debian

The server is a DELL PowerEdge 1650 with Raid Mirror on two 18Gb disks.

Clients : DELL Inspiron 4150 under windows 2000 SP2
   M$ OFFICE 97 (Word, Excel only)
   M$ EURO PATCH applied (fonts with EURO symbol...)
   
All works fine with Samba except:

(1) profile and netlogon directories are stil in user homes. *I KNOW* I
have to re-read the samba howto collection, the soluce is in. Will be
fixed in a few. I already have netlogon ant profile shares enabled, but
client just dont use it ... You'll see this in my smb.conf above...

(2) _the real topic of this mail_ :

My users work with M$ Office 97, Word and Excel, only.

With Word 97, frequently, when a user tries to open a file in the
public share (see smb.conf above), he has a message telling him he is
on READ ONLY mode.

With smbstatus, I clearly see the user is on RDONLY mode on this file.

The problem is that nobody is using this file |-( except him.

I really suspect Word 97 (client side then) to be the origin of the
problem. I noticed Word 97 creates a temp file on opening, It is surely
used to notice others users the file is accessed?.. *but* when the file
is opened, this temp file isn't there?..

So?? Whats up??? Why a such message? really Dunno.

I think I'll have to dig around samba caching issue? or any timeout issue??

I'll really be glad if you could help me in any way. Thanks a lot!

Here's smb.conf, where you'll notice I disabled oplocks, because of data
corruption (filled a report in samba's bugtrack a month ago) with
excel/word files...  :

[global]
netbios name=MASTER
workgroup=CPTA
security=user
encrypt passwords=Yes

domain logons=yes
logon script=logon.bat

os level=64
domain master=yes
local master=yes
preferred master=yes
wins support = yes
name resolve order = wins hosts lmhosts bcast
oplocks=no

#interfaces=127.0.0.1 eth0
#bind interfaces only=Yes
#invalid users=root

hosts allow=192.168.0. 192.168.1.

log level=1

#guest account=nobody
printer driver file=/home/public/driver/printers.def
server string=Controleur du domaine CPTA

[netlogon] --dunno why unused :-( RTFM: Samba HOWTO Collection
path=/var/samba/netlogon
read only=yes
public=no

[profiles] --dunno why unused :-( RTFM: Samba HOWTO Collection
path=/var/samba/profiles
read only=no
create mask = 0600
directory mask = 0700


[homes]
browseable=No
writeable=Yes
guest ok=no
comment=Repertoire personnel  --means personal home in fr
create mask = 0600
directory mask = 0700
valid users = %S

[public]   --share where read only word issues occurs
path=/home/public
browseable=Yes
writeable=Yes
guest ok=yes
read only=no -- redundant with writeable=yes, I know :-)
force user=nobody
comment=Repertoire commun   --means public home in fr

[pdf]
path=/tmp
printable=yes
guest ok=yes
print command=/usr/bin/printpdf %s
lpq command=
lprm command

[Samba] Repeated Questions

2003-01-21 Thread Kristyan Osborne
Hi,
 
Many of you are wondering why your questions do not get answered. This is because I 
expect your question has been asked hundreds of times before in the past and people 
are fed up of answering the same question.
 
Before you post you should look at the searchable archives to see if your question has 
already been answered:
 
http://marc.theaimsgroup.com/
 
and samba documentation (alot can be found in the source dist.)
 
http://us1.samba.org/samba/docs/
 
Cheers
 
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672
èº{.nÇ+‰·Ÿ®‰­†+%ŠË`¢Ú-…çè–Z0ŠxD¶§v·švØ^Š{-®ç-Š‰ì†Ûiÿùb²Û,jfÚ¢¸?™¨¥™©ÿ–+-ŠwèþƦm


RE: [Samba] Second Posting! Please reply - Need HELP!!

2003-01-21 Thread Kristyan Osborne
I like this, I'm going to keep it as an example of what not to send to a mailing list 
:-)

-Original Message- 
From: issue qad [mailto:[EMAIL PROTECTED]] 
Sent: Mon 20/01/2003 16:52 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] Second Posting! Please reply - Need HELP!!



I am first time SAMBA user. System information:
Unix = HP-UX 11.0
Network = Windows 2000

Things that I did:
1)  Logged into our test unix box as “root”. Created a
directory “samba” underneath “/home/root”.
2)  Went to samba website and downloaded
“samba-2.2.7a.tar.gz” onto my “C:\” (my desktop). I am
aware that the latest “How to” book in its
“Installation section asks me to use command “wget
http://us1.samba.org/samba/ftp/samba-2.2.7a.tar.gz”
from my unix prompt, but unfortunately “wget” does not
work on my unix box.
3)  FTP the “samba-2.2.7a.tar.gz” to test unix box in
binary mode.
4)  Used “gunzip samba-2.2.7a.tar.gz”
5)  Next step would be to verify Samba’s PGP signature.
But again, unfortunately, “gpg” command does not work
on my machine, so had to proceed further without
verification. Should I have used a different approach
for this verification?
6)  Used “cd /tmp”. Then did “tar xf
/home/root/samba/samba-2.2.7a.tar”. This did create
the directory “samba-2.2.7a” underneath “/tmp” and
with all the other folders and files underneath
“samba-2.2.7a”
7)  Then went back to
“/samba/ftp/Binary_Packages/hp/samba-2.2.7a” website
and downloaded the HP-UX depot
“samba_2.2.7a_HPUX_withwinbind.depot.gz” onto my “C:\”
and then FTP’ed that over to test unix box in
underneath “/tmp” directory in binary mode.
8)  Then used “swinstall –s
/tmp/samba_2.2.7a_HPUX_withwinbind.depot.gz Samba”.
9)  Then used “/sbin/init.d/samba start” to start smbd
and nmbd.
10) Then edited my “/etc/nsswitch.conf” to add
“passwd: files winbind
grouyp: files winbind”
11) I think I am also supposed to do some setup in
“/etc/pam.d”, but this file never got created. It does
not exist.
12) Used “/usr/local/samba/bin/smpasswd –j mydomain –r
mypdc –U administrator”. This joined the unix server
to “mydomain”. But also gave the error message about
“Unicode_map.850” and “Unicode_map.ISO8559” didn’t
exist underneath “codepages” directory. I know that I
do have “CP850.txt” and “CPIS8559.txt” files, but I
was not able to create those binary Unicode files
because I do not have the right “make_unicodemap”
excecutable. Can someone help me with this? I have
“make_unicodemap.c” executable but that seems be
taking input file in format “unicode_def.850”, which I
do not have. But note that I was able to Join to
mydomain.
13) When I looked at “/usr/local/samba/log.smbd” and
“log.nmbd” files they had the same error message of
above two Unicode files not existing. But those two
processes “smbd and nmbd” start properly and I can see
them running on the box.
14) Then copied libnss_winbind.so to “/lib” and
pam_winbind.so to /lib/security.
15) I copied
“/tmp/samba-2.2.7a/examples/simple/smb.conf” to
/usr/local/samba/lib. I edited this file to add
following into [global]:
Winbind separator = +
Winbind cache time = 10
Template shell = /bin/bash
Template homedir = /home/%D/%U
Winbind uid = 1-2
Winbind gid = 1-2
Workgroup = mydomain
Security = domain
Password server = *
Encrypt passwords = yes
16)  Then I start “winbind daemon” by using
“/usr/local/samba/bin/winbindd –s
/usr/local/samba/lib/smb.conf”.
17) And bingo, I was able to achieve my objective of
able to access Unix files from my “windows explorer”
underneath “Network neighbourhood”.
18) Now my problem begins. I tried to get fancy and
wanted to add some more directories that users can
access from Windows explorer. So I went ahead and
edited “/usr/local/samba/lib/smb.conf” for those
directories. Now I needed “winbindd” to see these
changes. But I did not how/from where to use “SIGHUP”
  

[Samba] net command

2003-01-20 Thread Kristyan Osborne
Hi,
 
You can use the command net rpc shutdown -S machine name to remotly shutdown a PC. 
Is it possible to, or could it possibly be a future upgrade to have a comma separated 
list of machines so that you can shutdown several machines at one time. Ie at the end 
of the day to shutdown PC's in a particular classroom?
 
What are your thoughts??
 
 
Cheers
 
-
Kristyan Osborne - IT Technician
Longhill High School
01273 391672
 
N‹§²æìr¸›yúèšØb²X¬¶
-¢Ø^~‰e£§DKjwky§m…觲ÚîrبžÈm¶Ÿÿ–+-²Æ¦mª+ƒùšŠYšŸùb²Ø§~ìjfÚ


RE: [Samba] Re: SMB+LDAP Question ...

2003-01-16 Thread Kristyan Osborne
it sound like to me you need in your smb.conf file

ldap machine suffix = ou=computers,dc=blah blah 

ou is what ever you called your unit for storing computers. it may be users.


cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Thomas Nilsen [mailto:[EMAIL PROTECTED]]
Sent: 15 January 2003 21:13
To: [EMAIL PROTECTED]
Subject: [Samba] Re: SMB+LDAP Question ...


I'd like to trow myself into the same disussion...

I'm also trying to get Samba 2.2.7 working from LDAP. So far I can see the
users/groups in LDAP, but there is not way I am able to get W2K Pro machines
to join the domain. Every time it comes up with a ...The account used is a
computer account when trying to join the domain. The machine account is
actually created in the LDAP tree, but for some reason the process does not
finish. I'm at a loss as to why this is. I'm using add user script =
/usr/local/bin/smbldap-useradd.pl -w %u

I've looked around on the samba mailinglists etc, but I've so far been
unable to find a solution to this problem...

Regards,

Thomas
C.Lee Taylor [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Greetings ...

 I have a quick question, which I hope will get a straight and quick
answer.

 I am moving my system from flat files to LDAP.  I have had my users in
 LDAP for a while, but then found that my computer accounts for Win2K in
 still in passwd. My question is, what are the bare minume LDAP attribs
 that I need for them to contiune to work?




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



RE: [Samba] oot: reply-to

2003-01-08 Thread Kristyan Osborne
if you reply to all it will go to the sender and cc to the list

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Beast [mailto:[EMAIL PROTECTED]]
Sent: 08 January 2003 17:32
To: [EMAIL PROTECTED]
Subject: [Samba] oot: reply-to


Hello,

I'm just subcribe this list and it seems when replying to mail from this
list, reply goes to sender instead of the list (whic is little bit annoying). 
is it by default or my mail client did not handle it properly?
tks.



-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
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 PDC and Active direcory

2003-01-02 Thread Kristyan Osborne
Samba 3 will not act as an active directory server. You need to use a win2k server for 
that.

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Alex Pita [mailto:[EMAIL PROTECTED]]
Sent: 27 December 2002 09:18
To: [EMAIL PROTECTED]
Subject: [Samba] Samba 3.0 PDC and Active direcory


Hello all,

I'm using samba 2.2.7a acting as PDC on my lan (clients are only Windows 
2000 Professional). All is working fine except one thing: Active Directory!

I read the documentation and i saw that samba 3.0alpa21 it has support 
for Active directory. I downloaded this version and before start i read 
the docs. It seems to be not what i am looking for. I said this because 
for ADS support, is required the following pieces:

Windows 2000 Server
^^^
Samba 3.0
Kerberos5
OpenLdap

So, the conclusion is only one: I still required a Windows 2000 Server 
Platform. I suppose because Samba will connect to W2k Server and import 
from there Active directory policy.

What i want is to use ONLY Windows 2000 Professional (for clients) and a 
Linux box for Sammba PDC and ADS. If W2k server is still required in 
this case the Linux and Samba become UNUSEFULL (because all things can 
be done using W2k server platform not only ADS policy)

Can somebody tell me if exist any schema to support ADS on Samba without 
using a W2k Server?

For example:

In samba - netlogon i have a script which sincronize time between Samba 
server and W2k clients. Without ADS support is necessary to login on 
each W2k client OS and add using Local Security Policy Editor each 
particular settings for an user from my domain which want to connect to 
this station (Time settings is allowed by default only for power users, 
or if i add a new group with some particular settings). This thing is 
verry difficult to implement if i have more then 2-3 client stations in 
my LAN.

Can anybody tell me how can i do this job? I need to implement one 
global policy which will be applied (imported) to all stations located 
in my LAN.

Thanks in advance for your help,

Regards,
Alex


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



RE: [Samba] printer accounting

2002-12-28 Thread Kristyan Osborne
Hi,
 
have a look at http://www.longhill.brighton-hove.sch.uk/dcode/
click on print accounting
 
I haven't finished writing it yet. Ill do it when i go back to work on the 2nd/Jan.
 
Cheers

-Original Message- 
From: bo wang [mailto:[EMAIL PROTECTED]] 
Sent: Sat 28/12/2002 08:43 
To: [EMAIL PROTECTED] 
Cc: 
Subject: [Samba] printer accounting



Hello,
Thank you very much for your helps,
I have resolved the problem of ICMP
Destination Unrechable! Now the linux
server with samba serves as a file server
and printer server in my lab, that is great!
Now I have another task, I am asked to
find a way to do the printer accouting (who
prints how many pages during a certian period)
but I haven't yet find a good method to do that.
Please give me some suggestions.
Thank you very much!

-
WANG Bo
Institute of Mobile Communication
Southwest Jiaotong University
P.R.C
--

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


¢éì¹»®Þ~º¶¬–+-‚‹h¶Ÿ¢YhÂ)àQڝÚÞiÛaz)춻œ¶*'²m§ÿåŠËl±©›jŠàþf¢–f§þX¬¶)ߣû™¶


RE: [Samba] can we map windows folder onto unix

2002-12-11 Thread Kristyan Osborne
Hi,

look at apache for your web server http://www.apache.org

To map windows dir to linux you need to share the directory and use smbmount (part of 
samba)

Some docs to help you http://us1.samba.org/samba/docs/man/smbmount.8.html

cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Kailash Kayastha [mailto:[EMAIL PROTECTED]]
Sent: 11 December 2002 15:25
To: '[EMAIL PROTECTED]'
Subject: [Samba] can we map windows folder onto unix


Hello,
Does anyone on this list know of any utilities that enables mapping windows
folder onto Unix machine? I am going to do the migration of our intranet
site from IIS to Apache in Linux. As the intranet content is over 15Gig, I
need to migrate in a phase wise manner. So if I can run web server on linux
serving the files from the old intranet box, this would help. Any ideas are
welcome.
Thanks,
Kailash
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] samba 3 cvs

2002-12-02 Thread Kristyan Osborne
hi,

we are running samba 3 on our PDC with ldap support. The version we are running is 
samba 3 cvs from 28/10.

Today we updated it to cvs from today. When I log on (domain admin user) i can no 
longer change the time or install programs.
I take it this must be a bug as it worked in the cvs from 28/10. From this we have 
stuck to the 28/10 version.

Hop this can be some help.

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.

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



[Samba] Samba 3 as BDC

2002-11-20 Thread Kristyan Osborne
Hi,

I was wondering what is the current state of play with samba 3 being a BDC?? Is there 
any documentation anywhere?

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.

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



[Samba] Time updating

2002-10-29 Thread Kristyan Osborne
Hi,

I'm running samba 3 cvs from yesterday as a PDC. I have noticed that the windows 2000 
clients are not updating their time when the computer starts up. The error in event 
viewer under time service is something like it could not update with the PDC try 
running w32tm /s manually. When you do you get the message RPC to local server 
returned 0x0. Is this a bug or something misconfigured?

Could anyone suggest something???

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.

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



RE: [Samba] Mailing list.

2002-10-23 Thread Kristyan Osborne
What does it say at the bottom of this email and everyone posted from the mailing list 
to you

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Joe E. Fieck [mailto:JEFieck;bluepumpkin.com]
Sent: 22 October 2002 22:57
To: [EMAIL PROTECTED]
Subject: [Samba] Mailing list.


  Forgive the wide distribution but I deleted the instructions for getting
off the Samba mailing list.  Can someone please forward them to me.
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
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-10-02 Thread Kristyan Osborne

Hi,

With the My Documents problem, I have pointed the My Documents folder to my home 
drive. If you right click on My Documents and hit properties you can change the target.

Your second problem with desktop.ini and thumbs.db are files created by XP. You could 
put these files in the veto list under the share. look at veto in the man pages.

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: mark boylan [mailto:[EMAIL PROTECTED]]
Sent: 02 October 2002 05:04
To: [EMAIL PROTECTED]
Subject: [Samba] Profiles



Hi.

I'm new to the list and I hope I'm not boring anyone with old news.  I did 
grep through the archives and I came up dry.  I have two problems that I'm 
trying to solve.

The first problem is that some of my users have My Documents folders that 
are measured in tonnage.  How can I make Windows not save this directory?  I 
believe that the fault is with windows because whenever I change anything to 
prevent it from saving, windows barks a warning.  I don't want these files 
on my server, and my laptop users are crying because it takes so long to 
shut down.

The second problem is thumbs.db  desktop.ini. I believe these are produced 
by windows explorer and are usually hidden/system files or something.  Well, 
when they're copied back to the workstation from the profile it seems that 
they lose their magical properties.  I'd like to get these to work properly. 
  Everyone keeps complaining about desktop icons averywhere and the art 
director always has to select thumbnail view on every directory.

Again, I apologize if this is covered ground, but I did search though the 
archives, and Samba Unleashed isn't being very forthcoming.

Thanks

- Mark






_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx

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



[Samba] 2GB Limit

2002-10-02 Thread Kristyan Osborne

Hi,
 
I've looked though the archives but i've only found stuff on smbfs.
 
What is the deal with the 2GB limit. I have a NT box do a backup though windows backup 
to a samba share (samba 2.2.5 on SUSE 7.1 kernel 2.4.18). When it gets to 2GB it stops 
and won't go any further.
 
Is this a problem with samba, windows or the kernel??.
 
Cheers
 
--
Kristyan Osborne - IT Technicain
Longhill High School
01273 391672
¢éì¹»®Þ~º¶¬–+-‚‹h¶Ÿ¢YhÂ)àQڝÚÞiÛaz)춻œ¶*'²m§ÿåŠËl±©›jŠàþf¢–f§þX¬¶)ߣû™¶


RE: [Samba] Profiles and local profile copy

2002-09-24 Thread Kristyan Osborne

Hi,

Use poledit and set a profile limit of say 10MB. It comes in the resource kit i think.

Cheers

Kris

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Aton [mailto:[EMAIL PROTECTED]]
Sent: 23 September 2002 23:03
To: [EMAIL PROTECTED]
Subject: [Samba] Profiles and local profile copy


Hello.

Whenever I attach a 2000 Pro workstation to a Samba server, a directory is created 
under the user's home directory called profile, and the local profile syncs with 
this directory. Its not usually bothersome until someone leaves 2 GIG of data on their 
desktop and when they logoff, Windows syncs the entire 2 GIG of data to the server. 
How do I disable this? Attaching a 2000 Pro machine to a 2000 server doesn't yeild the 
same results, you have to explicitly turn on remote profiles. 

Thanks alot!

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

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.384 / Virus Database: 216 - Release Date: 21/08/2002
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.384 / Virus Database: 216 - Release Date: 21/08/2002
 
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] Path is too deep

2002-09-23 Thread Kristyan Osborne

Hi,

Has anyone any idea why when i'm trying to copy a file to a samba share it takes a 
long time and finally says 'Path is too deep'?

Thanks for any suggestions


-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.384 / Virus Database: 216 - Release Date: 21/08/2002
 
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



RE: [Samba] samba fileserver

2002-05-23 Thread Kristyan Osborne

you will have to recompile samba with the option --with-quota so that users can see 
their quota on a windoz box. As for configuration to smb.conf non is needed.

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Dar [mailto:[EMAIL PROTECTED]]
Sent: 23 May 2002 14:16
To: [EMAIL PROTECTED]
Subject: [Samba] samba fileserver


Hi,
I am running samba as pdc on my network, now i want to configure it as a fileserver 
with 50Mb quota for each user. Do let me know do i have to add a new share or wot 
changes do i hav to make in my configuration file.

Thanks

Dar.



--
Go Net

The right way to go ...

http://www.go.net.pk




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

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



RE: [Samba] Re: Will/Can Exchange Server run with a samba pdc?

2002-05-21 Thread Kristyan Osborne

One suggestion would be to create a domain called mail on a nt4 pdc and have exhcange 
running of that. Then have a samba domain for the rest of your machines. That is sort 
of what we've done here, and it works fine.

Cheers

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


-Original Message-
From: Stephen Moore [mailto:[EMAIL PROTECTED]]
Sent: 21 May 2002 07:16
To: samba
Subject: [Samba] Re: Will/Can Exchange Server run with a samba pdc?


Well,

Lacking any feedback, we had to assume we were on a loser here and we 
bought the old winnt4 pdc back online.

We now have two domains, the original winnt4 domain and the new samba 
domain, since we had to rename one domain we renaimed the samba one. We 
now have the bulk of our clients hanging off the new domain and our 
exchange server hanging off the old domain.

I will proberbly suck it and see if I can get a exchange server working 
on the new domain then try to migrate mailboxes, but what the hell I may 
just let that system rot.

We had a lot of fun doing the conversion, didn't get the logon 
home/drive/path just right and crashed our winnt clients badly (on 
logon). We didn't try to migrate our passwords, just re-entered them 
(then changed the domain twice). So Our basic windows clients went 
fairly well. We lost our winnt4 desktops profiles in the domain 
conversion, but we only had a few of those (five).

We are going to Windows XP home on the basic desktop. These clients were 
a non-event and have so far just worked. Haven't bought and winxp pro 
clients, I just can't see why (we don't need dual processor on the 
desktop and really don't need the domain structure either)

Well, I like free software, so I think the excercise was worth it. The 
users don't care. And the management really don't care either, saving a 
few bucks is ok but then theres the time and support issues.

Cheers


Stephen Moore wrote:

 Having read the list, it seems that exchange _should_ work, but may 
 need to be reinstalled

 Could some *please* confirm that exchange 5.5 does work with samba 2.2.4.

 Cheers

 Stephen Moore wrote:

 Its not for us.

 We migrated from our nt4 pdc to samba pdc last night with good 
 outcomes as far as our clients but our exchange server no longer works.

 It failed initially as we did not have the log on as a service user 
 (not strictly true, we had administrator but it didn't work for some 
 reason)

 After we got a working  service user then got service specific error 
 4021

 This in theory is corrected by q170810 run isinteg -patch

 Running this gives us ds_e_insufficient_access_rights









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

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



[Samba] VFS

2002-05-15 Thread Kristyan Osborne

Is there any documentation about VFS anywhere?

-
Kristyan Osborne IT Technician
Longhill High School
01273 391672

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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



[Samba] File systems

2002-04-24 Thread Kristyan Osborne

Hi,

I know this is a little of topic, but I want people ideas and opinions.

I currently have a samba server with approx 1300 users. During the summer I am going 
to upgrade this server as its been up for about 5 years. At the moment it has an ext2 
file system for the drives containing peoples work, etc. I was wondering if people can 
suggest a better file system to use than ext2 as I believe this is getting dated (but 
stable).

Cheers

-
Kristyan Osborne IT Assistant Manager
Longhill High School

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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



[Samba] Samba as BDC

2002-04-19 Thread Kristyan Osborne

Hi,

Is it possible to make samba act as a BDC yet??

Cheers

-
Kristyan Osborne IT Assistant Manager
Longhill High School

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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



[Samba] Samba 3.0 No user accounts

2002-04-10 Thread Kristyan Osborne

Hi,

After reading the notes on Samba 3.0, I noticed that it said unix user accounts do not 
have to be created, as samba can handle that. Did I read this correctly? If so does 
anyone have any details on how this is going to work.

Cheers

-
Kristyan Osborne IT Assistant Manager
Longhill High School

--
Computers are like airconditioners: They stop working properly if you open windows.
Win95:   A 32-bit patch for a 16-bit GUI shell running on top of an
 8-bit operating system written for a 4-bit processor by a
 2-bit company who cannot stand 1 bit of competition.


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