LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 11-20-2005, 09:53 AM   #1
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Rep: Reputation: 35
How to open Internet Explorer in Wine


Hey guys I downloaded and installed Wine and downloaded and installed Internet Explorer in wine, but how in the world do I now open up the Internet Explorer Browser with Wine?

Does anyone know?

Thanks,

d=2
 
Old 11-20-2005, 10:11 AM   #2
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
the stadard way of opening (running) any app in wine is:

Code:
wine C://path/to/program.exe
find out where Explorer.exe is (somewhere under ~/.wine/c_drive or similar) and use the part after 'c_drive' to substitute Path/to/program.exe
 
Old 11-20-2005, 05:03 PM   #3
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
Its under wine c:\\Program Files\Internet Explorer but when I run this command in terminal:

[stan@localhost ~]$ wine c:\\Program Files\Internet Explorer
wine: cannot find 'Explorer'
[stan@localhost ~]$ su
Password:
[root@localhost sam]# wine c:\\Program Files\Internet Explorer
wine: cannot find 'Explorer'
[root@localhost stan]#

I do not know what else to do to make it run...

d-1





Quote:
Originally posted by linmix
the stadard way of opening (running) any app in wine is:

Code:
wine C://path/to/program.exe
find out where Explorer.exe is (somewhere under ~/.wine/c_drive or similar) and use the part after 'c_drive' to substitute Path/to/program.exe
 
Old 11-20-2005, 09:35 PM   #4
thunderweasel
Member
 
Registered: Mar 2005
Distribution: Void Linux
Posts: 143

