Displaying 20 results from an estimated 2000 matches similar to: "Share names causing big troubles"
2002 Jun 11
2
Strange problem with samba
Hi,
I was using samba 2.0.7 veersion for a while without any problem. This
morning, suddenly, many windows (nt/98) cannot connect the samba server
on our Linux (RedHat 6.2) server. Then, I downloaded the version 2.2.4,
extracted, configure it, make, make install according to the document.
Then I test it by running
./testparm
it lists all of shared folders. Then, I run
./smbclient -L
2002 Oct 15
4
win2000 and samba
Hi,
We have a samba server 2.2.4 in a RH 6.2 Linux system. I should say that
the samba server is working well except for a win2000 workstation. For
this win2000, the user can mount network drive to the samba server, e.g.
H: to \\sambaserver\username, it asks the password, if entered correctly.
it is connected. No problem at all. However, if the user reboots the
win2000, the poblem comes.
2017 Sep 19
2
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
On Tue, 19 Sep 2017 13:13:45 -0700
Jamie McParland via samba <samba at lists.samba.org> wrote:
> Thanks for everyone chiming in on my problem. I really do appreciate
> it.
>
> Just to clarify, I’m working on a share called Edwards_Public. I’m
> trying to get it so the members of the AD group called
> do_superintendent are the only people able to read and write any
>
2017 Sep 19
3
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
Hai,
I've just read you howto, and its a very good start point.
You may have to correct a few small things there, but imo pretty good yes.
This :
> chown root."domain admins" /SHAREPATH
Is/should not needed.
setacl -m g:"domain admins":rwx,g:"domain users":rx /SHARELOCALPATH
^^^^^^ you did mean setfacl ?
But same, yes it works, and better then above, but
2003 Dec 17
1
RH8 Packages
The samba 3.0.1 RPM for RH 8.0 seems to require two different openssl
packages. It requires libssl.so.4 and libcrypto.so.2. The first is in
openssl 0.9.7 and the second in openssl 0.9.6. Am I missing something?
Which versions of those shared libs are actually required?
--
Matt McParland
2017 Sep 18
1
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
We’ve just recently moved over to Samba 4. It looks as if “force directory
security mode” doesn’t work in samba 4. So I’m trying to setup the Windows
ACLs on our groups share.
I’ve been working on this for a few days. I’ve read over the docs, it seems
like all the google links are purple and I’m still stuck. Hopefully someone
here will have an idea.
We’re running Windows 2008R2 for our AD
2017 Sep 19
3
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
>From your Global config I see no IDMAP settings. You need that for Linux to
recognize your ad users.
See my blog top post for example: Monklinux.blogspot.com
Try my configuration, should work perfectly. Soz 4 short reply, typing on
phone.
Lemme know if it works. Note, pay attention to section under installing
samba.
On Sep 19, 2017 22:19, "Jamie McParland via samba" <samba at
2017 Sep 19
0
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
Thanks for everyone chiming in on my problem. I really do appreciate it.
Just to clarify, I’m working on a share called Edwards_Public. I’m trying
to get it so the members of the AD group called do_superintendent are the
only people able to read and write any files in that directory.
Here is my global config:
workgroup = NSD
client signing = yes
client use spnego = yes
kerberos method = secrets
1999 Apr 27
1
An even more strange win95 browsing problem
Hi,
I posted a few messages a couple of days ago about a strange windows 95
browsing problem with samba-2.0.2, 1.9.17p4 that none of our Windows 95
users can see our Linux shares, but all NT users can see the Linux
shares, and all 95 and NT users can see AIX shares. All of our Linux
and AIX use the save version of samba (I tested 2.0.2 and 1.9.17p4).
Yesterday, I tried to down grade the version
1997 Jul 25
2
CD rom / linux
hongwei@morpheus.wustl.edu said :
>I have a question about cd-rom for linux system. Although it is not
>related to samba directly, I believe many people in this group are
>expert about linux and may give me correct answer. I am going to
>buy a pc to install linux (the most recent slackware one). My
>question is: do I need a scsi cd-rom drive to install and run linux
The more
2011 Feb 22
5
"aggregate" in R
Hi, R users,
I'm wondering how I can aggregate data in R with different functions for
different columns. For example:
x<-rep(1:5,3)
y<-cbind(x,a=1:15,b=21:35)
y<-data.frame(y)
I want to aggregate "a" and "b" in y by "x". With "a", I want to use
function "mean"; with "b", I want to use function "sum". I tried:
2009 Nov 27
2
set condition in R
Hi, R users,
I'm using while() in R to set a condition. My condition is: i<523 or i>535.
How should I write this in R? I try "while (i<523 or i>535)" and it does not
work. Thanks.
Garry
On Tue, Nov 10, 2009 at 11:26 AM, Hongwei Dong <pdxdong@gmail.com> wrote:
> Exactly! Thanks, Duncan.
>
> Let me re-phrase me question like this:
>
> 1) X_i values
2017 Sep 19
0
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
Why not set your permissions from the windows server via security tab on
folder properties?
I set up mine the following way:
smb.conf allows domain admins and domain users full RWX access to share
(actual access controlled via ACLs)
share perms on linux box
chown root."domain admins" /SHAREPATH
setacl -m g:"domain admins":rwx,g:"domain users":rx /SHARELOCALPATH
2017 Sep 19
0
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
Yes, I’m using sssd.
> On Sep 19, 2017, at 1:33 PM, Rowland Penny <rpenny at samba.org> wrote:
>
> On Tue, 19 Sep 2017 13:13:45 -0700
> Jamie McParland via samba <samba at lists.samba.org> wrote:
>
>> Thanks for everyone chiming in on my problem. I really do appreciate
>> it.
>>
>> Just to clarify, I’m working on a share called Edwards_Public.
2010 Jan 20
2
Question about many-to-one merge
I have spent a whole afternoon searching for the solution, but got nothing so
far. It should be a simple problem.
I have two datasets to merge. The first one just contains two ID columns and
it looks like:
FromID ToID
1 2
1 3
2 1
2 3
3 1
3 2
The second one contains a ID column and a variable:
ID X
1 100
2 150
3
2011 Feb 22
4
identify an element in a column
Hi, R users,
I'm wondering if I can identify an element in a column by an element in
another column. For example:
x<-1:10
y<-11:20
z<-cbind(x,y)
z
x y
[1,] 1 11
[2,] 2 12
[3,] 3 13
[4,] 4 14
[5,] 5 15
[6,] 6 16
[7,] 7 17
[8,] 8 18
[9,] 9 19
[10,] 10 20
What I want to do is: when x=5, y=y-1
Anyone can tell me how to do this? Thanks.
Gary
[[alternative
2000 Jun 26
4
New version vorb_enc.dll
Hi all,
I've just posted another version of vorb_enc.dll (w/source code) at
http://xtractor.sourceforge.net/vorbdll-20000626.zip
It will still work as a drop-in replacement for bladeenc.dll (just rename
the files that your ripper creates from MP3 to OGG), but will also accept
info for the ogg comment header in the vorb struct in the format union of
the BE_CONFIG struct. I'll be
2010 Oct 16
3
reduce the size of points in plot???
Hi, R users,
Can anyone tell me how I can change the size of points in my plot?
For example:
x <- c(1,3,6,9,12)
y <- c(1.5,2,7,8,15)
plot(x,y,pch=20)
How do I reduce the size of those points?
Thanks.
Gary
[[alternative HTML version deleted]]
2003 Jul 10
6
Channel Bank configuration
Hello,
I don't have any experience with channel banks and would appreciate any
feedback on my theory outlined below:
We have a single T1 entering the building with channels 1-12 being voice
lines and 13-24 being a 768k internet connection. This T1 terminates to
an Adit 600 (T1-1).
Here's what I know. Channels 11-12 go out the Adit 600's 25-pair
connector to a wiring block (and
2015 Jan 27
2
[LLVMdev] ATS workaround for Clang 3.5
The ATS community is having trouble with clang. They had been using
an older version of clang and upgraded because newer versions give
higher quality warning messages. Unfortunately, with 3.5, moving from
-O1 to -O2 triggers a crash on startup in the clang-generated
executable. I had suggested building with -fsanitize=undefined and
-fsanitize=address to weed out any dependencies undefined