sábado, 16 de febrero de 2008

how to install virtualbox in ubuntu 7.10

how to install virtualbox in ubuntu 7.10

First you need to install the following packages

sudo apt-get install libxalan110 libxerces27

wget http://www.virtualbox.org/download/1.5.4/virtualbox_1.5.4-27034_Ubuntu_gutsy_i386.deb

Once you download the package you have virtualbox_1.5.4-27034_Ubuntu_gutsy_i386.deb file

Install.deb file using the following command

sudo dpkg -i virtualbox_1.5.4-27034_Ubuntu_gutsy_i386.deb

At the time of installation if you have any dependency problems like the following errors

Selecting previously deselected package virtualbox.
(Reading database … 174459 files and directories currently installed.)
Unpacking virtualbox (from virtualbox_1.5.4-27034_Ubuntu_gutsy_i386.deb) …
dpkg: dependency problems prevent configuration of virtualbox:
virtualbox depends on libxalan110; however:
Package libxalan110 is not installed.
virtualbox depends on libxerces27; however:
Package libxerces27 is not installed.
dpkg: error processing virtualbox (–install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
virtualbox

If you see the above error message you can use the following command to install all the required dependencies

sudo apt-get -f install

This will complete the installation

Starting the VirtualBox Graphical User Interface

If you want to start Virtualbox GUI use the following command from your terminal(Applications—>Accessories— >Termianl)

VirtualBox

Once it opens you should see the following screen

sábado, 9 de febrero de 2008

How to mount iso in solaris 10


a. Create an installation image from the mounted ISO image:

unzip compressed-file.zip
lofiadm -a pathname/image.iso /dev/lofi/1
If /dev/lofi/1 is already in use, refer to the lofiadm (1M) man page.

mkdir mountpoint
mount -F hsfs /dev/lofi/1 mountpoint
cd mountpoint
find . -print | cpio -pdum shared-location/comms5

b. After copying is done, unmount the ISO image:

cd
umount mountpoint
lofiadm -d /dev/lofi/l