similar to: Random disconnects from Samba server

Displaying 20 results from an estimated 7000 matches similar to: "Random disconnects from Samba server"

2018 Mar 16
0
Random disconnects from Samba server
On Fri, 16 Mar 2018 20:24:47 +0000 "Hirayama, Pat" <phirayam at fredhutch.org> wrote: > In the past I've used winbind -- though, I've had issues where it > just stops working until the service is restarted again. Was hoping > to get away from that, hence trying sssd and ldap with Kerberos. > This sometimes happened in the early days of Samba 4, but it
2018 Mar 16
0
Random disconnects from Samba server
On Fri, 16 Mar 2018 21:43:39 +0000 "Hirayama, Pat" <phirayam at fredhutch.org> wrote: > Hi Rowland, > > Thank you. Unfortunately, I do need widelinks -- in fact, that is > the main purpose for this Samba server -- the users connect to their > home share and follow the Linux symlinks that reside there to other > (remote) file systems, rather than navigating a
2001 Mar 08
0
couldn't find service home
Also seeing lots of these messages in our log file: [2001/03/02 13:57:29, 0] smbd/service.c:(214) hsrctx07 (129.176.178.250) couldn't find service home???? [2001/03/02 13:57:29, 0] smbd/service.c:(214) hsrctx07 (129.176.178.250) couldn't find service home??? [2001/03/02 13:57:29, 0] smbd/service.c:(214) hsrctx07 (129.176.178.250) couldn't find service home???? [2001/03/02
2017 Sep 06
2
weird log file ???
On Wed, 06 Sep 2017 13:32:39 -0700 toddandmargo via samba <samba at lists.samba.org> wrote: > > [global] > workgroup = xxxxx > server string = Fedora Samba Server > volume = Fedora Core, %v > comment = Samba (NetBIOS) Server on FedoraServer.xxxxx.com > netbios name = FedoraServer > netbios aliases = PlaceJokeHere > interfaces = eno1 127.0.0.1
2017 Sep 06
3
weird log file ???
On Wed, 06 Sep 2017 13:05:40 -0700 toddandmargo via samba <samba at lists.samba.org> wrote: > > > ---- On Wed, 06 Sep 2017 12:59:47 -0700 toddandmargo via > samba<samba at lists.samba.org> wrote ---- > > > > > > ---- On Wed, 06 Sep 2017 12:46:56 -0700 Rowland Penny via > > samba<samba at lists.samba.org> wrote ---- > > >
2016 Dec 27
2
About error: 'Windows cannot access, you do not have permission to access'
HI I have a linux samba server and lists users at this server. and access the folder from the windows7 client. Now i configure a LDAP sever and let samba to use it . But I don’t want clients keeping the connection because I have changed the authentication,clinets need to re-login. So I restart smbd. and it works. Then,let clients reconnect to samba, but it report errors: Windows cannot access
2017 Sep 06
2
weird log file ???
---- On Wed, 06 Sep 2017 14:34:27 -0700 toddandmargo via samba wrote ---- > > >---- On Wed, 06 Sep 2017 14:11:54 -0700 Rowland Penny via samba<samba at lists.samba.org> wrote ---- > > On Wed, 06 Sep 2017 13:32:39 -0700 > > toddandmargo via samba <samba at lists.samba.org> wrote: > > > > > > > > [global] > > > workgroup = xxxxx
2019 Mar 22
2
selectMethod() can fail to find methods in situations of multiple dispatch
Fine with me as long as eliminating the inconveniences associated with it can be put on the roadmap. The alias instability and the fact that the user has no way to know if s/he should do ?`foo,numeric-method` or ?`foo,numeric,ANY-method` to find the method has been a long-standing problem. H. On 3/21/19 21:29, Michael Lawrence wrote: If we started over, I'd try to avoid this sort of
2005 Aug 16
1
Issue with DTMF Tones - Codec Issues
Topology: PSTN<-T1 PRI->NEAX2400<-T1 PRI->Cisco 3825<-Ethernet-> Asterisk VoIP server When I make a call to a VoIP user from the PSTN, the call gets routed through the PBX, and Cisco. Because of that the DTMF tones are passed inband, which I can hear on the VoIP end of the call. However, I have one extension on asterisk set up so that I can check voice mail when away from my
2016 Mar 19
2
unary class union of an S3 class
On 03/19/2016 01:22 AM, Michael Lawrence wrote: > > > On Sat, Mar 19, 2016 at 12:10 AM, Herv? Pag?s <hpages at fredhutch.org > <mailto:hpages at fredhutch.org>> wrote: > > On 03/18/2016 03:28 PM, Michael Lawrence wrote: > > > On Fri, Mar 18, 2016 at 2:53 PM, Herv? Pag?s > <hpages at fredhutch.org <mailto:hpages at
2019 Mar 22
2
selectMethod() can fail to find methods in situations of multiple dispatch
Hi Michael, Thanks for looking into this. I suspect that truncation of ANY suffixes from method signatures is also the culprit behind the sudden breakage of aliases of the form \alias{foo,numeric-method} when a method without the ANY suffix in its signature gets added to the ecosystem. See my post about this to the Bioc-devel mailing list a couple of months ago:
2018 Jan 30
2
as.list method for by Objects
by() does not always return a list. In Gabe's example, it returns an integer, thus it is coerced to a list. as.list() means that it should be a VECSXP, not necessarily with "list" in the class attribute. Michael On Tue, Jan 30, 2018 at 2:41 PM, Herv? Pag?s <hpages at fredhutch.org> wrote: > Hi Gabe, > > Interestingly the behavior of as.list() on by objects seem to
2020 May 22
2
paste(character(0), collapse="", recycle0=FALSE) should be ""
I agree with Herve, processing collapse happens last so collapse=non-NULL always leads to a single character string being returned, the same as paste(collapse=""). See the altPaste function I posted yesterday. Bill Dunlap TIBCO Software wdunlap tibco.com On Fri, May 22, 2020 at 9:12 AM Herv? Pag?s <hpages at fredhutch.org> wrote: > I think that > >
2019 Mar 14
2
selectMethod() can fail to find methods in situations of multiple dispatch
Here is an example: setGeneric("foo", function(x, y) standardGeneric("foo")) setMethod("foo", c("numeric", "ANY"), function(x, y) cat("I'm the foo#numeric#ANY method\n") ) Dispatch works as expected but selectMethod() fails to find the method: > foo(1, TRUE) I'm the foo#numeric#ANY method >
2020 May 22
5
paste(character(0), collapse="", recycle0=FALSE) should be ""
Gabe, It's the current behavior of paste() that is a major source of bugs: ## Add "rs" prefix to SNP ids and collapse them in a ## comma-separated string. collapse_snp_ids <- function(snp_ids) paste("rs", snp_ids, sep="", collapse=",") snp_groups <- list( group1=c(55, 22, 200), group2=integer(0), group3=c(99,
2016 Sep 28
2
Softlinks
All, I'm using Maildir. Is it possible to move all (or only some) maildirs with softlinks to another partition? - Chris
2017 Nov 29
2
binary form of is() contradicts its unary form
Hi Mehmet, On 11/29/2017 11:22 AM, Suzen, Mehmet wrote: > Hi Herve, > > I think you are confusing subclasses and classes. There is no > contradiction. `is` documentation > is very clear: > > `With one argument, returns all the super-classes of this object's class.` Yes that's indeed very clear. So if "list" is a super-class of "data.frame" (as
2020 Mar 27
2
object.size vs lobstr::obj_size
On 3/27/20 12:00, Hadley Wickham wrote: > > > On Fri, Mar 27, 2020 at 10:39 AM Herv? Pag?s <hpages at fredhutch.org > <mailto:hpages at fredhutch.org>> wrote: > > Hi Tomas, > > On 3/27/20 07:01, Tomas Kalibera wrote: > > they provide an over-approximation > > They can also provide an "under-approximation" (to say the
2020 Mar 27
1
object.size vs lobstr::obj_size
On 3/27/20 15:19, Hadley Wickham wrote: > > > On Fri, Mar 27, 2020 at 4:01 PM Herv? Pag?s <hpages at fredhutch.org > <mailto:hpages at fredhutch.org>> wrote: > > > > On 3/27/20 12:00, Hadley Wickham wrote: > > > > > > On Fri, Mar 27, 2020 at 10:39 AM Herv? Pag?s > <hpages at fredhutch.org <mailto:hpages at
2020 May 22
2
paste(character(0), collapse="", recycle0=FALSE) should be ""
Hi Martin et al, On Thu, May 21, 2020 at 9:42 AM Martin Maechler <maechler at stat.math.ethz.ch> wrote: > >>>>> Herv? Pag?s > >>>>> on Fri, 15 May 2020 13:44:28 -0700 writes: > > > There is still the situation where **both** 'sep' and 'collapse' are > > specified: > > >> paste(integer(0),