Displaying 7 results from an estimated 7 matches for "e2c".
Did you mean:
2c
2008 Jun 06
1
How to force two regression coefficients to be equal but opposite in sign?
...1.29745 0.57295 2.265 0.073 .
E1B -0.23571 0.95738 -0.246 0.815
E1C -0.57057 1.20490 -0.474 0.656
E1D -0.22988 0.98274 -0.234 0.824
E1E -1.17181 1.02918 -1.139 0.306
E2B -0.16775 0.87803 -0.191 0.856
E2C 0.05952 1.12779 0.053 0.960
E2D 0.43077 1.19485 0.361 0.733
E2E 0.40633 0.98289 0.413 0.696
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Residual standard error: 1.004 on...
2009 Oct 31
1
HP Proliant ML G6 problem.
...rs to use during installation only rpms and source rpms which (as I
think) are useless at install time and can be used only when the system is
installed.
I also tried CentOS 5 x64 and there are no problems with my hardware then,
the installation is ok.
DVD-RW is: HP Super Multi DVD Rewriter GH40L E2C
NIC is: HP NC107i Integrated PCI Express Gigabit Server Adapter
What should I do? Where to start from to solve the problem?
With regards,
R.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20091031/51d6110f/...
2015 Jul 13
0
Strange issue with share access on domain controllers
...ws 10, also 7 and 8.x
Solution: GPEDIT.MSC -> Computer -> Administrative templates -> Network
-> Networkprovider -> Hardened UNC Paths
Added
\\foo.lan\netlogon and Value:
RequireMutualAuthentication=0,RequireIntegrity=0,RequirePrivacy=0
also added this for \\dc1\... and \\dc1.e2c.lan\... works :)
>-----Oorspronkelijk bericht-----
>Van: samba [mailto:samba-bounces at lists.samba.org] Namens Zerwes, Klaus
>Verzonden: maandag 13 juli 2015 15:53
>Aan: Sébastien Le Ray; Samba Mailing List
>Onderwerp: Re: [Samba] Strange issue with share access on
>domain...
2015 Jul 12
7
Strange issue with share access on domain controllers
Hi list,
I've a strange issue with Windows 7 (also occurs on 8.1) when accessing
shares on domain controllers. If I use IP address or in-domain FQDN
(server.domain.name), all is right. If I use another DNS entry pointing
to the same IP, share access fails with following message (translated
from french) :
\\somehost.somsuffix\someshare is not accessible. […] Invalid parameter
Issue
2015 Jul 09
2
Windows 10 in Samba 3 domain: netlogon share access denied
any messages in the windows 10 event logs, that could give some extra insight.
according to
https://social.technet.microsoft.com/Forums/en-US/7f5207cc-b202-47fc-bbb8-9ebe46a31961/network-logon-script-failure?forum=WinPreview2014General
>\\foo.lan\netlogon
should work.
but, https://adsecurity.org/?p=1405
has some good info about the latest patch about hardening GPO. (which imo wil be
2008 Jun 09
1
Systemfit (was RE: How to force two regression coefficients to be equal but opposite in sign?)
...> E1B -0.23571 0.95738 -0.246 0.815
> > E1C -0.57057 1.20490 -0.474 0.656
> > E1D -0.22988 0.98274 -0.234 0.824
> > E1E -1.17181 1.02918 -1.139 0.306
> > E2B -0.16775 0.87803 -0.191 0.856
> > E2C 0.05952 1.12779 0.053 0.960
> > E2D 0.43077 1.19485 0.361 0.733
> > E2E 0.40633 0.98289 0.413 0.696
> >
> > ---
> >
> > Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ...
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.