Displaying 20 results from an estimated 2000 matches similar to: "Other core dumps, with apologies"
1999 Jan 16
1
Core dump on sapply misuse
Developers:
I hope this is the appropriate place to post this request.
I am getting a core dump in an application of sapply. A
simplified example is the following. Because simplify=TRUE
is the default for sapply and tapply, the following works
x <- 1:5; sapply(x,list)
but the following dumps core with an access violation
x <- 1:5; myf <- function(x) list(x,x); sapply(x,myf)
1998 Nov 29
1
Question about dotplot
Hello:
I am playing with the dotplot command (in preparation for
teaching an EDA course). I do not understand the following
behaviour of dotplot when x is a vector. These examples
have been tried on both Linux version 0.63 and guido's
Windows version 0.63 running under Windows 95.
I searched the bug reporting system, but found no mention
of any report concerning dotplot.
x <- 1:26
1998 Nov 11
1
Wavelets in R
On Wed, Nov 11, 1998 at 01:00:34PM -0500, Norm Josephy wrote:
>
> Sir:
>
> I find your version of R excellent. I am teaching a course
> next semester on Graphical Exploratory Data Analysis, and am
> looking forward to having my students use this software.
> Thank you for making it available.
> ............................................................
> I am
2017 Feb 26
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On 27/02/17 08:05, Tom Robinson via samba wrote:
> On 17/02/17 07:58, Andrew Bartlett via samba wrote:
>> On Fri, 2017-02-17 at 07:48 +1100, Tom Robinson via samba wrote:
>>> Anyone?
>> Can you please post a gdb backtrace --full?
>>
>>
> Hi,
>
> I replied last week with a full backtrace but I didn't see my post come through. The email was only
>
2012 Jul 01
0
Config off by a nuance or a gross?
Hi,
I am trying to establish an IMAP mail service accessible using a current
Thunderbird on a laptop.
I used Macports to install Dovecot2 (2.1.5) on an older Snow Leopard Mac
mini with Intel Core Duo (specifically a Macmini1,1). My goal is to be
able to run sieve under dovecot2 and offload the email triage from my
work laptop to the little mail server.
Mail appears to show up on the server
1999 Dec 08
1
NT service problem (PR#19365) Help :) (fwd)
Here is a re-post of PR#19365 which was originally post back in
Aug.. If anyone can help I am still looking for a solution !
Forwarded message:
>
> Hi Jeremy !
>
> Don't know if you remember this one but it is definetely turning
> my hair grey :) I have left your original reply at the end.
>
> I finally have a configuration which works with Bentley's
>
1999 Jul 31
1
NT service problem
Hi !
I hope this is the correct place to ask questions ...
I'm having the following problem :
A "service" on an NT 4 server cannot connect to a samba
share on my linux machine. The specific versions are given
below. From the NT machine I have no problem as the administrator
to login to samba server and view the target share. The
supplier's service however cannot
2017 Feb 26
0
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On 17/02/17 07:58, Andrew Bartlett via samba wrote:
> On Fri, 2017-02-17 at 07:48 +1100, Tom Robinson via samba wrote:
>> Anyone?
> Can you please post a gdb backtrace --full?
>
>
Hi,
I replied last week with a full backtrace but I didn't see my post come through. The email was only
266KB. Is the list server or SPAM filter blocking my previous message?
In attempt to
2020 Feb 12
1
[PATCH] drm/qxl: replace zero-length array with flexible-array member
The current codebase makes use of the zero-length array language
extension to the C90 standard, but the preferred mechanism to declare
variable-length types such as these ones is a flexible array member[1][2],
introduced in C99:
struct foo {
int stuff;
struct boo array[];
};
By making use of the mechanism above, we will get a compiler warning
in case the flexible array does not
2017 Jun 29
1
samba-tool SIGSEGV
Hi,
Not sure if I should post in samba-technical or just samba list. Please advise.
Back in February I was trying to do a samba-tool classicupgrade but kept getting SIGSEGV:
https://lists.samba.org/archive/samba/2017-February/206409.html
I didn't progress much after that.
This week I've compiled samba-4.6.5 and installed that. Following the HOW-TO for classic upgrade
2017 Feb 16
0
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
Anyone?
My next concern is codepages. The latest source (I've moved to 4.5.5 now) doesn't have any
>> codepages. The RPM spec file I'm customising lists and wants to install them here:
>>
>> /usr/share/samba/codepages
>> /usr/share/samba/codepages/lowcase.dat
>> /usr/share/samba/codepages/upcase.dat
>> /usr/share/samba/codepages/valid.dat
>>
2017 Feb 07
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
Hi,
I'm having trouble with the classic upgrade. We have three samba servers:
Server1: CentOS 5/Samba 3.6 (with smbldap-tools)
Server2: CentOS 6/Samba Version 4.2.14-SerNet-RedHat-23.el6
Server3: CentOS 7/Samba Version 4.2.14-SerNet-RedHat-23.el7
Server 1: CentOS 5/Samba 3.6 (with smbldap-tools)
Serves our OpenLDAP backend for centralised authentication (LDAP replicated to two other servers
2003 Jul 17
1
Recode from 2 variables
I am trying to create a new variable which uses the suburb names if HR
and HRRES are the same but which uses HRRES if they are different. Any
assistance would be appreciated as my brain has just packed up. I'm not
sure I can teach myself anymore new tricks this afternoon.
HR HRRES SUBURB
What I am trying to get
954 Wheatbelt
2002 May 13
0
Samba 2.2.4 with Win 2k
Hi,
I want to implement a small network using Win 2k and Samba... I only
want to create a Windows 'workgroup' and to use user level security with
plaintext passwords... Just trying to keep things very simple....
I have implemented Samba 2.2.4 on Slackware Linux 7.1 .... Using a
minimal smb.conf:
[global]
workgroup = bentley
netbios name = blackie
server string = This is Linux/Samba
2020 Feb 11
0
[PATCH] char: virtio: Replace zero-length array with flexible-array member
The current codebase makes use of the zero-length array language
extension to the C90 standard, but the preferred mechanism to declare
variable-length types such as these ones is a flexible array member[1][2],
introduced in C99:
struct foo {
int stuff;
struct boo array[];
};
By making use of the mechanism above, we will get a compiler warning
in case the flexible array does not
2017 Feb 15
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On 15/02/17 14:40, Tom Robinson via samba wrote:
> On 13/02/17 10:18, Andrew Bartlett via samba wrote:
>> On Mon, 2017-02-13 at 10:00 +1100, Tom Robinson via samba wrote:
>>> On 12/02/17 03:13, Rowland Penny via samba wrote:
>>>> On Fri, 10 Feb 2017 12:34:23 +1100
>>>> Tom Robinson via samba <samba at lists.samba.org> wrote:
>>>>
2017 Feb 08
0
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On 07/02/17 21:45, Tom Robinson via samba wrote:
> On 07/02/17 17:01, Andrew Bartlett via samba wrote:
>> On Tue, 2017-02-07 at 15:58 +1100, Tom Robinson via samba wrote:
>>> Hi,
>>> \
>>> Next rid = 13001
>>> krb5_init_context failed (Invalid argument)
>>> smb_krb5_context_init_basic failed (Invalid argument)
>>> #
>>>
2002 Sep 13
0
Rsync 2.5.5 (Digital Unix 4.0f) Large Filesets...
Hi,
I've been trying to use rsync to backup the content of a large web
application on our Digital unix servers. I'm having some success but the
main problem is the sheer number of files and subdirectories which must be
copied/maintained between the two servers (one is our standby system).
Believe it or not there are in excess of 7.5 million files/directories
which must be synced between
2017 Feb 07
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On 07/02/17 17:01, Andrew Bartlett via samba wrote:
> On Tue, 2017-02-07 at 15:58 +1100, Tom Robinson via samba wrote:
>> Hi,
>> \
>> Next rid = 13001
>> krb5_init_context failed (Invalid argument)
>> smb_krb5_context_init_basic failed (Invalid argument)
>> #
>>
>> Is this a CentOS 6/7 difference issue or is the classicupgrade broken
>> for
2007 Apr 03
3
ipp2p: error loading kernel module
Hi,
I get this error when trying to insmod the ipp2p kernel module:
"insmod: error inserting ''ipt_ipp2p.ko'': -1 Invalid module format"
in the kernel log: "ipt_ipp2p: disagrees about version of symbol
struct_module"
Kernel version 2.6.20.4
iptables version: 1.3.5
ipp2p version: 0.8.2 (latest)
Anyone tried ipp2p with kernel 2.6.20?
Best Regards Niclas