Dove è installato Netbeans su Ubuntu?


14

Ho installato Netbeans sul mio computer Ubuntu 11.10. Ho usato il metodo combinato, quindi Netbeans e JDK sono installati da un singolo file . Tuttavia, ora che è installato, non riesco a capire come avviare Netbeans. Se provo a reinstallare dice che Netbeans è già installato, ma se guardo /usr/share/netbeansci sono i file di installazione ma nient'altro. Come posso eseguire Netbeans?


Che cosa è Logitech?
Xiaohan2012,

Ho provato a modificarlo, ma non sono riuscito a capire il tuo secondo paragrafo
Michael Mrozek

Risposte:


15

Cercalo:

sudo find / -name netbeans 2> /dev/null

Se ottieni una posizione, è installato. In caso contrario, suggerirei di provare a utilizzare aptper installare invece del metodo a un file.


1
Mi hai reso felice.
quantme

10

sembra che il programma di installazione di netbeans abbia dimenticato di aggiungere un link simbolico

ln -s /usr/local/netbeans-7.0.1/bin/netbeans /usr/local/bin/netbeans

Avrebbe reso la vita più semplice per gli utenti se lo script di installazione avesse fatto questo.

(non dimenticare di aggiornare il collegamento simbolico quando aggiorni la versione di netbeans)



1

Java prima di Netbeans ...

#!/bin/sh

#Delete the line below if you only want the "open" JDK & JRE
sudo apt-get install openjdk-7-jdk openjdk-7-jre;

#Makes the /usr/lib/jvm in case...
sudo mkdir -p /usr/lib/jvm

#Clean out /tmp...
sudo rm -rf /tmp/*
cd /tmp

#Update this line to reflect newer versions of JDK...
wget http://download.oracle.com/otn-pub/java/jdk/7u1-b08/jdk-7u1-linux-i586.tar.gz;
tar -xvf ./*gz;

#Move it to where it can be found...
sudo mv /tmp/jdk1.7.* /usr/lib/jvm/;

#Add the new Java to the bin 
sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk1.7.0_01/jre/bin/java 3;

#User chooses
sudo update-alternatives --config java;

exit 0;

Netbeans ...

#!/bin/sh
# @author Yucca Nel
# Update as needed for newer Netbeans releases :D

#!/bin/sh

#Clean out /tmp...
sudo rm -rf /tmp/*;
cd /tmp;

# Update this line to reflect newer versions of Netbeans or replace 
# 'javase with 'javaee' or add jee manually via Netbeans 'plugins as needed.
wget http://download.netbeans.org/netbeans/7.0.1/final/bundles/netbeans-7.0.1-ml-javase-linux.sh;
sh /tmp/*sh;

# Add Netbeans launcher to your PATH. Doing so allows you to run 
# 'netbeans' command from the terminal
sudo ln -s ~/netbeans-7.0.1/bin/netbeans /usr/local/bin/;

# If you use VirtualBox , you can share your projects between 
# Host and guest. Name of shared folder must match 'NetBeansProjects' 
# Remove this if you don't need...
sudo mkdir ~/NetBeansProjects;
sudo mount -t vboxsf NetBeansProjects ~/NetBeansProjects;
exit 0;

0

Per impostazione predefinita, esegui Unity in 11.10, se premi il tasto Meta(Windows) e digiti netbeans,

Dovresti essere in grado di vedere alcune voci relative a netbeans.


0

si utilizza il whichcomando per scoprire la posizione di qualsiasi applicazione (binaria) installata.

per esempio

$which netbeans
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.