LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
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 06-12-2006, 03:43 AM   #1
technopasta
Member
 
Registered: Apr 2004
Location: Australia
Distribution: Debian
Posts: 31

Rep: Reputation: 15
Net Framework 1.1 + Wine


How do I install the Net Framework in Wine? according to WineHQ it works, but on my system it says it needs IE5.5 or greater. What exactly do I need?
 
Old 06-13-2006, 05:46 PM   #2
Caeda
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Suse 6.0+, Mandrake 5.0-10.0, Redhat 6.0-9.0, Gentoo 1.2+, Gnoppix, Knoppix, Sabayon, Ubuntu 5.04+
Posts: 1,811

Rep: Reputation: 45
Install internet explorer 6 and try it again? At least then you'd be meeting the "needs" requirments.
 
Old 06-13-2006, 11:38 PM   #3
technopasta
Member
 
Registered: Apr 2004
Location: Australia
Distribution: Debian
Posts: 31

Original Poster
Rep: Reputation: 15
I've installed IE6 using IEs4Linux but it's not being detected
 
Old 06-14-2006, 12:08 AM   #4
Caeda
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Suse 6.0+, Mandrake 5.0-10.0, Redhat 6.0-9.0, Gentoo 1.2+, Gnoppix, Knoppix, Sabayon, Ubuntu 5.04+
Posts: 1,811

Rep: Reputation: 45
Ah, well then. You probably need to find someone with a working copy installed on windows, and just copy the files over and try running the exe that way.
 
Old 06-14-2006, 12:35 AM   #5
technopasta
Member
 
Registered: Apr 2004
Location: Australia
Distribution: Debian
Posts: 31

Original Poster
Rep: Reputation: 15
Hang on, I don't understand what you mean here. All the Internet Explorer files are on my Linux box, I can run IE6 under Wine perfectly.

The .Net installer isn't detecting the files, I'm guessing because the IEs4Linux installer puts everything into my home folder.

What do I need to copy over or grab from my Windows box for the installer to detect it?

Thanks again
 
Old 11-14-2006, 05:55 AM   #6
kakk
Member
 
Registered: Aug 2005
Location: Estonia
Distribution: Ubuntu, Mandriva
Posts: 30

Rep: Reputation: 15
.net framework working with wine?

Sorry but I can not find on winehq page the info that .net framework 1.1 should work with wine? Could anyone give me the link to prove this?
 
Old 11-14-2006, 02:08 PM   #7
Sir Loin
Member
 
Registered: Feb 2005
Distribution: Ubuntu
Posts: 79

Rep: Reputation: 15
Why use Linux if you're going to install all of that Windows crap? Why not just use Windows XP? Unless of course you program in VB.NET, but still.
 
Old 12-02-2006, 01:10 PM   #8
5of0
LQ Newbie
 
Registered: Dec 2006
Posts: 3

Rep: Reputation: 0
Just install it

I just ran the IE6 installer that you can download from Microsoft.com, and .NET didn't whine any more. But I still can't install it, I'm having other problems.
@Sir Loin: Because there is some cool windows-only software that won't run in QEMU that I want to run without rebooting into Windows. That's why.
 
Old 12-02-2006, 01:21 PM   #9
jlo_sandog
Member
 
Registered: Jul 2005
Location: USA
Distribution: F10 (x86_64)
Posts: 549

Rep: Reputation: 32
I don't think .net works at all on wine. http://appdb.winehq.org/appview.php?iVersionId=4278
 
Old 12-02-2006, 02:08 PM   #10
Sir Loin
Member
 
Registered: Feb 2005
Distribution: Ubuntu
Posts: 79

Rep: Reputation: 15
Here, something in your native language.

Code:
MessageBox.Show("The .NET framework sucks.")
 
Old 12-02-2006, 03:06 PM   #11
Eternal_Newbie
Member
 
Registered: Jun 2005
Location: The Pudding Isles
Distribution: Slackware
Posts: 573

Rep: Reputation: 59
Give the guy the benefit of the doubt. These days many schools, colleges and even uni's idea of a programming course is teaching .Net (and Java if you are lucky).
 
Old 12-02-2006, 07:39 PM   #12
hero_19873
Member
 
Registered: Mar 2006
Location: Egypt
Distribution: Ubuntu 6.10
Posts: 52

Rep: Reputation: 15
i tried it 2day pal
i didn't work
 
Old 12-03-2006, 04:39 AM   #13
5of0
LQ Newbie
 
Registered: Dec 2006
Posts: 3

Rep: Reputation: 0
Let me explain myself...

@Sir Loin:
Here, something in your native language (or at least good, clean, cross-platform c++):
Code:
//Randy Bowman
//DotNetChecker.cpp
//Runs through a list of programs to test if there is possibly any reason that
//someone would want or need to use .NET under Linux in order to avoid using Windows
//12-3-06
#include <iostream>
#include <fstream>
using namespace std;

