Displaying 20 results from an estimated 3000 matches similar to: "Re: [R] No traceback available when using try(...) (PR#6667)"
2004 Mar 12
0
Re: [R] No traceback available when using try(...) (PR#6668)
Funny, it works for me on R-patched
> f <- function(a) { return(log(a)) }
> f("A")
Error in log(x) : Non-numeric argument to mathematical function
> traceback()
2: log(a)
1: f("A")
> try(f("A"))
Error in log(x) : Non-numeric argument to mathematical function
> traceback()
2: log(a)
1: f("A")
This is on
> version
_
2004 Mar 11
2
No traceback available when using try(...)
Hello,
1. The Situation :
------------------------
The stack traceback is not available when error ouccured in a try(....)
-- test.R --------------------------------
f<-function(a){
return ( log(a) )
}
try(f("A"))
traceback()
-------------------------------------------
I get the following message :
> try(f("A"))
Error in log(x) : Non-numeric argument to mathematical
2018 Dec 10
2
Fwd: Re: Fwd: Extended acls with AD - problem with default/herited permissions
Hello Dale,
Set inherit acls = yes locally to my share groups, and remove map acl
inherit = yes from global parameters of smb.conf does not solve my issue.
I still have acl "Domain Users" added to new folders/files.
As i write in my previous email, the only way i found to disable acl
"Domain Users" to be added was with :
inherit owner = yes
With some disavantages for users
2004 Mar 12
1
Re: [R] No traceback available when using try(...) (PR#6669)
On Fri, 12 Mar 2004 11:44:14 -0500, "Roger D. Peng" <rpeng@jhsph.edu>
wrote :
>Funny, it works for me on R-patched
>
> > f <- function(a) { return(log(a)) }
> > f("A")
>Error in log(x) : Non-numeric argument to mathematical function
> > traceback()
>2: log(a)
>1: f("A")
> > try(f("A"))
>Error in log(x) :
2003 May 02
6
[Bug 379] difficult to find the openssh code signing key on openssh.org.
http://bugzilla.mindrot.org/show_bug.cgi?id=379
papadopo at shfj.cea.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|WORKSFORME |
------- Additional Comments From papadopo at shfj.cea.fr 2003-05-02 20:15
2018 Dec 10
2
Fwd: Extended acls with AD - problem with default/herited permissions
Edouard,
These are the 4 available parameters containing the word "inherit".
inherit acls (S)
inherit owner (S)
inherit permissions (S)
map acl inherit (S)
Would "inherit acls" work for you?
Dale
On 12/10/18 10:56 AM, Edouard Guigné via samba wrote:
> Hello,
>
> I add to my previous mail, the only way i found to disable acl
2019 Jul 17
2
Name of the share in windows explorer
Hello,
My samba share is on a Linux Centos 7, samba version 4.8.3. Please find
here is my smb.cnf :
[global]
??? security = ads
??? realm = MYDOMAIN.MYDOMAIN.LOCAL
??? workgroup = MYDOMAIN
??? kerberos method = secrets and keytab
??? server signing = mandatory
??? client signing = mandatory
??? hosts allow = 127. 10.x.x. 10.x.x.
??? hosts deny = 10.x.x. 10.x.x.
??? log file =
2019 Jun 18
2
Fwd: Re: Fwd: Re: Fwd: Re: Kerberos and NTLMv2 authentication
Is it possible to make start DOMAIN range from 500 instead of 10000 ?
I realized that all my gid are in range 500 to 600 and not in range
10000 - 14999
I thought? DOMAIN range 10000 - 14999 was reserved for DOMAIN users
-------- Message transf?r? --------
Sujet?: Re: [Samba] Fwd: Re: Fwd: Re: Kerberos and NTLMv2 authentication
Date?: Tue, 18 Jun 2019 16:25:39 -0300
De?: Edouard Guign? via
2019 Jun 20
2
Samba winbind on redhat 7
My idea is to replace default "cifs_idmap_sss.so" plugin by "idmapwb.so"
winbind plugin, in order to SSSD becomes a client of winbind.
To avoid to change nsswitch.conf :
passwd:???? files sss
shadow:???? files sss
group:????? files sss
into
passwd:???? files winbind
shadow:???? files winbind
group:????? files winbind
because I need an other access in sftp, this is using
2019 Jun 19
2
Fwd: Re: Fwd: Re: Fwd: Re: Kerberos and NTLMv2 authentication
Hello,
I performed a test in order to get access to my samba share with
winbindd (and not sssd).
For that,
1. I change the gid of domain users from 513 to 15513 (to match with the
domain range 10000 - 14999)
And verify my test user is part of 15513
2. Stop sssd and change nsswitch.conf like this :
/passwd:???? files winbind//
//shadow:???? files//
//group:????? files //winbind//
/
3.
2019 Jun 18
3
Fwd: Re: Fwd: Re: Kerberos and NTLMv2 authentication
On 18/06/2019 19:49, Edouard Guign? via samba wrote:
> ?gidNumber for 'Domain Users' is 513
>
> not in range? '10000-14999' of uidNumber
>
> Is it a problem ?
Oh yes, ALL user uidNumber's and Domain Users gidNumber MUST be inside
the DOMAIN range you set in smb.conf, if they aren't, all your users
WILL be ignored by Samba.
Find the next available
2019 Jul 17
2
Name of the share in windows explorer
Dear Samba Users,
I set 2 samba shares :
1. with the name [groups]
/pathtomyshare/groups
2. for each domain users [homes]
/home
In Windows, I can see with the windows explorer my shares :
groups (\\myserver) (V:)
mydomainuser (\\myserver\homes) (U:)
Why for [groups] is only indicated \\myserver and for [homes] is
indicated \\myserver\homes ?
Is there a way to change it ? I would only show
2019 Jul 22
5
client min protocol = SMB2
I did not set max protocol to SMB2 in smb.cnf, I don't want to force
SMB2 selection if SMB3 can be used by a client.
The machine is a Windows 7, so is SMB2 compliant.
Le 22/07/2019 ? 11:44, Gaiseric Vandal via samba a ?crit?:
> I would guess that changing the min protocol does not affect existing
> connections unless you were to restart samba.
>
> Is the max protocol set to at
2019 Jun 20
2
Samba winbind on redhat 7
Hello,
I am reading RHEL 7 docs concerning samba integration, and I found
https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html-single/windows_integration_guide/index#winbind
"4.2.4. Switching Between SSSD and Winbind for SMB Share Access
This procedure describes how you can switch between SSSD and Winbind
plug-ins that are used for accessing SMB shares from SSSD
2019 Jun 20
2
Samba winbind on redhat 7
This way is so easier...
Thank you Rowland
Le 20/06/2019 ? 14:01, Rowland penny via samba a ?crit?:
> On 20/06/2019 17:54, Edouard Guign? via samba wrote:
>> My idea is to replace default "cifs_idmap_sss.so" plugin by
>> "idmapwb.so" winbind plugin, in order to SSSD becomes a client of
>> winbind.
>> To avoid to change nsswitch.conf :
>>
2019 Jul 22
3
client min protocol = SMB2
Hello,
Thank you !
I add server min protocol = SMB2_02 to smb.cnf
All clients are now using SMB2_10 as minimum protocol version
May you indicate me the difference between "client min protocol" and
"server min protocol" ?
"server min protocol" is to use on a domain member
"client min protocol" is to use in which case ?
Should I also set client min
2019 Jun 25
2
Share migration
Hello,
I will change a old samba share (SMB1 samba 3) to a new samba 4.8.3 (as
unix domain member server).
For this, I will copy datas from old share to the share via a rsync ssh
command :
rsync -aAX --progress --delete --stats --human-readable -e "ssh -p 22"
root at oldsambaserver:/mypath/* /mypath/
This command copy also all the acls from the old samba share and apply
it on the
2007 Jul 02
8
Kernel Packet Traveling Diagram
Hi,
I find this diagram which details the kernel packet traveling :
http://www.docum.org/docum.org/kptd/
Is it up to date ?
I made some test and I put a DNAT rules in the PREROUTING table of an
interface and I attach it a ingress policy, the dst IP wasn''t changed. the
DNAT it isn''t yet make.
I''ve another question (I''m not sure is it the good mailing list), for
2019 Jun 18
2
Fwd: Re: Fwd: Re: Kerberos and NTLMv2 authentication
On 18/06/2019 16:01, Goetz, Patrick G via samba wrote:
> On 6/18/19 8:35 AM, Edouard Guign? via samba wrote:
>> I do not want to annoy anymore with my problem of a mixed configuration
>> SSSD / Winbindd ; but I would like to understand why this is working
>> only with SSSD and not with winbindd.
>> Maybe because I first join my linux station to the domain with SSSD ?
2010 Feb 13
1
max and in the zoo package
hi everyone.
i am dealing on a zoo-class object.i am aware of the 'min' and 'max' function to get the minimum and the maximum values.getting these maximum and minimum values is ont thing.but, how to get the (zoo) dates these values occur ?
in fact, in analysing a time series i am interested in the particular (extreme) values AND in the moments they happen.
regards.edouard.