Ubuntu « Intelligrape Groovy & Grails Blogs

Posts Tagged ‘ Ubuntu ’

Installing IEs4Linux on Ubuntu Gutsy Gibbon

Posted by admin on April 23rd, 2008

There are certain sites and applications which work only with Internet Explorer. One such application that I am currently working on is EMC Documentum Webtop.

After getting fed-up of the warning message thrown by Webtop about unsupported browser and some weird behavior sometimes, I finally decided to install IE on my Ubuntu machine.

I followed the following steps to install IE on my Ubuntu machine

  • modified /etc/apt/sources file to add/un-comment the following 2 lines

deb http://in.archive.ubuntu.com/ubuntu gutsy universe
deb-src http://in.archive.ubuntu.com/ubuntu gutsy universe
deb http://wine.budgetdedicated.com/apt gutsy main
deb-src http://wine.budgetdedicated.com/apt gutsy main

  • sudo apt-get update
  • sudo apt-get install wine cabextract
  • wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
  • tar xzvf ies4linux-2.0.5.tar.gz
  • cd ies4linux-2.0.5
  • ./ies4linux (make sure you are not root here)

When running the installer (the last step), I got the following error

ui/pygtk/python-gtk.sh: line 6: 15717 Segmentation fault (core dumped) python "$IES4LINUX"/ui/pygtk/ies4linux-gtk.py

After googling around to find a solution to the problem, I had a look at the ies4linux-gtk.py file mentioned in the error message. The line 6 looks like this

import gtk, gobject, pango, sys, os

Somehow, I suspected that there are some unmet dependencies, so looked for packages by the name gobject

apt-cache search gobject

and I found this:

gob2 – GTK+ Object Builder

I installed the gob2 package

sudo apt-get install gob2

and after that I ran the installer again and this time the installation succeeded without any problems.

Hope this helps somebody.

  • Share/Bookmark
Posted in Java tools, Linux

Running VMWare on AMD 64 running Feisty Fawn

Posted by admin on April 8th, 2008

If you are running Feisty Fawn on AMD 64 machine and try to open a VMWare image, you will most-likely get this error message

“Error while powering on: Failed to connect to peer process.”

The solution to this problem is to install the following the 32-bit libraries required by Ubuntu to recognize the 32-bit operating system.

Use the following command to install the required libraries.

sudo apt-get install ia32-libs

After installing these libraries, I was able to open the virtual machine without any problems on my Ubuntu Feisty Fawn AMD 64 machine.

Hope this helps somebody.

  • Share/Bookmark
Posted in Linux

how to convert a .rpm to .deb

Posted by admin on February 4th, 2008

Installable software for Linux is mainly packaged as .rpm (for RedHat) & .deb (for Ubuntu & other debian based distributions).

There can be cases when you want to install some application on your Ubuntu system & the same application might only be available as .rpm. Recently, I was in a similar situation when I had to install IBM WebSphere MQ; but the installation package was availabe only in RPM format.

In such cases, you can use the alien package converter to convert the .rpm to .deb.

You can install alien using the following command -

sudo apt-get install alien

After alien has been installed, you can convert a .rpm to .deb using:

alien <rpm package file name>

After you have the .deb file, you can install the package using:

dpkg -i <deb package file name>

  • Share/Bookmark
Tags:
Posted in Linux