similar to: Interfering Splash Screen...

Displaying 20 results from an estimated 1000 matches similar to: "Interfering Splash Screen..."

2002 Oct 24
0
Error log
I'm trying to get our legacy Microfocus Cobol database interface to work on a Linux box. I'm using WINE 20021007 built from source on Mandrake 8.2 (after removing default WINE install) I've fixed several problems in my config file, and imported some dll's that were missing. I can get to the login screen, but when I try to go any farther into the program I get this:
2005 Feb 07
2
sys.on.exit not working (PR#7665)
Full_Name: Mark Bravington Version: 2.0.1 OS: Windows XP Submission from: (NULL) (140.79.22.104) 'sys.on.exit()' doesn't seem to be working, since R1.7.1 at least: soe.test <- function() { on.exit( cat( 'In exit code\n')) str( sys.on.exit()) # should display "language..." I think 12 } (A similar bug was apparently fixed for version 0.65!)
2019 Jul 10
2
Winbind issues with AD member file server
I agree that this sounds like, and indeed is, a recipe for disaster. I was going to explain some of the woes of our environment but I don't think it's actually relevant after looking at my problem a bit more. If I'm way off base I'm happy to be herded back, but please tolerate me as I share what I am seeing today because I really hope to solve the narrow issue of SMB file access
2002 Oct 15
3
ActivateKeyboardLayout
Hi all, I get this when using my game for every key I hit, though the keys work fine. err:keyboard:ActivateKeyboardLayout Only default system keyboard layout supported. Call ignored. Typing is a major pain. There is a huge delay from keypress to the letter appearing on screen, though the correct characters are typed. Keyboard is a Microsoft natural pro, language is english. What do I need to
2011 Oct 13
2
Comparing the components of a data frame without levels interfering
*Bottom Line: How can I compare the individual components of two data frames with different row lengths without the levels interfering?* Example: I have two data frames to those respectively named 'dfCity' and 'dfState' that have the following output: dfCity Name City 1 Bill Detroit 2 Jody Chicago 3 Frank Memphis 4 Ron Houston
2005 Jan 28
0
fax/data/phone switch interfering with voip
I have an analogue line with a fax/data/phone switch on it 1. I hooked up a X100P to the phone port (the other ports are used for a fax machine and a omdem) and can answer and initiate calls .. but I can't get the caller id info. 2. I hooked up a SPA 3000 fxo to the same phone port and get caller-id info and can answer calls, but I can't make calls!! Also, if I hookup a callerid phone
2010 Mar 19
0
How to disable selinux protection interfering with pppd? I tried audit2allow, but policy does not load. Is there an seboolean?
CentOS release 5.4 (Final) I run pppd on this system, it accepts dial-in connections, logs people in over ssh/sftp. I had selinux disabled on this system originally, but I recently enabled it, and selinux is blocking this pppd service. "audit2allow -M" has generated the following policy based on AVC denial messages: module fixdialinserver 1.0; require { type pppd_t;
2010 Jul 14
0
.Rprofile interfering with update.packages()
I know this is a double post, but the subject line was really misleading. Sorry again. This is the first time that I have tried to update packages with a tinkered around with .Rprofile. I start R with R --vanilla and it does not load my .Rprofile, but when I issue the command update.packages() R downloads the packages as expected, but then seems to load .Rprofile before compiling the packages
2002 Oct 18
5
Printing with wine
Ooops, I guess a suject will get some of you to read this, hey? Hi All, Wondering if there is a document that tells how to get wine printing through a cups printer working? Yes I know the wine docs say it's all magic and if you're using cups your printing will magically work, but for some reason, it doesn't, my wine session crashes and burns when I try to print from the built in
2014 Sep 22
8
[Bug 2280] New: openssh-6.6p1 compression throwing Segmentation fault
https://bugzilla.mindrot.org/show_bug.cgi?id=2280 Bug ID: 2280 Summary: openssh-6.6p1 compression throwing Segmentation fault Product: Portable OpenSSH Version: 6.6p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee:
2008 Feb 01
2
Facebooker interfering with existing application
Hi! I have an existing application, basically a very simple Hobo app. It works... When I install the Facebooker plugin and create the facebooker.yml file (with valid or fake content, doesn''t matter), the original app starts behaving strangely. The controller and view logic keeps working, but several static files stop being served from http://localhost:3000/javascripts and start being
2019 Jul 10
1
Winbind issues with AD member file server
> > When I try to > > access even an already-mounted NFS directory to which I have permission, > > gssproxy complains: > > > > Jul 10 08:55:51 smb gssproxy: gssproxy[1469]: (OID: { 1 2 840 113554 1 2 > 2 > > }) Unspecified GSS failure. Minor code may provide more information, > > Client 'host/smb.soe.ucsc.edu at AD.SOE.UCSC.EDU' not found in
2019 Jul 09
2
Winbind issues with AD member file server
Ugh, I knew I forgot something. Here is smb.conf: --- [global] kerberos method = system keytab template homedir = /soe/%U workgroup = BSOE template shell = /bin/bash security = ads realm = AD.SOE.UCSC.EDU idmap config BSOE : schema_mode = rfc2307 idmap config BSOE : range = 100-999999 idmap config BSOE : backend = ad idmap config BSOE : unix_nss_info = yes idmap config BSOE : unix_primary_group
2005 Aug 24
0
[LLVMdev] Marking source locations without interfering with optimization?
On Tue, 23 Aug 2005, Michael McCracken wrote: >> Okay... this is tricky. Anything that will bind to variables will >> prevent modification to the variable. > > I see - so if I wanted to use my earlier approach, I'd need to change every > optimization and analysis to treat the 'marker' instructions specially as > instructions that don't modify their
2005 Aug 23
0
[LLVMdev] Marking source locations without interfering with optimization?
On Fri, 19 Aug 2005, Michael McCracken wrote: > I've been thinking of adding an instruction, and I'm following the > advice in the docs to consult the list before doing something rash. Always a good idea! :) Instead of adding an instruction, I'd suggest adding an intrinsic. You can mark intrinsics as not reading/writing to memory (see lib/Analysis/BasicAliasAnalysis.cpp for
2005 Aug 24
1
[LLVMdev] Marking source locations without interfering with optimization?
On 8/23/05, Chris Lattner <sabre at nondot.org> wrote: > On Tue, 23 Aug 2005, Michael McCracken wrote: > >> Okay... this is tricky. Anything that will bind to variables will > >> prevent modification to the variable. > > > > I see - so if I wanted to use my earlier approach, I'd need to change every > > optimization and analysis to treat the
2002 Nov 06
1
openssl version mismatch !!
Hi Everybody, I am running openssh 3.4p1 on solaris 8 sparc machine. We recently upgraded our openssh,which is version 3.4p1. when I do "ssh -V" it shows "openssl version mismatch....." and even I try to generate keys with ssh-keygen it gives same error message. I would appreciate if somebody let me know what could be the reason for this error and How I can resolve it.
2002 Oct 23
2
Random Network Failures
Okay, I've been working with Samba for a few years now, and I've figrued it out mostly on my own. Now I'm stuck and this problem is slowing down a MAJOR project in my shop. Our solid SuSE 7.3 server's network is dying randomly. All services, not just Samba (2.2.1a) go out. However, it always happens when someone is accessing DVD projects from our NT 4.0 Spruce authoring
2009 Mar 05
2
Exposing environment variables to Facter
Hey gang, During the build of our Linux (EL4 and EL5) images, the kickstart process writes out a file (/etc/sysconfig/soe) that contains: SOE_VERSION="Version string" SOE_BUILD_DATE="2009-03-06" I then have /etc/profile.d/facter.sh scripts that has this: . /etc/sysconfig/puppet . /etc/sysconfig/soe FACTER_PUPPETMASTER=$PUPPET_SERVER FACTER_SOE_VERSION=$SOE_VERSION
2019 Jul 09
3
Winbind issues with AD member file server
I am setting up a CentOS 7 system as a file server within an AD domain, following the following Red Hat documentation: https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/system_administrators_guide/ch-file_and_print_servers Here is some information that likely complicates things: - we have a number of users and groups with sub-1000 uid or gid numbers which can't