struct program {
  bool needsDotNet;
  bool isGoodProgram;
  bool isRequiredForClass;
  bool hasCrossPlatformEquivalent;
  bool runsInWine;
  bool runsInQEMU;
};

int main() {
  int numNeedDotNet=0;
  ifstream inFile;
  struct program curProg;
  bool makeSureExists;

  inFile.open("TheList.dat");  //File contains information about all programs you want to run
  
  while(!inFile.eof()) {
    infile >> curProg.needsDotNet;
    infile >> curProg.isGoodProgram;
    infile >> curProg.isRequiredForClass;
    infile >> curProg.hasCrossPlatformEquivalent;
    infile >> curProg.runsInWine;
    infile >> curProg.runsInQEMU;

    if (curProg.needsDotNet && (curProg.isGoodProgram || curProg.isRequiredForClass) && !curProg.hasCrossPlatformEquivalent && !(curProg.runsInWine || curProg.runsInQEMU)) {
      numNeedDotNet++;
    }
  }

  //clean up for the eof
  if (curProg.needsDotNet && (curProg.isGoodProgram || curProg.isRequiredForClass) && !curProg.hasCrossPlatformEquivalent && !(curProg.runsInWine || curProg.runsInQEMU)) {
    numNeedDotNet--;
  }
  
  inFile.close();

  cout << "There are " << numNeedDotNet << " program(s) that will need .NET to work in Linux in order for you to not need Windows.\n";
  if (numNeedDotNet>0) { cout << "You need .NET to work.\n"; }
  else { cout << "Congratulations, you can say .NET sucks all you want, because you don't need it.\n"; }  //This line will most likely never see the light of day

  return(0);
}
My guess is, if you ran this program, you'd get something like this:
Code:
There are 496 program(s) that will need .NET to work in Linux in order for you to not need Windows.
You need .NET to work.
Or perhaps:
Code:
fatal error: integer overflow in expression
As noted in the code, you will probably never see this:
Code:
There are 0 program(s) that will need .NET to work in Linux in order for you to not need Windows.
Congratulations, you can say .NET sucks all you want, because you don't need it.
So, in conclusion, .NET does suck in general.
And in the Open Source utopia, the result immediately above may show up. But in reality, there are good programs (NASA World Wind, in this particular case) and/or required programs (can anyone say Visual Studio for CS1230?) that require .NET (or other "Windows crap") in order to run. I would like to be able to use Wine and/or QEMU to use those programs, so I don't have to reboot into Windows XP, because I really like Ubuntu and Linux, and don't like Windows. I have to for some things, but I don't like it. That sucks, but that's life. No, it's not fair. No, it's not how Richard Stallman and Linus Torvalds would want it. And no, it's not how I like it. But it's the cold hard facts. Face them.

And by the way, Ubuntu+Beryl+QEMU+Wine has been working fantastic for me. A few quirks, mostly because I'm learning as I go along. And everyone that sees it (Beryl) is amazed. I am very happy to be using Ubuntu as my primary operating system.

@Eternal_Newbie: Thank you for being understanding and realistic.

So, back to the topic at hand:
@hero_19873: did you try IE6 or .NET? Because IE6 worked fine for me, .NET didn't.
@technopasta: Thanks for the IEs4Linux tip, that'll be useful for installing 5/5.5 for testing purposes with as little Windows crap as possible.

And to everyone:
I'm running Ubuntu 6.06 (Dapper Drake). Has anyone tried it in Edgy Eft? I'm planning on installing Edgy soon, but I won't get around to it in the immediate future. I would really like .NET to work because, as crappy as it is and as much as it sucks, the reality of the situation is that it is is sometimes the lesser of two evils.

Last edited by 5of0; 12-03-2006 at 02:41 PM.
 
Old 12-04-2006, 07:50 AM   #14
hero_19873
Member
 
Registered: Mar 2006
Location: Egypt
Distribution: Ubuntu 6.10
Posts: 52

Rep: Reputation: 15
Quote:
So, back to the topic at hand:
@hero_19873: did you try IE6 or .NET? Because IE6 worked fine for me, .NET didn't.
yes 5of0 i meant th .net 1.1
IE6 works fine

tnx
 
  


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
.NET framework on wine 20040813? penguin_asylum Linux - Software 4 03-09-2009 05:35 PM
.net framework... wine??? Xswitch SUSE / openSUSE 1 04-18-2006 12:58 PM
portable .net and wine confilct AGazzaz Linux - Software 6 02-24-2006 04:28 PM
Using Mono for the .NET Framework chalewa4bambu Linux - Software 0 07-04-2004 02:32 PM
wine + slackware9 + linuxpackages.net Anibal Slackware 2 07-30-2003 11:10 AM

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

All times are GMT -5. The time now is 01:27 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