Displaying 20 results from an estimated 3000 matches similar to: "Unable to join W2K pro to samba domain"
2005 May 17
1
easiest way to do incrimentals?
With the --backup and --backup-dir options that means that it copies out
the files that are going to be changed before overwriting them to the
specified directory?
Vincent Yonemitsu
Information Technology Services
(905)639-3611 ext 153
yonemitsuv@bpl.on.ca
-------------- next part --------------
HTML attachment scrubbed and removed
2005 May 16
1
Domain Users group howto...
I have setup samba 3 as a PDC for a set of computers that previously had
Domain Users setup to run as local admins under XP, so that anyone that
has logged into the domain has local admin access. Whats the best way to
replicate this setup so that I don't have to go around to each computer
and change the local security policy?
Is there a way to assign users to the group domain users?
or would
2005 May 07
1
send_file and opd_dir Permission denied (13)
I am trying to backup some samba shares on computera to computerb
all accounts on computera match computerb passwords and groups
The rsyncd.conf file is as follow
[rsync]
uid = root
gid = root
max connections = 10
syslog facility = local5
pid file = /var/run/rsyncd.pid
auth users = root
secrest file = /etc/.rs_sec
[backupshares]
path = /home/sharedfolders
the /etc/.rs_sec file is
2005 Mar 10
1
Application crash - a problem about Delphi's BPLs
Hello
I've tried to run Delphi's application which uses it's own BPL-
libraries. Wine said:
err:module:import_dll Library odacvcl70.bpl (which is needed by L"C:\
\Program Files\\UBC.new\\Adwiser2Main.bpl") not found
err:module:import_dll Library odacvcl70.bpl (which is needed by L"C:\
\Program Files\\UBC.new\\Oracle.bpl") not found
err:module:import_dll Library
2017 Jun 05
2
[newbie] trouble with global variables and CreateLoad/Store in JIT
Since the getelementptrs were implicitly generated by the CreateStore/Load
I'm not sure how to get access to them.
So I hacked the assignment to be done thrice: once using a manual
decomposition into two GEPs and stores, once using the "big" CreateStore,
once via the setGlobal function, printing addresses and memory contents at
each point to the degree that I have access to them.
2017 Jun 04
2
[newbie] trouble with global variables and CreateLoad/Store in JIT
Emitting calls to these functions (written in an .ll file linked in) works
fine, and does the right thing.
%Any = type { i8*, i32 }
define dllexport void @setGlobal(%Any* %ptr, %Any %value) {
store %Any %value, %Any* %ptr
ret void
}
define dllexport %Any @getGlobal(%Any* %ptr) {
%val = load %Any, %Any* %ptr
ret %Any %val
}
Trying to replace the setGlobal call with what should be
2017 Jun 06
2
[newbie] trouble with global variables and CreateLoad/Store in JIT
On Mon, Jun 5, 2017 at 1:34 PM, Nikodemus Siivola <
nikodemus at random-state.net> wrote:
> Uh. Turns out that if I hide the pointer to @foo from LLVM by passing it
> through an opaque identity function ... then everything works fine.
>
> Is this a bug in LLVM or is there some magic involving globals I'm
> misunderstanding?
>
This looks like a bug in the handling of
2012 Apr 09
3
how to add 3d-points to bplot {rms} figure?
Hello!
I have created a bplot-figure using this code:
*file <- "2dcali_red.ttt"
ux<-as.matrix(read.table(file, dec = ","))
mode(ux)<-'numeric'
vel<-ux[,1]
ang<-ux[,2]
x<-ux[,3]
y<-ux[,4]
dat<- data.frame(ang=ang, x=x,y=y)
require(rms)
ddist2 <- datadist(dat)
options(datadist="ddist2")
fitn <- lrm(ang ~ rcs(x,4) +
2017 Jun 06
2
[newbie] trouble with global variables and CreateLoad/Store in JIT
That's useful to know that the static compilation code path works.
Furthermore, as expected from that:
52: c7 05 04 00 00 00 d5 00 00 00 movl $213, 4
00000054: IMAGE_REL_I386_DIR32 _foo
It looks like the offset `4` of the second field of your struct is correct
in the object file, so this does seem to be a problem in the JIT-specific
linking/loading.
2017 Jun 07
2
[newbie] trouble with global variables and CreateLoad/Store in JIT
My code was hinky, but only in the sense that I was accidentally
duplicating the definition variable in the module where the function was.
With only the declaration in the second module loading the bitcode
reproduces the issue.
Managed an lli reproduction:
$ cat jit-0.ll
target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
target triple =
2008 Oct 15
2
[LLVMdev] INSERT_SUBREG node.
On Tue, 2008-10-14 at 10:19 -0700, Evan Cheng wrote:
> You need to specify sub-register == super-register, idx relationship.
> See X86RegisterInfo.td:
>
> def x86_subreg_8bit : PatLeaf<(i32 1)>;
> def x86_subreg_16bit : PatLeaf<(i32 2)>;
> def x86_subreg_32bit : PatLeaf<(i32 3)>;
>
> def : SubRegSet<1, [AX, CX, DX, BX, SP, BP, SI, DI,
>
2018 Feb 06
3
What does a dead register mean?
Hi,
My understanding of a "dead" register is a def that is never used. However,
when I dump the MI after reg alloc on a simple program I see the following
sequence:
ADJCALLSTACKDOWN64 0, 0, 0, *implicit-def dead %rsp*, implicit-def dead
%eflags, implicit-def dead %ssp, implicit %rsp, implicit %ssp
CALL64pcrel32 @foo, <regmask %bh %bl %bp %bpl %bx %ebp %ebx %rbp %rbx %r12
%r13 %r14
2005 May 30
3
values of bars in barplot
Hi,
I couldn't find how to have the values written on the
top of each bar in a barplot. When using hist(), it is
possible to use labels=T, but this option does not
seem to exist for barplot().
Is there a trick I could use to do that ?
Thanks to all
Luc
2008 Oct 13
2
[LLVMdev] INSERT_SUBREG node.
On Thu, 2008-10-02 at 11:19 -0700, Evan Cheng wrote:
>
> On Oct 2, 2008, at 11:02 AM, Sanjiv.Gupta at microchip.com wrote:
>
> > What’s the value produced by an INSERT_SUBREG node? Is it a chain?
>
>
> No, insert_subreg returns a value:
>
>
> v1 = insert_subreg v2, v3, idx
>
>
> v1 and v2 will have the same type, e.g. i16, and v3 must have a
>
2011 Feb 18
2
[LLVMdev] EFLAGS and MVT::Glue
The log message for revision 122213 says:
> Change the X86 backend to stop using the evil ADDC/ADDE/SUBC/SUBE nodes (which
> their carry depenedencies with MVT::Flag operands) and use clean and beautiful
> EFLAGS dependences instead.
(MVT::Flag has since been renamed to MVT::Glue.)
That revision made bug 8404 go away.
Am I right in thinking that one of the problems with MVT::Glue is
2008 Oct 14
0
[LLVMdev] INSERT_SUBREG node.
You need to specify sub-register == super-register, idx relationship.
See X86RegisterInfo.td:
def x86_subreg_8bit : PatLeaf<(i32 1)>;
def x86_subreg_16bit : PatLeaf<(i32 2)>;
def x86_subreg_32bit : PatLeaf<(i32 3)>;
def : SubRegSet<1, [AX, CX, DX, BX, SP, BP, SI, DI,
R8W, R9W, R10W, R11W, R12W, R13W, R14W, R15W],
[AL, CL,
2008 Oct 15
0
[LLVMdev] INSERT_SUBREG node.
On Oct 15, 2008, at 5:29 AM, sanjiv gupta wrote:
> On Tue, 2008-10-14 at 10:19 -0700, Evan Cheng wrote:
>> You need to specify sub-register == super-register, idx relationship.
>> See X86RegisterInfo.td:
>>
>> def x86_subreg_8bit : PatLeaf<(i32 1)>;
>> def x86_subreg_16bit : PatLeaf<(i32 2)>;
>> def x86_subreg_32bit : PatLeaf<(i32
2001 Feb 13
0
printing from Solaris 7 to W2K Pro.
Greeting All,
I am trying to set up my Solaris box to print to my w2k pro machine. I have
samba 2.0.7 installed but dont seem to have the smbprint command. Does
anyone know how I need to configure my sun machine to do this and where I
can get the smbprint command from?
Thank you Alin Osan for solving my previous problem.
Ed
Edward Crabtree, Jr.
Unisys
Edward.Crabtree@unisys.com
2002 Jun 25
0
Password synchronisation between W2K-Pro and Samba PDC
Hello List !!!
I'm trying to synchronate the password between W2K-Pro, Samba
and Linux. I'm using the Samba 2.2.4 as an PDC with the
following Global parameters:
[global]
? ? ? ? workgroup = LAN
? ? ? ? netbios name = testPC
? ? ? ? interfaces = 192.168.0.97/24
? ? ? ? encrypt passwords = Yes
? ? ? ? update encrypted = no
? ? ? ? map to guest = Bad User
? ? ? ? keepalive = 30
? ? ? ?
2002 Jul 29
0
Help-w2k pro no longer "trusted" in 2.2.3 pdc
Still not working to send msg please send to list for me, and
let me know if you have an answer, please?!
------------------Here is the problem----------------
please help me get this out!
W2k w/SMB no longer trusted. help
Here's my story...sad but true.
I've got a run-away PDC, that makes me blue.
It don't see my NT-clients nice anymore,
now it says, "get offa my