Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Main Support Categories > Installation & Upgrades
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Installation & Upgrades
For questions about upgrading and installation of your new Ubuntu OS.

 
Thread Tools Display Modes
Old April 26th, 2009   #1
vhenry
Just Give Me the Beans!
 
Join Date: Apr 2009
Beans: 63
Ubuntu 9.10 Karmic Koala
Installing Aptana on Jaunty

Hi,

Upgraded from Intrepid to Jaunty, with no issues. But trying to install Aptana for my web development and not having any luck. I've tried options suggested here (for Intrepid) and on other forums, but still unable to run. I'm getting this error:

Hello,

I've followed all the instructions here (downloaded java, xulrunner 1.8x) and still unable to launch Aptana.
Error: An error has occurred. See the log file
/home/dreamdeep/Aptana Studio/.metadata/.log.

Bash file I use to launch Aptana:
#!/bin/sh
MOZILLA_FIVE_HOME=/usr/lib/xulrunner-1.8.1.3
if [ $LD_LIBRARY_PATH ]; then
LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PAT H
else
LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
fi
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
/home/dreamdeep/aptana/AptanaStudio -vm /usr/lib/jvm/java-6-sun/bin/java

When executing bash file in terminal, this info appears:
Gtk-Message: Failed to load module "canberra-gtk-module": /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so: wrong ELF class: ELFCLASS64
/usr/lib/gio/modules/libgioremote-volume-monitor.so: wrong ELF class: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgioremote-volume-monitor.so
/usr/lib/gio/modules/libgiogconf.so: wrong ELF class: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgiogconf.so
/usr/lib/gio/modules/libgvfsdbus.so: wrong ELF class: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgvfsdbus.so

Any ideas?
vhenry is offline   Reply With Quote
Old May 7th, 2009   #2
afecelis
First Cup of Ubuntu
 
Join Date: Nov 2007
Beans: 12
Re: Installing Aptana on Jaunty

Follow this tutorial:
http://forums.aptana.com/viewtopic.php?f=37&t=7147

It did the trick for me on Ubuntu 9.04 64bit.
afecelis is offline   Reply With Quote
Old May 28th, 2009   #3
okenobu
First Cup of Ubuntu
 
Join Date: Apr 2005
Beans: 5
Re: Installing Aptana on Jaunty

I can confirm the tutorial works. This is what i did on jaunty x64:

1. Unpack aptana zip file to ~/.sys/lib/aptana
2. Unpack xulrunner 1.8.1.3 zip file to ~/.sys/lib/xulrunner.
3. Installed java32 bit runtime: apt-get install ia32-sun-java6-bin
4. Created a script ~/.sys/bin/aptana with the following code:

Code:
#!/bin/sh
MOZILLA_FIVE_HOME=/home/bla/.sys/lib/xulrunner
if [ $LD_LIBRARY_PATH ]; then
LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
else
LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
fi
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
~/.sys/lib/aptana/AptanaStudio -vm /usr/lib/jvm/ia32-java-6-sun/bin/java
It seems to be working OK.
okenobu is offline   Reply With Quote
Old June 15th, 2009   #4
sistarbliss
5 Cups of Ubuntu
 
sistarbliss's Avatar
 
Join Date: May 2007
Location: Michigan
Beans: 23
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to sistarbliss Send a message via Yahoo to sistarbliss
Red face Re: Installing Aptana on Jaunty

I am also attempting to run/install aptana. I have a few questions. The path ~/.sys/lib/aptana? I'm wondering if /sys would be the same, as it does not have a dot in front of it. Also, the sys folder does not have a lib folder contained within it. Also, how do I create a proper script? I followed the turorial from the forum, but wasn't quite sure how to make an executable file. I just pasted the text into an editor, saved it as aptana and then right clicked on it and checked the executable box. (? lol!)

I have the ia32-sun-java6-bin installed.

I do have a win vm, and could install it there most likely, but would rather not run it unless I absolutely have to. Any help would be appreciated. I apologize for being a newb.

I'm running 64 bit jaunty.

This is the begining paragraph of what appears to be the last entry in the log. I do have eclipse installed.

!ENTRY org.eclipse.osgi 2 0 2009-06-15 00:54:20.337
!MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-06-15 00:54:20.337
!MESSAGE Bundle update@plugins/com.aptana.ide.xul_1.2.7.024774.jar was not resolved.
!SUBENTRY 2 com.aptana.ide.xul 2 0 2009-06-15 00:54:20.337
!MESSAGE Missing required bundle org.eclipse.atf.mozilla.ide.core_0.0.0.
sistarbliss is offline   Reply With Quote
Old July 1st, 2009   #5
buddhaZA
First Cup of Ubuntu
 
