IDE – TecAdmin https://tecadmin.net How to guide for System Administrator's and Developers Tue, 27 Sep 2022 11:05:02 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 How to Install Visual Studio Code on Ubuntu 22.04 https://tecadmin.net/how-to-install-visual-studio-code-on-ubuntu-22-04/ https://tecadmin.net/how-to-install-visual-studio-code-on-ubuntu-22-04/#respond Mon, 23 May 2022 03:31:00 +0000 https://tecadmin.net/?p=29463 Visual Studio Code is an optimized, feature-rich code editor for building web and cloud applications, which is developed by Microsoft. It includes features like embedded Git, supports debugging, syntax highlighting, intelligent code completion, snippets, and code refactoring. The Visual Studio Code is freely available for most modern operating systems like Windows, Linux (RPM and Debian [...]

The post How to Install Visual Studio Code on Ubuntu 22.04 appeared first on TecAdmin.

]]>
Visual Studio Code is an optimized, feature-rich code editor for building web and cloud applications, which is developed by Microsoft. It includes features like embedded Git, supports debugging, syntax highlighting, intelligent code completion, snippets, and code refactoring.

The Visual Studio Code is freely available for most modern operating systems like Windows, Linux (RPM and Debian installations are also available), and macOS.

This tutorial will help you to install Visual Studio Code on Ubuntu 22.04 LTS Linux system using Apt package manager and using snap package.

Prerequisites

In order to install VS Code, you must have sudo privileges or root account access to the Ubuntu 22.04 system.

Installing Visual Studio Code on Ubuntu

Visual Studio Code is available as the Snap package as well official apt repository with the Debian package. Choose one of the below methods as per your choice.

Method 1: Install VS Code Using Apt Repository

Follow the below steps to install Visual Studio Code on Ubuntu from the official Apt repository.

  1. First of all, execute the following commands to import the GPG key to the system that is used to verify packages before installation:
    curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg 
    sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg 
    
  2. Microsoft official provides an Apt repository for the installation of VS Code on Debian-based systems. To enable the Visual Studio code Apt repository, type:
    echo "deb [arch=amd64] http://packages.microsoft.com/repos/vscode stable main" | sudo \
       tee /etc/apt/sources.list.d/vs-code.list 
    
  3. Once you successfully added the repository to your system, Execute the following commands to install Visual Studio Code on the Ubuntu system.
    sudo apt update 
    sudo apt install code 
    

    Press ‘y’ for any confirmation prompted by the installer.

The above steps will complete the VS Code installation on a Ubuntu system.

Rather than the above steps, you can also install VS Code from Snapcraft. The installation instructions are below:

Method 2: Install VS Code Using Snap Package

The Ubuntu 22.04 already have installed Snapd service. You can directly install the Visual Studio Code on a Ubuntu system with the below-mentioned command:

sudo snap install code --classic 

The above command will download the latest VS Code snap package and install it on your system. Once the installation is completed successfully, you will see the following output.

Installing Visual Studio Code on Ubuntu
Installing Visual Studio Code using Snap

That’s it. The Visual Studio Code snap package has been successfully installed on your system.

Using the Visual Studio Code

Now, The Visual Studio Code has been installed on your Ubuntu 22.04 system. To launch the application type “code” in the search application and click on it.

Installing Visual Studio Code on Ubuntu
Access Visual Studio Code Application

The Visual Studio Code editor is ready to use.

How to Install Visual Studio Code on Ubuntu 22.04
Running Visual Studio Code on Ubuntu

The Visual Studio Code provides you with a large number of extensions that extends functionality like C#, Python, JavaScript, Google Chrome, etc. Install the required extensions to enhance your working experience with the Visual Studio Code.

Upgrade Visual Studio Code on Ubuntu

The VS Code team is actively developing the application. So you will receive security packages, features, or a full software upgrade from time to time. It’s recommended to upgrade VS Code:

  • If you have installed VS Code from the Apt repository, execute the following commands:
    sudo apt update && sudo apt install code 
    
  • Snapd users not to worry about manual upgrades. The service automatically upgrades the packages in the background.