Rep: Reputation: 15
You can try navigating to the file Internet Explorer.exe (or whatever it's called), right click on it, choose "open with" and select wine. Why is it that you want to run IE anyway? Firefox is very similar, runs quicker, is more customizable and runs on all platforms.
 
Old 11-21-2005, 05:15 AM   #5
aerogate
Member
 
Registered: Jun 2005
Location: UK
Distribution: Mandriva 2006
Posts: 154

Rep: Reputation: 30
To run Internet Explorer properly, best way is under Crossover Office http://www.codeweavers.com/

You`ll then be able to run Internet Explorer along with lots of other apps:-

Microsoft Word 2000
Word 97 and Word 2000.
Microsoft Excel 2000
Excel 97 and Excel 2000.
Microsoft PowerPoint 2000
Apple QuickTime 6
Macromedia Flash Player 7
MDL Information Systems Chime
Microsoft Word Viewer 97/2000
Microsoft Excel Viewer 97/2000
Microsoft Powerpoint Viewer 97/2000
Macromedia Dreamweaver MX
Macromedia Flash MX
IBM Lotus Notes 6.5.1+
Microsoft Project 2000
Thomson ISI ResearchSoft EndNote 5.0
Microsoft Word 2002 (XP)
Microsoft Excel 2002 (XP)
Microsoft PowerPoint 2002 (XP)
Microsoft Outlook 2000
Microsoft Access 2000
Microsoft Windows Media Player 6.4
Remedy Remedy ARS 5.01
Microsoft Visio 2000
Microsoft Internet Explorer 5.0 and 5.5
Microsoft Internet Explorer 6.0
Macromedia Shockwave 8.5
Adobe Photoshop 7.0
Adobe Photoshop 6.0
MacKichan Scientific Word 4.10
Intuit Quicken 2002
Intuit Quicken 2003
Intuit Quicken 2004
Microsoft Word 2003
Microsoft Excel 2003
Microsoft PowerPoint 2003
Intuit QuickBooks Pro
Apple iTunes
Adobe Acrobat Reader 5
Avantstar Quick View Plus 7
eFax eFax Messenger 2
Parallel Graphics Cortona VRML Client 4
Ebrary ebrary Reader 2.5
Adobe FrameMaker 7.1
Intuit Quicken 2005
Intuit Quickbooks 2003
Intuit Quickbooks Pro 2002
Intuit QuickBooks Pro 2004

Plus many more

I use it to run Macromedia Dreamweaver, which it does perfectly, I can then test how webpage designs render in various browsers including Internet Explorer without having to boot Windows.

Also, if your interested in running the latest Windows games, check out http://www.transgaming.com/products_linux.php

Hope this info helps,

Mike
 
Old 11-21-2005, 11:28 AM   #6
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
I am trying to use a porgram that runs off Active-X and so far Linux does not offer support for it.

d-1



Quote:
Originally posted by thunderweasel
You can try navigating to the file Internet Explorer.exe (or whatever it's called), right click on it, choose "open with" and select wine. Why is it that you want to run IE anyway? Firefox is very similar, runs quicker, is more customizable and runs on all platforms.
 
Old 11-21-2005, 03:35 PM   #7
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
Quote:
Originally posted by dolphans1
Its under wine c:\\Program Files\Internet Explorer but when I run this command in terminal:

[stan@localhost ~]$ wine c:\\Program Files\Internet Explorer
wine: cannot find 'Explorer'
d-1
you'll need to put the bit from c:// onward in double quotes like this:

"c://path/to/Internet Explorer.exe" or escape out the spaces with a backslash:
c://path/to/Internet\ Explorer.exe (fist option is easier)

In either case you'll need to give the complete path, including the .exe bit.
 
Old 11-23-2005, 04:44 AM   #8
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
Here is what I get, perhaps IE did not install correctly?

Quote:
[root@localhost stan]# c://Program Files/Internet Explorer.exe
bash: c://Program: No such file or directory
[root@localhost stan]# cd /home/stan/.wine
[root@localhost .wine]# c://Program Files/Internet Explorer.exe
bash: c://Program: No such file or directory
[root@localhost .wine]#
d-1






Quote:
Originally posted by linmix
you'll need to put the bit from c:// onward in double quotes like this:

"c://path/to/Internet Explorer.exe" or escape out the spaces with a backslash:
c://path/to/Internet\ Explorer.exe (fist option is easier)

In either case you'll need to give the complete path, including the .exe bit.
 
Old 11-23-2005, 05:08 AM   #9
redgoblin
Member
 
Registered: Jun 2005
Location: UK
Distribution: Debian
Posts: 189

Rep: Reputation: 41
Slight muddle here I think.

Note the double quotes used in the post by Linmix. You need to use them, or an escape character, otherwise the spaces confuse the shell.

So, try;

#wine "c://path/to/Internet Explorer.exe"

Alternatively you can use the wine explorer (not an X one) to find the file and double click on it. For the wine explorer try;

#winefile

I'd really recommend taking a few minutes to read through docs. There's lots of extras to be had!

http://www.winehq.com/site/docs/wineusr-guide/index

--
Red
 
Old 11-23-2005, 11:51 AM   #10
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
I have tried this what am I missing? Can you give an example?

[stan@localhost ~]$ wine c://path/to/Internet Explorer.exe
wine: cannot find 'Explorer.exe'
[stan@localhost ~]$ wine c://Program Files/Internet Explorer.exe
wine: cannot find 'Explorer.exe'
[stan@localhost ~]$ su
Password:
[root@localhost stan]# wine c://Program Files/Internet Explorer.exe
wine: cannot find 'Explorer.exe'
[root@localhost stan]#





Quote:
Originally posted by redgoblin
Slight muddle here I think.

Note the double quotes used in the post by Linmix. You need to use them, or an escape character, otherwise the spaces confuse the shell.

So, try;

#wine "c://path/to/Internet Explorer.exe"

Alternatively you can use the wine explorer (not an X one) to find the file and double click on it. For the wine explorer try;

#winefile

I'd really recommend taking a few minutes to read through docs. There's lots of extras to be had!

http://www.winehq.com/site/docs/wineusr-guide/index

--
Red
 
Old 11-23-2005, 04:22 PM   #11
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
Quote:
Originally posted by dolphans1
I have tried this what am I missing? Can you give an example?

[stan@localhost ~]$ wine c://path/to/Internet Explorer.exe
wine: cannot find 'Explorer.exe'
[stan@localhost ~]$ wine c://Program Files/Internet Explorer.exe
wine: cannot find 'Explorer.exe'
[stan@localhost ~]$ su
Password:
[root@localhost stan]# wine c://Program Files/Internet Explorer.exe
wine: cannot find 'Explorer.exe'
[root@localhost stan]#
double quotes would be better -> " "

I've just checked my wine install and the exact path on my system for invoking IE6 is:

$ wine "c://Program Files/Internet Explorer/IEXPLORE.EXE

next time you're not sure what command to issue, first browse the directories in search of the exact appname and path. also remember tha if someone tells you to do /path/too app.exe they mean you should indicate the precise location of an app and substitute the example with you personal situation. We can't look into your computer (or maybe we can, but we don't tell ) to see the exact name of everything.

hope this helps.
 
  


Reply



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
Running Internet Explorer 5 with Wine yapp Linux - Software 9 09-14-2005 12:41 PM
Wine , Internet Explorer and BitLord motu Linux - Newbie 5 05-10-2005 01:09 AM
WINE and Internet Explorer 2782d4 Linux - General 20 09-15-2004 03:14 AM
Wine with Internet Explorer devinWhalen Linux - Software 8 05-13-2003 02:00 PM
WINE to use Internet Explorer hornbm Linux - General 12 04-14-2002 08:39 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva

All times are GMT -5. The time now is 11:56 PM.

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