I have just installed Ubuntu for the first time - in a virtual machine. (I don't have much linux experience).

Now I'm trying to install netbeans. I have downloaded netbeans, which seems to be a .sh file of 43 Mb, but I'm not sure how to execute it...

Thanks...

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You have two way to do it. You can use the downloaded file for install it.

cd /path/where/the/file/is
sh ./netbeansblablabla.sh

But you can install it with the synaptic packet manager (netbeans, like other soft installed by this way will be updated automatically with other system updates). For this way, use apt-get install:

sudo apt-get install netbeans

Or search it in software manager of ubuntu.

;)

link|improve this answer
Thanks. I went with option 1. Nice. – Kim Oct 20 '11 at 7:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.