Displaying 15 results from an estimated 15 matches for "6.4e".
Did you mean:
6.4
2006 Sep 18
1
Domain Logins
Hi,
I have troubles when trying to login to my SAMBA Domain, joinung the
workstations to the domain was no problem, browsing shares is no problem, but no
damain login.
I'm running centos 4.3;
rpm -qa |grep samba
system-config-samba-1.2.21-1
samba-client-3.0.10-1.4E.9
samba-3.0.10-1.4E.9
samba-common-3.0.10-1.4E.9
rpm -qa |grep openldap
openldap-clients-2.2.13-6.4E
2007 Mar 14
3
Errors logging in from Windows - LDAP + Samba PDC
Just to get these things out of the way
CentOS (2.6.9-42.0.10.ELsmp)
# yum list installed | grep openssl
openssl.i686 0.9.7a-43.14 installed
openssl-devel.i586 0.9.7a-43.14 installed
# yum list installed | grep samba
samba.i386 3.0.10-1.4E.11 installed
samba-client.i386
2007 Jan 09
1
Dependencies
Hi all,
If I try yum grouplist "FTP Server" I get the next large output:
Dependencies Resolved
=============================================================================
Package Arch Version Repository Size
=============================================================================
Installing:
OpenIPMI x86_64
2012 Oct 19
1
factor score from PCA
Hi everyone,
I am trying to get the factor score for each individual case from a principal component analysis, as I understand, both princomp() and prcomp() can not produce this factor score, the principal() in psych package has this option: scores=T, but after running the code, I could not figure out how to show the factor score results. Here is my code, could anyone give me some advice please?
2006 Jul 11
1
Building a new 2.6 kernel
I needed more serial ports that the basic CentOS Version 4 system is built to
use so I'm using the following kernel build instructions to build the new 2.6
kernel:
http://www.hylafax.org/content/Handbook:Basic_Server_Configuration:Modem-speci
fic_Guidance
I believe the procedure is correct but the kernel is not building.
I used the "kernel-2.6.9-34.EL.src.rpm file that I found on one
2011 Jul 13
1
AR-GARCH with additional variable - estimation problem
Dear list members,
I am trying to estimate parameters of the AR(1)-GARCH(1,1) model. I have one
additional dummy variable for the AR(1) part.
First I wanted to do it using garchFit function (everything would be then
estimated in one step) however in the fGarch library I didn't find a way to
include an additional variable.
That would be the formula but, as said, I think it is impossible to add
2010 Apr 12
0
WMTSA "wavCWTPeaks" : Error in if (time.start < times.range[1]) time.start <- times.range[1]
I have attached the signal that causes the error message in this email subject.
Only columns 1 and 3 have to be considered. It is the work trajectory of a molecule migrating between two equilibrium conformations.
The curve has 2 peaks, as shown in its plot. But I keep missing the 2nd one. Here is my short script:
library(wmtsa)
setwd("C:/Documents and Settings/Monville/Alanine
2007 Mar 19
1
Dovecot - with LDAP auth backend
I have the following installed
(1) CentOS 2.6.9-42.ELsmp
(2) dovecot-1.0-3_50.rc27.el4.at,
(3) openldap-2.2.13-6.4E
(A) I have added the following schema into /etc/openldap/schema
attributetype ( 1.3.6.1.4.1.14237.1.1.1.1 NAME 'mailquota'
DESC 'The size of space the user can have until further messages get
bounced.'
EQUALITY integerMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
2011 May 16
2
wireframe advice - with reproducible code
Dear List,
i am trying to produce a 3d plot using wireframe using the code:
wireframe(Residuals_FD ~ Elevation * Temperature, data = data2, scales = list(arrows = FALSE), drape = TRUE, colorkey = TRUE)
As you can see when the code (using the data below) is run the plot area is set-up correctly but the actual surface is missing?
Any help would be greatly appreciated.
Chris
#data
Elevation
2007 Mar 20
1
[Re: Dovecot - with LDAP auth backend]
Hi Timo,
What I did actually was change option (D) to the following below, or do I have to remove this one altogether?
plugin {
quota = maildir
}
Then added the attribute mailquota=10240 as I had defined in my dovecot schema
And when I did a tried to run getquota "" or getquotaroot inbox (via telnet localhost 143), it would return me a "no quota" message.
What I am able
2007 Mar 14
1
How to enable download via web browser with vsftpd?
HI ,
I setup vsftp yesterday as a local user only mode. No anonymous was enabled.
I set up this vsftpd on my machine running CentOS 4.4. its ip is
192.168.101.25. so when I login as ftp://192.168.101.25/ via web browser, I
am promted the username as password. After inputing username and password, I
can login successfully. Then I can download everything as usual. But I can
not upload any data ?
2007 Mar 10
8
LDAP Server configs
Hi Guys,
I'm creating an ldap server for my network. I'm quite confuse about /etc/ldap.conf and /etc/openldap/ldap.conf files. What are the difference of those two config files? Thanks!
cheers,
kintaro Oe
---------------------------------
Need Mail bonding?
Go to the Yahoo! Mail Q&A for great tips from Yahoo! Answers users.
-------------- next part --------------
An HTML
2002 Aug 23
2
Surprising result from integrate
Hi all,
sorry for this extensive question, but I think that I'm missing something
fundamental.
I stepped into a surprising result with the integrate function and I would
be glad if someone could put some light onto this. I try to integrate over
an s-shaped growth-function. The results from this calculation seem to be
correct for small values of t. Just for fun I tried some large values and
2004 Jul 26
5
covariate selection in cox model (counting process)
Hello everyone,
I am searching for a covariate selection procedure in a cox model formulated
as a counting process.
I use intervals, my formula looks like coxph(Surv(start,stop,status)~
x1+x2+...+cluster(id),robust=T) where id is a country code (I study
occurence of civil wars from 1962 to 1997).
I'd like something not based on p-values, since they have several flaws for
this purpose.
I turned
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.