How to install CLion 2022.3 on a Chromebook


Today we are looking at how to install CLion 2022.3 on a Chromebook.

If you have any questions, please contact us via a Rumble comment and we would be happy to assist you!

Please use the video as a visual guide, and the commands and links below to install it on your Chromebook.

We are on social media! For announcements, content release updates (across all our projects), and much more, please join our Reddit community!
https://www.reddit.com/r/linuxmadesimple/


1) 00:05 (time stamp in the video)
We start the process by enabling the Linux Container on our Chromebook.  You can al
ways remove it again in the future as well if needed.

To enable it, we go to the settings of our Chromebook, inside of it, we click on the "Advance" option in the left panel, and then the "Developers" section. Then enable Linux from there as seen in the video.

2) 00:38
Now we continue to the next phase in the tutorial and that is to run several commands in our Linux terminal, which will install CLion.

Some general facts about the terminal.  To paste a command into the Linux terminal, press "Ctrl Shift v" together.  After you paste a command into the Linux terminal, please press "enter" to run it.  At some commands you will see a question to press Y or n to continue.  If you see it press "enter" to continue.

2.1)  This command will update the repositories of our Linux container.

sudo apt update

2.2) 01:12 This command will install some packages which the application requires and a menu editor which we will use later in the tutorial.  The Y and n question will appear in this command, please press "enter" then.

sudo apt install clang* g++ build-essential default-jdk menulibre

2.3)
01:51 This command will downalod the Linux CLion installer.

wget https://download.jetbrains.com/cpp/CLion-2022.3.tar.gz

2.4) 
02:13 This command will extract the installer.

tar -xf CLion-2022.3.tar.gz

2.5) 02:34 This command will launch CLion from the terminal, to make sure that it works.

./clion-2022.3/bin/clion.sh

2.6) 03:27 This command will launch a menu editor, which we installed with the second command.  Please use my video as a guide here on how to use it.  In the process, you will choose a category on where to save the launcher, create a launcher, to rename the launcher, to choose the CLion executable as the command and to save the launcher.

menulibre

3) 04:24 Now we will launch JetBrains CLion.

Enjoy!

Comments