Delete (Remove) Visual Studio Code

  • The users who have installed VS Code from Apt repository can remove packages with the following commands:
    sudo apt remove --purge code 
    sudo apt auto-remove 
    
  • The snap package can be removed with the following command:
    sudo snap remove code 
    

Conclusion

In this tutorial, you have learned two steps for the installation of Visual Studio Code on a Ubuntu 22.04 LTS Linux system.

The post How to Install Visual Studio Code on Ubuntu 22.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-visual-studio-code-on-ubuntu-22-04/feed/ 0
How to Install NetBeans IDE 12 on Fedora 35/34 https://tecadmin.net/how-to-install-netbeans-on-fedora/ https://tecadmin.net/how-to-install-netbeans-on-fedora/#respond Fri, 25 Jun 2021 02:45:49 +0000 https://tecadmin.net/?p=23509 NetBeans is an open-source integrated development environment for the application development on Windows, Mac, Linux, and Solaris operating systems. It offers excellent debugging capabilities, coding, plugins, and extensions with multiple out-of-the-box features. The NetBeans is widely used by the PHP and Java application developers. A shell script is provided by the official team for easier [...]

The post How to Install NetBeans IDE 12 on Fedora 35/34 appeared first on TecAdmin.

]]>
NetBeans is an open-source integrated development environment for the application development on Windows, Mac, Linux, and Solaris operating systems. It offers excellent debugging capabilities, coding, plugins, and extensions with multiple out-of-the-box features. The NetBeans is widely used by the PHP and Java application developers.

A shell script is provided by the official team for easier installation of Netbeans on Linux systems. However, we can also use the Snap package to install the latest NetBeans IDE on the Fedora system quickly.

This tutorial will help you to install NetBeans IDE on a Fedora system using the Snap package manager.

Prerequisites

  • A Running Fedora with Desktop access.
  • Minimum 2GB RAM required.
  • The Java Development Kit (JDK) stable versions (8, 11), or the latest unstable version.

Step 1 – Installing Java (JDK)

NetBeans required Java Development Kit (JDK) to be installed on your system. If your system doesn’t have Java, use the below command to install the latest Java version.

sudo dnf install java-latest-openjdk java-latest-openjdk-devel 

After installation checks the active Java version.

java -version 

openjdk version "16.0.1" 2021-04-20
OpenJDK Runtime Environment 21.3 (build 16.0.1+9)
OpenJDK 64-Bit Server VM 21.3 (build 16.0.1+9, mixed mode, sharing)

Step 2 – Installing NetBeans on Fedora

Use one of the below methods to install NetBeans IDE on a Fedora Linux system. The first method uses the Snap packages, which provide a straightforward installation method. The next method uses a shell script provided by the official Netbeans team, In that method, you can install NetBeans under a specific user account also.

Method 1: How to Install NetBeans on Fedora Using Snap

The installation of Snap packages required Snapd daemon to be running on your system. Snapd is responsible for the application installation, updates, and removal of packages.

You can install snapd (if not available) by executing the following command:

sudo dnf install snapd 

Then enable the Snapd deamon service and start it:

sudo systemctl enable snapd 
sudo systemctl start snapd 

To enable the classic snap support, use the following command to create a symbolic link between /var/lib/snapd/snap and /snap:

sudo ln -s /var/lib/snapd/snap /snap 

Your system is ready to install Netbeans via Snap packages. Execute the following command to install Netbeans IDE on Fedora Linux using snap packages.

sudo snap install netbeans --classic 

On successful installation, you will see the below output:

netbeans 12.4 from Apache NetBeans✓ installed

That’s it, You have successfully installed NetBeans IDE on your Fedora system.

Method 2: How to Install Netbeans on Fedora Using Shell Script

Download the latest NetBeans IDE installer from the official download page. This is a common NetBeans IDE installer script (Apache-NetBeans-12.4-bin-linux-x64.sh) for all the Linux-based distribution.

You can also use the below command to download the NetBeans IDE 12.4 installer script with the following command.

wget https://downloads.apache.org/netbeans/netbeans/12.4/Apache-NetBeans-12.4-bin-linux-x64.sh

Once the download is finished, make the installer script executable with the following command.

chmod +x Apache-NetBeans-12.4-bin-linux-x64.sh 

