Wednesday 10 September 2014

How to create desktop shortcut for eclipse on Ubuntu

This tutorial shows how to create desktop shortcut for eclipse on Ubuntu.
STEPS
----------
For this example eclipse is first extracted to the a folder where you want to keep it.

1) Create a text file on Desktop and type the following line:

[Desktop Entry]
Name=Eclipse
Exec=/path to eclipse directory/eclipse/eclipse
Icon=/path to eclipse directory/eclipse/icon.xpm
Type=Application

2) Click Save it on Desktop with name as: "eclipse.desktop"
3) Close gedit
4) Right-click eclipse.desktop
5) Click Properties
6) Click Permissions
7) Check Allow executing file as program
8) Click Close
9) Eclipse shortcut is ready!

Tuesday 9 September 2014

Seismic Unix Installation in Ubuntu

Download the installation file from CWP websiteclick here to download.

After downloading the file, extract the file, you will get a folder called "src"

Now, Make a Directory, where you want to install Seismic Unix...in my case, i am creating "cwp" directory in home directory:
mkdir cwp
Now move the "src" folder in "cwp" directory:  copy "src" and paste it in "cwp".
mv src /cwp/              if src is in your home directory
Go to src/cwp directory:
cd cwp/src
Then type the following command one by one in terminal: Make sure you are in "src" directory.
echo "export CWPROOT=~/cwp" >> ~/.bashrc
echo "export PATH=$PATH:~/cwp/bin" >> ~/.bashrc
source ~/.bashrc
make install 
sudo apt-get install libx11-dev
sudo apt-get install libxt-dev
make xtinstall  
 Now Seismic Unix is installed in your system if you don't get any error up to now. To check it, run this:
suplane | suximage title="My first test" &
 For any query, please, write a comment..........thank you!