How to install the Arduino IDE on CentOS 8

Arduino IDE stands for 'Arduino Integrated Development Environment'. Arduino is used to make electronic devices that communicate with their environment using actuators and sensors.

The Arduino IDE contains an editor that is used to write and upload programs to the Arduino board. Before starting to create projects via Arduino, users need to set up the IDE for the programmable board.

1. Install the Arduino IDE on CentOS 8

You will need to do the following steps on Terminal to install the Arduino IDE on CentOS 8:

  1. Download the Arduino IDE setup file
  2. Extract the downloaded archive
  3. Install the Arduino script
  4. Launch the Arduino IDE

Details are as follows:

1. Open a command line window with the shortcut Ctrl + Alt + T or click Activities displayed on the left corner of the screen to open Terminal on CentOS 8.0.

2. Login as the root user from the system. Run su command on Terminal .

2. Download the Arduino IDE

To install the Arduino IDE on your system, you will need the Arduino IDE setup file. Open the Arduino download page and select the latest Arduino 1.8.12 version of the Arduino IDE currently available. You will choose the Arduino IDE supported for your Linux system architecture, either 32-bit or 64-bit.

Another alternative is to download it with the wget command on Terminal. Enter the following command on Terminal to download the latest Arduino version 1.8.12:

wget https://downloads.arduino.cc/arduino-1.8.12-linux64.tar.xz

As you can see in the image above, after completing the download, a file named arduino-1.8.12-linux.tar.xz has been saved on the system. This downloaded file will be stored in the main directory of the system.

3. Extract the downloaded archive

Now, you will unzip the archive using the tar command. Execute the following command in Terminal to extract the file:

tar -xvf arduino-1.8.12-linux64.tar.xz

After executing the above command, you will see the file extraction process taking place in Terminal.

How to install the Arduino IDE on CentOS 8 Picture 1

4. Install the Arduino script

Once the file decompression is complete, it's time to run the script to install the Arduino IDE on CentOS 8.0. You will go to unzip arduino-1.8.12 folder and then run the script on Terminal to install the Arduino IDE.

cd arduino-1.8.12/ sudo ./install.sh

How to install the Arduino IDE on CentOS 8 Picture 2

5. Launch the Arduino IDE

You will now launch the Arduino IDE from the desktop. Click Activities and choose to display the application form where you will launch the Ardunio IDE to double-click the application icon.

You can also launch with the search bar, clicking Activities where you can see the search bar. Enter Arduino in the search bar.

How to install the Arduino IDE on CentOS 8 Picture 3

The Arduino IDE will show up on the desktop after you search. Now, you can work on Arduino IDE using CentOS 8.0.

5 ★ | 2 Vote

May be interested

  • How to create and run a shell script in Ubuntu 20.04 LTSPhoto of How to create and run a shell script in Ubuntu 20.04 LTS
    shell is the command interpreter written by the user. script shell helps users write and execute multiple commands at the same time. in this article, you will learn how to execute shell scripts through command line input.
  • How to Create Your Own Linux Distribution Using YoctoPhoto of How to Create Your Own Linux Distribution Using Yocto
    did you know that you can create your own linux distro with a little coding experience? building your own distro has the advantage that you can customize every aspect to suit your specific needs.
  • The reason and how to edit sudoers file in LinuxPhoto of The reason and how to edit sudoers file in Linux
    in a linux or macos system, there is a file called 'sudoers' that controls the deepest levels of your system permissions. it allows or denies a user to gain superuser access and holds some special options for sudo.
  • How to use sudo without password in LinuxPhoto of How to use sudo without password in Linux
    if you're the only one using your linux computer, why let it keep asking for passwords? let's see how you can use sudo without having to enter your password every time through the following article.
  • How to fix 'No Installation Candidate' error in UbuntuPhoto of How to fix 'No Installation Candidate' error in Ubuntu
    have you tried to install something, but ubuntu can't handle it? apt mentions something related to no installation candidate what does this mean, where does the source of the problem come from, and is it fixable?
  • How to enable Dark Mode in Ubuntu 20.04 LTSPhoto of How to enable Dark Mode in Ubuntu 20.04 LTS
    if you have ever used dark mode on a mobile phone, then you will be surprised to learn that it is also available on linux computers. in this tutorial, tipsmake.com will show you how to enable dark mode on a full ubuntu linux system.