Now, issue the below command to start the installation process. This required the Graphical interface (Desktop) to open the installation wizard.

./Apache-NetBeans-12.4-bin-linux-x64.sh 

Follow the on-screen instructions to complete the installation. The first page shows a welcome screen, Here it provides an option to customize the installation. Click Next to continue.

FEdora Netbeans Installer Welcome Screen

On the next screen, the installer will ask you to accept the license agreement term. Read the terms and accept them by clicking the checkbox and clicking Next to continue to the installation wizard.

Fedora Netbeans accept license

In the next step, select a directory path for the installation of Netbeans in your Fedora system. By default, it will create a directory under the logged-in user home directory. Select a directory and click Next to continue to the wizard.

Next, allow the Netbeans to enable auto-updates of the installed plugins. Select the check box and click Install to complete the installation process.

Autoupdate Netbeans in Fedora

Wow, I got the message installation completed successfully. It also creates a launch icon on your desktop. Click the Finish button to close wizard. Next, restart your Fedora system and Launch NetBeans IDE.

Installing netbeans on Fedora

Step 3 – Running NetBeans Application

Search for the NetBeans under the applications. You will see the NetBeans launcher icon like the below screenshot. Click on the launcher button to start.

Launch the Netbeans IDE on Fedora

Netbeans will be started on your Fedora system.

Installing Netbeans IDE on Fedora

Step 4 – Remove NetBeans from Fedora

Once you no more needed NetBeans IDE, you can erase it from your system. Use the following command to remove Netbeans from a Fedora system installed with Snap packages.

sudo snap remove netbeans 

Output:

netbeans removed

Conclusion

This tutorial provides you with the instructions to install NetBeans IDE on the Fedora Linux system.

The post How to Install NetBeans IDE 12 on Fedora 35/34 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-netbeans-on-fedora/feed/ 0
How to Install Sublime Text 3 on Ubuntu 20.04 https://tecadmin.net/how-to-install-sublime-text-on-ubuntu-20-04/ https://tecadmin.net/how-to-install-sublime-text-on-ubuntu-20-04/#respond Wed, 19 Aug 2020 14:40:15 +0000 https://tecadmin.net/?p=22171 Sublime is a powerful text editor that supports multiple programming languages. It is a popular text editor among developers. In this tutorial, you will find 2 methods of installing Sublime text editor on the Ubuntu 20.04 systems. The first method uses Snapd package manager and another method uses official PPA for the package installation. It’s [...]

The post How to Install Sublime Text 3 on Ubuntu 20.04 appeared first on TecAdmin.

]]>
Sublime is a powerful text editor that supports multiple programming languages. It is a popular text editor among developers.

In this tutorial, you will find 2 methods of installing Sublime text editor on the Ubuntu 20.04 systems. The first method uses Snapd package manager and another method uses official PPA for the package installation. It’s your choice to select a method of Sublime installation on the Ubuntu 20.04 LTS system.

You may also like => Installing Visual Studio Code on Ubuntu 20.04

Method 1 – Install Sublime with Snapd on Ubuntu 20.04

The Sublime text snappy package is available for Ubuntu 20.04 system. Snapd is also the default available for this operating system.

To install Sublime-text latest version, type:

sudo snap install sublime-text --classic 

This will take a few moments and sublime is ready to use on your system.

Method 2 – Install Sublime with PPA on Ubuntu 20.04

You can also use the sublime official Apt repository for the installation of Sublime on Ubuntu 20.04 systems. First, import gpg key to your system by running command:

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - 

Next, add the Sublime text Apt PPA to your Ubuntu system by executing the following command:

echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list 

Your system is prepared for the Sublime installation from the official PPA. Now use the following commands to install Sublime text’s latest version on your Ubuntu system.

sudo apt update 
sudo apt install sublime-text 

Once the above command is finished. Sublime will be installed on your system.

Access Sublime Editor on Ubuntu

You can search for “sublime” under all applications on your system. You will see the sublime icon there like below.

Launch sublime text on Ubuntu 20.04

Click on the Sublime icon to launch the application.

Installing Sublime text on Ubuntu 20.04

Conclusion

In this tutorial, you have learned about two methods of Sublime installation on the Ubuntu 20.04 system.

