Search The Posts
Microsoft & Opensource

Today, Microsoft took another step in its relationship with the open source software community. They did this by bringing up a new web property that clearly outlines Microsoft’s position on OSS by providing specific information about Microsoft, the OSS community and the interaction between the two.
The new site also details information about getting started with OSS and Microsoft technologies. We’ll keep the site updated with new content featuring Microsoft’s engagements with the OSS community !
Visit the Site : http://www.microsoft.com/opensource/ and send in your comments
Courtesy: Thevistadaily.com
Popularity: 3%
If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
Continue reading full version of "Microsoft & Opensource" By Clicking here
Tutorial Installing Compilers (GCC,G++ and Java) on UBUNTU
Installing compilers is one of the easiest things there out at Linux. It may seem a bit tough and complicated in the beginning but apt-get and Synaptic Package Manager simplify your work a lot. As a newbie developer you would require a C/C++ and a Java compiler. Installing
them is a matter of few commands.
The GNU C and GNU C++ Compiler: The GNU C compiler is also called gcc and C++ is called g++. You may also require the GNU make utility. All of them can get installed by getting the build-essential package.
Just use this command:
sudo apt-get install build-essential
The GNU Java Compiler: Firstly note that this compiler is not the one provided by Sun. The GNU Java compiler is named as gcj. Just install the package gcjTo install the GNU Java bytecode interpreter, install the gij package.
To have gcj compile to executables, install libgcj6-dev Use the command: sudo apt-get install gcj gij libgcj6-dev
this post is courtesy of: www.manishtech.info [aka Tech Hangout]
Popularity: 4%
Continue reading full version of "Tutorial Installing Compilers (GCC,G++ and Java) on UBUNTU" By Clicking here

