similar to: Solaris X86

Displaying 20 results from an estimated 300 matches similar to: "Solaris X86"

2017 Nov 07
2
Problem with getting restapi up&running
Hi, i am currently struggling around with gluster restapi (not heketi), somehow i am a bit stuck. During startup of glusterrestd service it drops some python errors, heres a error log output with increased loglevel. Maybe someone can give me a hint how to fix this -- snip -- [2017-11-07 10:29:04 +0000] [30982] [DEBUG] Current configuration: proxy_protocol: False worker_connections: 1000
2004 Feb 15
1
Win32::Process fork fragility
Park, I was just playing around with the Process.fork/wait that you committed. I discovered that it''s rather easy to break with this: require "win32/process" include Win32 Dir.chdir ".." # This causes the problem pid = Win32::Process.fork if pid == 0 puts "In the child" exit else puts "In the parent" end Win32::Process.wait(pid) I think
2001 Feb 04
1
Segfault creating font metrics
I have a solaris X86 Xfree 3.3 system and I have trouble when Wine tries to create the font metrics trace:font:XFONT_BuildMetrics [ 9pt] '-misc-fixed-medium-r-normal--14-110-100-100-c-70-iso8859-1' Can anyone give me some ideas how to fix this Thanks Bob
2012 Feb 29
2
[PATCH] Start the server if another user has a PID matching our stale pidfile.
If unicorn doesn''t get terminated cleanly (for example if the machine has its power interrupted) and the pid in the pidfile gets used by another process, the current unicorn code will exit and not start a server. This tiny patch fixes that behaviour. --- lib/unicorn/http_server.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/unicorn/http_server.rb
2005 Mar 28
3
FreeCell
I have converted my parent's computer to Linux (Fedora Core 3) and have down-loaed Crossover and tried to get three applications working. TurboTax 2004 -> Works great Peachtree-> Still broken and no error output (this is lower priority) FreeCell -> Getting error below Of all the applications I need (for political reasons:>) Freecell is the most critical. I was NOT expecting this
2001 Oct 22
2
Freecell hangs at game select
I did not read about any similar problem, but I encountered this one even with the latest stripped build, even on two different Linux installations: Freecell works perfectly except for the "Select game" feature during the game. When choosing this menu item, you are asked whether you want to abort this game, and after that, the dialog box for the game number should appear. It does, but
2004 Dec 19
3
More problems with latest of of Sid
1. Windows solitaire and freecell used to run flawlessly. Now, freecell will not even execute and solitaire comes up almost without cards showing. Freecell run in a terminal kicks about resolution and a registry key relating to fonts and cannot load cards.dll. Solitaire kicks about the same thing but gets the dll. 2. As I posted previously, MIDI applications do not see any MIDI devices. This
2006 May 11
7
Upload progress "plugin"
mongreleers, This is a hack for adding basic upload progress support to Mongrel. Currently, you can monitor the upload of any POST. I''m sure some work needs to be done to get it functioning with Rails. Save as lib/mongrel/progress. Anyway, here''s how to start Mongrel with it: require ''mongrel'' require ''mongrel/camping'' require
2001 Feb 08
6
find the right (wine) path
wine version 20001002 running in rh7. installed and working. Have a newbie question about command line paths to access windows apps. No problem accessing anything in c:\windows eg freecell.exe by the simple command # wine freecell.exe the mount directory is named /dos (and is in /etc/wine/wine.conf under Drive c) so I assume that the command # wine /dos/agent/agent.exe should bring up the
2002 Aug 02
0
[Bug 378] New: sshd does not update utmp/utmpx records correctly when "UseLogin" feature on
http://bugzilla.mindrot.org/show_bug.cgi?id=378 Summary: sshd does not update utmp/utmpx records correctly when "UseLogin" feature on Product: Portable OpenSSH Version: -current Platform: MIPS OS/Version: IRIX Status: NEW Severity: normal Priority: P2
2004 Oct 19
1
Desktop Icons
I have the program 'freecell' in the directory: [john]: 09:28 AM [~/.wine/drive_c/ProgramFiles/Freecell] $ wine freecell will start the program. What do I have to do to create an Icon on the desktop that will start the program? John
2004 Nov 23
1
problems with my first wine-steps
Hello, I installed wine-20041019 with the wineinstall-script on debian (woody). (There is a windows98SE on /mnt/win. /mnt/win is mounted) Now I try to run freecell.exe, but it doesn't work. jochen@archie:~$ wine 'c:\windows\freecell.exe' Please use the registry key HKEY_CURRENT_CONFIG\Software\Fonts\LogPixels to set the screen resolution and remove the "Resolution" entry
2001 Mar 04
3
Window position in managed mode
When starting, for example, FreeCell in managed more, the program opens with the top of the window out of the top of my screen (i.e. the top corner of my desktop coincides with the top-left of the menu bar). It's not a huge problem, but I can't move the program... -- ------------------------------------------------- Richard Spandit Firmly on the Linux wagon SuSE 6.3, KDE 2.0
2009 Apr 17
1
Re: How to discover within my application if executed in Wine?
I finally succedeed to show the icon from tray - the problem is that the hole application isn't hidden. I use ShowWindow from user32: ShowWindow(Application.Handle, SW_HIDE); Is there a better way to hide it?
2001 Feb 28
1
Hooray! (but help)
I'm completely new to WINE, but I've managed to get it working... of sorts. Playing Freecell under Linux is all very well but trying to run Outlook Express caused no end of errors. Any tips? By the way, even running Freecell caused a load of font type errors... -- ------------------------------------------------- Richard Spandit Firmly on the Linux wagon SuSE 6.3, KDE 2.0
2007 Mar 08
2
Hotkey between Xorg and Wine applications
Hello! I'm trying to install a Windows application called Macro Express, wich automatizes a lot of process with recorded macros. The macros are called by pressing Hotkeys combinations like Control+1 or Control+2 etc. Then, the macro sends keys to applications. I have installed the program on kubuntu and Wine 0.9.30. The problems are that it only regonizes Hotkeys when Macro Express window is
2002 Jul 23
2
Irix UseLogin wtmp/utmp bug
I am using the "UseLogin yes" configuration parameter to call the /usr/bin/login program on SGI Irix, (we are using Irix version 6.5.13). I do this because the SGI login program is AFS awhere and checks out a token for you and I do not want to compile the Kerberos version of sshd, (it is to messy for me to support). Everything seems to work fine accept the wtmp(x) and utmp(x) files do
2013 Dec 09
2
[PATCH] rework master-to-worker signaling to use a pipe
Signaling using normal kill(2) is preserved, but the master now prefers to signal workers using a pipe rather than kill(2). Non-graceful signals (:TERM/:KILL) are still sent using kill(2), as they ask for immediate shutdown. This change is necessary to avoid triggering the ubf (unblocking function) for rb_thread_call_without_gvl (and similar) functions extensions. Most notably, this fixes
2001 May 01
2
Word 97
I have been reading through the WINE documentation for the last week or so and have been unable to solve my problem with Word 97. The OS is Redhat 6.2 single boot without Windows installed on any partition. I can run notepad, mspaint, agent, and freecell with WINE, but when I try to run MS Word 97 I get the following: 1) A message that says: " The Tahoma font is not present. For best
2006 Jul 23
2
a tail of 2 users ?
The system is FC5 and wine is the latest .17. There are two users configured on the system, A and B. They are configured to be as alike as possible. Diff of set output shows only the expected differences. Wine is built from CVS. winecfg is configured to the same profile with only the appropriate user path names changed. The problem is wine works well for one of the users and not well at all