Displaying 20 results from an estimated 300 matches similar to: "what happen?"
2003 Apr 09
1
dfs replication
Hi,
I am considering using the dfs options in samba. The question I have is about file replication.
I want to set up dfs between two servers (one dfs share points to two real shares). In particular, I want have a share on one and a replica on the other as a fallback in the even of the first failing.
I have done it on windows 2K server before.
I am considering using rsync to replicate the files
2013 May 20
2
[LLVMdev] Polly issue
Hi,
When I test "matmul" in the polly directory, I get the following
performance data:
//===============================
--> 12. Compare the runtime of the executables
time ./matmul.normalopt.exe
0:23.53 real, 23.48 user, 0.00 sys
time ./matmul.polly.interchanged.exe
0:22.86 real, 22.82 user, 0.01 sys
time ./matmul.polly.interchanged+tiled.exe
0:22.87 real, 22.83 user, 0.00 sys
2011 Jan 26
2
applying a set of rules to each row
All,
I would like to apply a set of rules to each row of the sample data set
below. The rule sets are the guidelines for determining an individual's
date for retirement eligibility. The rules are found in this document,
http://www.opm.gov/feddata/RetirementPaperFinal_v4.pdf. I am only
interested in the top two categories for retirement eligibility, the
CSRS and FERS plans.
The data set has
2005 Sep 15
2
net rpc rights problem with groups
Hello List,
I have tried to grant SeMachineAccountPrivilege to an extra group.
Users in this group should not have Admin rights but they should be able to join workstations to the domain.
My first try was to grant the right to a single user wich is working as expected.
net rpc rights grant "TOPTEST\toptest.r" SeMachineAccountPrivilege -U domainadmin
net rpc rights shows:
2006 Nov 13
1
handling time units--hours, minutes, days--from file times
Dear R-helpers,
I am trying to generalize my function for recording measurement times from
file times "mtime"--my intervals are minutes to hours over the course of
several days. I want to use hours as my units, and I have had trouble
dealing with time units in a general way. I have a simple solution for the
dealing with regular intervals, but I have not been able to handle irregular
1997 Apr 17
2
R-beta: R: CART
Has anybody ported the Classification and Regression Trees package to R?
Stefano
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
2006 Feb 22
1
Dovecot and Squirrelmail problem
I get the following error when I check my mail a lot. I can keep
refreshing until all errors are gone, then I am alright. This started
happening when I turned on the serverside sorting in squirrelmail. How
do I check to see which mails are causing this problem?
ERROR: Could not complete request.
Query: COPY 10223:10223 "INBOX.Trash"
Reason Given: Internal error [2006-02-22
2008 Jun 02
2
Opengl doesn't work
Hi !
I've Wine 1.0RC3, and I've an error when I start Chessmaster 10th:
err:wgl:X11DRV_wglGetProcAddress No OpenGL support compiled in.
I think I've missed something during the install... How can I install the opengl support?
Thxs!
Pikos
PS: sorry for my English.
2014 Sep 01
1
Correlation Matrix with a Covariate
R Help -
I'm trying to run a correlation matrix with a covariate of "age" and will
at some point will also want to covary other variables concurrently.
I'm using the "psych" package and have tried other methods such as writing
a loop to extract semi-partial correlations, but it does not seem to be
working. How can I accomplish this?
library(psych)
> set.cor(y =
2008 Mar 24
2
Chessmaster 10th
Hi!
I'm a Chess addict so i tried to install Chessmaster 10th on my Kubuntu!
It works quite good but i still have a problem... The mouse is not where it is...
For example to move my tower, I've to put my mouse lower, if i put it on the tower, the game show me it's one or two case higher...
Do you know how can I fix it?
Thanks!
Pikos
(Sorry for my poor English...)
2002 Nov 14
1
Citrix trigging printing bug??
Hi
We have a mystical error occurring in a special case. When we run a
citrix client on the Windows client we will not receive any printouts -
no printer dialogue box are opened either. From windows we get nothing -
no message box no nothing.
* We are running SAMBA 2.2.6 on solaris 7
* We are running a citrix client on Windows 2000 Pro SP3 connected to
the SAMBA without domain. The Citrix
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
2014 Oct 09
1
vmstat and loadavg disagree about system load
1 4 499492 150392 4496 4763380 0 0 192 552 1227 1094 2 0 75 24 0
0 5 499492 150656 4500 4763528 0 0 0 160 465 263 1 0 68 30 0
0 5 499492 150468 4500 4763532 0 0 0 0 177 93 1 0 69 31 0
1 5 499492 151020 4500 4763540 0 0 0 0 160 132 0 0 69 31 0
1 5 499492 151268 4500 4763540 0 0 0 0 304 143 1 0 69
2012 Oct 17
3
aggregate function not working?
The aggregate function for some reason will now work for me.
The error I'm getting is:
"Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Have you called 'sort' on a list?"
agPriceList=aggregate(PriceList$Size, list(PriceList$bandNum),sum)
*Price list dataframe:*
dput(PriceList)
structure(list(Price = c(0, 8.18, 8.27, 10.42, 10.5, 10.6, 11.13,
2006 Nov 17
0
difftime for handling time units--hours, minutes, days--from file times
Thanks, Tim
To get the time difference in the proper units, it's as simple as this:
difftime(myfileinfo$mtime[2], myfileinfo$mtime[1], units="hours")
Cheers,
Warren
On 11/13/06, Tim Calkins <tcalkins@gmail.com> wrote:
> hardly the most efficient way to go, but consider using a substring
> function to extract the time bits from your data, then reading them as POSIX
2019 May 14
2
debian 10: errors with my server samba-ad
hi,
I modified my file named.conf.options .
When i use dig lenzspitze2.calais.fr I get an answer which contain
answer section, authority section and additional section.
I haven't map "Domain users" into "user"
When I execute samba -i i have always the message error or warning ?
/usr/sbin/smbd: pid_to_procid: messaging_dgm_get_unique failed: Aucun
fichier ou dossier de
2008 Oct 13
3
console output
Hi All,
Does anyone knows what doest this output means?
[root@serverxen ~]# xm list
Name ID Mem(MiB) VCPUs State Time(s)
Domain-0 0 3202 8 r----- 5220.1
vm1 3 4095 2 -b---- 3529.2
vm2 5 8191 4 -b---- 399.0
[root@serverxen ~]# xm
2008 Jul 21
5
OCFS processes active after a umount [SEC=UNOFFICIAL]
Hello,
I have two OCFS file file systems mounted at /ocfs_1 and /ocfs_2. I have
unmounted both OCFS file systems and was trying to then offline and
unload OCFS. The offline command failed with -
# ./o2cb offline
Stopping O2CB cluster ocfs2: Failed
Unable to stop cluster as heartbeat region still active
Looking at the processes on this box shows a number of OCFS processes
are still active -
2023 Jan 14
2
Is "vfs objects = acl_tdb" allowed?
Hi,
I had issues using"vfs objects = acl_xattr" (possibly too old version
[Version 4.13.13-Debian] for the needed "acl_xattr:security_acl_name =
user.samba" option needed if running in a non-priv container). So I
tried "vfs objects = acl_tdb" and found it working.
In https://wiki.samba.org/index.php/File_System_Support I found:
File systems without xattr support
2004 Sep 17
3
sftp-server debug output
Help! I am trying to get debug output working with sftp-server, and
can''t seem to find the appropriate information to get it working. Yes,
I have recompiled sftp-server to include defining DEBUG_SFTP_SERVER. I
found that myself in the code before finding it in several postings as
the common answer to others having this problem.
In addition, I have set up the sshd_config file