similar to: IBM AIX problems

Displaying 20 results from an estimated 200 matches similar to: "IBM AIX problems"

2006 Apr 01
1
Sys.sleep() burns up CPU on Solaris 8
I noticed that R was burning up 100% of a CPU when a call to Sys.sleep() was made. Upon investigation, I discovered that R_checkActivityEx() in src/unix/sys-std.c was putting the entire timeout (in usec) into the struct timeval tv_usec member, leaving tv_sec set to 0. I don't know about other unix variants, but Solaris requires that the timeout value be normalized (i.e. 0 <= tv_usec
1998 Nov 05
1
compilation of 0.62.4
Hello, I have compiled 0.62.4 under Linux and it runs fine (a gcc/g77 combination). When I try the same thing under AIX (4.1.5) or under dec's OSF (both also gcc/g77) I get problems. Under AIX, system.c complains: system.c: In function `waitForActivity': system.c:150: `fd_set' undeclared (first use in this function) system.c:150: (Each undeclared identifier is reported only once
1997 Dec 05
0
R-beta: New R Version for Unix
Version 0.60 of R for Unix is now available. Release of this version has been delayed for a variety of reasons, but we hope that it will provide a good deal more stability and functionality than previous versions. However it should be regarded as of "alpha" quality for a short shakedown period. We would like user feedback to help us improve the quality of R. You can do this by
1997 Dec 05
0
R-beta: New R Version for Unix
Version 0.60 of R for Unix is now available. Release of this version has been delayed for a variety of reasons, but we hope that it will provide a good deal more stability and functionality than previous versions. However it should be regarded as of "alpha" quality for a short shakedown period. We would like user feedback to help us improve the quality of R. You can do this by
2011 Mar 08
1
Write list and user permissions.
Hello, I am trying to make a small server around the team that we experiment together. I gave permission to read to all users and i gave permissions to write only to some of them, dependent on the folder. Folders are in second HD that is auto mounted at boot through fstab. All folders and sub folders have permission to read and write changed to user , group , other. users : me, harald, heiner
2008 Jun 03
0
More information on R segfaults, tcltk package, and graphics devices
Dear R-devel - I have investigated the report I made at https://stat.ethz.ch/pipermail/r-devel/2008-May/049683.html some more, and believe I have enough information to warrant an update. My sessionInfo() immediately after starting R is at the bottom of this message. I decided to first concentrate on finding out why I sometimes receive a segfault while closing a graphics window while the
1999 Jun 09
1
R on AIX (>4.2)
Hi, I'm determined to get R compiling & running on a machine running AIX 4.2. I've seen previous emails in the archive about this topic. The main obstacle is getting dynamic loading to work, but it works for Tcl and hence is feasable. Questions: - is anybody _currently_ working with R on AIX? - why have previous fixes to the sources not been introduced into the released
1999 Jun 09
1
R on AIX (>4.2)
Hi, I'm determined to get R compiling & running on a machine running AIX 4.2. I've seen previous emails in the archive about this topic. The main obstacle is getting dynamic loading to work, but it works for Tcl and hence is feasable. Questions: - is anybody _currently_ working with R on AIX? - why have previous fixes to the sources not been introduced into the released
2018 Mar 14
0
wbinfo -i output different before 1st authentication
Thank you very much, Rowland! Very helpful. But do you say that the change in the output of „wbinfo -i“ is expected after the user has logged in? Should the use of „domain.realm“ vs „NTDOMAIN“ not be consistent, no matter if the user has logged in or not? Many regards, Heiner Von meinem iPhone gesendet > Am 11.03.2018 um 16:09 schrieb Rowland Penny <rpenny at samba.org>: > >
2009 Nov 18
6
[PATCH 1/3] libxenlight: Clean up logging arrangements
* Introduce new variants of the logging functions which include errno values (converted using strerror) in the messages passed to the application''s logging callback. * Use the new errno-including logging functions everywhere where appropriate. In general, xc_... functions return errno values or 0; xs_... functions return 0 or -1 (or some such) setting errno. * When
2015 Mar 17
2
How to know which protocol version clients use?
Hello, I currently run samba with server min protocol = NT1 but I need to move towards server min protocol = SMB2 is there any way I can detect which clients still use the older protocol versions? I would like to estimate the impact of the change before i do close NT1/SMB1. Thank and kind regards, Heiner Billich
2018 Mar 11
1
wbinfo -i output different before 1st authentication
Dear all, on CentOs7 based linux w. different versions of Samba (4.6.x from CentOS repos, but also Sernet-Samba-4.7.4 and also compiled from source), "wbinfo -i user at domain.tld" returns different results before the first successful authentication of the user. Server joined as member to Active Directory, idmapping via tdb2. On first attempt, the result returns
2019 Nov 20
1
Smbstatus shows same share for same client several times - related to locking issues?
Hello, we frequently face locking issues with office applications and documents on samba shares. The office applications claim that the document is locked and hence no write access is possible. I can check on the samba server that there is no concurrent access/locking from other computers or users. It looks like the same user holds some lock and is denied to access the document because it?s
2009 Jan 29
0
Massive UDP and TCP packet loss
Sorry for repost, there was an sending error with my first posting. ------------------------------------------------------------------- Hi, I''m trying to get Xen running on 2 different systems and have massive packet losts independ from the system I use! This are the results from an UDP-Benchmark-Test from an Xen-Server to another one. As you make notice, the sending packets have a
2011 Mar 10
1
Debian 6 / Xen 4 / blktap2
Hello all I am updating a test system from Debian 5 and Xen 3.2 to Debian 6 and Xen 4. After dist-upgrading, I did: aptitude -P install xen-hypervisor-4.0-i386 linux-image-xen-686 And then fixed Grub2 to boot the xen kernel. cat /etc/debian_version return 6, uname -a returns: Linux xen-test 2.6.32-5-xen-686 #1 SMP Wed Jan 12 07:52:18 UTC 2011 i686 GNU/Linux So far so good. I previously
2004 Aug 06
2
production code
hi. i joined the list a week ago. i'm using speexlib as the codec for GameSpy's new voice SDK [for voice chat for video games]. everything works well. kudos. i'd like to make a contribution to the codebase. i am bothered by the spew of warnings ( about 300 ) from my compiler. i typically frown on warnings anywhere in my codebase. COMPILER: Visual C++ .NET 2003 version 7.1.3088
1998 Jan 06
1
IEEE 754 Style Arithmetic
I have been looking at the R mathematical library with a view to making changes so that it will handle IEEE 754 entities like NaN and +/- Inf. This appears to be not too hard and I am fairly well down the path to converting the existing code (and simultaneously converting some of the more suspect algorithms to something more solid). Q1: I have looked at the Splus implementation and I have a bit
1997 Dec 09
3
R-beta: R FAQ v0.60
An updated version of the R FAQ to accompany the new 0.60 release is now available at the usual site, http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html A plain text version of the FAQ is appended below. -kh ****** snip snip snip ************************************************** R FAQ Kurt Hornik v0.60-6, 1997/12/08 This document contains answers to some of the most frequently asked
1997 Dec 09
3
R-beta: R FAQ v0.60
An updated version of the R FAQ to accompany the new 0.60 release is now available at the usual site, http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html A plain text version of the FAQ is appended below. -kh ****** snip snip snip ************************************************** R FAQ Kurt Hornik v0.60-6, 1997/12/08 This document contains answers to some of the most frequently asked
1997 Dec 09
3
R-beta: R FAQ v0.60
An updated version of the R FAQ to accompany the new 0.60 release is now available at the usual site, http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html A plain text version of the FAQ is appended below. -kh ****** snip snip snip ************************************************** R FAQ Kurt Hornik v0.60-6, 1997/12/08 This document contains answers to some of the most frequently asked