Displaying 20 results from an estimated 10000 matches similar to: "deadtime/keepalive not working as expected"
2016 Nov 03
1
deadtime/keepalive not working as expected
On Tue, Nov 01, 2016 at 05:09:34PM -0700, Jeremy Allison via samba wrote:
> On Tue, Nov 01, 2016 at 05:16:47PM -0500, Ed Siefker via samba wrote:
> > My expectations are probably wrong, but I had to manually kill a process
> > to unlock a file when I think it should have killed itself.
> >
> > I have deadtime set to 15 and keepalive at default (300). I opened a file on
2019 Feb 14
2
Automaticaly unlock files
Hi all,
I've been looking for an answer for this issue but Google didn't help. So I
resource to the next best thing: the Samba mailing list.
Question: Is there a way to automaticaly, after a certain amount of time,
unlock a file after, for example, a client crash or network problem?
I know how to do it manually of course, but that is, well, cumbersome.
I've looked at
2017 Sep 28
3
Boxplot, formula interface, and labels.
I have data I'd like to plot using the formula interface to boxplot.
I call boxplot like so:
with(mydata, boxplot(count ~ geno * tissue))
I get a boxplot with x axis labels like "wt.kidney". I would like
to change the '.' to a newline. Where is this separator configured?
Thanks,
-Ed
2017 Nov 02
3
ggplot inside function doesn't plot
I don't really understand. I mean, I understand the solution is
print(ggplot(...)). But why is that required in a function and not at
the console?
Shouldn't I be able to rely on what I do at the console working in a
script? Is this inconsistent behavior by design?
On Thu, Nov 2, 2017 at 11:54 AM, David Winsemius <dwinsemius at comcast.net> wrote:
>
>> On Nov 2, 2017,
2013 May 24
2
[samba4] smbd processes never die after logoff
Hello,
I'm using Samba 4.0.5 in Debian Wheezy as a member server of a DC (in Debian Wheezy too with Samba 4.0.5) and the clients are Windows7 Pro. The users use shares in the member server.
Sometimes, after the logoff of the users in the Win7 clients, there are connections with the member server whiches never stop. I can see it with the "smbstatus" command which point PID out to me
2017 Sep 28
1
Boxplot, formula interface, and labels.
Just change the separator:
data(Titanic)
Titanic.df <- as.data.frame(Titanic)
boxplot(Freq~Class*Sex, Titanic.df, cex.axis=.6, sep="\n")
See attached .png.
----------------------------------------
David L Carlson
Department of Anthropology
Texas A&M University
College Station, TX 77843-4352
-----Original Message-----
From: R-help [mailto:r-help-bounces at r-project.org] On
2017 Sep 28
0
Boxplot, formula interface, and labels.
mybp <- boxplot(count ~ geno * tissue, data = mydata, plot = FALSE)
mybp$names <- gsub("\\.", "\n", mybp$names)
bxp(mybp)
See ?boxplot for details.
Best,
Ista
On Thu, Sep 28, 2017 at 12:40 PM, Ed Siefker <ebs15242 at gmail.com> wrote:
> I have data I'd like to plot using the formula interface to boxplot.
> I call boxplot like so:
>
> with(mydata,
2017 Oct 24
2
as.data.frame doesn't set col.names
Why doesn't this work?
> samples$geno <- as.data.frame(sapply(yo, toupper), col.names="geno")
> samples
quant_samples age sapply(yo, toupper)
E11.5 F20het BA40 E11.5 F20het BA40 E11.5 F20HET
E11.5 F20het BA45 E11.5 F20het BA45 E11.5 F20HET
2004 Jun 14
2
Samba shares becoming inactive after a while
When a user is not using a samba share, after a while they become
"inactive". When a user wants to access the share again, it takes an
irritating long time before they get access again. The (windows)
application that does the accessing is not responding during that
time. There are no drive letters assigned to the shares in a logon
script. When I do assign a drive letter to the share (in
2017 Oct 24
0
as.data.frame doesn't set col.names
Wait. Now I'm really confused.
>
> head(samples)
quant_samples age sapply(yo, toupper)
E11.5 F20het BA40 E11.5 F20het BA40 E11.5 F20HET
E11.5 F20het BA45 E11.5 F20het BA45 E11.5 F20HET
E11.5 F20het BB84 E11.5 F20het BB84 E11.5 F20HET
E11.5 F9.20DKO KTr3 E11.5 F9.20DKO KTr3 E11.5 F9.20DKO
E11.5
2018 Sep 27
1
smbd process don't auto close
Recently I find the smbd process does not close itself even it is invalid, or it close too slow. As the screenshot shows, the connection 112451 and 112844 were created because of the client 8.22.32.200 at Sep 27 02:52:11. And it still exist now at 15:30. But clearly 8.22.32.200 is not available any more. This VM was disabled by me early. The samba version is 4.5.16.
Does the smbd process not
2018 May 18
3
Exporting to text files
I have dose response data analyzed with the package 'drc'.
'summary(mymodel)' prints my kinetic parameters. I want
that text in an ASCII text file. I want to get exactly what I
would get if I copied and pasted from the terminal window.
I've read the documentation on data export to text files here:
2012 Mar 28
2
lapply and paste
I have a list of suffixes I want to turn into file names with extensions.
suff<- c("C1", "C2", "C3")
paste("filename_", suff[[1]], ".ext", sep="")
[1] "filename_C1.ext"
How do I use lapply() on that call to paste()?
What's the right way to do this:
filenames <- lapply(suff, paste, ...)
?
Can I have lapply()
2012 Feb 29
3
Broken R
Hi, I am running Debian Sid. I am having
trouble with the R packages.
Executing 'help()' or 'demo()' launches 'most' with no text.
'help.start()' works properly.
When I try to install a package, I get the following problem:
*********************************************************************
> install.packages("ctv")
Installing package(s) into
2006 Mar 09
1
Deadtime parameter questsion
Hello samba gurus !
I'm using samba 3.0.21c on AIX 5.3 box .
I've specified deadtime=15 in my smb.conf file and I'm expecting that
inactive sessions ( has no open files ) will be
closed after 15 minutes . I'm connecting to samba from my PC
( win2000 ) , minimizing the window and waiting
15 minutes ... but nothing happens - smbd opened by my connection is
still running , window
2019 Nov 25
4
big share problem
Hi,
I've a big problem with my shares on a domain AD member server.
On this server there is severals shares directories :
- \data\dir1 [share_one]
- \data\dir2 [share_two]
- \data\dir3 [share_three]
\data is a mounted partition
when I browse one of my share in windows, \\myserver\share_one for
exmple, I can see all directories of my server !! : bin, boot, dev, lib,
..... data directory
2005 Jul 07
1
'deadtime' in Samba 3.0.13
Hi,
I currently have deadtime = 15 in my smb.conf. This featured worked good to
disconnect clients that have been idle for > 15 minutes in the past. With
the 3.0.13 version, it seems to do nothing. As in, it just keeps the user
connected indefinitely.
Here is what I see when no one is currently at the office and everyone is
logged off their computer.
Thanks
[root@spicy p]#
2005 Oct 20
2
KeepAlive/ClientAliveInterval not working? Idle timeout.
I have set /etc/ssh/sshd_config with:
KeepAlive yes
ClientAliveInterval 3
However, no KeepAlive type messages seem to be sent. I've verified this
by looking at the network lights, which don't flicker every 3 seconds.
I am attempting to keep interactive ssh sessions alive longer. If
don't type anything for about 2 minutes, the sessions close. If I run a
"idle"
2012 Oct 20
1
Dovecot 2 and TCP-Keepalive
Hi!
I am about to migrate a perdition-based IMAP/POP3 proxy to Dovecot.
Unfortunately some users are behind a firewall/NAT setup which throws
away seemingly idle TCP connections sooner than the established default
of 24 hours (more likely after 30 minutes ...) resulting in all kinds of
weird client behavior.
And unfortunately? this firewall/NAT setup is outside of my control and
I have no means
2012 Mar 24
3
argument names inside a function?
Is there a way I can get the names of the arguments passed to a
function from within a function?