The post How to Install Sublime Text 3 on Ubuntu 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-sublime-text-on-ubuntu-20-04/feed/ 0
How to Install NetBeans on Ubuntu 20.04 https://tecadmin.net/install-netbeans-on-ubuntu-20-04/ https://tecadmin.net/install-netbeans-on-ubuntu-20-04/#comments Fri, 05 Jun 2020 15:39:58 +0000 https://tecadmin.net/?p=21283 NetBeans is a popular IDE for Java and other application development. Which allows applications to be developed from a set of modular software components called modules. NetBeans is available to run on popular operating systems like Windows, macOS, Linux, and Solaris systems. This tutorial helps you to install Netbeans IDE on your Ubuntu 20.04 LTS [...]

The post How to Install NetBeans on Ubuntu 20.04 appeared first on TecAdmin.

]]>
NetBeans is a popular IDE for Java and other application development. Which allows applications to be developed from a set of modular software components called modules. NetBeans is available to run on popular operating systems like Windows, macOS, Linux, and Solaris systems.

This tutorial helps you to install Netbeans IDE on your Ubuntu 20.04 LTS Linux system.

Prerequisites

Apache NetBeans IDE requires Java 8 or later Java Development Kit installed on your system. To install Java on your system, execute the following command

sudo apt install default-jdk

Install Netbeans on Ubuntu

We use the snap package to install Netbeans IDE on the Ubuntu Linux system. The latest Ubuntu system has default Snapd installed for application installation. Open a terminal on your system and run the following command to install Netbeans IDE.

sudo snap install netbeans --classic

On successfull install, you will se output like below:

netbeans 11.3 from Apache NetBeans* installed

Running Netbeans IDE

Search for the Netbeans under the applications. You will see the NetBeans launcher icon like the below screenshot. Click on the launcher button to start.

start netbeans on Ubuntu 20.04

Netbeans will be started on your Ubuntu system.

installing netbeans Ubuntu 20.04

Remove Netbeans

Once you don’t need Netbeans on your system. Use the following command to remove Netbeans from your Ubuntu system using the snap command.

sudo snap remove netbeans

Conclusion

In this tutorial, you have learned to install Netbeans IDE using Snap packages on the Ubuntu system.

The post How to Install NetBeans on Ubuntu 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/install-netbeans-on-ubuntu-20-04/feed/ 5
How to Install Android Studio on Ubuntu 20.04 https://tecadmin.net/how-to-install-android-studio-on-ubuntu-20-04/ https://tecadmin.net/how-to-install-android-studio-on-ubuntu-20-04/#respond Sat, 16 May 2020 13:49:01 +0000 https://tecadmin.net/?p=21262 Android Studio is a popular programming environment for creating Android applications. It was developed by Google and is available for multiple platforms. We’ll look at how to get Android Studio on Linux in this article. Android Studio includes a number of built-in capabilities that provide you with a quick and stable working environment. It also [...]

The post How to Install Android Studio on Ubuntu 20.04 appeared first on TecAdmin.

]]>
Android Studio is a popular programming environment for creating Android applications. It was developed by Google and is available for multiple platforms. We’ll look at how to get Android Studio on Linux in this article.

Android Studio includes a number of built-in capabilities that provide you with a quick and stable working environment. It also offers a solid testing infrastructure that includes multi-display support, emulators, and other features. It’s based on IntelliJ IDEA, an IDE written in Java for Java applications for desktops and mobile phones.

The following section is focussing on how to get Android Studio if you are a Linux user, especially Ubuntu. Let’s begin:

How to install Android Studio on Ubuntu 20.04

01. Android Studio is built on Java so you need to install the latest version of Java first otherwise you won’t be able to install the android studio. You can get it by utilizing the command mentioned below:

sudo apt update 
sudo apt install default-jre 

Installing JRE on Ubuntu 20.04

02. Now you need to install the android studio repository where this application resides and then later, we can fetch this application from the repository. For that you need to type the following command in the terminal:

sudo add-apt-repository ppa:maarten-fonville/android-studio 

Adding Android Studio PPA on Ubuntu 20.04

03. Now all the necessary steps required for the installations are completed. You can install the android application by typing:

sudo apt install android-studio 

