similar to: revisiting the multiple users using single smbd process

Displaying 20 results from an estimated 6000 matches similar to: "revisiting the multiple users using single smbd process"

2001 Apr 04
3
Problems Using the MultipleUsersOnConnection Registry Key in WTS NT4
Hi. I am running SAMBA 2.0.7 on HP-UX 11.00 and HP-UX 10.20. I have tried adding the MultipleUsersOnConnection registry key onto my Microsoft Windows NT Server 4 Terminal Server Edition servers, running with Service Pack 6. After I make this change in the registry and reboot my WTS servers all my samba connections from the servers are still being made with one process instead of being split
2000 Apr 18
0
Redirector timeout error with samba 2.09 and NT WTS
I found a post from a year ago which matches my current situation almost exactly, except that we are using samba 2.09. Anyone resolve this yet? Here's the previous text... *********************************** I'm running NT 4.0 Terminal Server (Service Pack 4) with Citrix MetaFrame 1.8 on a PC, and Samba 2.0.3 on an HP-UX box. We've been having occasional problems with files not
1999 Dec 18
1
MultipleUsersOnConnection, WTSE
There is a new regedit file in Samba 2.0.6 for Windows Terminal Server Edition that sets a MultipleUsersOnConnection value to 1. I can't find any documentation about this regedit in the source package or using a search of the Samba website. In Micro$oft's knowledgebase articles Q190162, Q233082, Q231798 and Q191370, it would appear that the value should be set to 0 rather than 1 for the
1999 May 05
1
Samba 2.0.3 and NT Terminal Server SP4/MetaFrame 1.8
I'm running NT 4.0 Terminal Server (Service Pack 4) with Citrix MetaFrame 1.8 on a PC, and Samba 2.0.3 on an HP-UX box. We've been having occasional problems with files not saving correctly, and also with files not unzipping or copying correctly. I suspect it's some sort of incompatibility between Samba and Terminal Server/Metaframe and/or SP4. For
2012 Mar 19
2
PlayOnLinux/PlayOnMac 4.0.16, wineprefix logging system
Hi everybody, As promised before and discused with dimesio here: http://forum.winehq.org/viewtopic.php?p=53507&sid=fd16c6e3e78e533cad6f00e0e4da99dc http://forum.winehq.org/viewtopic.php?t=14962 PlayOnLinux 4.0.16 has integrated a new log system, so that we can follow what happens in a wineprefix. Be careful, this announcement is here just to inform wine users and admins about the way it
2009 Mar 30
1
List assignment in a while loop and timing
Hello R users I have question about the time involved in list assignment. Consider the following code snippet(see below). The first line creates a reader object, which is the interface to 1MM key-value pairs (serialized R objects) spanning 50 files (a total of 50MB). rhsqstart initiates the reading and I loop, reading each key-value pair using rhsqnextKVR. If this returns NULL, we switch to the
2008 Aug 13
1
Arguments to lm() within a function - object not found
Hi all, I'm having some difficulty passing arguments into lm() from within a function, and I was hoping someone wiser in the ways of R could tell me what I'm doing wrong. I have the following: lmwrap <- function(...) { wts <- somefunction() print(wts) # This works, wts has the values I expect fit <- lm(weights=wts,...) return(fit) } If I call my function lmwrap, I get
2003 Nov 12
1
samba 2.2.8 and win2k/tse
Summary: We cannot connect multiple users from an win2K/tse box to a samba server using password server authentication . Details: We have samba 2.2.8a on Sun Solaris , connected with an w2k/tse . Samba has been configured to check user/password using an "password server" on the network ( Domain PDC ) . When the first user connect to the win2k/tse all network shares are ok . But when
2007 Jul 02
1
Jails and loopback interfaces
I've got a server running FreeBSD 6.2 and PF. The server has a couple dozen jails on it. Previously, I had a few "private" services such as MySQL running on loopback IPs (127.0.0.2+) and the rest of the jails running on the public IPs. I have to renumber my machine with a new block of public IPs so I thought I'd be clever and move all the jails onto loopback IPs. Then
2010 Dec 17
1
Help for loop
Hello all, Is there any way to get each file from a website list and aggregate in a data frame? Otherwise I have to type 23 thousand web address into a long script like it: base1 <- read.table("site 1", sep=";", header=T, fileEncoding="windows-1252") base2 <- read.table("site 2", sep=";", header=T, fileEncoding="windows-1252") I
2000 Jun 28
0
Urgent Help pls - NT4.0 Term Server and SAMBA - RDR timeouts
Hello, I'm new to this list. The NT folk here, are concerned about some timeout errors and stuff that appear in their event viewer. They are building a case to convince management that unless these "samba" errors are fixed, we should move to NT file shares. I think this is a bad idea. Can anyone help me out here. We are running samba 2.0.6 (1st msg) and 2.0.5a (2nd err msg)
2007 Jul 15
1
NNET re-building the model
Hello, I've been working with "nnet" and now I'd like to use the weigths, from the fitted model, to iterpret some of variables impornatce. I used the following command: mts <- nnet(y=Y,x=X,size =4, rang = 0.1, decay = 5e-4, maxit = 5000,linout=TRUE) X is (m x n) Y is (m x 1) And then I get the coeficients by: Wts<-coef(mts) b->h1 i1->h1
2003 May 25
4
Call for help with Samba Printing and WinNT
Hi [Samba]s This is a call for some generous people to try out the process of installation of a Samba printer on WinNT and WinNT Terminal Server Edition. I am working through Kurt Pfeifle's HOWTO on Printing and CUPS printing in Samba 3.0, and finding some issues with NT/TSE. It would be good if we had some confirmation or otherwise of these problems so that Kurt can update his HOWTO (this is
2007 Jul 23
1
replacing double for loops with apply's
Hi, I am doing double for loops to calculate SDs with some weights and wondering if I can get rid of the outer for loop as well. I made a simple examples which is essentially what I am doing. Thanks for your help! -Young #------------------------------------------------------ # wtd.var is Hmisc package # you can replace the 3 lines inside for loop as # sdx[i,] =
2008 Mar 31
1
3d plot
Hi, I would like to have 3d plot, and I found that there is a command "scatterplot3d". x is V, y=sigmaV, and z=TSE (note: After some calculation, I update TSE). How could I do to have 3d plot I want? V<-seq(1279,1280,,100) sigmaV<-seq(0.28,0.29,,100) TSE<-matrix(0, length(V),length(sigmaV)) ps: TSE[i,j] corresponds to V[i] and sigmaV[j]. Thanks, Kate [[alternative HTML
2004 May 20
0
Problems w/ MultipleUsersOnConnection registry entry for Windows 2000 Terminal servers
I'm sending this as an FYI since we don't have all the details worked out and this isn't a Samba problem. We have seen problems (on the one system we tried it on) with MultipleUsersOnConnection registry entry for Windows 2000 Terminal servers that was mentioned in http://lists.samba.org/archive/samba/2004-April/084427.html It may only happen with users who map through Microsoft
2010 Feb 12
2
SAMBA and Windows 2008 TSE licence Server
Hi all! I can't use the TSE licence server in Windows 2008 server. This Server is member of my Samba Domain. My TSE licence server is actived and my licences added, but when i want configure the TSE service and launch the Licence diagnostic the diagnostic failed. I think my problem is due to my Windows Server is not an Active Directory controller. What are the solutions : quit the
2008 Apr 28
0
weighted nonlinear fits: `nls' and `eval'
dear list, my question concerns the use of `eval' in defining the model formula for `nls' (version 2.6.2.). consider the following simple example, where the same model and data are used to perform unweighted and weighted fits. I intentionally used very uneven weights to guarantee large differences in the results #================================CUT=========================== ln
2002 Nov 27
0
RE: security=domain and Citrix MetaFrame on W2K was Windows 2000T erminal Server and Samba
Troy, This does work in the security=domain situations (This is what I am currently using in my smb.conf). You do not need to do anything special for joining the doman when using the aliases. Date: Wed, 27 Nov 2002 10:15:44 -0600 From: "Troy.A Johnson" <troy.johnson@health.state.mn.us> To: <samba@lists.samba.org> Subject: [Samba] security=domain and Citrix MetaFrame on
2008 Apr 30
0
weighted nonlinear fits: `nls' and `eval'
2 days ago I asked this on r-help, but no luck... since this is actually a programming question, I post it here again: my question concerns the use of `eval' in defining the model formula for `nls' when performing weighted fits. (I use version 2.6.2., but according to NEWS there were no changes to `nls' in 2.7.0, so the problem is still present). in this scenario their