Hi installed 2 weeks before and it was working fine.
I installed some extra plugin todays when it restarted, it started giving errors.
I tried solving it for an hour but no luck.
Finally what I did is... delete .Aptana folder from home directory and again run the Aptana.
Voila!!! It worked this time.
Friday, June 12, 2009
Tuesday, June 2, 2009
There was an error while performing index
This error is seen often in Ubuntu 9.04. It pops up a dialog box which says "There was an error while performing index". It has 3 buttons, Re-Index, Cancel and one more (I forgot ;) ). No matter which button you click, it again pops up the same dialog box. Really very annoying :( .
I googled for it and found simple solution to it.
Delete the following files and reboot your system
1. ~/.local/share/tracker/data/ ( rm -rf ~/.local/share/tracker/data/ )
2. ~/.cache/tracker ( rm -rf ~/.cache/tracker )
That's it!!!
I googled for it and found simple solution to it.
Delete the following files and reboot your system
1. ~/.local/share/tracker/data/ ( rm -rf ~/.local/share/tracker/data/ )
2. ~/.cache/tracker ( rm -rf ~/.cache/tracker )
That's it!!!
Labels:
Error,
Indexing,
Linux,
Re-Indexing,
Tracking Applet,
Ubuntu,
Ubuntu 9.04
Sunday, May 31, 2009
Installing Aptana Studio on Ubuntu
Aptana Studio is one my favorite IDEs for Web Development. It has excellent Syntax Highlighting and Code Completion for HTML, CSS, Javascript, PHP, Ruby, etc.
I have been using it for more than 2 years on Windows. I recently installed Ubuntu 9.04 Linux on my machine. I tried installing Aptana Studio on Ubuntu but to my surprise, installing Aptana on Ubuntu is not as easy as it is on Windows and Mac. I searched online alot and finally found the solution at http://maketecheasier.com/install-aptana-studio-in-ubuntu-intrepid/2009/03/23
Here are the steps to install it...
1. Download and install all dependencies. Open Terminal and enter this command
2. Download Aptana for Linux from http://72.3.219.182/studio/download/thanks?platform=standalone&os=linux&ev=3.4
2. Save it in your Home Directory and Unzip it there.
3. Create one executable file. (eg. launchAptana.sh)
4. Write this in that file.5. Right Click on that file and give it execute permission.
Now you can run Aptana Studio by double clicking on that newly created file.
I have been using it for more than 2 years on Windows. I recently installed Ubuntu 9.04 Linux on my machine. I tried installing Aptana Studio on Ubuntu but to my surprise, installing Aptana on Ubuntu is not as easy as it is on Windows and Mac. I searched online alot and finally found the solution at http://maketecheasier.com/install-aptana-studio-in-ubuntu-intrepid/2009/03/23
Here are the steps to install it...
1. Download and install all dependencies. Open Terminal and enter this command
sudo apt-get install sun-java6-jre sun-java6-plugin xulrunner
2. Download Aptana for Linux from http://72.3.219.182/studio/download/thanks?platform=standalone&os=linux&ev=3.4
2. Save it in your Home Directory and Unzip it there.
3. Create one executable file. (eg. launchAptana.sh)
4. Write this in that file.
#!/bin/bash
export MOZILLA_FIVE_HOME=/usr/lib/xulrunner
/home/damien/aptana/AptanaStudio #filepath to Aptana folder
Now you can run Aptana Studio by double clicking on that newly created file.
Upgrading to newer Version
I had to uninstall Ubuntu from my machine due to some reason. I again installed Ubuntu 7.10 on my last night. I wanted to upgrade it to 9.04 (Jaunty Jackalope). I tried doing to using Upgrade Manager (System -> Administration -> Upgrade Manager) but it upgraded it to 8.04. I then came to know that I can not upgrade directly to 9.04. I have to pass through all the versions in between. So, I upgraded to 8.04. After upgrading to 8.04, I tried to upgrade it to 8.10 (next release after 8.04) but it did not work. I always said "System is up to date".
I googled online but found no luck (May be I did not try hard. I am a lazy ass ;-) ). Finally I got solution from http://twitter.com/be3 on Twitter.
It's very simple. Go to Console and type update-manager -d
It then upgraded to 8.10 (as I said, we need to pass through all intermediate releases). I should hopfully be able to upgrade to version 9.04. :-)
I googled online but found no luck (May be I did not try hard. I am a lazy ass ;-) ). Finally I got solution from http://twitter.com/be3 on Twitter.
It's very simple. Go to Console and type update-manager -d
It then upgraded to 8.10 (as I said, we need to pass through all intermediate releases). I should hopfully be able to upgrade to version 9.04. :-)
Wednesday, March 18, 2009
Installing / Uninstalling Netbeans
Installing Netbeans in just three steps process
Open the terminal, locate the directory where netbeans is installed and run sh uninstall.sh
Simple as that :-)
- Go to http://www.netbeans.org/downloads/start.html
- Download the package you are looking for.
- Open Terminal, Go the directory where Netbeans in downloaded and type sh netbeans.sh (whatever is the name of the downloaded file.)
Open the terminal, locate the directory where netbeans is installed and run sh uninstall.sh
Simple as that :-)
Labels:
install,
Linux,
Netbeans,
Open Source,
Operating System,
Ubuntu,
uninstall
Command not found
I was trying to uninstall NetBeans from my Linux box. I tried sudo ./uninstall.sh but every time (just to make sure 'm typing everything correctly) it gave me Command Not Found error.
Finally, I found the solution as
chmod a+x uninstall.sh
use SH command.
sh uninstall.sh
This works perfectly. :-)
Finally, I found the solution as
chmod a+x uninstall.sh
use SH command.
sh uninstall.sh
This works perfectly. :-)
Labels:
chmod,
command not found,
install,
Linux,
Open Source,
Operating System,
permissions,
sh,
Ubuntu,
uninstall
Sunday, March 1, 2009
Removing unwanted files from Ubuntu
Removing unwanted (tmp) files from Ubuntu is very easy.
Open the Terminal window and run: sudo apt-get autoclean
This will delete all the unnecessary files from the computer.
This can fail if Synaptic package manager or any other installation manager is running.
source: http://www.ubuntugeek.com/how-to-fix-lock-varlibdpkglock-open-11-resource-temporarily-unavailable-error.html
Open the Terminal window and run: sudo apt-get autoclean
This will delete all the unnecessary files from the computer.
This can fail if Synaptic package manager or any other installation manager is running.
source: http://www.ubuntugeek.com/how-to-fix-lock-varlibdpkglock-open-11-resource-temporarily-unavailable-error.html
Subscribe to:
Posts (Atom)