Join Date: Jul 2009
Location: /\/¯¯¯¯¯\/\
Beans: 3
Xubuntu 9.04 Jaunty Jackalope
Re: Installing Aptana on Jaunty

Hey there guys/gals,

Im also trying to get Aptana installed on 32bit Jaunty,

Quote:
Originally Posted by okenobu
I can confirm the tutorial works. This is what i did on jaunty x64:

1. Unpack aptana zip file to ~/.sys/lib/aptana
2. Unpack xulrunner 1.8.1.3 zip file to ~/.sys/lib/xulrunner.
3. Installed java32 bit runtime: apt-get install ia32-sun-java6-bin
4. Created a script ~/.sys/bin/aptana with the following code:
sistarbliss and I seem to have the same issue. Im not to sure how to get into ~/.sys/lib to create the aptana folder :-/ Can someone point me in the right direction?

I tried browsing using /sys/ but there is no lib folder? So I dont take it we just create one?

Thanks for any help or pointers, because if I can get Aptana to work its really the last thing keeping me on windows
buddhaZA is offline   Reply With Quote
Old July 2nd, 2009   #6
utannheim
First Cup of Ubuntu
 
Join Date: Feb 2008
Beans: 6
Ubuntu 9.04 Jaunty Jackalope
Re: Installing Aptana on Jaunty

Quote:
Originally Posted by buddhaZA View Post

Im not to sure how to get into ~/.sys/lib to create the aptana folder :-/ Can someone point me in the right direction?

I tried browsing using /sys/ but there is no lib folder? So I dont take it we just create one?
~/ is tilde character and equates to $HOME e.g. /home/yourusername

The suggestion is to create a hidden directory (hence the leading dot) in your home dir. To be honest I think you can just put this anywhere, for example I tried it out by replacing ~/.sys/lib with /opt/devel
utannheim is offline   Reply With Quote
Old July 2nd, 2009   #7
buddhaZA
First Cup of Ubuntu
 
Join Date: Jul 2009
Location: /\/¯¯¯¯¯\/\
Beans: 3
Xubuntu 9.04 Jaunty Jackalope
Re: Installing Aptana on Jaunty

thanks for the reply utannheim, that clears it up a bit

I will give that a try this evening when i get back home.
buddhaZA is offline   Reply With Quote
Old July 6th, 2009   #8
keyboardslave
5 Cups of Ubuntu
 
keyboardslave's Avatar
 
Join Date: Aug 2007
Beans: 35
Re: Installing Aptana on Jaunty

hmm im having the same problem with the big error..

As to the above post to "install aptana", go alt+f2 type nautilus , then go Ctrl + H (shows hidden) , now just create the folders if there not there (right click) , if u put a . in front of a file name its hidden.
Ya you can put these files (urlrunner/aptana) anywere just make sure to edit the script you make to point to the right place and make sure to give the script execute permission. Best keep the script in bin though.
...

EDIT:
i Got it working with a tutorial here, but its for eclipse... still works.
http://www.aptana.com/docs/index.php...4_Instructions
__________________
..."Life is like a roller coster, you think its real because thats how powerful your mind is; You choose to go on it. Its very loud and brightly colored, it has chills and thrills, but then you think 'is this real or just a ride"?

Last edited by keyboardslave; July 6th, 2009 at 06:08 AM..
keyboardslave is offline   Reply With Quote
Old July 6th, 2009   #9
buddhaZA
First Cup of Ubuntu
 
Join Date: Jul 2009
Location: /\/¯¯¯¯¯\/\
Beans: 3
Xubuntu 9.04 Jaunty Jackalope
Re: Installing Aptana on Jaunty

Well i managed to get it working in Jaunty following this tutorial: http://maketecheasier.com/install-ap...pid/2009/03/23 even tho its for intrepid it worked 1st time 100%

buddhaZA is offline   Reply With Quote
Old July 19th, 2009   #10
Charybdisz
First Cup of Ubuntu
 
Join Date: Mar 2008
Beans: 9
Re: Installing Aptana on Jaunty

Aptana 1.5 is out. All the tutorials on installing Aptana on Linux are now outdated, just follow these steps:

1. Download Aptana 1.5 for Linux as standalone version
2. Extract it
3. Run it
Charybdisz is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:28 PM.


vBulletin ©2000 - 2010, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry