I would like to install Visual Studio 2008 and MS SQL Server 2008 on Ubuntu OS which I have in my PC, however, I don't know how. May I have some tips please? Thanks.

link|improve this question

80% accept rate
1  
Like under Wine? – sean e Jun 13 '09 at 2:28
I only wrote that comment because I just couldn't comprehend installing VS on Ubuntu. – sean e Jun 13 '09 at 2:44
feedback

6 Answers

up vote 12 down vote accepted

Wine is great, but using it for either Visual Studio or MS SQL Server is probably pushing it. Both are behemoths that tend (especially VS) to use the latest MS APIs. More to the point, both VS and MSSQL are listed as Garbage in Wine's db, meaning compatibility is very poor.

I would recommend you take a serious look at the available tools on GNU/Linux, such as MonoDevelop, Mono, Eclipse, MySQL, etc. You can use cross-platform build technologies, such as nant to build the same apps on both platforms.

If that isn't an option, then you will have to resort to virtualization, as noted by sean.

link|improve this answer
Well, then there is only VM then. Poor Ubuntu. – Vicheanak Jun 13 '09 at 2:53
6  
Vicheanak, it's really poor Microsoft. Most of what people think of as "Linux" apps (Eclipse, GIMP, gcc, Apache, MySQL, and more) are actually cross-platform, while MS shows little interest in reciprocating. – Matthew Flaschen Jun 13 '09 at 3:35
feedback

This answer might help you. Visual Studio and SQL Server are for Windows OS variants. You'll need some sort of VM to run on Ubuntu.

link|improve this answer
+1. I use VMWare Player for this but any of the reputable VMs should work. – paxdiablo Jun 13 '09 at 2:43
feedback

If you have some sort of Windows OS disks available to you (XP / Vista / 2008), then you could consider installing Windows under VirtualBox, and installing your software inside that VM. That used to work really well for me when I was still on Ubuntu.

link|improve this answer
I found virtualbox very useful to get up and running quickly to have a Win VM in Ubuntu, without having to spend too much time configuring the VM host (as opposed to vmware). – Russell May 21 '11 at 23:37
feedback

I've been developing using Visual Studio in Ubuntu since version 10.04, and there is a solution, although I would recommend that you run the 64 bit version of Ubuntu and have at least 4Gb of ram available.

Install the latest version of VirtualBox (download from the website, rather than using the ubuntu repository), and install Windows as a virtual machine. You need to allocate a virtual disk and then, when the virtual machine starts for the first time, either install Windows from a CD/DVD, or select a CD image to use within VirtualBox.

You will also see, with the later versions of VirtualBox, something called "seamless mode". This essential hides the virtual machine, so that instead of running in a window, it will integrate with the Ubuntu desktop. That way, you can run Visual Studio in what looks to be native to Ubuntu.

I have tried both VMWare Player and VirtualBox and found VirtualBox to be better for my setup. Although VMWare Player has something called VMWare tools, which provides an API layer to better translate Windows calls to your video card, this can be temperamental if you're using an ATI card (speaking from experience with a Mobility Radeon HD 4600). Nvidia provide much better driver support in Linux than ATI do.

Hope this helps!

link|improve this answer
feedback

Have you looked into wine?

http://www.winehq.org/

link|improve this answer
3  
Have you actually tried this, Kardi? See my answer. – Matthew Flaschen Jun 13 '09 at 2:40
4  
This is a horrible answer. VS2008 and SQLServer (MSDE) are both rated "garbage" on the Wine AppDB and the real SQL Server isn't even mentioned. VMWare under Ubuntu is a much better idea. – paxdiablo Jun 13 '09 at 2:42
I pointed to Wine because it would talk about Mono... – PSU_Kardi Jun 13 '09 at 3:30
1  
Wine and Mono really have little to do with each other, besides the obvious (hey, these MS-y things can be used on Linux). They are independent projects with very different purposes. – Matthew Flaschen Jun 13 '09 at 3:36
feedback

just an idea, install virtual machine software, such as vmware (is it supported? i donno :), then install windows + vs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.