特殊:Badtitle/NS100:Netbeans4.1onAMD64:修订间差异

来自Ubuntu中文
跳到导航跳到搜索
Oneleaf留言 | 贡献
New page: {{From|https://help.ubuntu.com/community/Netbeans4.1onAMD64}} {{Languages|php5}} #format wiki #language en == HowToInstallNetbeans4.1(AMD64) == NetBeans is an integrated Java developing I...
 
Wikibot留言 | 贡献
无编辑摘要
 
(未显示2个用户的4个中间版本)
第1行: 第1行:
{{From|https://help.ubuntu.com/community/Netbeans4.1onAMD64}}
{{From|https://help.ubuntu.com/community/Netbeans4.1onAMD64}}
{{Languages|php5}}
{{Languages|UbuntuHelp:Netbeans4.1onAMD64}}
#format wiki
<<Include(Tag/NeedsExpansion)>>
#language en
== HowToInstallNetbeans4.1(AMD64) ==
== HowToInstallNetbeans4.1(AMD64) ==
NetBeans is an integrated Java developing IDE that give you the posibility of making:
NetBeans is an integrated Java developing IDE that give you the posibility of making:
* J2SE 5 projects
* J2SE 5 projects
* J2EE 1.4 projects, including apache tomcat server
* J2EE 1.4 projects, including apache tomcat server
* ANT developing
* ANT developing
This is a guide for instaling it on Ubuntu Breezer and AMD procesor.
This is a guide for instaling it on Ubuntu Breezer and AMD procesor.
=== Download sofware ===
=== Download sofware ===
We shold download this software:
We shold download this software:
* JDK 5.0 Update 5 for amd64 [http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=22&PartDetailId=jdk-1.5.0_05-oth-JPR&SiteId=JSC&TransactionId=noreg here]
* JDK 5.0 Update 5 for amd64 [http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=22&PartDetailId=jdk-1.5.0_05-oth-JPR&SiteId=JSC&TransactionId=noreg here]
 
''You have to accept the License Agreement and select Linux AMD64 self-extracting file''
  ''You have to accept the License Agreement and select Linux AMD64 self-extracting file''
 
* NetBeans IDE 4.1 Archive [http://www.netbeans.info/downloads/download.php?p=1&a=bd&os=2&lang=1&rv=4.1&b_bt=2 here]
* NetBeans IDE 4.1 Archive [http://www.netbeans.info/downloads/download.php?p=1&a=bd&os=2&lang=1&rv=4.1&b_bt=2 here]
 
''Click on NetBeans IDE 4.1 Archive netbeans-4_1.tar.gz -> Next''
  ''Click on NetBeans IDE 4.1 Archive netbeans-4_1.tar.gz -> Next''
''Accept the License Agreement''
 
  ''Accept the License Agreement''
 
=== Install Software ===
=== Install Software ===
Open a terminal
Open a terminal
'''<u>JAVA JDK</u>'''
'''<u>JAVA JDK</u>'''
I will install the java at /usr/java/
I will install the java at /usr/java/
The file has been downloaded to /home/[yourAccount]/downloads/
The file has been downloaded to /home/[yourAccount]/downloads/
<pre><nowiki>
<pre><nowiki>
#sudo -s
#sudo -s
第46行: 第29行:
#./jdk-1_5_0_05-linux-amd64.bin
#./jdk-1_5_0_05-linux-amd64.bin
</nowiki></pre>
</nowiki></pre>
'''<u>NETBEANS IDE</u>'''
'''<u>NETBEANS IDE</u>'''
Move the file where you want to install. For example JavaDevelope
Move the file where you want to install. For example JavaDevelope
<pre><nowiki>
<pre><nowiki>
#mv ~/downloads/netbeans-4_1.tar.gz ~/JavaDevelope/
#mv ~/downloads/netbeans-4_1.tar.gz ~/JavaDevelope/
#tar -xzvf netbeans-4_1.tar.gz
#tar -xzvf netbeans-4_1.tar.gz
</nowiki></pre>
</nowiki></pre>
=== Running the IDE ===
=== Running the IDE ===
If you are not in admin mode you should put sudo before calling the program
If you are not in admin mode you should put sudo before calling the program
I use /usr/java/jdk.5.0_05/ because i have installed the java JDK there
I use /usr/java/jdk.5.0_05/ because i have installed the java JDK there
<pre><nowiki>
<pre><nowiki>
#cd javaDevelope/netbeans/bin
#cd javaDevelope/netbeans/bin
#sudo ./netbeans --jdkhome /usr/java/jdk.5.0_05/
#sudo ./netbeans --jdkhome /usr/java/jdk.5.0_05/
</nowiki></pre>
</nowiki></pre>
=== Ready to Use ===
=== Ready to Use ===
Now you can develope any java project!
Now you can develope any java project!
CategoryDocumentation CategoryCleanup


[[category:UbuntuHelp]]
[[category:UbuntuHelp]]

2009年11月17日 (二) 20:12的最新版本

{{#ifexist: :Netbeans4.1onAMD64/zh | | {{#ifexist: Netbeans4.1onAMD64/zh | | {{#ifeq: {{#titleparts:Netbeans4.1onAMD64|1|-1|}} | zh | | }} }} }} {{#ifeq: {{#titleparts:Netbeans4.1onAMD64|1|-1|}} | zh | | }}

<<Include(Tag/NeedsExpansion)>>

HowToInstallNetbeans4.1(AMD64)

NetBeans is an integrated Java developing IDE that give you the posibility of making:

  • J2SE 5 projects
  • J2EE 1.4 projects, including apache tomcat server
  • ANT developing

This is a guide for instaling it on Ubuntu Breezer and AMD procesor.

Download sofware

We shold download this software:

  • JDK 5.0 Update 5 for amd64 here

You have to accept the License Agreement and select Linux AMD64 self-extracting file

  • NetBeans IDE 4.1 Archive here

Click on NetBeans IDE 4.1 Archive netbeans-4_1.tar.gz -> Next Accept the License Agreement

Install Software

Open a terminal JAVA JDK I will install the java at /usr/java/ The file has been downloaded to /home/[yourAccount]/downloads/

#sudo -s
#cd /usr
#mkdir /usr/java
#mv ~/downloads/jdk-1_5_0_05-linux-amd64.bin /usr/java/
#cd java
#chmod +x jdk-1_5_0_05-linux-amd64.bin
#./jdk-1_5_0_05-linux-amd64.bin

NETBEANS IDE Move the file where you want to install. For example JavaDevelope

#mv ~/downloads/netbeans-4_1.tar.gz ~/JavaDevelope/
#tar -xzvf netbeans-4_1.tar.gz

Running the IDE

If you are not in admin mode you should put sudo before calling the program I use /usr/java/jdk.5.0_05/ because i have installed the java JDK there

#cd javaDevelope/netbeans/bin
#sudo ./netbeans --jdkhome /usr/java/jdk.5.0_05/

Ready to Use

Now you can develope any java project!