similar to: giving user rights to files

Displaying 20 results from an estimated 10000 matches similar to: "giving user rights to files"

2005 Nov 02
3
how a domain user can become a local administrator ?
Hi list, I'm using Samba wit a LDAP server. Everything works fine, but I'd like to know how I can declare a user or a group user as an administrator of the workstation he/she is logged in. I tried to modify the guid and the SambaSID in the ldap server, but it doesn't work. Is there another solution than to declare locally on the workstation that such group must be of the local
2011 Apr 07
2
what architecture is required for having a samba working ?
Hi list, Some years ago, here at University of Poitiers, we used something called Netware. But it was expensive, so it was decided to abandonned it : some services migrated to samba and OpenLDAP, and others migrated to Windows Server. So now, Win7 is coming, and unfortunately we can't use Samba2 anymore. So the solution should be to use Samba3, wich supports Win7. But (yes there is
2005 Dec 02
1
can't mount smb shares
Hi list, it's me again. I have 2 samba servers, one as a PDC, the other as a file server. I can now join the domain. But it's impossible to mount the smb shares. The 2 servers are listening on several private networks, using vlans. 10.16.41.0/24 is a routed network, all over the campus. The others are just nated through a FreeBSD box. All dns datas are ok and uptodate If I connect
2005 Nov 10
2
is this a DNS resolution problem ?
Hi list, I encounter a problem again, which I thought resolved : when joining a domain, sometimes the workstation says it cannot join, or the domain does not exist, or something like that, because there is a DNS resolution probleme. I read the Micro$oft documentation listed in the error message (http://www.microsoft.com/windows2000/dns/tshoot/dns_tshoot2A.asp) I solved the problem, the
2006 May 04
1
providing the current samba PID to a preexec script
Hi all, I'd to provide the current samba PID with wich the user will be looged in. It seems this variable is %d in smb.conf I write it in a log file, and all I can see is the domain name, not the pid here is the line in my smb.conf : .... root preexec = /samba_system/scripts/connect.sh %u %m %I %T %D %d .... what am I doiong wrong ? Thanks, val?ry
2006 May 31
3
Cannot delete files from samba share
Hi all, Following an upgrade from samba 2.2.8a to 3.0.22 we have been unable to delete files on a samba share using an XP client. We were previously able to delete these files when using 2.2.8a. The problem occurs when we have a particular sub-set of permissions. Directory permissions on UNIX are set to 775 and ownerhips to usera : group1. This should mean that either usera or anyone who
2012 Jul 05
0
[LLVMdev] bug in tablegen?
This variant works: class ArithLogicRTest16<string I, SDNode OpNode, bit isComm = 0>: FRRR16<!cast<FRRR16_ins>(I).f, (outs CPU16Regs:$rx), (ins CPU16Regs:$ry, CPU16Regs:$rz), // !cast<FRRR16_ins>(I).OutOperandList, // !cast<FRRR16_ins>(I).InOperandList, !cast<FRRR16_ins>(I).AsmString, [(set CPU16Regs:$rx,
2008 May 11
3
dinput_test works but WINEDEBUG shows no joystick for game?
This is a continuation/evolution of what I've been trying to do, get some response from my controller(s) in Guitar Hero 3. I compiled wine (with some help :) and manually copied the dinput_test.exe.so file into my /usr/lib32/wine directory and made it's permissions match the other exe.so files (644). I then run the test to see if dinput is seeing/reacting to my controller, and it seems
2006 Jan 11
0
Obtaining the adjusted r-square given the regression coef ficients
Hello Alexandra, R2 is only defined for regressions with intercept. See a decent econometrics textbook for its derivation. HTH, Bernhard -----Urspr??ngliche Nachricht----- Von: Alexandra R. M. de Almeida [mailto:alexandrarma at yahoo.com.br] Gesendet: Mittwoch, 11. Januar 2006 03:48 An: r-help at stat.math.ethz.ch Betreff: [R] Obtaining the adjusted r-square given the regression coefficients
2006 Jan 10
2
Obtaining the adjusted r-square given the regression coefficients
Hi people, I want to obtain the adjusted r-square given a set of coefficients (without the intercept), and I don't know if there is a function that does it. Exist???????????????? I know that if you make a linear regression, you enter the dataset and have in "summary" the adjusted r-square. But this is calculated using the coefficients that R obtained,and I want other coefficients
2020 Jan 04
0
[POSSIBLE FRAUD] Re: [EXTERNAL] Tripp Lite INTERNET750U instant commands ?
Ok thank's for your time David, the PSUs, I have two old ones, are working very well. I simply put in new batteries and on they go :-). I'm using the PSUs mostly to secure my Raspberry PIs, which are notorious to fail (SD card) on power failures. Bye, jrb. On Fri, Jan 3, 2020 at 7:35 PM David Zomaya <David_Zomaya at tripplite.com> wrote: > > Hi Jean-Roch, > No. There is no
2012 Jul 05
2
[LLVMdev] bug in tablegen?
I think that what I did originally should have worked and the bug was correct as I reported it. Here is an alternate implementation which has the same problem. class ArithLogicRTest16<string I, SDNode OpNode, bit isComm = 0>: FRRR16<!cast<FRRR16_ins>(I).f, !cast<FRRR16_ins>(I).OutOperandList, !cast<FRRR16_ins>(I).InOperandList,
2012 Jul 03
2
[LLVMdev] bug in tablegen?
I've filed the following bug. Maybe I'm doing something stupid here or maybe someone knows of a workaround. The following fragment from mips16 (not yet checked into main source). The problem is that I should be able to pass parameters: I.OutOperandList, I.InOperandList But instead, I must back substitute what I know the values of these are. (outs CPU16Regs:$rx), (ins CPU16Regs:$ry,
2012 Jul 03
0
[LLVMdev] bug in tablegen?
I think you're missing the template args for `FRRR16_ins` in the first argument. The switch in TGParser::ParseType() doesn't cover the case of types with template args though... which makes me wonder what is going on inside of TableGen to make `I.f` and `I.AsmString` valid... --Sean Silva On Mon, Jul 2, 2012 at 8:07 PM, reed kotler <rkotler at mips.com> wrote: > I've filed
2012 Jul 04
0
[LLVMdev] bug in tablegen?
class FRRR16_ins<bits<2> _f, string asmstr, list<dag> pattern, InstrItinClass itin> : // ... This class has template args. You don't specify them in the first template arg of class ArithLogicR16<FRRR16_ins I, SDNode OpNode, bit isComm = 0>: // ... --Sean Silva On Tue, Jul 3, 2012 at 2:29 PM, reed kotler <rkotler at mips.com> wrote: > Not sure what you mean.
2012 Jul 03
3
[LLVMdev] bug in tablegen?
Not sure what you mean. I.OutOperandList == (outs CPU16Regs:$rx) I.InOperandList == (ins CPU16Regs:$ry, CPU16Regs:$rz) On 07/02/2012 09:26 PM, Sean Silva wrote: > I think you're missing the template args for `FRRR16_ins` in the first > argument. The switch in TGParser::ParseType() doesn't cover the case > of types with template args though... which makes me wonder what is
2004 Sep 06
1
A naive lsoda question....
Hello, I am an R newbie, trying to use lsoda to solve standard Lotka-Volterra competition equations. My question is: how do I pass a parameter that varies with time, like say, phix <- 0.7 + runif(tmax) in the example below. # defining function lotvol <- function(t,n,p){ x <- n[1]; y <- n[2] rx <- p["rx"]; ry <- p["ry"] Kx <-
2006 Dec 14
3
Problem with LDAP groups and associated file permissions
Hi folks! Our smb with LDAP PDC now seems to be nearly completed. Just now we found out something very mysterious. We organized some directorys to be used by specific domain groups. If we put a user into a group the user is allowed to access the associated share. So far this works pretty nice. If we remove the user from the domain group the user seems to keep all his rights he got from his group
2020 Jan 04
2
[POSSIBLE FRAUD] Re: [EXTERNAL] Tripp Lite INTERNET750U instant commands ?
Hi Jean-Roch, No. There is no user-facing firmware update process available. If there are any particular commands you're interested in on a newer unit, I can look them up. ________________________________ From: jean-roch blais <blaisjeanroch at gmail.com> Sent: Friday, January 3, 2020 6:13 PM To: David Zomaya Cc: nut-upsuser at alioth-lists.debian.net Subject: Re: [POSSIBLE FRAUD] Re:
2006 Jul 02
2
Administrator doesn't have admin rights on workstation
Hello, I'm running FreeBSD-6.1, and Samba 3.0.22 with a Windows XP (SP2) client. As per subject line, administrator doesn't have administrator rights on the workstation. --- 'net groupmap list' gives, Domain Admins (S-1-5-21-3323006203-4037909810-1162086780-3003) -> ntadmins --- 'pdbedit -Lv' includes, Unix username: administrator NT username: Account