Installing Android Studio on Ubuntu 20.04

04. It will ask for your permission to install it where you need to press “Y” to start the application. This application is around 950MB and will take some time to install. After the installation you can run the application by selecting the application manager and then write “android” in the search bar as shown below:

Launch Android Studio on Ubuntu 20.04

05. After opening the application it will first ask for some of the basic settings like you want a “Standard” or “Custom” installation. You can change the GUI display to “Light” or “Dark” as well.

After the basic settings are completed, then it will ask for permission to install some of the updates that are necessary for this application to work correctly as shown below.

Android Studio First Launch Settings

06. When you select this application, then first it will install some of the necessary updates and then later it will open the application. After that, the application will be open and its main screen is shown below:

A Running Android Studio  on Ubuntu 20.04

Now, this application is ready to be used.

Conclusion

Mobile applications have made everything easy and simple, whether it is ordering food or a ride, they have made lives easier. Android is the dominating operating system in the smartphone market, and to create android applications Android studio is used which is a multi-platform application. This article has provided you all the steps required to configure and install the Android Studio on Ubuntu 20.04 LTS.

The post How to Install Android Studio on Ubuntu 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-android-studio-on-ubuntu-20-04/feed/ 0
How to Install Visual Studio Code on Ubuntu 20.04 https://tecadmin.net/install-visual-studio-code-ubuntu-20-04/ https://tecadmin.net/install-visual-studio-code-ubuntu-20-04/#comments Mon, 04 May 2020 15:21:47 +0000 https://tecadmin.net/?p=21287 Visual Studio Code is an optimized, feature-rich code editor for building web and cloud applications. It is developed by the Microsoft team. It includes features like embedded Git, supports debugging features, syntax highlighting, intelligent code completion, snippets, and code refactoring. The Visual Studio Code is freely available for most modern operating systems like Windows, Linux [...]

The post How to Install Visual Studio Code on Ubuntu 20.04 appeared first on TecAdmin.

]]>
Visual Studio Code is an optimized, feature-rich code editor for building web and cloud applications. It is developed by the Microsoft team. It includes features like embedded Git, supports debugging features, syntax highlighting, intelligent code completion, snippets, and code refactoring.

The Visual Studio Code is freely available for most modern operating systems like Windows, Linux (RPM and Debian installation are also available), and macOS.

This tutorial will help you to install Visual Studio Code editor on Ubuntu 20.04 using Apt repository as well as the snap tool.

Prerequisites

Before continuing for Visual Studio Code installation on Ubuntu 20.04:

  • Login to Ubuntu as sudo privileged user
  • For the newly installed systems, required to complete initial server setup

Step 1 – Install Visual Studio Code

Choose one of the below methods to install Visual Studio Code on your Ubuntu system. The Ubuntu 20.04 LTS preferred to use snap tool instead of Apt for packages installation. So, we are providing installation method with snap tool first.

  • Method 1 – How to Install VS Code using Snap

    The snap package contains all the requirements for any application. So just execute the below command on your system terminal:

    sudo snap install code --classic
    

    It will download the eclipse IDE snap package and install on your machine. Once the installation completed successfully, you will see the following output.

    install vs code ubuntu

    The snap package has been installed on your system.

    Next method will instruct you to install visual studio code using the apt package manager. But if you already have installed using snap tool, skip next method.

  • Method 2 – How to Install VS Code with PPA

    First, Import the GPG key to your system to verify packages before installation. To import gpg key, type:

    curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
    sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
    

    Microsoft team provides an repository for the Debian packages installation. To enable the Visual Studio code Apt repository, type:

    echo "deb [arch=amd64] http://packages.microsoft.com/repos/vscode stable main" | sudo \
       tee /etc/apt/sources.list.d/vs-code.list
    

    Once you successfully added the repository to your system, Execute the following commands to install Visual Studio Code on Ubuntu system.

    sudo apt update
    sudo apt install code
    

Step 3 – Launch Visual Studio Code

Now, The Visual Studio Code has been installed on your Ubuntu 20.04 system. To launch the application type “code” in search application and click on it.

launch vs code ubuntu

The Visual Studio Code editor is ready to use.

Visual Studio Code on Ubuntu

