similar to: wine and msdos applications

Displaying 20 results from an estimated 600 matches similar to: "wine and msdos applications"

2001 Sep 04
2
wine 20010824 and missing command line options
Hi all, I recently compiled and installed a new version of wine (20010824). Everything works fine, but alot of command line options are missing. The options I get with wine --help are: --debugmsg name, --dll name, --dosver x.xx, --help,-h, --managed, --version,-v, --winver. I miss commandline options like: --desktop and --display. Are they no longer supported? Thanx for any hints, michael --
2002 Feb 18
1
Unknown DOS version
Hello, what does the wine error message "unknown DOS version" mean? Will I have to change my wine configuration in some way? Or is the program not runnable with wine at all? Any hints are appreciated. Thanks in advance. Martin
1999 Apr 16
1
Heap size
Hi, I am trying to create a matrix 8000x8000 but cannot make R work properly with: rgui --vsize 30 --nsize 1000000 I can't pass an nsize value more than 1000000. What are the limits uder windows 98 ? Best, Costas -- ------------------------------------------------------------------------- Konstantinos E. Vorloou | Tel: +44 (0)191 374 1821 Department of Economics &
2008 Jul 16
1
Videoplayback freeze when something is running by wine
Firs of all excuse my English [Embarassed] In my Ubuntu 8.04 I have wine 1.1.1. If I start some win32 application uder wine at first and after that try to play .avi file (no matter by what player --xine, mplayer), player shows me 1-2 sec of video and then freeze! If player started before wine all goes good! I try to do same things on laptop with ubuntu, and don't get this truble.
2010 Sep 08
1
large files produced from image plots?
Hi list, I wonder if anyone has thoughts on making image plots in R [using image() or image.plot(), or filled.contour()]- I've made quite a bit now, but they seem quite large in size when exported to pdf file format (even after compressing with pdftk or ghostscript, which I regularly do). I know that for "images", raster graphics output (png, tiff) may be the way to go, but often the
2010 Sep 08
1
large files produced from image plots?
Hi list, I wonder if anyone has thoughts on making image plots in R [using image() or image.plot(), or filled.contour()]- I've made quite a bit now, but they seem quite large in size when exported to pdf file format (even after compressing with pdftk or ghostscript, which I regularly do). I know that for "images", raster graphics output (png, tiff) may be the way to go, but often the
2008 Mar 25
4
Wine problem with GL and directx 9.0
I've got wine 0.9.57 and installed directx 9.0 but it seems doesnt work. I've installed new ati drivers, new audio drivers. When I try to play at Assassin's Creed i got an error: Code: fixme:d3d_shader:shader_glsl_load_constantsI >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from glUniform4ivARB @ glsl_shader.c / 279 there is no
2002 Mar 01
4
Absolute Newbie.
Hello, I must confess to being an absolute newbie to wine - except for having followed the content of the mailing lists for a while. I would quite like to get involved with the project, and would prefer a testing-oriented or documentation role if there was a need for such. What I'd like to know at this point, if anyone would tell me, is where exactly is the wine project up to in terms of
2006 Oct 18
1
Profile permissions issue? Samba and FDS problem
First some information on the system set up. OS: CentOS 4.3 Samba 3.0.10 FDS 7.1 Samba is acting as a PDC for our network. We have both windows 2000 and windows XP client machines. They are all joined to our domain. Everything "seems" to be fine except that when a user logs into a machine they can not make even simple changes to setting such as folder options (ie. view file extensions).
2009 Mar 03
2
preparing data for barplot()
What is the best way to produce a barplot from my data? I would like the barplot to show each person with the values stacked val1+val2+val3, so there is one bar for each person When I use barplot(data.matrix(realdata)), it shows one bar for each value instead. To post here, I created an artificical data set, but it works fine. fakedata <- as.data.frame(list(LETTERS[1:3])) colnames(fakedata)
2006 Mar 16
2
USB keyboard problem
When using the latest pxelinux my usb keyboard doesn't work (within the menu). If I use the pxelinux build 074 the keyboard works (without menu), but this version doesn't recognize the default menu.c32 directive. How can have both things working: or the usb keyboard working uder the latest pxelinux (under the menu.c32) , or the menu working in the build 074? Ricardo
2005 Feb 17
1
short plots: lwd, margin and postscript behavior
Hi all. I'm working with a short plot (3x3 inches), but the results (via postscript command) are not nice. The lwd command don't affect the lines (that are very large) and the margins don't change using oma, mai, mar, ... Below I put an example. Moreover, save the graphics via postscript command isn't working well (see the attached ps). Thanks by the help, Cezar Freitas.
2011 Nov 22
4
evaluation question
Dear R People: Hope you're having a nice day. Here is a character vector: > yz [1] "pexp(3.2,rate=1)" > str(yz) chr "pexp(3.2,rate=1)" > And I would like to evaluate that vector. I tried: > eval(as.expression(yz)) [1] "pexp(3.2,rate=1)" > But that doesn't work. Any suggestions would be most welcome. I have a feeling that it's quite
2005 Dec 15
4
CGI and FastCGI problems
I can''t my rails app to work with cgi or fastcgi. My app works using webrick. I''ve even hard-coded development mode in environment.rb in order to get most descriptive messages, but the best I get is the following in the apache2 errorlog: [Thu Dec 15 10:38:04 2005] [error] [client x.x.x.x] FastCGI: incomplete headers (35 bytes) received from server
2001 Feb 19
1
symbol problems with FRESH install
Hello, I installed wine 20010112 from source and can't get it to work. I had an old version on before, but I COMPLETELY removed it before I started. I'm sure -- I checked for libkernel32.so and others, and even took away the .wine directory. Anyway, so now I am getting this undefined symbol message: ---------------------------------------- [root@localhost cdrom]# wine HWSetup.EXE
2001 Apr 23
4
What happened to --desktop geom?
Hey, I'd like to apologize in advance if this is an old issue that everyone already dealt with in some new mechanism... But I compiled today's CVS for the first time in a few months, and when i tried to fire up programs/games with --desktop geom 640x480 (or any other dimensions) I get an "unknown option --desktop" error and the "usage" list pops up. I read the man
2019 Dec 31
3
Any significance for m_OneUse in (X / Y) / Z => X / (Y * Z) ??
Dear All, The InstCombine pass performs the following transformation. Z / (X / Y) => (Y * Z) / X This is performed only when operand Op1 ( (X/Y) in this case) has only one use in future. The code snippet is shown below. if (match(Op1, m_OneUse(m_FDiv(m_Value(X), m_Value(Y)))) && (!isa<Constant>(Y) || !isa<Constant>(Op0))) { // Z / (X / Y) => (Y *
2006 Oct 19
2
/dev/zap/channel ownership
* is having permission problems accessing /dev/zap/channel. When I look, these devices (everything in /dev/zap) shows root.root for uid and gid. If I start Asterisk from the command line, it runs fine (running as Root). When I start it as a service, I get Oct 19 23:02:55 WARNING[10587] chan_iax2.c: Unable to open IAX timing interface: Permission denied Oct 19 23:02:55 WARNING[10587]
2004 Sep 23
7
decompose a correlation matrix
Is there a simple way to decompose the upper triangle of a correlation matrix to a linear list; For example: X Y Z X 1 2 3 Y 2 1 4 Z 3 4 1 so you get a list like: xy 2 XZ 3 YZ 4 I suspect you can do it with a matrix transformation, but that beyond me at present. Many thanks Mark _________________________ Department of Molecular and Human Genetics, Baylor College of Medicine,
2020 Jan 03
3
Any significance for m_OneUse in (X / Y) / Z => X / (Y * Z) ??
A couple more general comments: 1. There shouldn't be any correctness issues removing one-use checks (the transform should be safe independently of use-counts). 2. Ideally, you can remove a m_OneUse() from the code and run 'make check' or similar, and you will see a regression test failure because we have a 'negative' test to cover that pattern. That should make it clear that