search for: unixen

Displaying 20 results from an estimated 29 matches for "unixen".

Did you mean: unixes
2006 Jun 01
3
Image corrupted on upload
Hi, I''m using the below method to copy/upload a file. The outcome is an image with the proper dimensions but looks garbled and pixelated. I''m baffled as to what''s going on. What''s even weirder is this same function with the same image works for my colleague. He is using OS/10 and I am using Windows Media Center. Any ideas? # # destination is the
2001 May 01
2
graphics library fltk
...ll do not have dynamic graphics in R natively. i just found out about a widget library called fltk info is at www.fltk.org it has all the stuff r currently can do only through tcl/tk or (as i do it) excel: sliders, knobs, spinners and so on. it is multiplatform, there are production versions for unixen and windows, and there is a beta for macs. this could be a way of getting some of luke's dynamic graphics tools into R more easily. perhaps this looks interesting enough that some r-core member will have a look at it. -- Erich Neuwirth, Computer Supported Didactics Working Group Visit our...
2015 Dec 30
2
FLAC__BYTES_PER_WORD==8 test results
On Dec 30, 2015, at 3:09 AM, Thomas Zander <thomas.e.zander at googlemail.com> wrote: > On 29 December 2015 at 21:50, lvqcl <lvqcl.mail at gmail.com> wrote: >> So, does it make sense to #define FLAC__BYTES_PER_WORD (in bitreader.c) >> as 4 for 32-bit and as 8 for 64-bit targets? > > Your tests so far imply this is a sensible default. > I'd say go ahead. We
2015 Apr 23
3
CentOS 7 NFS client problems
...bit more shows some similar behavior for other distros: <https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/966734> <https://bugzilla.linux-nfs.org/show_bug.cgi?id=226> Yep, this is a situation where LDAP and Kerberos aren't in play. And the CentOS 5, CentOS 6, and other UNIXen boxes are using consistent UID/GID mappings. However, CentOS7 (well, RHEL7) changed the minimum UID/GID for regular accounts, so when the account was created on the latter, the UID is out of sync. So much for idmapd (without the fixes involved in the above URLs). Has anyone else run into this an...
2015 Dec 31
1
FLAC__BYTES_PER_WORD==8 test results
...----------------- > 32 bit Linux | 4 | 4 > 64 bit Linux | 4 | 8 > 32 bit windows | 4 | 4 > 64 bit windows | 4 | 4 > > Note that sizeof(long) on 64 bit windows is 4! > > Most other unixen follow the LP64 scheme used by Linux. > > Erik On Windows x64 sizeof(long) is 4, but sizeof(ptrdiff_t) is 8. Any reasons for not using sizeof(ptrdiff_t)? Cheers, Cristian. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac-d...
2016 Jul 07
1
Detecting user interrupts in R_tryEval
Is there any way to distinguish between an error and a user interruption in R_tryEval? In both cases the ErrorOccurred argument is set to 1. For my application I need a different action in case of a SIGINT. >From the source code I infer that R_tryEval basically wraps eval in R_ToplevelExec, which returns TRUE if fun returns normally, FALSE if it results in a jump to top level. However both an
2001 May 01
1
fatal compile error on SGI IRIX
IRIX64 6.5 01101245 IP27 20010425 CVS - (djm) Include crypt.h if available in auth-passwd.c cc-1143 cc: ERROR File = /usr/include/crypt.h, Line = 38 Declaration is incompatible with "void des_encrypt(unsigned long *, struct des_ks_struct *, int)" (declared at line 150 of "/usr/local/ssl/include/openssl/des.h"). extern void des_encrypt(char *, int);
2005 Jun 28
1
rsync process - writing to source file system
I've just recently started using rsync, and I have a question about how rsync works in regards to writing anything to the source file system. I am rsyncing between two systems and all seems to be working well. However, on the source server we have another process running that seems to be getting hung up whenever the rsync is occurring. The source system has EMC Clariion disk arrays.
1998 Aug 28
0
Samba Create Masks
...f it is moved (it's standard Unix semantics here). I haven't tried this but I believe it will work. Of course, that share is only made available for the users who put files in there. You have a separate share for the "everyone" who must have only readonly access. On most Unixen, you can set the group execute bit on a directory to force the group ownership of files created in that directory. This can be used to set the group ownership of files. Again it doesn;t work if the file is moved in, rather than created. Thanks for any help. Regards, David Bullock Loftus Com...
2007 Feb 16
0
Requiring iconv
Sooner or later we are going to have to require iconv for fully functional R installations. The only systems we are aware of that do not come with a suitable iconv (with support for Unicode charsets like UTF-8) are some older commercial Unixen, and GNU libiconv works on those we know of. Does anyone have a system for which R's configure does not find a working iconv and on which they could not install GNU libiconv? I am contemplating that 2.5.0 would need to be explicitly configured with --without-iconv to allow it to be built o...
2007 Jul 09
1
packages using UTF-8 encoding
Hi, During a recent CRAN upload procedure, I was reminded of the following regarding R-devel: o R CMD check now warns on non-ASCII .Rd files without an \encoding field, rather than just on ones that are definitely not from an ISO-8859 encoding. This agrees with the long-standing stipulation in 'Writing R Extensions', and catches some packages with
2010 Mar 01
1
ICONV error installing R-2.10.1 on HP-UX B.11.23 U ia64
Hi, I have the following error during the ./configure phase checking iconv.h usability... yes checking iconv.h presence... yes checking for iconv.h... yes checking for iconv... in libiconv checking whether iconv accepts "UTF-8", "latin1" and "UCS-*"... no configure: error: a suitable iconv is essential I have installed GNU libiconv-1.13.1 without success. I have
2004 Jul 10
0
Root users shell
...or > improved cross-platform compatibility it should be removed from > the distribution. I've used it a few times. Since about 1996 I've used the ksh as the default root shell on all Unix systems I've admined - commercial distributions and FreeBSD. I also set up the commericial Unixen to same way FreeBSD does, with /root being the owners home directory instead of /. It's one more little thing that can help prevent a mistype from removing critical files, by accident, or if there is more than one person with root access. Having *toor* with the default /bin/sh came in handy....
2009 May 18
1
Auto-upgrading a package under Windows ?
I was trying to be cute with a company-internal package and used if (Sys.info()["sysname"]=="Windows") { update.packages(repos="http://some.where.internal/R", ask=FALSE) } but that of course fails as the package itself is loaded and cannot be upgraded (as it contains a dll) when loaded. Smart move by the OS. Can anybody suggest a workaround, other
2006 Jun 21
7
How to install patches?
Hi, Can someone explain how do I install patches. Once I go to the page, I am not sure what to download and how to apply? I am RoR newbie. -Thanks Hari -- Posted via http://www.ruby-forum.com/.
2005 Oct 27
2
encrypted RData file?
Hi, I wonder if there is interest/intention to allow for encrypted .RData files? One can certainly do that outside R manually but that will leave a decrypted RData file somewhere which one has to remember to delete. Cheers, Michael
2015 Apr 24
0
CentOS 7 NFS client problems
...imilar behavior for other distros: > <https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/966734> > <https://bugzilla.linux-nfs.org/show_bug.cgi?id=226> > > Yep, this is a situation where LDAP and Kerberos aren't in play. And > the CentOS 5, CentOS 6, and other UNIXen boxes are using consistent > UID/GID mappings. However, CentOS7 (well, RHEL7) changed the minimum > UID/GID for regular accounts, so when the account was created on the > latter, the UID is out of sync. So much for idmapd (without the > fixes involved in the above URLs). > > Has...
2008 Jul 29
2
R command history -- can it be like Matlab's?
Hi all, In R GUI window, if you use "up" and "down" key, you will be able to recall the previous and next command that has been used and stored in the command history cache. But there is one inconvenience: In Matlab, you can type the first a few characters of the command that you previously used, and then press ?up" key, you will be able to get to that previous
2006 Jan 05
3
Using STL containers in R/C++
Hi All, I am in the process of writing an R extension in c++ and am using several STL containers (e.g., vector<double>, map<int, double>, multimap<int, double>). I make sure to clear all these containers at the end of the .Call. Everything compiles and runs just fine, but I'm a bit worried since I haven't found any other packages that use STL. So, my question: is it
2001 Jan 29
1
Solaris wtmpx patch
Hi, Solaris (tested with 2.6) needs a username in the logout record in the wtmpx file. Currently openssh (version 2.3.0p1) leaves the username (utmpx.ut_user) empty in logout records, which leads to conflicting results from the last command. Example: # last -5 siegert siegert pts/186 stikine.ucs.sfu. Mon Jan 15 14:26 still logged in siegert pts/105 stikine.ucs.sfu. Mon Jan 15