There are a large number of extensions available for Visual Studio Code like C#, Python, JavaScript, Google Chrome etc. Install the required extensions to enhance your working experience with the Visual Studio Code.

Conclusion

This tutorial helps you to install Visual Studio Code on your Ubuntu 20.04 LTS system.

The post How to Install Visual Studio Code on Ubuntu 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/install-visual-studio-code-ubuntu-20-04/feed/ 1
How to Install Eclipse IDE on Ubuntu 20.04 https://tecadmin.net/install-eclipse-ide-ubuntu-20-04/ https://tecadmin.net/install-eclipse-ide-ubuntu-20-04/#comments Fri, 01 May 2020 03:09:07 +0000 https://tecadmin.net/?p=21280 Eclipse is an integrated development environment (IDE) used in computer programming. Eclipse really is the best IDE for Java applications development. Most of the Java programmers preferred to use Eclipse for the Development environment. It contains a base workspace and an extensible plug-in system for customizing the environment. This tutorial will help you to install [...]

The post How to Install Eclipse IDE on Ubuntu 20.04 appeared first on TecAdmin.

]]>
Eclipse is an integrated development environment (IDE) used in computer programming. Eclipse really is the best IDE for Java applications development. Most of the Java programmers preferred to use Eclipse for the Development environment. It contains a base workspace and an extensible plug-in system for customizing the environment.

This tutorial will help you to install Eclipse IDE on Ubuntu 20.04 using snap tool.

Prerequisites

