2

I am using Ubuntu 13.10 and have netbeans 7.4 whenever I close netbeans it restart and keep doing that until I restart my computer and same story.

Edit

can I do something with netbeans which close it and I am not asking for finding process id and kill it.
Downloaded the netbeans from its website .sh extension.
NetBeans IDE 7.4 if I try to run it with sudo from terminal sudo netbeans it says sudo: netbeans: command not found
If netbeans is installed with sudo apt-get install netbeans its fine and have no problem but they have older version netbeans 7.0.1


what should I do to solve this problem ?

Waqas
  • 640

4 Answers4

3
  • First run ps aux | grep netbeans command.It will display netbeans program along with it's pid.

  • Note the pid and kill the program by running,

    sudo kill <pid>
    
Avinash Raj
  • 78,556
1

You probably will end up with this

killall java

this Will kill all java related apps as well including netbeans in your user processes

to kill All java apps with all users use sudo

sudo killall java
kamil
  • 7,355
  • 7
  • 40
  • 61
0

I think net-beans doesn't have privileges to update its state .

try sudo to start netbeans

belacqua
  • 23,120
nux
  • 38,017
  • 35
  • 118
  • 131
0

To install netbeans follow this command:

sudo sh netbeans-*.sh
kamil
  • 7,355
  • 7
  • 40
  • 61