RSS
 

Posts Tagged ‘oracle’

VirtualBox 4.1.10 lands with Minor Updates

14 Mar

VirtualBox 4.10.10 has been released. Its a maintenance release and is aimed at bug fixes and other workarounds. Few updates like Linux 3.3-rc1 compile fixes, 3D passthrough work on RHEL 6.2, added support for X.Org Server 1.12 and much more.

 

Download VirtualBox

Read the rest of this entry »

 

VirtualBox 4.0.6 for Ubuntu 11.04

23 Apr

A nice maintenance Update from Oracle for the thier hypervisor yesterday. VirtualBox got updated to version 4.0.6 and now Virtual box packages are available for Ubuntu 11.04 as well. It is a very useful application for testing different distros while keeping the mainstream OS intact. All you need is good hardware. This release has gone through a lot of updates and bugfixes including support for X.Org Server 1.10 final, Linux kernel 2.6.39-rc1 fixes, improved auto-run support, fix mouse support on SUSE 11 SP 1 guests, allow snapshots to be stored in the VM directory and much more.

Virtualbox 4.0.6

Download Virtual Box 4.0.6

Read the rest of this entry »

 

VirtualBox 4.0 for Ubuntu 10.10

23 Dec

VirtualBox is a powerful,free and easy-to-use x86 and AMD64/Intel64 Hypervisor/Virtualization solution. It is an extremely feature rich, high performance product for Enterprise, it is also the only Professional software that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). We are glad to announce that VirtualBox 4.0 final has been released for Ubuntu and is available in the repository as well.

Download :-

Ubuntu 10.10 32 Bit / 64 Bit.

Ubuntu 10.04 32 Bit / 64 Bit.

Ubuntu 9.10 32 Bit /64 Bit.

Read the rest of this entry »

 

VirtualBox 3.2.8 in Ubuntu

07 Aug

Its been a while since we have discussed Virtualisation in Ubuntu using KVM – Kernel Virtual Machine. Its about time for us to move on to discuss one of the most famous cross-platform Virtualisation solutions out there – VirtualBox.

VirtualBox is a powerful x86 and AMD64/Intel64 virtualisation product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). Recently, Oracle Virtual Box 3.2.8  has been released with a lot of improvements. We will discuss the installation of Virtual Box and using it to run a Guest OS inside Ubuntu 10.04 LTS.

Download :-VirtualBox 3.2.8

Read the rest of this entry »

 

Setting up Oracle XE 10g in Ubuntu

18 Feb

The Oracle Database, also known as Oracle RDBMS is a relational database management system, which is produced and marketed by Oracle Corporation. The Oracle Database Systems is one of the most popular database systems, competing with likes of MySQL, PostgreSQL, IBM DB2, Sybase, Microsoft SQL Server among others. Oracle is a very robust database solution.

Of course Oracle is a non-free software, and might not be well really liked by free software purists, and its corporate versions and support cost a bomb, but to be fair Oracle does offer a free Express Edition for its somewhat older 10g release, more popularly known as Oracle XE 10g. It’s a free download and is available for variety of platforms including various distros of Linux and Microsoft Windows.

In this tutorial, we will discuss on setting up and configuring Oracle XE 10g in Ubuntu. Here I’ve used a 32 bit version of Ubuntu 9.10 for this purpose, but these instructions will easily work for previous or future iterations of Ubuntu.

First of all we download Oracle 10g XE from Oracle website. I suggest to download from the Oracle’s Debian Repos directly, here. Select the Universal or the standard package for Oracle. Note the client is bundled with the Oracle Software itself, so no need to install it separately. Of course if you wish client alone for connecting to an Oracle software, you may proceed to install it as any Debian package.

Note you need enough RAM for Oracle in your system. If you have less than 1GB RAM, then you need to create more a gig of swap in the system by:
sudo dd if=/dev/zero of=/swpfs bs=1M count=1000
sudo mkswap /swpfs
sudo swapon /swpfs

Also you have to download the libaio package, which is necessary for installation of Oracle. Note DEB packages may open directory in Firefox, so use “Save Link As…” in that case.
Note all these packages are 32bit packages, and there’s no 64 bit packages for any Oracle XE. However you can conveniently install the 32 bits packages in a 64 bit system as we will highlight further.
Download and save the packages in some convenient directory, say $HOME/Downloads, and then fire up the terminal and change to the directory containing the packages.

Read the rest of this entry »