{"id":1600,"date":"2021-12-16T12:31:32","date_gmt":"2021-12-16T09:31:32","guid":{"rendered":"https:\/\/files2.tojikon.net\/files-cloud\/2021\/04\/20\/how-to-install-jetbrains-rubymine-on-linux\/https:\/\/files2.tojikon.net\/files-cloud\/2021\/04\/20\/how-to-install-jetbrains-rubymine-on-linux\/"},"modified":"2021-12-16T12:31:32","modified_gmt":"2021-12-16T09:31:32","slug":"how-to-install-jetbrains-rubymine-on-linux","status":"publish","type":"post","link":"https:\/\/tojikon.net\/en\/1600-how-to-install-jetbrains-rubymine-on-linux\/","title":{"rendered":"How to install JetBrains RubyMine on Linux"},"content":{"rendered":"<section id=\"related_posts\">\n<div class=\"block-head\">\n<h3>Related Articles<\/h3>\n<\/div>\n<\/section>\n<p>JetBrains RubyMine is an IDE Integrated development environment) for the Ruby programming language. It is a cross-platform application that works on Mac OS, Windows as well as Linux. In this guide, we\u2019ll show you how to install RubyMine on Linux.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-400166 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-install-jetbrains-rubymine-on-linux.png\" alt=\"JetBrains RubyMine on Linux\" width=\"1200\" height=\"683\"\/><\/p>\n<p>Note: JetBrains RubyMine is not a free application. Once the program is installed, you\u2019re allowed to use it as an evaluation copy. If you wish to purchase the program, you\u2019ll need to create a JetBrains account and buy a license.<\/p>\n<h2>Arch Linux installation instructions<\/h2>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-400165 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-install-jetbrains-rubymine-on-linux-2.png\" alt=\"\" width=\"1200\" height=\"824\"\/><\/p>\n<p>The JetBrains RubyMine application is available to Arch Linux users through the AUR. As the program is available as an Arch Linux AUR package, it will be able to install as a native Arch Linux package, allowing for regular updates.<\/p>\n<p>It should be noted that JetBrains doesn\u2019t officially support RubyMine through the AUR. However, the AUR package pulls the program files directly from the JetBrains website, so everything is safe to use.<\/p>\n<p>To start the installation of JetBrains RubyMine on your Arch Linux system, you\u2019ll need to install the \u201cgit\u201d and \u201cbase-devel\u201d packages. These packages are critical to installing programs through the AUR.\u00a0<\/p>\n<pre>\nsudo pacman -S git base-devel\n<\/pre>\n<p>After setting up the two packages, you\u2019ll need to download and install the Trizen AUR helper. This program will make installing the RubyMine application simpler instead of tedious.<\/p>\n<p>To get the Trizen AUR helper, start out by using the\u00a0<strong>git clone\u00a0<\/strong>command to download the package.\u00a0<\/p>\n<pre>\ngit clone https:\/\/aur.archlinux.org\/trizen.git\n<\/pre>\n<p>Once the package is downloaded to your computer, use the\u00a0<strong>CD\u00a0<\/strong>command to move into the \u201cTrizen\u201d folder. This folder has the Trizen PKGBUILD, a set of instructions that can be used to compile the program.<\/p>\n<pre>\ncd trizen\/\n<\/pre>\n<p>Install the Trizen AUR helper application using the\u00a0<strong>makepkg\u00a0<\/strong>command.\u00a0<\/p>\n<pre>\nmakepkg -sri\n<\/pre>\n<p>With the Trizen AUR helper downloaded and installed on your Linux PC, the installation can begin. Using the\u00a0<strong>trizen -S\u00a0<\/strong>command, set up the latest JetBrains RubyMine on Arch Linux.<\/p>\n<h2>Snap package installation instructions<\/h2>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-400166 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-install-jetbrains-rubymine-on-linux.png\" alt=\"\" width=\"1200\" height=\"683\"\/><\/p>\n<p>The RubyMine application is available as a Snap package for those who use Ubuntu and all Linux operating systems that support the Snap package format.\u00a0<\/p>\n<p>Installing the Snap version of RubyMine on Linux is easy. It starts by enabling the Snap package runtime (AKA Snapd). To do this, open up a terminal window on the Linux desktop. Then, install the \u201csnapd\u201d package on your computer with your package manager.<\/p>\n<p>After setting up the Snapd package on your system, you\u2019ll need to enable the \u201csnapd.socket\u201d service using Systemd. To do this, use the <strong>sudo systemctl enable \u2013now snapd.socket<\/strong> command. It\u2019ll turn on the runtime and prepare it for usage on your system.<\/p>\n<pre>\nsudo systemctl enable --now snapd.socket\n<\/pre>\n<p>With the Snapd runtime set up on your Linux PC, the installation of RubyMine can begin. Using the\u00a0<strong>snap install\u00a0<\/strong>command below, install the latest version of RubyMine.\u00a0<\/p>\n<p>Note: JetBrains RubyMine only works on Linux operating systems that support \u201cClassic\u201d mode. This mode requires AppArmor. For this reason, it will not work on OSes like Fedora as they do not use AppArmor.<\/p>\n<pre>\nsudo snap install rubymine --classic\n<\/pre>\n<h2>Generic Linux installation instructions<\/h2>\n<p>The RubyMine application supports all Linux distributions by way of a downloadable TarGZ installer. This installer covers every Linux distribution that doesn\u2019t have support through Snaps or the Arch Linux AUR.<\/p>\n<p>To get started installing RubyMine on your Linux system, you\u2019ll need to download the software to your computer. To download the software, head over to the RubyMine Linux download page and click on the \u201cDownload\u201d button.<\/p>\n<p>The download process may take a minute, as the RubyMine installer is roughly about 500 MB in size. When the process is complete, open up a terminal window with\u00a0<strong>Ctrl + Alt + T<\/strong> (or search for \u201cTerminal\u201d in the app menu), and use the\u00a0<strong>CD\u00a0<\/strong>command to move into \u201cDownloads.\u201d<\/p>\n<pre>\ncd ~\/Downloads\n<\/pre>\n<p>Inside of the \u201cDownloads\u201d directory, use the <strong>tar\u00a0<\/strong>command to decompress the installer TarGZ archive. This archive must be extracted, as the installation files are in it.<\/p>\n<pre>\ntar xvf RubyMine-*.tar.gz\n<\/pre>\n<p>With everything extracted, enter the RubyMine folder using the\u00a0<strong>CD\u00a0<\/strong>command.<\/p>\n<pre>\ncd RubyMine-*\/\n<\/pre>\n<p>In the RubyMine folder, access the \u201cbin\u201d directory. This folder houses the installer executable.<\/p>\n<pre>\ncd bin\n<\/pre>\n<p>To start the RubyMine installer, use the command below in a terminal window.<\/p>\n<pre>\n.\/rubymine.sh\n<\/pre>\n<p>When you start the RubyMine installer, a pop-up window will appear. In this window, you\u2019ll see \u201cConfig or installation directory. Leave it blank, and select \u201cDo not import settings.\u201d Then, select \u201cOK.\u201d<\/p>\n<p>After selecting \u201cOK,\u201d the Activation window will appear. Use this window to log into your username and account. Then, press\u00a0\u201cContinue\u201d to start using the app.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Related Articles JetBrains RubyMine is an IDE Integrated development environment) for the Ruby programming language. It is a cross-platform application that works on Mac OS, Windows as well as Linux. In this guide, we\u2019ll show you how to install RubyMine on Linux. Note: JetBrains RubyMine is not a free application. Once the program is installed, &hellip;<\/p>\n","protected":false},"author":1,"featured_media":1601,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[21],"tags":[33],"_links":{"self":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1600"}],"collection":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/comments?post=1600"}],"version-history":[{"count":0,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1600\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media\/1601"}],"wp:attachment":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media?parent=1600"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/categories?post=1600"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/tags?post=1600"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}