PDA

View Full Version : [ubuntu] Installation Problem



ktseo
August 20th, 2012, 10:20 AM
I am using Ubuntu 12.04, Now I want to install seospyglass software which i have downloaded from Link assistant .com

I have save this with two format which is as a folder as well as tar.gz.

After doing this when i am typing "sudo apt-get install ~/Desktop/seospyglass/install.sh
from home. it showing error of "Unable to locate package seospyglass"

I have tried to make it executable by chmod +x ~/desktop/sepspyglass/install.sh

what now??

mastablasta
August 20th, 2012, 10:22 AM
I have tried to make it executable by chmod +x ~/desktop/sepspyglass/install.sh

what now??

double click the file to execute it if it is really made executable. otherwise you can right click it and make it executable.

darkod
August 20th, 2012, 10:23 AM
If the software is provided and already downloaded, you don't use apt-get.

Open Terminal and change the directory to where the unpacked files are, like:
cd /Desktop/seospyglass

Then start the install with:
./install.sh (not sure if it will need sudo in front or not)

ktseo
August 20th, 2012, 10:49 AM
double click the file to execute it if it is really made executable. otherwise you can right click it and make it executable.

How can i check it's executable or not?
How to make it executable with right click?

ktseo
August 20th, 2012, 10:51 AM
If the software is provided and already downloaded, you don't use apt-get.

Open Terminal and change the directory to where the unpacked files are, like:
cd /Desktop/seospyglass

Then start the install with:
./install.sh (not sure if it will need sudo in front or not)

I have tried after changing the diretory to cd /desktop/seospyglass
I have inserted ./install.sh and sudo ./install.sh

But it showing error "Java: Command not found.

darkod
August 20th, 2012, 11:04 AM
Is there a readme.txt in the folder too? Usually in there are instructions how to start the installer.

I'm not sure, sometimes you might need bash without the ./, like:

sudo bash install.sh

It depends how the developer made it work. The readme.txt usually has details.

ktseo
August 20th, 2012, 11:12 AM
Is there a readme.txt in the folder too? Usually in there are instructions how to start the installer.

I'm not sure, sometimes you might need bash without the ./, like:

sudo bash install.**** depends how the developer made it work. The readme.txt usually has details.

Readme.txt is not available.
i have tried sudo bash install.sh but it's showing same error which is "Java:command not found"

One of my friend is installed this software via this thread, I have tried same but not getting success.

Kindly look this also. : http://ubuntuforums.org/archive/index.php/t-1564196.html

darkod
August 20th, 2012, 11:24 AM
Well in that thread it said it installed with the
sudo ./install.sh

And you say it doesn't work. I am not sure why that message mentions Java, maybe you need to have Java JDK installed and you don't. I have no idea what the requirements for this software are, you need to find that out on the developer website.

Once you have it downloaded and extracted, the installation seems to be started with the above command. When you are in the /Desktop/seospyglass folder make sure the install.sh is in there. You can list folder content with only:

ls

ktseo
August 20th, 2012, 11:31 AM
Well in that thread it said it installed with the
sudo ./install.sh

And you say it doesn't work. I am not sure why that message mentions Java, maybe you need to have Java JDK installed and you don't. I have no idea what the requirements for this software are, you need to find that out on the developer website.

Once you have it downloaded and extracted, the installation seems to be started with the above command. When you are in the /Desktop/seospyglass folder make sure the install.sh is in there. You can list folder content with only:

ls

Have you seen the thread i have mentioned in previous post? I also searched for Java Update. But same error appearing. Anyway thanks for your time. I will wait for other's reply.

darkod
August 20th, 2012, 11:43 AM
Have you seen the thread i have mentioned in previous post? I also searched for Java Update. But same error appearing. Anyway thanks for your time. I will wait for other's reply.

I saw it and I was commenting on that thread. It said it worked with sudo ./install.sh.


Ok, so presumably you have downloaded and unpacked the archive to the 'seospyglass' folder on your desktop?

Could you please post the output of the following command:

ls ~/Desktop/seospyglass

If the 'install.sh' file exists there, then try run it from that directory:

cd ~/Desktop/seospyglass
sudo ./install.sh


Thanks lechien73 (http://ubuntuforums.org/member.php?u=1031904), thank you very much.
It is successfully installed.

mastablasta
August 20th, 2012, 12:12 PM
How can i check it's executable or not?
How to make it executable with right click?

have a look here: http://askubuntu.com/questions/35478/how-do-i-mark-a-file-as-executable-via-a-gui

oh and if sudo is really needed then i think you need to right click and then run as root.