Netbeans linux как установить

Netbeans

The NetBeans IDE is an open-source, fast and feature full tool for developing Java software. It is standards compliant and runs on any operating system where a Java Virtual Machine is available.

Installing the Latest Version Directly from Binaries

The version of NetBeans available from synaptic or apt-get is usually out-of-date from the version available directly from NetBeans. For example Ubuntu Jaunty 9.04 contains Netbeans 6.5 in repository while release 6.7 is pending. If you are required to run the latest release please proceed in reading the rest of this section. This section covers the installation of NetBeans 6.5 from binaries downloaded directly from the NetBeans website but it can most likely be applied to future release so it is left here for reference.

Quick and Easy way to install Netbeans

Install Netbeans 6.5 — This downloads directly from www.netbeans.org. It also configures Ubuntu rubygems to work inside Netbeans.

Download the Binaries

You can get the binaries at the NetBeans download page. Download the appropriate version depending on what language(s) you want to develop in. I chose Java. Download the file and save it to your home directory, /home/yourusername.

cd $HOME sudo sh ./netbeans-6.5-ml-java-linux.sh

Create a script to run netbeans (skip this if you want to invoke it from Applications -> Programming -> NetBeans IDE 6.5 in the Ubuntu menu bar):

cd $HOME mkdir bin cd bin # Create a file called netbeans in the current dir and make its contents exactly as # follows in the next two lines and then save it and then quit your editor: #!/bin/bash /usr/local/netbeans-6.5/bin/netbeans # Make it executable chmod u+x netbeans # Put this in your path for this shell session # (add this line to your .bashrc or .zshrc file in /home/yourusername # to see the path in all future shells; be sure to exit the shell to see the changes though) export PATH=/home/yourusername/bin:$PATH # Run NetBeans! netbeans

Alternatively, you can just add /usr/local/netbeans-6.5/bin to your PATH, or you can run the following if you don’t even want to mess with your PATH:

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

Missing Java

If the installer fails or cannot find the Java JDK, try

If those both return values, perhaps the installer missed them and you can browse for them manually yourself in the installer. If one of those does not return a value, you need to install Java:

sudo apt-get install sun-java6-bin sun-java6-jdk

The Installer or NetBeans Window is All White or Blank: Problems with Compiz

Although I did not have any problems with NetBeans and Compiz in Ubuntu 8.10, if you are experincing problems you may try changing your netbeans shell file above to be:

AWT_TOOLKIT=MToolkit /usr/local/netbeans-6.5/bin/netbeans

This makes NetBeans run with the MToolKit windowing toolkit but leaves the rest of your desktop running in Compiz. This was claimed to work on Ubuntu 7.10.

Читайте также:  Установка арч линукс графическим способом

NetBeans blank when maximised on Ubuntu Netbook Remix (9.04)

NetBeans appears blank when run maximised in Ubuntu Netbook Remix Ubuntu 9.04.

NetBeans displays correctly unmaximised (right click on the NetBeans window title bar and select unmaximise) at the cost of a little screen space. Selecting View > Full Screen in NetBeans (Alt-Shift-Enter) also displays NetBeans correctly.

NetBeans 6.8 displays correctly when maximised in Ubuntu Remix 9.10 using Java 1.6 from Sun. No problems were experienced with the installer.

Installation of NetBeans from Ubuntu Packages

To install NetBeans you can run Synaptic Packet Manager and install the package named netbeans, or open a terminal and type

sudo apt-get install netbeans

Java SDK will will be automatically installed as dependency if it’s not installed. If you want the latest version of NetBeans, you must install it manually.

Post-Installation Setup

If you install system-wide a Netbeans bundled with Sun’s J2EE Application Server, you will not be able to use the default domain (domain1) from a non-privileged user account. The installed files are owned by the root account and some are read/write protected. An easy solution is to give all the files in the domain1 directory to your user.

sudo chown -R : /domains/domain1

In Netbeans, in the «Runtime» right-click to the «Server» item to «Add Server. «. In the wizard, use your SUNWappserver directory as «Platform Location» and choose yhe default domain in the drop-down box. After clicking «Next», enter the default admin user (admin) and password (adminadmin) and click «Finish».

A more cleaner solution, is to make a copy of domain1 and then give files in this copy to your user. Because they contain path specific information, you will have to edit the following files: bin/starserv and bin/stopserv.

sudo cp -R /domains/domain1 sudo chown -R : /domain1 cd /domain1 gedit bin/startserv bin/stopserv

in each file, search the line that looks like

INSTANCE_ROOT=/domains/domain1

In Netbeans, in the «Runtime» right-click to the «Server» item to «Add Server. «. In the wizard, use your SUNWappserver directory as «Platform Location», choose «Register Local Domain» and click «Next». Use your copy of domain1 as «Domain Folder» and, after clicking «Next», enter the default admin user (admin) and password (adminadmin) and click «Finish».

Netbeans (последним исправлял пользователь ckimes 2017-08-30 21:25:57)

The material on this wiki is available under a free license, see Copyright / License for details
You can contribute to this wiki, see Wiki Guide for details

Источник

How to Install Netbeans on Ubuntu and Other Linux

NetBeans is an open source integrated development environment that comes with good cross-platform support. This tool has been recognized by the Java and C/C++ development community widely.

Читайте также:  Служба ntp в линукс

The development environment is quite flexible. You can configure this tool to support a wide array of development objectives. Practically, you can develop Web, Desktop and Mobile Applications without leaving this platform. It’s amazing, isn’t it? Besides this, the user can add a wide array of known languages such as PHP, C, C++, HTML, Ajax, JavaScript, JSP, Ruby on Rails and the list goes on and on!

