similar to: Problem with cups and samba

Displaying 20 results from an estimated 1400 matches similar to: "Problem with cups and samba"

2002 Jun 27
1
winbind problem on solaris (samba head)
Hello, I just buildt via cvs samba head. I used just the option --with-winbind (no pam). The first problem is that sessionid.tdb is missing after the build. I don't know how to make it make a new one (can I copy one from another server or is there something in it that would make that a bad idea?). The other problem is that wbinfo -t says secret is good, wbinfo -g/u return the correct
2002 Jun 14
3
[swat] won't run
The only docs I found on getting SWAT to run, showed editing the inetd.conf file. As this version of RH (7.3) only uses xinetd things don't fit exactly. I have gone through and did everything that one should do for inetd and it still will not work. I don't normally use the thing, but this client will need the more simplistic interface to add shares, etc.
2002 Jun 14
10
Opposite of Samba (Anti-Samba?)
Is there a package to do the opposite of Samba? I.e. I want to use (mount) Win filesystems from a Unix client. -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Rick von Richter Production Support Manager Voice: 858-831-2222 rickv@mwh.com Maintenance Warehouse/Home Depot Fax: 858-831-2221
2002 Jul 19
6
problems mounting smbfs
I've spent the last 2 days trying to get smbfs to mount via fstab. Using redhat 7.3 and the latest samba as of 7/17/02. I can mount from the command line using smbmount as follows: smbmount //localhost/wwwshare /smbwww -o username=smbuser,password=xxxxxxxx I can not mount from the command line using: mount -t smbfs -o username=smbuser,password=xxxxxxxx //localhost/wwwshare /smbwww The
2002 Aug 13
1
Problem with samba and screen saver
I am running: Samba 2.2.4 client On my workstation Red Hat version 7.2 KDE desktop Connecting to our Microsoft network. This works fine. However when I turn on the screen saver with password and the screen locks I cannot get back in (none of my passwords work, including the root password and I must use the power switch to restart the workstation). Does anyone know what password the screen
2012 Jun 22
1
Vignettes are not being (re)built.
I'm adding a couple of vignettes to an existing package. When I make a change to the sweave file, and run the check command, c:\conifers\trunk>R CMD check rconifers I get the following message(s) in the 00check.log file: * checking for unstated dependencies in vignettes ... OK * checking package vignettes in 'inst/doc' ... WARNING Package vignette(s) without corresponding PDF:
2004 Aug 26
4
(no subject)
> I don't understand how that would help. The batch file shouldn't invoke > wine, since it's a Windows batch file, right? Yes, you're right, I was tired when I wrote that. Has the regression testing been successful? Ivan.
2002 Sep 29
2
Connecting problem:Need Help
I have problem connecting a win 98 client to a samba 2.2.5 server on a linux box running redhat 7.2 I can see the server on the client but when I click the server icon I get \\lindoze is no accessible. At that moment I have scanned the lan card an I have this screen dump. 04:15:55.053492 kjersti.hauge.netbios-ns > 192.168.0.255.netbios-ns: >>> NBT UDP PACKET(137): QUERY; REQUEST;
2001 Feb 16
0
polygon border colors
Simple question: is it true that polygon (x, y, col=vec, border=vec, ...) will cycle through the vec colors for fills but not for the border colors when sending multiple polygons? thanks, Denis White US EPA, 200 SW 35th St, Corvallis, Oregon, 97333 USA voice: 541.754.4476, email: white.denis at epa.gov web: www.epa.gov/wed/pages/staff/white/
2002 Mar 08
0
predict.tree
We are trying to implement Breiman's one standard deviation pruning rule for tree models. I have run into a problem with predict.tree. This bit of R code, a skeleton for a cross-validation process, library (tree) dat <- data.frame (matrix (runif (3*100), nrow=100, ncol=3)) a.dat <- dat[1:50,] b.dat <- dat[51:100,] a.tree <- tree (a.dat) b.pred <- predict.tree (a.tree,
2002 Mar 06
2
Installing a Package in Windows 2000
I'm using R 1.4.1 under Windows 2000 and am experiencing difficulty installing a package. I've included an example output using Rcmd build, but the same problem occurs with Rcmd check and Rcmd INSTALL. The error (make[1]: /bin/sh.exe: Command not found) is not a new one - it's referenced in readme.packages among other locations. I've placed a copy of sh.exe in C:\bin, but it
2001 Jul 05
3
Where is the html page that lists all functions?
>> In the previous release of r, theire was a index of all functions in R. >> It was was i understand as reference. It was simple to search in this html >> page by function name or by keywords. >> Why, by god, this page is removed in the Veriosn 1.3 of R??? > Take a look at R_HOME/doc/html/function.html .... The browser-based search > engine was not on that page, but
2002 Jun 17
2
Rsync 2.4.6 and Hammerd CPU's
Hello - I'm running Redhat 7.1 Rsync 2.4.6 and am having some problems with the CPU's getting swammped. What we have is basically an 3 boxes, 1 machine (the factory) is a where applications store the images that eventually are used for the site, then the other 2 are the webservers that the have copy of the images. The person who set the machines up used rsync to move any new images from
2002 Apr 05
2
weighted 2 or 3 parameter weibull estimation?
I've figured out how to use optim (barely) to estimate 2 parameter = weibull distributions. I can't get over how easy this is. What I need to = do is use a weight in the observations..... For example,=20 the tree diameters and weights are are=20 4.70 , 100 6.00, 98 7.10, 75.0 8.10, 86.3 8.60, 80.456 8.90, 20.5 9.50, 16.6 11.40, 12.657 11.80, 12.47 14.50,
2012 Jul 13
4
R-squared with Intercept set to 0 (zero) for linear regression in R is incorrect
Hi, I have been using lm in R to do a linear regression and find the slope coefficients and value for R-squared. The R-squared value reported by R (R^2 = 0.9558) is very different than the R-squared value when I use the same equation in Exce (R^2 = 0.328). I manually computed R-squared and the Excel value is correct. I show my code for the determination of R^2 in R. When I do not set 0 as the
2001 Jul 19
2
classification tree out put
Hello, I'm attempting to classify data using tree(). summary(tree()) indicates that I have a very good classification rate. What I'd like to know is which tokens in the data set are correctly classified and which are not. Is there a method for associating the classification with the token? I've been reading Chambers and Hastie (1992) chapter 9 on tree-based models, but find no
2002 Jan 04
1
plotting maps?
I thought I had plotted a map of oregon and washington and overlayed some points using R. Is that possibe since I can't seem to find the source file I used or commands for plotting maps and points? If not, sorry for the bother... Thanks, Jeff. Jeff D. Hamann Hamann, Donald & Associates, Inc. PO Box 1421 Corvallis, Oregon USA 97339-1421 Bus. 541-753-7333 Cell. 541-740-5988 jeff_hamann
2003 Feb 16
1
__stdcall funcitons called using .C() on win32 chokes
I've developed a dll (win32) of a bunch of functions prototypes as: /* for building on *nix */ #ifndef WIN32 #define __stdcall /*nothing*/ #endif void __stdcall dbh_2_height( const unsigned long *func_idx, const unsigned long *metric, const unsigned long *species, const double *dbh, double *pred_height ); and have created a R interface
2002 Jan 16
1
getting the response (dependent) from formula?
I'm trying to build a vector (fitting systems of equations) and I'm having a little trouble getting the response variables from a list of formulas... bdgmodel <- lbdg ~ d1sqr + ld1 + lhg hgmodel <- lhg ~ ht2 + lht + whc inst <- ~ d1sqr + ld1 + ht2 + lht + whc systemeq <- list( bdgmodel, hgmodel ) # manually generate the y matrix... y <- cbind( matrix( lbdg ),
2002 May 15
1
can't get rcmd to work on windows2k....
I'm trying to make sure my R package will install properly (build help files, etc) and when I try to run the rcmd check (or any rcmd option) I get the following error. Does dcf.pm stand for perl module? If not, why do I get this message? C:\systemfit\r_code>rcmd check --help Can't locate R/Dcf.pm in @INC (@INC contains: c \PROGRA~1\r\rw1041\share\perl; /usr/lib/perl5/5.6.1/cygwin-multi