How to Install Asp on Linux Ubuntu Hardy

How can I run .php, .aspx on same site ubuntu 10.04

i got the solution & it worked for me nicely.....

this article helped me to run both .net and .php for the same site.

http://studentguru.gr/b/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx

Feasibility of C# development with Mono

  1. (Strange, markdown starts the enumeration with one, even though I began with 2...)

  2. Yes, you can, but you're limited with 3rd-party components, because the internal implementation is different, and last time I checked (not very long ago), the Mono WinForms implementation made my test app look rather strange (owner-drawn list view). It is not really recommended, though Mono claims that it's now completely WinForms-2.0-compatible.

  3. MonoDevelop is/was a SharpDevelop branch, with the latter having solution support. I don't know if MonoDevelop has. But the cool thing is, you can just develop with Visual Studio and run your compiled apps on Mono. And Mono is, by the way, also available for Windows.

  4. Yes, it does, as far as the CLR goes. As Marc Gravell already wrote, the Windows Foundation libraries are missing, as are a few other (System.Management, for example). But things should mostly work, including ASP.NET 2.0. Mono's application portability guidelines are a good read on this.

Ubuntu apt-get unable to fetch packages

Ran into a similar issue.

This is linked to using a non LTS version of Ubuntu called an "End of life version". As those have discontinued support. You can check if your Ubuntu is at the end of life version on this link.

The simplest solution is to do the following two steps:

  1. Backup your sources list
    sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
  2. Open the sources file /etc/apt/sources.list and rename all the instances of us.archive or archive in

    http://us.archive.ubuntu.com/ubuntu/

    to

    http://old-releases.ubuntu.com/ubuntu/

    Also do the same for the http://security.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages

  3. Run sudo apt-get update after doing the above.

That should fix the issue.

Warning: Please update your ubuntu to an LTS version as soon as possible otherwise you won't be getting the latest security patches. This is definitely not a solution that you would deploy on production machines.



Related Topics



Leave a reply



Submit