search for: raynor

Displaying 6 results from an estimated 6 matches for "raynor".

Did you mean: rayner
2010 Feb 26
1
help system works under IE but not Firefox
...help.start() R attempts to open a browser session at http://127.0.0.1:27594/doc/html/index.html using my default browser (Firefox 3.6) and is unable to connect. If I then open the same page using IE 8, it works just fine. How do I fix/change R so that it works with Firefox? Thanks Bill William J. Raynor, Jr. Ph.D. Technical Leader III Innovation Design & Testing Kimberly-Clark Corp. 2100 Winchester Road Neenah, Wi. 54956 (920) 721-5973 Email: bill.raynor@kcc.com<mailto:bill.raynor@kcc.com> This e-mail is intended for the use of the addressee(s) only and may contain privileged, confi...
2005 Mar 04
1
joining a domain without having Windows admin privileges
I would like to use "security = domain" for a samba server, but the only way I've found to do that is to issue the command "net rpc join -U admin%password" where "admin" is a Windows user that has the authority to create machine accounts. I don't have that authority, and I don't think I can get it. Is there another way to do this? For instance, if
2005 Aug 26
1
3.0.20 compiles in aio support on aix by default, and when asked not to
I'm trying to install samba-3.0.20 on aix 5.2, and I don't want to use aio, but the build process is compiling it in anyway. By default, it isn't supposed to build in aio support, but it does. When I pass --with-aio-support=no to configure, it also builds in support. It builds in aio support whether I use gcc or xlc. Here's what ldd shows: # ldd bin/smbd bin/smbd needs:
2004 Nov 11
2
patch adding none cipher/mac for ssh v2
Below is a patch that adds the ability to have a none cipher and mac for protocol version 2. By default, sshd will not allow these to be used; an admin will have to explicitly allow them in the Ciphers and MACs section of sshd_config. Additionally, the client will not use these unless explicitly instructed to by the user. The actual name of the cipher is 'none2', to distinguish it
2006 Oct 29
1
dmapi doesn't work on aix; possible fix included
I'm running samba 3.0.23c on aix 5.3 TL4. I'm using Tivoli HSM 5.3.4.0 on a JFS2 filesystem. Samba compiled fine, and I set "dmapi support = yes" in smb.conf, but samba wouldn't recognize offline files ("migrated files" in tsm terminology). After setting a higher log level I think I've tracked down the problem. The patch is at the bottom of this email.
2024 Mar 18
0
[PATCH] add option to skip files based on age/mtime
I've added the options --min-age=SECONDS and --max-age=SECONDS to allow rsync to skip files based on how recently they were modified. Setting --min-age=30 (for example) would cause rsync to skip files that had been modified within the last 30 seconds. Setting --max-age=7776000 would cause rsync to skip files that had been modified more than 90 days ago (7776000 == 60*60*24*90). I realize