similar to: FC5 smbpasswd not working

Displaying 20 results from an estimated 400 matches similar to: "FC5 smbpasswd not working"

2006 Sep 20
2
migrating smbpasswd backend to ldap backend
i would like to use an ldap backend in place of my existing smbpasswd backend because i just can't get unix password synchronization to work. Any suggestions on how i can make this smooth migration ?
2001 Jan 27
1
termplot fails for composite non-factor terms (PR#828)
I am running R 1.2.1 under Windows 98SE. termplot() currently fails when there are composite terms, thus: > library(mass) > data(hills) > hills.lm <- lm(time ~ climb + poly(dist, 2), data = hills) > termplot(hills.lm) Hit <Return> to see next plot: Error in eval(expr, envir, enclos) : Object "dist" not found The call >
2004 Mar 18
1
termplot has problems with a single term (fix included) (PR#6679)
On Thu, 18 Mar 2004 k.hansen@biostat.ku.dk wrote: > The bug exists on R-1.9.0-alpha compiled the 10/3. > > Termplot has a problem if either the model only contains a single term > or if asked to plot a single term. In addition there are problems with > the option se = TRUE. I can't reproduce this in either R-devel or 1.8.1, and termplot hasn't changed since January. I do
2004 Mar 18
1
termplot has problems with a single term (fix included) (PR#6675)
The bug exists on R-1.9.0-alpha compiled the 10/3. Termplot has a problem if either the model only contains a single term or if asked to plot a single term. In addition there are problems with the option se = TRUE. Analysis: termplot starts with terms <- if (is.null(terms)) predict(model, type = "terms", se = se) else predict(model, type = "terms", se = se,
2000 Jan 10
0
./configure --program-suffix doesn't work
-----BEGIN PGP SIGNED MESSAGE----- Just recently we installed ssh2 here to avoid problems in ssh-1.2.27. To keep backwards compatibility we installed openssh-1.2.1pre24. Unfortunately, the --program-suffix option for the configure script doesn't seem to work. In particular, i was trying to do './configure --prefix=/usr/local --program-suffix=1'. The programs did not compile with
2002 Sep 21
7
Another printing problem...
I'm running samba 2.2.3a-6 under Debian (testing) and I am having a heck of a time getting Windows 2000 to print to my printer. I keep getting that "Access denied, unable to connect" message. At one point I had it so you could print test pages, but as soon as you tried to print from an application, it would break. However, that doesn't even work anymore. I've been reading
2001 Mar 07
0
Problems upgrading samba
I have inheirited a samba-1.9.18p4 running on an alpha machine. I want to upgrade it to something newer. The machine serves a disk filled with network installs of our commercial software. I have tried installing both samba-2.0.7 and samba-2.2.0-alpha2, but both cause failures on the DOS machines. In specific, Corel WordPerfect 8 exits with an illegal instruction if a newer version of Samba is
2001 Apr 17
0
PCPine performs illegal operation writing fcc over samba
This is a resend, since the samba list didn't like my logfile. I guess it was too big. The logfile is now at: http://www.nmt.edu/~wcolburn/samba.log I am sending this to both the pine people and the samba people. My hope is that one of you might be able to help me. :) PCPine is installed on a network drive (Y:) here. It is run from Windows 95 boxes. The users account is on a
2002 Apr 18
2
Changing tick mark labels
Hello, Can anyone help me out with this problem? After performing logistic regressions and testing the significance with likelihood ratios, I have plotted the results using "termplot". I am wondering, how to get the names of my variables to appear on the x-axis rather than ascending numbers? I have used: termplot(fm, se=T, axes=FALSE, col.se="black") axis(1, 1:4,
2009 Apr 15
3
install error for rails-widgets
When i am trying to install the rails-widgets on windows vista from http://wiki.github.com/paolodona/rails-widgets location I get an error. Please help. cd myrails-app ruby script/plugin install git://github.com/paolodona/rails-widgets.git rake widgets:setup following is the error ---------------------------------------- rake aborted! Don''t know how to build task
2013 Jul 18
2
Help building OPUS library using FIXED_POINT option
Hi, We are rebasing our audio compression subsystem using OPUS rather than SPEEX. The platform is Android but this piece is written in C code: we need to support armv5/armv7/x86 architectures.... and we use the released opus-1.1beta package from here<http://downloads.xiph.org/releases/opus/opus-1.1-beta.tar.gz>. A lot of our OPUS build system + code to drive the audio compression has been
2010 Mar 13
2
Un poco de ayuda con xtable
Hola, buenas tardes: Necesitaba un poco de socorro con xtable, si fuese posible. Mi problema es que quiero 'formatear' específicamente algunas celdas de una tabla generada con xtable y no soy capaz. Detallo el problema de ejemplo: vv<-rbind(c(1,1,0,1),c(0,0,1,1)) vv[2,3]<-<-paste("\\textbf{",vv[2,3],"}",sep="") xtable(vv) > xtable(vv) % latex
2009 Jul 20
2
Crazied NTLM_AUTH on samba 3.4.0
Hello, For these days i'm trying to update the samba PDC of the network of the version 3.0.28a to 3.4.0. I'm configured the ldap pass, winbind and the all services, when they have sucess of update. But now i have a problem with the ntlm_auth: he take and show random messages on auth. For example: 1 time return 0xc00000c3 ( NT_STATUS_INVALID_NETWORK_RESPONSE) or 0x1c010002 (???) and much
2004 Oct 26
2
in.tftpd not responding when listening on 255.255.255.255
I've got in.tftpd configured on a Fedora Linux server. The service is configured to boot printersm and sun sparcs. The printers boot fine, but there's a problem with the sparcs. When the sparc sends an initial request for a file, in.tftpd forks a process to handle it. If I do a "netstat -pan | grep tftp" I see that this forked process is listening on local address
2006 Apr 14
0
error message: Can't contact the NETLOGON pipe
Hi all, I have two samba 3.0.21c + openldap domains setup and the appropriate trusts between them are functioning. Whenever a user logs in to the domain that the machine is not a member of the logon script fails. The only hint I've been able to find are the following messages: Apr 14 08:00:41 hrhmachdc1 winbindd[3923]: [2006/04/14 08:00:41, 1]
2003 Mar 26
0
termplot (PR#2687)
# r-bugs@r-project.org `termplot' bombs if the original dataset contains NAs in the predictors, even if these were ignored during fitting: test> bug.data_ data.frame( x=c(1:3, NA), y=runif( 4)) test> lm.tpbug_ lm( y~x, data=bug.data) test> termplot( lm.tpbug) Error in xy.coords(x, y, xlabel, ylabel, log) : subscript out of bounds A simple fix seems to be add the
2008 May 12
1
PDC replacement
Hi all, I am at a small organization that has been using Samba for authentication for a while now, and I have inherited our Samba setup from our previous administrator. The server is in disrepair software-wise and would really benefit from a good reinstall. The problem is that our Samba implementation is mission-critical, so we need to get it replicated to another machine which can handle the
2007 Jan 23
2
replacing a samba pdc server.
Hello and good day, we're in the middle of migrating an old samba (3.0.11) pdc server, to a new server (3.0.23d) i thought i could do a NET VAMPIRE to make the new server sync with the old one. but ofcoz' that doesn't work (NT error code 0x1c010002) is there an other way to make these servers sync ? ea. can I do pdbedit -e tdbsam:/dump.tdb on the old server, and pdbedit -i
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
2008 Feb 07
1
Net Join Problem
I am having difficulty joining my new samba server to my domain. I am replacing an old member server. I am using the same config file with a new netbios name I try 'net rpc join -S my-pdc -W my-domain -U root' and get the following utils/net_rpc_join.c:net_rpc_join_newstyle(304) error setting trust account password: NT code 0x1c010002 Unable to join domain my-domain. I can dynamically