Before continuing for Eclipse installation on Ubuntu 20.04:

  • Login to Ubuntu as sudo privileged user
  • For the newly installed systems, required to complete initial server setup
  • Step 1 – Install Java

    Eclipse required Java runtime environment to be installed on your system. If you already have Java installed, skip this step. To install Java type:

    sudo apt update
    sudo apt install openjdk-11-jdk
    

    The JDK package also contains JRE. It will also required to compile a Java program on your system. On the other hand, Use next tutorial, to install specific Java version.

    Step 2 – Install Eclipse

    Ubuntu 20.04 preferred to use snap for package installation instead of using apt package manager. To install Eclipse IDE on your machine type:

    sudo snap install eclipse --classic
    

    It will download the eclipse IDE snap package and install on your machine. Once the installation completed successfully, you will see the following output.

    installing eclipse ide ubuntu 20.04

    Step 3 – Start Eclipse IDE

    Now, The Eclipse IDE has been installed on your Ubuntu 20.04 system. Search for the Eclipse launcher in and click on it.

    Start eclipse on Ubuntu

    During the launch, Eclipse will ask you to set a Workplace. This will be default location for your Eclipse to save files of your application’s build on Eclipse.

    Check the checkbox “Use this as the default and do not ask again” to make this location as default with next launch. click launch button to start eclipse:

    Eclipse set workplace

    Eclipse IDE running on your Ubuntu 20.04 system.

    To disable to welcome screen on next launch, Remove check of “Always show the Welcome at start up” n bottom-right of the IDE.

    Eclipse on Ubuntu 20.04

    Conclusion

    You have installed Eclipse IDE on your Ubuntu 20.04 LTS system. Let’s start working with your application.

    The post How to Install Eclipse IDE on Ubuntu 20.04 appeared first on TecAdmin.

    ]]> https://tecadmin.net/install-eclipse-ide-ubuntu-20-04/feed/ 1 How to Install Eclipse 4.8 on Fedora 28-25 and CentOS/RHEL 7/6 https://tecadmin.net/install-eclipse-fedora/ https://tecadmin.net/install-eclipse-fedora/#respond Thu, 18 Jan 2018 17:26:34 +0000 https://tecadmin.net/?p=14757 Eclipse is a powerful IDE for various programming languages. In this how-to guide, we used Eclipse for Java EE developers. You can download Eclipse version required for your and the remaining steps are similar for all. Let’s follow the tutorial to install Eclipse Oxygen 4.8 on Fedora 28,27,26,25 and CentOS 7,6. Step 1 – Prerequisites [...]

    The post How to Install Eclipse 4.8 on Fedora 28-25 and CentOS/RHEL 7/6 appeared first on TecAdmin.

    ]]>
    Eclipse is a powerful IDE for various programming languages. In this how-to guide, we used Eclipse for Java EE developers. You can download Eclipse version required for your and the remaining steps are similar for all. Let’s follow the tutorial to install Eclipse Oxygen 4.8 on Fedora 28,27,26,25 and CentOS 7,6.

    Step 1 – Prerequisites

    Eclipse required Java to be installed on your system. Make sure you have proper Java installed. If you don’t have Java installed, Use below link for the JDK/JRE installation on your system.

    Step 2 – Download Eclipse

    Eclipse IDE is available for Java EE developers, JAVA developers, PHP developer, C and C++ developers, JavaScript developers, and many other programmers. You can download required IDE from its official website.

    Download Eclipse from here

    For this tutorial, I have download Eclipse IDE for Java EE developers. You have other options available on download page.

    Step 3 – Configure Eclipse IDE

    I assume you have downloaded Eclipse source code (eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz). Extract the Eclipse archive file under /usr/local directory. It’s not a recommended location, you can change this location as you want. After extract, a directory named eclipse will be created.

    tar -zxvf eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz -C /usr/local/
    

    It’s ready to use Eclipse application. Simply create an eclipse binary symbolic link to make it accessible system-wide.

    ln -s /usr/local/eclipse/eclipse /usr/bin/eclipse
    

    Type eclipse on command prompt to launch the Eclipse IDE. Follow the next step to create an Eclipse desktop launcher.

    Step 4 – Configure Eclipse Launcher

    The Eclipse IDE is accessible from the command line. In this step create a desktop launcher for the Eclipse. In this step simply create an eclipse.desktop file on your system at below location.

    vim /usr/share/applications/eclipse.desktop
    

    Add the entry to file and save it.

    [Desktop Entry]
    Name=Eclipse
    Comment=Eclipse IDE
    Type=Application
    Encoding=UTF-8
    Exec=/usr/bin/eclipse
    Icon=/usr/local/eclipse/icon.xpm
    Categories=GNOME;Application;Development;
    Terminal=false
    StartupNotify=true
    

    Now search the Eclipse in GNOME search, You will find the icon as below screenshot. Click this launcher to launch Eclipse IDE.

    Eclipse IDE Fedora Luancher

    Eclipse IDE Fedora

    Step 5 – Enable Java 9 Support to Eclipse

    The users with Java 9 needs to enable the support of Java 9 in your Eclipse. Visit below link to enable Java 9 support in your Eclipse IDE.

    https://marketplace.eclipse.org/content/java-9-support-beta-oxygen

    The post How to Install Eclipse 4.8 on Fedora 28-25 and CentOS/RHEL 7/6 appeared first on TecAdmin.

    ]]>
    https://tecadmin.net/install-eclipse-fedora/feed/ 0
    How to Install Eclipse 4.8 on Ubuntu 18.04 & 16.04 LTS https://tecadmin.net/install-eclipse-ubuntu/ https://tecadmin.net/install-eclipse-ubuntu/#comments Mon, 08 Jan 2018 18:38:53 +0000 https://tecadmin.net/?p=14705 This how-to tutorial will help you to install and configure Eclipse IDE for Java Enterprise developers on your Ubuntu and Linuxmint systems. Eclipse provides IDE for various programming languages, testing etc. In this how-to guide, we used Eclipse for Java EE developers. You can download Eclipse version required for your and the remaining steps are [...]

    The post How to Install Eclipse 4.8 on Ubuntu 18.04 & 16.04 LTS appeared first on TecAdmin.

    ]]>
    This how-to tutorial will help you to install and configure Eclipse IDE for Java Enterprise developers on your Ubuntu and Linuxmint systems. Eclipse provides IDE for various programming languages, testing etc. In this how-to guide, we used Eclipse for Java EE developers. You can download Eclipse version required for your and the remaining steps are similar for all. Let’s follow the tutorial to install Eclipse Oxygen 4.8 Photon R for Java EE developers.

    Step 1 – Prerequisites

    Eclipse required Java to be installed on your system. Make sure you have proper Java installed. If you don’t have Java installed, Use below link for the JDK/JRE installation on your system.

    Install Java on Ubuntu and LinuxMint
    Install Java on Debian

    Step 2 – Download Eclipse

    Eclipse IDE is available for Java EE developers, JAVA developers, PHP developer, C and C++ developers, JavaScript developers, and many other programmers. You can download required IDE from its official website.

    Download Eclipse from here

    For this tutorial, I have download Eclipse IDE for Java EE developers. You have other options available on download page.

    Step 3 – Configure Eclipse IDE

    I assume you have downloaded Eclipse source code (eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz). Extract the Eclipse archive file under /opt directory. It’s not a recommended location, you can change this location as you want. After extract, a directory named eclipse will be created.

    tar -zxvf eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz -C /opt
    

    It’s ready to use the Eclipse application. Simply create an eclipse binary symbolic link to make it accessible system-wide.

    ln -s /opt/eclipse/eclipse /usr/local/bin/eclipse
    

    Type eclipse on command prompt to launch the Eclipse IDE. Follow the next step to create an Eclipse desktop launcher.

    Step 4 – Configure Eclipse Launcher

    The Eclipse IDE is accessible from the command line. In this step create a desktop launcher for the Eclipse. In this step simply create an eclipse.desktop file at below location.

    vim /usr/share/applications/eclipse.desktop
    

    Add the entry to file and save it.

    [Desktop Entry]
    Name=Eclipse
    Comment=Eclipse IDE
    Type=Application
    Encoding=UTF-8
    Exec=/usr/local/bin/eclipse
    Icon=/opt/eclipse/icon.xpm
    Categories=GNOME;Application;Development;
    Terminal=false
    StartupNotify=true
    

    Now search the Eclipse in GNOME search, You will find the icon as below screenshot. Click this launcher to launch Eclipse IDE.

    Step 5 – Enable Java 9 Support to Eclipse

    Are you using Java 9? if yes, you need to enable the support of Java 9 in your Eclipse workspace. Visit below link to enable Java 9 support.

    https://marketplace.eclipse.org/content/java-9-support-beta-oxygen

    The post How to Install Eclipse 4.8 on Ubuntu 18.04 & 16.04 LTS appeared first on TecAdmin.

    ]]>
    https://tecadmin.net/install-eclipse-ubuntu/feed/ 2
    How to Install Sublime Text Editor on Fedora with DNF https://tecadmin.net/install-sublime-text-editor-fedora/ https://tecadmin.net/install-sublime-text-editor-fedora/#comments Sun, 10 Sep 2017 04:56:02 +0000 https://tecadmin.net/?p=13552 Sublime Text is a powerful text editor also available for Linux systems. It has lots of features which you must love to use. This article will help you for installing Sublime Text 2 and Sublime Text 3 on Fedora systems using DNF package manager. Recommended => Install Visual Studio Code Editor in Fedora Features Below [...]

    The post How to Install Sublime Text Editor on Fedora with DNF appeared first on TecAdmin.

    ]]>
    Sublime Text is a powerful text editor also available for Linux systems. It has lots of features which you must love to use. This article will help you for installing Sublime Text 2 and Sublime Text 3 on Fedora systems using DNF package manager.

    Features

    Below is some listed available features in Sublime text. You can also visit sublime text website for more details.

    • Editing files side by side.
    • Sublime Text is available for various plateform including OS X.
    • It provides functionality to find and replace with regular expressions.
    • We can make batch edits with multiple Selections.
    • Using sublime multiple selections, we can rename variables quickly.
    • The Command Palette gives fast access to functionality.
    • Using goto anything to quickly navigate between files.
    • Using goto anything can also be used to show a function, line or word within a file.

    Sublime Text Editor Installation

    Use the sublime official yum repository for the installation on Fedora systems. Open a terminal and import the gpg key used for packages signed on your system.

    sudo rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
    

    Now, Add the Sublime text yum repository to your system using DNF command.

    sudo dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
    

    Let’s install sublime text latest version on your system by executing the following command

    sudo dnf install sublime-text
    

    Access Sublime Text Editor

    Use system navigation menubar to access Sublime Text editor.

    Happy coding.

    The post How to Install Sublime Text Editor on Fedora with DNF appeared first on TecAdmin.

    ]]>
    https://tecadmin.net/install-sublime-text-editor-fedora/feed/ 8