Displaying 20 results from an estimated 100 matches for "150000".
Did you mean:
10000
2005 Apr 02
2
winbind on a domain with 150000 users
I am trying to use winbind on a domain with 150000 users, but I can't
make it work. Is that because I have done something wrong, or doesn't
winbind scale to that many users?
It works a little, I can use wbinfo to translate between sid, uid and
gid, and I can also get the groups a user is in. But when I try to get
the list of all users with...
2006 Mar 15
0
wbinfo -u responds with Error looking up domain users
...home/njcloud:/bin/bash
acrardi:x:1035:513:System User:/home/acrardi:/bin/bash
kkkiefe:x:1036:513:System User:/home/kkkiefe:/bin/bash
tgmarcu:x:1037:513:System User:/home/tgmarcu:/bin/bash
kakeese:x:1041:1011:System User:/home/kakeese:/bin/bash
<snip>Hendricks users:
HENDRICKS\acbevin:*:150009:150000:Bevins, Armand
C.:/home/HENDRICKS/acbevin:/bin/false
HENDRICKS\acdusa:*:150010:150000:Dusa, Adrian
C:/home/HENDRICKS/acdusa:/bin/false
HENDRICKS\achagga:*:150011:150000:Haggard, Adalyn
C.:/home/HENDRICKS/achagga:/bin/false
HENDRICKS\achatt:*:150012:150000:Chattin,
Apastra:/home/HENDRICKS/achatt:/bi...
2013 Feb 04
1
Trust problems after upgrade from 3.5 to 3.6
...st/
> idmap alloc backend=ldap
> idmap alloc config:ldap_url=ldap://localhost
> idmap alloc config:ldap_base_dn=ou=idmap,dc=xxxxxxxx,dc=xx
> idmap alloc config:ldap_user_dn=cn=root,dc=xxxxxxxx,dc=xx
> idmap cache time=120
> idmap uid=150000-200000
> idmap gid=150000-200000
> template shell=/sbin/nologin
> idmap config XXXXXXXX:backend=nss
> idmap config XXXXXXXX:range=1000-999999
After the upgrade I changed it this way:
> idmap config *:backend=ldap
> idmap config *:ra...
2007 Oct 02
1
problems with glm
I am having a couple of problems someone may be able to cast some light on.
Question 1:
I am making a logistic model but when i do this:
glm.model = glm(as.factor(form$finished) ~ ., family=binomial,
data=form[1:150000,])
I get this:
Error in model.frame(formula, rownames, variables, varnames, extras,
extranames, :
variable lengths differ (found for 'barrier')
which is very strange because when I name the predictive factors like this:
glm.model = glm(as.factor(form$finished) ~ form$first +...
2012 Dec 04
3
list to matrix?
How do I convert a list to a matrix?
--8<---------------cut here---------------start------------->8---
list(c(50000, 101), c(1e+05, 46), c(150000, 31), c(2e+05, 17),
c(250000, 19), c(3e+05, 11), c(350000, 12), c(4e+05, 25),
c(450000, 19), c(5e+05, 16))
as.matrix(a)
[,1]
[1,] Numeric,2
[2,] Numeric,2
[3,] Numeric,2
[4,] Numeric,2
[5,] Numeric,2
[6,] Numeric,2
[7,] Numeric,2
[8,] Numeric,2
[9,] Numeric,2
--8<--...
2007 Oct 15
0
partitioning data
I am trying to train on part of my data and test on another part:
> glm.model = glm(as.factor(h_finished) ~ . , family=binomial,
data=form[1:150000,])
> pred = predict(glm.model, data=form[150001:200000,-1], type="response")
> t = table(pred, form[150001:200000,1])
Error in table(pred, form[150001:2e+05, 1]) :
all arguments must have the same length
but try as I might my pred has too many lines:
> length(pred)
[1]...
2007 Oct 16
0
partitioning data [SEC=UNCLASSIFIED]
...project.org]
On Behalf Of stephenc at ics.mq.edu.au
Sent: Tuesday, 16 October 2007 5:30 AM
To: r-help at stat.math.ethz.ch
Subject: [R] partitioning data
I am trying to train on part of my data and test on another part:
> glm.model = glm(as.factor(h_finished) ~ . , family=binomial,
data=form[1:150000,])
> pred = predict(glm.model, data=form[150001:200000,-1],
> type="response") t = table(pred, form[150001:200000,1])
Error in table(pred, form[150001:2e+05, 1]) :
all arguments must have the same length
but try as I might my pred has too many lines:
> length(pred)
[1]...
2008 Feb 11
0
Fwd: Re: domain member WIN2003 AD - Trusted Domain
...A
realm = DOMAINA.DOM.NET
security = ads
client use spnego = Yes
password server = passwordserver.DOMAINA.DOM.NET
server string = %h server
dns proxy = no
encrypt passwords = true
invalid users = root
socket options = TCP_NODELAY
# idmap - Posix Nummernbereich fuer die Abbildung
idmap uid = 100000-150000
idmap gid = 100000-150000
idmap domains = DOMAINA DOMAINB
idmap config DOMAINA:default = yes
idmap config DOMAINA:backend = tdb
idmap config DOMAINA:range = 100000-150000
idmap config DOMAINB:default = no
idmap config DOMAINB:backend = tdb
idmap config DOMAINB:range = 100000-150000
idmap alloc b...
2004 Oct 11
2
question on function argument
dear all,
i've looked at the r-intro (chapter 10, writing your own functions)
and searched the r-help archives but am still stuck at the following.
i have a simple function, something like:
myhist<-function(yvar) {
y<-subset(myframe,yvar>1 & yvar<=150000,select=yvar)
attach(y)
hist(yvar)
}
calling it as follows:
myhist(x1)
gives the following error:
Error in attach(y) : attempt to set an attribute on NULL
what am i doing wrong here?
thanks in advance, edwin
2009 Mar 05
1
[PATCH] OCFS2: Pagecache usage optimization on OCFS2
...odate" function is already used by ext2/3/4.
With the following patch random read/write mixed workloads or random read after
random write workloads can be optimized and we can get performance improvement.
I did a performance test using the sysbench.
#sysbench --num-threads=16 --max-requests=150000 --test=fileio --file-num=1
--file-block-size=8K --file-total-size=1G --file-test-mode=rndrw
--file-fsync-freq=0 --file-rw-ratio=0.5 run
-2.6.29-rc7
Test execution summary:
total time: 82.3114s
total number of events: 150000
total time taken by e...
2008 Feb 11
4
domain member WIN2003 AD - Trusted Domain
Hi folks,
we have a problem with a win2003 DC and Samba. The authentification of users from the dc works fine, but when we added users from a forest trust in a active directory localgroup, samba don't find the users...
I post this problem here:
https://bugzilla.samba.org/show_bug.cgi?id=5245
Maybe you can help.
Cheers
Paul
--
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu
2006 Nov 17
3
"I have no name!" shown as username
...og file = /var/log/samba/log.%m
max log size = 50
client signing = Yes
os level = 2
preferred master = No
local master = No
dns proxy = No
wins server = 10.11.3.177
ldap ssl = no
socket address = 10.11.3.210
idmap uid = 150000-550000
idmap gid = 150000-550000
template homedir = /home/MARKETSCAN/%U
template shell = /bin/bash
winbind enum users = Yes
winbind enum groups = Yes
[public]
comment = Public Volume on %h
path = /home/samba/public
valid users = @MARK...
2005 Nov 22
3
AD domain with SDMS issues & LDAP Idmap backend
...PDUSLISHNODE01
realm = NA.NET.MYCOMPANY.COM <http://NA.NET.MYCOMPANY.COM>
server string = Queue Headnode
security = ADS
log level = 1 ads:10 passdb:5 auth:10 winbind:8 sam:10 rpc:10
ldap admin dn = cn=spd.ldapadmin,o=mycompany
ldap idmap suffix = ou=Idmap
ldap suffix = o=mycompany
idmap uid = 150000-550000
idmap gid = 150000-550000
template shell = /bin/bash
template homedir = /home/%U
winbind use default domain = yes
encrypt passwords = yes
password server = SPDUSLISDC010
winbind separator = /
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
dns proxy = no
wins server = 10.55.56.4 &...
2005 Jan 14
1
NT_STATUS_ACCESS_DENIED with ADS + Kerberos
...security = ADS
use kerberos keytab = Yes
log level = 3 ads:20 auth:10 sam:10 rpc:20
ldap admin dn = cn=Manager,dc=mydomain,dc=COM
ldap idmap suffix = ou=Idmap
ldap suffix = dc=mydomain,dc=COM
idmap backend = ldap:ldap://ldap-server
idmap uid = 150000-550000
idmap gid = 150000-550000
template homedir = /home/%U
template shell = /bin/bash
winbind separator = +
winbind cache time = 1
winbind use default domain = Yes
--
Wil Cooley wcooley@nakedape.cc
Naked Ape Consul...
2006 Sep 15
2
prediction interval for new value
...t 95% confidence interval?
my dataframe is as follows :
>dt
structure(list(y = c(26100000,
60500000, 16200000, 30700000, 70100000, 57700000, 46700000, 8600000,
10000000, 61800000, 30200000, 52200000, 71900000, 55000000, 12700000
), x = c(108000, 136000, 35000,
77000, 178000, 150000, 126000, 24000, 28000, 214000, 108000,
190000, 308000, 252000, 71000)), .Names = c("y",
"x"), class = "data.frame", row.names = c("1",
"2", "3", "4", "5", "6", "7", "8", "9", &...
2013 Jan 13
1
Extract data in word pad
...080000 of 6.87 Days
Gap from 19720207 070000 to 19720303 080000 of 25.04 Days
Gap from 19720424 070000 to 19720504 080000 of 10.04 Days
19720629 080000(PARTIAL) 33.8 at interval beginning 19720517 144507
Gap from 19720913 090000 to 19720918 080000 of 4.96 Days
Gap from 19720929 150000 to 19721006 080000 of 6.71 Days
Gap from 19730129 070000 to 19730226 080000 of 28.04 Days
Gap from 19730531 030203 to 19730607 080000 of 7.21 Days
19730629 080000(PARTIAL) 32.2 at interval beginning 19720910 135747
Gap from 19731031 154200 to 19731205 080000 of 34.68 Days
Gap fr...
2013 Jan 11
2
Extract data
...080000 of 6.87 Days
Gap from 19720207 070000 to 19720303 080000 of 25.04 Days
Gap from 19720424 070000 to 19720504 080000 of 10.04 Days
19720629 080000(PARTIAL) 33.8 at interval beginning 19720517 144507
Gap from 19720913 090000 to 19720918 080000 of 4.96 Days
Gap from 19720929 150000 to 19721006 080000 of 6.71 Days
Gap from 19730129 070000 to 19730226 080000 of 28.04 Days
Gap from 19730531 030203 to 19730607 080000 of 7.21 Days
19730629 080000(PARTIAL) 32.2 at interval beginning 19720910 135747
Gap from 19731031 154200 to 19731205 080000 of 34.68 Days
Gap fr...
2007 Nov 26
4
Filesystem for Maildir
...ability.<br>
<br>
On CentOS 5.0, a had the same benchmarks and now, EXT3 and XFS seems to
had better or equivalent performance on Read and Create Random files.
One of this tests, using bonnie++, show this:<br>
<br>
# bonnie++ -d /mnt/sdc1/testfile -s 8192 -m `hostname` -n
50:150000:5000:1000<br>
<br>
XFS:<br>
Version 1.03 ------Sequential Output------ --Sequential Input-
--Random-<br>
-Per Chr- --Block-- -Rewrite- -Per Chr- --Block--
--Seeks--<br>
Machine Size K/sec %CP K/sec %CP K/sec %CP K/sec %CP K/sec %CP
/s...
2016 Jun 01
2
Slow RAID Check/high %iowait during check after updgrade from CentOS 6.5 -> CentOS 7.2
...gt; been for several hours (it fluctuates, but seems to stay within that
> range). Write-back cache is NOT enabled for the drives on the hosts we
> haven't upgraded yet, but the speeds are similar (I kicked off a raid
> check on one of our CentOS 6 hosts as well, the window seems to be 150000
> - 200000K/Sec on that host).
<snip>
Perhaps I missed where you answered this: is this software RAID, or
hardware? And I think you said you're upgrading existing boxes?
mark
2006 Oct 26
0
Problem: Dial command with L option
Hi,
I am using Dial command with L option as follow.
L(150000:120000)
The function works well in normal call (IP phone -> PSTN) and the call
dropped when the time is up. However, it doesn't work in forward
case, (IP phone1 -> IP phone 2 (forward to) -> PSTN). In the forward
case, there is no warning message and the call will be kept even the
ti...