similar to: Need help in samba configuration

Displaying 20 results from an estimated 300 matches similar to: "Need help in samba configuration"

2009 Nov 17
0
[Fwd: Re: Need help in samba configuration]
-------- Original Message -------- Subject: Re: [Samba] Need help in samba configuration Date: Tue, 17 Nov 2009 10:42:42 -0500 From: Brian Cowan <brcowan at gmail.com> To: Pankaj.C.Pimple at relianceada.com References: <OF3AAD32AD.86A5D538-ON65257671.002808E6-65257671.002851F0 at relianceada.com> If your Samba server is a fully operational domain member server, then the
2009 Dec 07
5
confint for glm (general linear model)
Hi, I have a glm gives summary as follows, Estimate Std. Error z value Pr(>|z|) (Intercept) -2.03693352 1.449574526 -1.405194 0.159963578 A 0.01093048 0.006446256 1.695633 0.089955471 N 0.41060119 0.224860819 1.826024 0.067846690 S -0.20651005 0.067698863 -3.050421 0.002285206 then I use confint(k.glm)
2004 Feb 10
2
Rejoining domain after cluster failover
Hello. We're having issues running Samba 2.2.8-a1, on Solaris 8 (SPARC) under Veritas VCS 3.5 clustering (HA active-passive). Every time we have a cluster failover (we're testing), we have to re-join the domain [ADS not NT] (e.g., 'smbpasswd -j XYZ -r XYZPDC -UAdminRightsUser%password'). Otherwise, we cannot connect to the shares, and 'wbinfo -t' returns 'Secret is
2006 Mar 03
2
FCKEditor Image uploading feature
Hello, I followed instructions on http://www.joshuamcharles.com/rails/fckeditor.html Added FCKEditor to my rails app which works great, but I''m not able to upload images using the WYSISYG editor. Is there a way to enable this feature in rails app? If not, where is the images folder that FCK looks into it for images, so I can upload my images manully there? Thanks, - Dunnil --------------
2007 Jun 15
1
Client machine cannot acquire the IP from dhcp server
Hi, syslinux: I use pxelinux to install Linux from network. Currently, my problem is: The first time, the client machine can acquire the IP address from dhcp server but at the second time, the client machine cannot acquire the IP again. The only way is to remove the /var/lib/dhcp/dhcpd.leases file in server and restart the dhcpd service. Then the client machine can get the IP again.
2011 Dec 29
1
how can I pass boot options to the ks file?
How can I pass boot options, for example IP, Netmask, Hostname, Gateway etc, to the ks file, so after the installation I do not need to configure them manully? Thanks. Hai Tao
2006 Jul 01
1
polynomial expansion in R
Hi: I have two vectors of data, x and y and I want to get the "polynomial" expansion of (x+y)^p with any integer power p in R. Suppose p=2, then I want a matrix of five vectors, namely, x y x^2 y^2 x*y. The coefficient of the polynomial is not needed. I can write it manully if p is small. But I want it in the case of p=10 or even bigger, is there any function in R can do that
2007 Feb 14
1
lattice graphics and source()
Hi, I am trying the lattice graphics in R. Let's say, such a little experiment in file myprog.r: f <- function(){ x <- 1:10 y <- x^2 xyplot(y ~ x) } f() Then I run the program: > source("myprog.r") but nothing happens. Manully run f() at the command line: > f() then the figure is shown. This seems to be a bug only associated with lattice graphics, the
2012 Apr 09
3
[LLVMdev] How to instrument a this function using insertBefore instruction???
Hi all, Im trying to instrument this hello function right before the instruction that call the "puts" function(the source code is as follow). Now I can compile the pass without errors, but when run the pass with opt tool, it broke down. The diagnose is something like Referencing function in another module! %CallCheck = call i32 @fib() Broken module found, compilation aborted! Does
2006 Nov 27
2
Centos 4.3 32 bit -CIFS VFS: Send error in Close = -9
Hello Guys I am facing a problem using cifs filesytem on centos 4.3 32 bit to connect to remote shares.we have DAS(Dell md1000) connected to a Dell 2950(win 2003 std).let me descibe the proc which i followed to access thi DAS via 2950.. 1) create a normal user account on Dell2950(win 2003) create 3 folders with names mysqhare1,myshare2,myshare3 in the storage area and assign all permissions to
2012 Apr 09
2
[LLVMdev] How to instrument a this function using insertBefore instruction???
Hi, I don't think the code you pasted can be the correct code, where does FibF come from? Anyway, the problem is that you're calling the FibF from Module A, however you defined it for Module B. You need to insert the FibF function into the Module that you're running. To do this override "virtual bool doInitialization(Module &M);" and insert FibF into M. Joey 2012/4/9
2012 Apr 09
0
[LLVMdev] How to instrument a this function using insertBefore instruction???
Hi, I got upset.. What does “Broken module found, compilation aborted!” mean really?? what‘s “broken module“?? -- 祝好! 甄凯 ------------------------------------------------------------------------------------------------------ 2012-04-09 ------------------------------------------------------------------------------------------------------ Name: 甄凯(ZhenKai)
2003 May 24
3
UDMA ICRC error
Hi there. OS version: FreeBSD 4.7-Stable FreeBSD #3 I just added a disk to my box and after playing with fdisk and disklabel with this configuration: fdisk: **************************************************************** g c16383 h16 s63 p 1 165 0 39102336 **************************************************************** disklabel
2008 Oct 13
2
rsync error: Error in socket IO(code 10) at clientserver.c(122)
Hi, I am using cwrsync ver 2.1.5 over SSH to connect to myproj@sourceforge.net and facing some problems and not sure how to go about it. Below is the full text of the result when I run the batch file. Was wondering if anyone has seen any similar issue. Any thoughts/help is much appreciated. ------------------------------------------------ Tunnel: ssh Command to run: "C:\Program
2012 Apr 09
0
[LLVMdev] How to instrument a this function using insertBefore instruction???
Thank you very much! To make it simpler, I may as well just implement the self-written "check function" in C language instead of wrapping it in LLVM module. According to the hint you give me, all I need to do is as follow(?) 1. Implement the "Check function" in the check.c file; 2. Add the check function into the module(the Hello1.bc file which I will run the functionPass on)
2012 Apr 09
1
[LLVMdev] How to instrument a this function using insertBefore instruction???
That sounds like a good general plan, yes! Joey 2012/4/9 15102925731 <zhenkaixd at 126.com> > Thank you very much! > > To make it simpler, I may as well just implement the self-written "check > function" in C language instead of wrapping it in LLVM module. *According > to the hint you give me, all I need to do is as follow(?)* > > 1. Implement the
2008 Jan 23
3
Slow header fetching rate over nfs mailspool.
We are setting up a Dovecot over a pair of NFS which mirrored with DRBD +Heartbeat, under Debian Etch AMD64 with Kernel 2.6.22-5. The problem was slow header downloading rate. We had tried to use postal to inject 500 emails which are under 5KB each, but when ever we start up Mail.app, Thunderbird or even OE6, the header download rate is terrible slow. Its look like a few sec for just 1
2014 Dec 19
3
Does Samba 4 actually respect Unix file acls?
Hello, After researching the subject on the internet I concluded that Samba should take into account Unix file acls. During my tests I found the opposite. Only Unix file mode bits are respected, and file acls are ignored. If my initial assumption is correct and Samba do respect Unix file acls, then I am doing something wrong. Please see the setup below and point to what I am doing wrong.
2007 Nov 21
2
Access control question.
Hello, I have a general administrative question concerning Samba shares. I have a large amount of data that about 25 users have limited access to. I only want these users to have access to a sub-set of this data, but I also only want the users to see that which they have access to. So, for example, suppose that the share looks like thus: /smbshare /smbshare/dir1 /smbshare/dir2
2012 Dec 13
1
Difference between real and reported disk usage
(I'm not subscribed to the list: please keep me in CC) I'm copying files between two samba server using robocopy from a third Windows PC and i'm experiencing disk usage that is much higher on the destination PC. The origin samba server is Debian Lenny with samba 3.2.5. The destination samba server is Debian Wheezy with samba 3.6.9 The PC running robocopy is Windows Server 2003 with