From 67392ffe33096d5820a85b7d219545f7ccce12aa Mon Sep 17 00:00:00 2001 From: Raghav Agarwal <52325383+imraghavagr@users.noreply.github.com> Date: Tue, 3 May 2022 10:24:06 +0530 Subject: [PATCH 1/3] Update terminal based installation in Linux.md --- content/software/ide-v1/tutorials/Linux/Linux.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/content/software/ide-v1/tutorials/Linux/Linux.md b/content/software/ide-v1/tutorials/Linux/Linux.md index e5d5e5ea8b..2e8b694250 100644 --- a/content/software/ide-v1/tutorials/Linux/Linux.md +++ b/content/software/ide-v1/tutorials/Linux/Linux.md @@ -27,7 +27,19 @@ The file is compressed and you have to extract it in a suitable folder, remember Open the **arduino-1.6.x** folder just created by the extraction process and spot the **install.sh** file. Right click on it and choose **Run in Terminal** from the contextual menu. The installation process will quickly end and you should find a new icon on your desktop. -If you don't find the option to run the script from the contextual menu, you have to open a Terminal window and move into the **arduino-1.6.x** folder. Type the command **assets/install.sh** and wait for the process to finish. You should find a new icon on your desktop. +If you don't find the option to run the script from the contextual menu, you have to open a Terminal window and move into the **arduino-1.6.x** folder or the folder of the version that you downloaded and run the following command: +``` +sudo sh assets/install.sh +``` +NOTE: +- Remove 'sudo' keyword if already running terminal with administrative rights. +- The folder structure of the latest 1.8.19 version does not have 'assets' folder in it and the 'intall.sh' is directly placed in the "arduino-1.8.19" folder. In this case run the following command: +``` +sudo sh install.sh +``` + + +You should find a new icon on your desktop. ![Running the installation script.](assets/Linux_Install_2.jpg) From 03100f31daa955e643345f21e4ee4595915d4fd0 Mon Sep 17 00:00:00 2001 From: Raghav Agarwal <52325383+imraghavagr@users.noreply.github.com> Date: Mon, 9 May 2022 22:07:02 +0530 Subject: [PATCH 2/3] Update installation instructions in Linux.md Update installation instructions in Linux.md as per the discussion. --- content/software/ide-v1/tutorials/Linux/Linux.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/content/software/ide-v1/tutorials/Linux/Linux.md b/content/software/ide-v1/tutorials/Linux/Linux.md index 2e8b694250..814658705c 100644 --- a/content/software/ide-v1/tutorials/Linux/Linux.md +++ b/content/software/ide-v1/tutorials/Linux/Linux.md @@ -27,16 +27,14 @@ The file is compressed and you have to extract it in a suitable folder, remember Open the **arduino-1.6.x** folder just created by the extraction process and spot the **install.sh** file. Right click on it and choose **Run in Terminal** from the contextual menu. The installation process will quickly end and you should find a new icon on your desktop. -If you don't find the option to run the script from the contextual menu, you have to open a Terminal window and move into the **arduino-1.6.x** folder or the folder of the version that you downloaded and run the following command: +If you don't find the option to run the script from the contextual menu, you have to open a Terminal window and move into the **arduino-1.6.x** root directory and run the following command: + ``` -sudo sh assets/install.sh +sudo sh install.sh ``` NOTE: +- For version>=1.6.5 - Remove 'sudo' keyword if already running terminal with administrative rights. -- The folder structure of the latest 1.8.19 version does not have 'assets' folder in it and the 'intall.sh' is directly placed in the "arduino-1.8.19" folder. In this case run the following command: -``` -sudo sh install.sh -``` You should find a new icon on your desktop. From d63afcc56662c81edaf1c3433deaab0bd7277be4 Mon Sep 17 00:00:00 2001 From: Raghav Agarwal <52325383+imraghavagr@users.noreply.github.com> Date: Mon, 9 May 2022 22:43:12 +0530 Subject: [PATCH 3/3] Update content/software/ide-v1/tutorials/Linux/Linux.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Pablo Marquínez Ferrándiz --- content/software/ide-v1/tutorials/Linux/Linux.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/software/ide-v1/tutorials/Linux/Linux.md b/content/software/ide-v1/tutorials/Linux/Linux.md index 814658705c..49aea97cdb 100644 --- a/content/software/ide-v1/tutorials/Linux/Linux.md +++ b/content/software/ide-v1/tutorials/Linux/Linux.md @@ -32,9 +32,7 @@ If you don't find the option to run the script from the contextual menu, you hav ``` sudo sh install.sh ``` -NOTE: -- For version>=1.6.5 -- Remove 'sudo' keyword if already running terminal with administrative rights. +***This method only works for versions greater or equal than 1.6.5. Remove `sudo` keyword if already running the terminal with administrative rights.*** You should find a new icon on your desktop.