If you are looking to install Netbeans on Linux, you have several ways to do that. I have written this tutorial primarily for Ubuntu but some installation methods are applicable to other distributions as well.

  • Installing Netbeans on Ubuntu using apt: for Ubuntu and Ubuntu-based distributions but usually it has older version of Netbeans
  • Installing Netbeans on Ubuntu using Snap: for any Linux distribution that has Snap packaging support enabled
  • Installing Netbeans using Flatpak: for any Linux distribution with Flatpak package support

Installing Netbeans IDE on Ubuntu using Apt package manager

If you search for Netbeans in Ubuntu Software Center, you’ll find two Netbeans available. The Apache Netbeans is the snap version which is bigger in download size but gives you the latest Netbeans.

You can install it in one click. No need to open terminal. Easiest way.

Apache Netbeans Ubuntu Software Center

You may also opt for using the apt command but with apt version, you won’t get the latest Netbeans. For example, at the time of writing this tutorial, Ubuntu 18.04 has Netbeans version 10 available via Apt while Snap has the latest Netbeans 11.

If you are a fan of apt or apt-get, you can enable the universe repository and install Netbeans using this command in the terminal:

sudo apt install netbeans

Installing Netbeans IDE on any Linux distribution using Snap

Install Netbeans Linux

Snap is a universal package manager and if you have enabled Snap on your distribution, you can install it using the following command:

sudo snap install netbeans --classic

The process might take some time to complete because the total download size is around 1 GB. Once done, you will see the app in the application launcher.

Not only you’ll get the latest Netbeans with Snap, the installed version will be automatically updated to the newer version.

Installing Netbeans using Flatpak

Flatpak is another universal packaging like Snap. Some distributions support Flatpak by default while you can enable Flatpak support on others.

Once you have the Flatpak support on your distribution, you can use the following command to install Netbeans:

flatpak install flathub org.apache.netbeans

Alernatively, you can always download the source code of this open source software and compile it yourself.

Hopefully, you selected one of the above methods to install Netbeans on your Ubuntu Linux system. But which one did you use? Did you face any issues? Do let us know.

Srimanta Koley

Srimanta is a passionate writer, a distrohopper & open source enthusiast. He is extremely fond of everything related to technology. He loves to read books and has an unhealthy addiction to the 90s!

Читайте также:  Canon pixma astra linux

Источник

Установка Netbeans в Ubuntu

Если вы программируете на Java, C++, Си или других связанных ними языках, то, наверное, уже слышали о среде разработки Netbeans. Это отличная бесплатная среда разработки с открытым исходным кодом, поддерживающая большинство возможностей, которые есть в дорогостоящих IDE. Netbeans поддерживает подсветку синтаксиса, поиск и выделение ошибок, документацию, отладку, создание и управление проектами, работу с такими системами управления версиями, как git, и многое другое.

За время своего развития среда прошла очень длинный путь. Раньше она разрабатывалась компанией Oracle, но потом была передана сообществу OpenSource-разработчиков, и сейчас поддерживается проектом Apache. В этой статье мы рассмотрим, как выполняется установка NetBeans в Ubuntu 18.04 и в других версиях.

В 10 версии среды появилась поддержка PHP 7.3, PHPStan и Twig. Возможности JavaScript теперь поддерживаются без установки дополнительных модулей. Добавлена поддержка работы с OpenJDK и поддержка JUnit 5.3.1.

Установка Netbeans из snap-пакета

Откройте центр приложений Ubuntu и наберите в поиске Netbeans:

Здесь есть две версии: старая от Oracle и новая от Apache. Выберите ту, которую хотите. Откройте страницу приложения и нажмите кнопку Установить:

После завершения установки программа будет доступна в главном меню системы:

Как установить Netbeans в Ubuntu с сайта

1. Установка Java-машины

Прежде, чем вы сможете перейти к установке среды, вам нужно будет установить на свой компьютер Java. Я не буду писать об этом здесь. Вся необходимая информация есть в статье установка java в Ubuntu. Желательно использовать проприетарную Java версии 8 или более свежую.

2. Загрузка установщика

В официальных репозиториях пакета для Netbeans Ubuntu нет, поэтому, если вы не хотите пользоваться snap-пакетом, вам придётся устанавливать программу с официального сайта. Для этого зайдите на страницу загрузки и выберите нужную версию:

Здесь доступно несколько версий. Самая последняя на данный момент — десятая. Все версии до 8.2 разрабатывались в Oracle. Вы можете скачать их, если хотите. Я буду устанавливать десятую версию.

Версия для Linux и Windows находится в одном файле. Или вы можете скачать десятую версию командой:

3. Распаковка архива

Вся установка программы сводится к распаковке архива с ней и перемещении содержимого в папку /opt:

sudo mv ~/Загрузки/incubating-netbeans-10.0-bin/netbeans /opt/netbeans/

4. Настройка PATH

Следующим шагом нужно добавить путь к исполняемым файлам Netbeans. Для этого добавьте такую строчку в ваш .bashrc:

Затем загрузите переменные из этого файла:

5. Первый запуск Netbeans

Ваша среда загрузится практически мгновенно.

Сразу же вам нужно будет согласиться или отклонить автоматическую отправку данных об использовании:

6. Создание проекта

Чтобы начать работать с исходными файлами, необходимо создать проект. Для этого откройте меню File и выберите New project:

Затем выберите язык и платформу, на которой будет разрабатываться приложение, например, java. Потом введите название проекта и имя первого файла, если нужно:

Все, теперь вы можете создать своё первое приложение.

Выводы

В этой небольшой статье мы разобрали, как выполняется установка Netbeans в Ubuntu 18.04. Если вы выбрали вариант со snap-пакетом, то это совсем просто. Нажимаете кнопку, ждёте завершения установки, и уже можно использовать.

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

Оцените статью
Adblock
detector