LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 08-24-2004, 09:24 PM   #1
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Rep: Reputation: 15
Running a windows CD from WINE on a SuSE 9.1 Personal


Probably a stupid question.

How would I go about starting a windows cd (screenblast soundforge) through WINE? Do I need to install a different version than what came on my distro?
 
Old 08-24-2004, 09:56 PM   #2
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
Are you asking how to install a different version of Wine than the one that came with SuSE? If so, uninstall with YaST and install your package of choice from http://winehq.com/.

If you need help on doing this, let me know.

To browse a cd in SuSE you could do something like this:

miked@linux:~> mount /media/cdrecorder/
miked@linux:~> cd /media/cdrecorder/
miked@linux:/media/cdrecorder> dir
total 49397
-r--r--r-- 1 root root 1725 2000-03-24 23:51 autorun.inf
-r--r--r-- 1 root root 2355200 2000-03-24 23:52 DATA1.MSI
dr-xr-xr-x 1 root root 2048 2000-03-25 01:24 IE5
-r--r--r-- 1 root root 20596 1999-01-24 15:35 LICENSE.TXT
dr-xr-xr-x 1 root root 2048 2000-03-25 01:37 MSI
-r--r--r-- 1 root root 89913 2000-01-14 18:47 MSOWC.CAB
-r--r--r-- 1 root root 165376 2000-01-03 19:32 MSOWC.MSI
-r--r--r-- 1 root root 47606945 2000-01-25 13:27 OFFICE1.CAB
dr-xr-xr-x 1 root root 2048 2000-03-25 03:12 PFILES
-r--r--r-- 1 root root 14336 2000-01-25 22:15 README.DOC
-r--r--r-- 1 root root 273079 2000-01-22 20:21 SETUP.EXE
-r--r--r-- 1 root root 17610 1998-11-10 15:25 SETUP.HLP
-r--r--r-- 1 root root 2598 2000-03-24 23:51 setup.ini
dr-xr-xr-x 1 root root 2048 2000-03-25 03:14 SP
dr-xr-xr-x 1 root root 2048 2000-03-25 03:15 SQL
dr-xr-xr-x 1 root root 2048 2000-03-25 03:24 SUPPORT
dr-xr-xr-x 1 root root 14336 2000-03-25 03:30 SYSTEM
dr-xr-xr-x 1 root root 2048 2000-03-25 03:30 SYSTEM95
dr-xr-xr-x 1 root root 2048 2000-03-25 03:31 SYSTEMNT
dr-xr-xr-x 1 root root 2048 2000-03-25 03:32 WINDOWS
miked@linux:/media/cdrecorder>

to install using wine type:

wine SETUP.EXE [or what ever the install .exe is]


Also, check out frankscorner.org for other tutorials on wine.

Hope this helps.

Last edited by mikedeatworld; 08-24-2004 at 09:58 PM.
 
Old 08-24-2004, 10:00 PM   #3
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Original Poster
Rep: Reputation: 15
Thanks...this is probably pretty stupid...I have no idea about anything about WINE, but I'd like to make WINE boot a windows CD as if windows would have.

EDIT:
When I run WINE, I get this.
Could not stat /media/cdrom (No such file or directory), ignoring drive M:
wine: cannot find 'program.exe'

I need to change it so WINE reads from /media/dvd....how do I do this?

Last edited by ClarkNG; 08-24-2004 at 10:03 PM.
 
Old 08-24-2004, 10:01 PM   #4
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
do you mean automatic boot, when you put the cd in? that type of thing?
 
Old 08-24-2004, 10:02 PM   #5
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Original Poster
Rep: Reputation: 15
No, sorry for the confusion. Look the edit I made to my previous post.
 
Old 08-24-2004, 10:06 PM   #6
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
From my understanding, wine will not "boot" a cd pre se. But I think I know what you are asking.

Are you asking how to mount this drive and access it with Wine?

[In a shell follow these instructions]

If so, mount the drive: i.e. mount /media/dvd

then cd into the drive's mount point: cd /media/dvd

then type dir to see if you have mounted the drive right: dir

then you should see a list of files.

type wine program.exe

let me know if you run into something...
 
Old 08-24-2004, 10:16 PM   #7
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Original Poster
Rep: Reputation: 15
Yes, sorry about the whole boot misconception thing.

After mounting the dvd drive, cding into it, getting a dir listing, and typing wine Setup.exe (the file I want to run is an installation exe), and I get:
linux:/media/dvd # wine Setup.exe
Could not stat /media/cdrom (No such file or directory), ignoring drive M:
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified

x11drv: Can't open display: :0.0
Please ensure that your X server is running and that $DISPLAY is set correctly.
 
Old 08-24-2004, 10:24 PM   #8
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
are you root or regular user?

try as your regular user...
 
Old 08-24-2004, 10:30 PM   #9
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Original Poster
Rep: Reputation: 15
Ah ha...wine kicked in. A little alert box popped up to inform me that it was "Unable to run AutoPlay program." Oh well. Do I need a more current version of wine?
 
Old 08-24-2004, 10:30 PM   #10
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
wine kicked in when? as regular user?
 
Old 08-24-2004, 10:36 PM   #11
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
try invoking wine autoplay.exe
 
Old 08-24-2004, 10:40 PM   #12
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Original Poster
Rep: Reputation: 15
Yes, as a regular user.

If you mean envoking it in "Run", I got an Unknown Host error.
 
Old 08-25-2004, 07:47 AM   #13
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
i ment, do all of the steps in the previous post.

then instead of typing wine installation.exe type

wine autoplay.exe

Last edited by mikedeatworld; 08-25-2004 at 07:48 AM.
 
Old 08-25-2004, 07:51 AM   #14
mikedeatworld
Member
 
Registered: Nov 2003
Location: Farmington Michigan
Distribution: UBUNTU - Slackware - SuSE 9.1 - Knoppix - Fedora
Posts: 828

Rep: Reputation: 30
what version of wine are you using?
 
Old 08-25-2004, 10:01 AM   #15
ClarkNG
LQ Newbie
 
Registered: Aug 2004
Distribution: SuSE 9.1 Personal
Posts: 25

Original Poster
Rep: Reputation: 15
wine: cannot find 'autoplay.exe'

How do I tell what version I'm running?
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
gnucash not running with suse 9.1 personal jlp1976 Linux - Software 5 09-23-2004 03:35 AM
Running a php script locally on SuSE 9.1 Personal ClarkNG Linux - Newbie 5 08-20-2004 02:55 PM
WINE on SuSE personal 9.1 mr_a_ali Linux - Software 8 08-16-2004 09:31 AM
trying to install suse personal 9.1 over windows xp crackers247 Linux - Distributions 9 08-08-2004 08:39 PM
SuSE 9 personal+ Windows XP -> POSSIBLE? ASCULAP Linux - Newbie 3 03-14-2004 06:41 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:01 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration