similar to: Not Wine but

Displaying 20 results from an estimated 300 matches similar to: "Not Wine but"

2005 Apr 19
1
set ver = ?
does Wine have anything that does that? I've just tried "wine MS\ .net\ framework\ SDK\ -\ with\ C-sharp\ compiler\ Setup.exe" and it told me that it couldn't install on Win95, Win98 etc, and I'd have to upgrade to NT 4.0 before it would install. Any hints, ideas, previous experience on configuring Wine for suchlike? Thanks Wesley Parish -- Clinersterton beademung,
2005 Mar 30
1
specified Windows directory not accessible
I get this response when I try to install the VCToolkit. [wparish@localhost wine-hdd]$ wine ./VCToolkitSetup.exe Warning: the specified Windows directory L"C:\\windows" is not accessible. Warning: the specified System directory L"C:\\windows\\system" is not accessible. Warning: could not find DOS drive for current working directory '/home/wparish/wine-hdd', starting
2005 Mar 31
0
installing Win32 Compilers
Installing MinGW32 together with msys-1.* and msysDTK was a breeze. I started installing lccwin32, only to find problems with the library compilation in the latter part of installation, with it hanging once it got to commandline.txt fdlibm.lib lcccrt0.obj libcrt0s.obj stdlib.idx complex.lib gdbmdll.lib lcccrt0s.obj libml.lib tcconio.lib daguid.lib gdbm.lib
2005 Apr 18
1
wine and slideshow.exe
It works. I had a slideshow on my PC made by my brother-in-law last Christmas, so I put it on my Linux PC and ran "wine slideshow" yesterday. It ran without a hitch. Well done! Wesley Parish -- Clinersterton beademung, with all of love - RIP James Blish ----- Mau e ki, he aha te mea nui? You ask, what is the most important thing? Maku e ki, he tangata, he tangata, he tangata. I
2003 Nov 12
7
Xen + other stuff?
Has anyone got Xen working with say, SELinux? Or vserver? Wesley Parish -- Clinesterton Beademung - in all of love. Mau e ki, "He aha te mea nui?" You ask, "What is the most important thing?" Maku e ki, "He tangata, he tangata, he tangata." I reply, "It is people, it is people, it is people." ------------------------------------------------------- This
2005 Apr 06
3
ie5, ie6 won't install
[wparish@localhost inex5]$ wine --version Wine 20040813 That was a Mandrake 10.0 rpm installation, over which I installed Wine-20050211.tar.gz This is the relevant history: [wparish@localhost wine-hdd]$ cd ie6 [wparish@localhost ie6]$ ls ADVAUTH.CAB* IECIF.CAB* IEMIL_2.CAB* IEW2K_1.CAB* OEEXCEP.CAB* AOLSUPP.CAB* IEDATA.CAB* IEMIL_3.CAB* IEW2K_2.CAB* README.CAB* AXA3.CAB*
2005 Aug 06
1
Application doesn't run without a CD
Hello, I have a situation here. I use a French dictionary "Le Petit Robert 2003" on a daily basis for my studies and it's probably the only thing left that ties me to Microsoft Windows. The problem when running it with Wine is that I am asked for a CD to be inserted. This application just won't run without it. The thing is that it shouldn't require a CD since I have made a
2004 Nov 16
7
Problem on FC3
I''m getting a VFS kernel panic when trying to booting to FC3 from Xen. Its the one that says I must supply a valid "root=" option. (sorry I don''t have it verbatim.) I''m using the xen-2.0 binary installer, kernel 2.6.9. I am using ext3fs, but I am fairly certain that I have compiled support into the kernel. (I''ve tired compile xen from the 2.0
2004 Dec 09
2
Réf. : Re: "Bounties" on XEN to Windows2000 support
>> We are ready to spend more than 10.000 euros to help Xen to support Windows >> 2000 >I asked a Microsoft sales guy about ports of Windows and got this quote >forwarded from the Microsoft Research guys in Cambridge >"The XenoXP work is not currently under active development. Whilst >there is no *technical* reason that it can''t be done (and it would Ok
2007 Sep 14
1
Unable to scrap gmail.com - EOFError: End of file reached
Hi all, I am so excited to use mechanize! It has opened a whole new world of projects for me :) I am trying to login into the Gmail.com server, as described in http://schf.uc.org/articles/2007/02/14/scraping-gmail-with-mechanize-and-hpricot but am running into a few issues... irb(main):010:0> page = agent.submit form EOFError: end of file reached from
2009 Jun 05
1
Slow/unpredictive response of post_form from rails lib
Hi friends, I''m facing a very strange problem... I consume a webservice from within my rails app. I''ve written a thin wrapper around the webservice using Net::HTTP.post_form However, when calling the API from within my controllers, the API calls randomly fail, complaining about timeout. But - when I wrote a simple iterative test (500 iterations), calling the same webservice
2007 Dec 30
3
A newbie question regarding BackgroundRb
Hi all, I just read Ezra''s article on BackgroundRb and decided to use it one of my projects. I installed the plugin into my rails project using script/plugin and then ran rake backgroundrb:setup to copy the yml scripts. Now my backgroundrb.yml looks like ======= --- port: "22222" timer_sleep: 60 load_rails: true environment: development host: localhost database_yml:
2007 Oct 07
1
How to store a Mechanize object in the database?
Hi, I am trying to save a Mechanize object in database (using a Rails Model). But the save operation throws a TypeError Considering that "agent" is an instance of a Rails Model and "user" is defined as a "text" type in the Model. irb(main):039:0> agent.user = WWW::Mechanize.new #<WWW::Mechanize:0xb71295f0 @follow_meta_refresh=false, @key=nil,
2007 Feb 12
1
Handling large calculations and memory
Dear All, I am planning to run a Monte-Carlo experiment which involves to do roughly 100.000 times the following 1- Generating a sample of, say, 50.000 numbers from an ARMA or GARCH 2- Doing some regressions on the series 3- On each regression storing one special value from the results into a sequence that will be analyzed later. The experiment is calculation-intensive, and I suspect some
2009 Dec 31
1
ggplot2: How to change font of labels in geom_text
Happy New Year everyone. I have what I hope is a simple-to-answer question. In the code sample below, I'm using a tile plot to plot a continuous measure and overlaying the plot with labels. I need to print the labels in courier, but there appears to be no way to override the default font setting in geom_text. I've scoured the web for clues on how to do this, but found nothing relevant.
2005 Aug 02
1
Read from data frame, and not from global environment
Dear members, assume given a function of type test<-function(formula, data , w){ ...... glm1<-glm(formula, family=poisson, data=data, weights=w) ...... } and a simple example data frame as test.frame<-data.frame(x=1:10,y=(1:10)*2,a=(1:10)^3). Let us now execute test(y ~ x, test.frame, a ) My question is: What do I have to insert at the first occurance of ..... in the test
2012 Oct 16
3
[PATCH] minor documentation updates (4.06-pre14)
syslinux.txt: syslinux binary is in "linux" directory menu.txt: menu.c32 and vesamenu.c32 are in com32/menu directory --- doc/menu.txt | 2 +- doc/syslinux.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/menu.txt b/doc/menu.txt index 620527e..8a999cd 100644 --- a/doc/menu.txt +++ b/doc/menu.txt @@ -18,7 +18,7 @@ See menu/README for more
2007 Jul 31
1
MTBF Reliability calculations
I'm working on a project involving reliability values (known failure rates) for a system with approximately 700 components with a set cconfiguration. I'm looking to compute a "parts-count" MTBF (mean time between failures) for the system. (See also MIL-HDBK-217) Is there anything in R that can help me with this? Thanks, Eric Jennings QA Technical Assistant Crane
2007 Sep 24
1
selecting a form
What''s the best way to select a form on a page with Mechanize if the form doesn''t have the "name" attribute? I''m already familiar with the page.form(''myformname'') syntax but this doesn''t? work with forms that have no names. -- Thank you, Shane Witbeck Digital Sanctum, inc. -----------------------------------------------------
2005 Sep 03
5
Asterisk Community Participant; Katrina Refugee
Hi All, My family and I are doing well. Thank you all for your prayers. We are using this as an opportunity to rebuild. I didn't think I really needed to but God knows best and we will obey. My family and I will temporarily be in Lafayette, Louisiana for a while but will probably relocate to Houston, TX in the future. We already have my Daughter registered in school here. Lafayette is my