Displaying 20 results from an estimated 200 matches similar to: "Net Join Problem"
2001 Nov 20
0
Release 2.2.2 Performance
Hi ,
Recently upgraded from 2.0.6 to 2.2.2
Samba runs on an E4000 using Solaris 7 ver 11/99 32 bit
When installing VB apps on client boxes under NT 4 service pack 6A
the installation stalls for 60 secs after 34% & then completes.
For users who have Windows 2000 installed there is no problem.
Also under the previous Samba version there were no problems
installing for either NT or 2000
2001 Oct 29
1
Release 2.2.2
Hi ,
Downloaded the source on Friday 26th
Hardware :- SUN E4000
O/S :- Solaris 7 11/99 32bit
C compiler :- Sun WorkShop ver 5 32bit
The configure went O.K.
The make failed in compiling nsswitch/winbind_nss.c with -KPIC
Error messages as follows
nsswitch/winbind_nss.c : warning : argument #4 is incompatible with
prototype
prototype: pointer to int : "nsswitch/winbind_nss.c",
2008 Apr 12
1
Error join Samba: error setting trust account password
Hello!
I'm trying join client in samba server. But, get this error:
[2008/04/12 12:18:53, 0] utils/net_rpc_join.c:net_rpc_join_newstyle(304)
error setting trust account password: NT code 0x1c010002
Unable to join domain PDCSERVER.
The password is correct (when i type wrong password the error message
changes) and my network is:
- Client: 192.168.0.X
- PDC Server: 192.168.1.1
- Wireless
2007 Jul 20
1
3.0.25b problem joining 3.0.23d domain..
Hi,
My PDC is running on 3.0.23d. I have more than 50+ users (Win XP ,
Linux) connected to it. Today I've downloaded 3.0.25b and wanted to add
to domain new server. For a while I was wondering if 3.0.25b can join to
elder 3.0.23d but gave it goal. This message I got during joining:
/opt/samba-3.0.25b/bin/net rpc join -U user1%pass1
Starting service: samba
[2007/07/20 13:02:35, 0]
2008 May 12
0
BDC problem joining domain
We have a PDC running Samba Version 3.0.24 while the BDC is running
Samba Version 3.0.28a. Both domain controllers are running Gentoo. The
problem seems to be a compatibility issue between two versions of Samba.
Please see below the error when I tried joining the BDC.
[2008/05/12 15:15:25, 0] utils/net_rpc_join.c:net_rpc_join_newstyle(310)
error setting trust account password: NT code
2007 Aug 23
0
Winbind 3.0.25c: Problem joining 3.0.24 domain
I have a machine with a running samba 3.0.24 with winbind.
After an update to 3.0.25c I couldn't connect from win clients.
So I first tried to rejoin and got some errors about trust account problems -
sorry didn't save them.
Then I deletet the account the tried a fresh join from the machine:
net rpc join -Uaga -Waag -Serde
Password:
[2007/08/23 11:13:39,
0]
2007 Oct 29
0
Odd problem adding machine accounts
Trying to add machine accounts using the following:
add machine script = /usr/sbin/useradd -c Machine -d /dev/null -g
machines -s /bin/false %u
I get the following in the log file on the server
prs_mem_get: reading data of size 2 would overrun buffer by 1 bytes.
api_samr_set_userinfo: Unable to unmarshall SAMR_Q_SET_USERINFO.
api_rpcTNP: samr: SAMR_SET_USERINFO failed.
and the following error
2003 Jan 16
1
graphics
Dear R community,
I need to plot the results of some simulations I did using QTL
Cartographer. I am plotting LOD scores over three chromosomes. The three
plot have to be one next to the other.
The procedure I am using is:
par(mfrow=c(1,3))
plot(x$x, x$y, ylim=c(0,35), type="l", col="blue", las=1, xaxs="i",
yaxs="i", xlab="X Chromosome",
2001 Sep 18
1
case weights in coxph (survival)
Hi,
I am having trouble with the survival library, particualrily the coxph
function.
the following works
coxph(jtree9$cph.call,z,rep(1,dim(z)[1]))
Call:
coxph(formula = jtree9$cph.call, data = z, weights = rep(1, dim(z)[1]))
coef exp(coef) se(coef) z p
SM 0.2574 1.294 0.0786 3.274 1.1e-03
Sex -0.1283 0.880 0.1809 -0.709
2002 May 09
3
read.table (PR#1535)
I downloaded the latest version of R (1.5.0) and issued a read.table() command
that used to work with (1.3.1). Unfortunately I erased 1.3.1 from my hard
drive after I downloaded R 1.5.0.
Here's the command and the error message I get under 1.5.0:
>
golub1<-read.table("C:/Microarrays/code/data_set_ALL_AML_train.txt",sep="\t",q
2001 Jan 10
2
nearest neighbors
Is there an implementation of a reasonable k-nearest neighbor finder
already in one of the packages?
--
+---------------------------------------------------------------------------+
| Robert Gentleman phone : (617) 632-5250 |
| Associate Professor fax: (617) 632-2444 |
| Department of Biostatistics office: not yet
2001 Sep 18
1
case weights-coxph (solved)
Hi,
The following function does work
optimize.W<-function(W,k,G,Groups,cph.call,z){
n<-length(Groups)
grp.wt<-rep(0,n)
for(i in 1:(length(G))){
ind<-Groups == G[i]
if(G[i]!=k){
grp.wt[ind]<-W[i]
}
elsegrp.wt[ind]<-1
}
z<-data.frame(cbind(z,grp.wt=grp.wt)) #needed to make the case weights
#part of the data
2002 Mar 21
2
Small typo in An Introduction to R (PR#1402)
At a snail's pace I keep on translating an introduction to R into italian;
I have reached the section describing the glm() function, in which some
example code is presented. The very last line of code, before the
beginning of the section on Poisson models is:
ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fmp)); c(ldp, ldl)
which of course gives results 43.663 and 43.663; the correct code
2002 Mar 21
2
Small typo in An Introduction to R (PR#1402)
At a snail's pace I keep on translating an introduction to R into italian;
I have reached the section describing the glm() function, in which some
example code is presented. The very last line of code, before the
beginning of the section on Poisson models is:
ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fmp)); c(ldp, ldl)
which of course gives results 43.663 and 43.663; the correct code
2013 Jul 18
0
Wine release 1.6
The Wine team is proud to announce that the stable release Wine 1.6
is now available.
This release represents 16 months of development effort and around
10,000 individual changes. The main highlights are the new Mac driver,
the full support for window transparency, and the new Mono package for
.NET applications support.
It also contains a lot of improvements across the board, as well as
support
2000 Dec 24
1
gretl and R: info and request
Hello,
I thought some of you might like to know about a GNU project
that is complementary to R in some ways, namely gretl
http://ricardo.ecn.wfu.edu/gretl
(GNU Regression, Econometrics and Time-series Library).
gretl (a library with cli and gui clients, the gui using
GTK) is designed to be very user-friendly, and suitable
for teaching econometrics. It has a fairly wide variety
of least-squares
2001 Nov 03
1
Help with Windows build
I'm trying to do a Windows build of Ray Brownrigg's port of the maps
library, and running into some problems.
There's a makefile for the shared library. I suspect that I just need
to change that to get it right, and everything will build properly,
but I'm running into trouble. Here's the original makefile, along
with my comments about changes:
>SRC= mapget.c mapproject.c
2001 Nov 03
1
Help with Windows build
I'm trying to do a Windows build of Ray Brownrigg's port of the maps
library, and running into some problems.
There's a makefile for the shared library. I suspect that I just need
to change that to get it right, and everything will build properly,
but I'm running into trouble. Here's the original makefile, along
with my comments about changes:
>SRC= mapget.c mapproject.c
2016 May 03
2
Centos 6.7: kernel: EDAC MC0: CE row 2, channel 1, label "": (..... (Correctable Patrol Data ECC))
After update from centos 6.6 to centos 6.7 and reboot it, I have get a
lot of this error into /var/log/messages:
> May??3 11:27:20 s-virt kernel: EDAC MC0: CE row 2, channel 1, label
> "": (Branch=0 DRAM-Bank=2 RDWR=Read RAS=6093 CAS=896, CE Err=0x10000
> (Correctable Patrol Data ECC))
> May??3 11:27:21 s-virt kernel: EDAC MC0: CE row 2, channel 1, label
> "":
2015 Nov 04
4
Two WiFi routers
Richard Zimmerman wrote:
> I've got a 3 building network...
>
> Buildings 1/2 between then have 3 wireless routers all pointed to one
> CentOS server.
>
> The 3rd building across the WAN has 3 wireless routers all into one
> server...
>
> In my case They are for local LAN access so they are setup to pint to a
> single IP/gateway address...
Thanks for your