Displaying 20 results from an estimated 7000 matches similar to: "uploading client printer drivers broken ?"
2006 Apr 08
3
stress testing
Does anyone know how to stress test samba without getting a whole
room of people to login to all the computers at once ? perhaps some
kind person has coded up a nice app that can be run on the server ??
just curious..
Kind Regards,
Chris Anders
Network Engineer
Anders Networks
Mobile - 0421 580 017
Email - chris@anders.net.au
Web - http://www.anders.net.au
?
---
This
2006 Apr 04
3
degraded performance under domain login load
Hi guys,
Not sure how to diagnose this problem however i have recently
upgraded one of my schools sites from gentoo to freebsd which moved
us from samba 3.0.14 to 3.0.21b and the first thing I noticed was
when the students came to login if they all logged in at once the
performance of login was crippled to a near standstill!
As a test i swapped in the gentoo box and forced the upgrade to
2006 Apr 04
2
Can't connect XP to Samba domain: (user name could not be found)
I have done all I can think of to make Samba be a PDC, but I can't get my
Windows XP-SP2 client to join the domain. I've already edited the Group
Policy for the roaming profile thingumyjig. I am asked for the user/pass (I
use root) to add the machine to the domain, and the error is:
"The user name could not be found".
Here's my smb.conf, and group information.
2004 Apr 02
2
[LLVMdev] Function pointers
OK, I solved it all ( so far :) ), mixing in some load-instructions and called on the result of that, which worked.
Here is the skeleton-code:
%kernel = type { int ()* }
int puts_kernel(){...}
; main()
%theKernel = malloc %kernel
%puts_kernelPTR = getelementptr %kernel* %theKernel, long 1, ubyte 0
store int ()* %puts_kernel, int ()** %puts_kernelPTR
%tmp.11 = load int ()** %puts_kernelPTR
2003 Jun 10
1
Samba 2.2.7 as PDC causing BSOD on 2K domain logon
Hello,
Have wrestled this one for about a week, now, getting frustrated ;-)
Running samba as PDC for my domain (cf. smb.conf further down)
When logging in on my 2K Pro machine, I first get a "can't find roaming
profile, attempting local profile"-error, but logon using my user's smb
account accepts only the correct password and so the identification part
works well.
Next,
2004 Apr 02
0
[LLVMdev] Function pointers
On Fri, 2 Apr 2004, Anders Alexandersson wrote:
> OK, I solved it all ( so far :) ), mixing in some load-instructions and
> called on the result of that, which worked.
>
> Here is the skeleton-code:
>
> %kernel = type { int ()* }
>
> int puts_kernel(){...}
>
> ; main()
>
> %theKernel = malloc %kernel
> %puts_kernelPTR = getelementptr %kernel* %theKernel,
2011 Jul 29
1
Can't see shares...
I can't figure out what's wrong with my config, I can see the share
\\beata\anders, but not store0 or store1;
# smb.conf is the main Samba configuration file. You find a full commented
# version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the
# samba-doc package is installed.
# Date: 2011-03-01
[global]
workgroup = NORRBRING
passdb backend = tdbsam
2010 Nov 24
3
[LLVMdev] Question regarding the alias analysis chaining behaviour
Hi,
I am using LLVM 2.4 on a Linux RHEL5 machine. I was trying to figure out
how the chaining of the alias analysis passes works in LLVM. Here are the
command I used to test the chaining part.
1. ./opt hello_world_1_nest_func.bc -o hello_world_1_nest_func_AA.bc
-no-aa -anders-aa -licm
Result: Anderson's AA and No Alias Analysis both are called.
2. ./opt hello_world_1_nest_func.bc -o
2004 Apr 01
1
[LLVMdev] Function pointers
Yes! :-)
What would I do without you folks?!
I am the one trying to build a Ruby compiler prototype, so be prepared for
more questions...:)
Thanks again!
Anders
----- Original Message -----
From: "Chris Lattner" <sabre at nondot.org>
To: <llvmdev at cs.uiuc.edu>
Sent: Wednesday, March 31, 2004 5:49 PM
Subject: Re: [LLVMdev] Function pointers
On Wed, 31 Mar 2004, Anders
2004 Mar 31
2
[LLVMdev] Function pointers
Hello out there!
I am trying to build a table of 2 function poiters by using an array:
%kernel = alloca [ 2 x int ()* ]
I try to access the first pointer to be able to store location of my first function like this:
%function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long 0
store int ()* %function_1, int ()* %function_pointer_1
But, I get the error message from llvm-asm:
2004 Mar 31
0
[LLVMdev] Function pointers
On Wed, 31 Mar 2004, Anders Alexandersson wrote:
> Hello out there!
>
> I am trying to build a table of 2 function poiters by using an array:
>
> %kernel = alloca [ 2 x int ()* ]
>
> I try to access the first pointer to be able to store location of my first function like this:
>
> %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long 0
>
>
2008 Apr 28
3
[LLVMdev] ParamAttr Patch - Alignment fix
On Sunday 27 April 2008 01:33:31 Gordon Henriksen wrote:
> On Apr 26, 2008, at 19:09, Anders Johnsen wrote:
> > On Sunday 27 April 2008 00:48:00 Gordon Henriksen wrote:
> >> On Apr 26, 2008, at 17:41, Anders Johnsen wrote:
> >>> +void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
> >>> unsigned align) {
> >>> + CallSite Call =
2010 Nov 22
9
[Bug 1841] New: Error message if key not first in authorized_keys file
https://bugzilla.mindrot.org/show_bug.cgi?id=1841
Summary: Error message if key not first in authorized_keys file
Product: Portable OpenSSH
Version: 5.6p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: unassigned-bugs at mindrot.org
2018 May 22
1
CFLAndersAliasAnalysis print implementation
Hello all,
I'm having trouble getting this analysis to print out it's graph of
aliases. I am processing an example C file into llvm ir, like this:
int main(void) {
int x=1, y=2, z=3;
int *p;
int **p1, **p2;
if (x==z) { //0x100000f40
p=&x;
p1=&p;
x*=2;
*p1+=z;
}
}
clang -S -emit-llvm example.c -o example.ll
Then, I am trying to run the Andersen alias
2010 Apr 29
12
[Bug 1765] New: Error message if key not first in authorized_keys file
https://bugzilla.mindrot.org/show_bug.cgi?id=1765
Summary: Error message if key not first in authorized_keys file
Product: Portable OpenSSH
Version: 5.5p1
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: unassigned-bugs at mindrot.org
2002 Feb 21
1
Unable to access Samba shares from Windows XP home ed ition
Thanks Anders, I'll take this as verification that it can be done and
struggle on. Does it require registry tweaks?
> -----Original Message-----
> From: Anders Widman [SMTP:andewid@tnonline.net]
> Sent: Thursday, February 21, 2002 11:05 AM
> To: samba-admin@lists.samba.org; Harvey, Sean
> Cc: 'samba@lists.samba.org'
> Subject: Re: [Samba] Unable to access Samba
2007 May 29
1
Fw: hierarhical cluster analysis of groups of vectors
Hi Rafael,
What about multivariate logistic regression?
----- Forwarded Message ----
From: Rafael Duarte <rduarte@ipimar.pt>
To: Anders Malmendal <anders@chem.au.dk>
Cc: r-help@stat.math.ethz.ch
Sent: Tuesday, May 29, 2007 3:21:11 PM
Subject: Re: [R] hierarhical cluster analysis of groups of vectors
It seems that you have already groups defined.
Discriminant analysis would probably
2020 Jun 30
1
Need help with roaming profiles
On Tue, Jun 30, 2020 at 11:57 AM Rowland penny via samba
<samba at lists.samba.org> wrote:
>
> On 30/06/2020 10:34, Anders ?stling wrote:
> > On Tue, Jun 30, 2020 at 11:24 AM Rowland penny via samba
> > <samba at lists.samba.org> wrote:
> >> On 30/06/2020 09:50, Anders ?stling wrote:
> >>
> >>>> You have 'workgroup = HPLTS' and
2008 Apr 26
2
[LLVMdev] ParamAttr Patch - Alignment fix
On Sunday 27 April 2008 00:48:00 Gordon Henriksen wrote:
> On Apr 26, 2008, at 17:41, Anders Johnsen wrote:
> > Hi Gordon,
> >
> > Thanks a lot for the feedback. I can see I've been way to
> > concentrated on how
> > llvm is build, then on this particular patch. I've done the changes
> > you have
> > suggested and it's now a lot nicer and
2002 Mar 12
1
Samba 2.2.2 as a PDC for XP logins
And you have user and machine accounts that work?
I had actually a big problem joining a Samba PCD from a Windows XP
machine. However I don't remember what exactly I had to do to make it
work. (I never changed the Samba settings, just fiddled around in
Windows.)
//Anders
> Yeah, all applied but still no luck
> -----Original Message-----
> From: Anders Widman