{"id":179591,"date":"2025-07-27T11:53:53","date_gmt":"2025-07-27T11:53:53","guid":{"rendered":"https:\/\/linuxiac.com\/?p=179591"},"modified":"2025-07-27T11:59:24","modified_gmt":"2025-07-27T11:59:24","slug":"how-to-install-google-chrome-on-rocky-linux-10","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/how-to-install-google-chrome-on-rocky-linux-10\/","title":{"rendered":"How to Install Google Chrome on Rocky Linux 10"},"content":{"rendered":"\n<p>Rocky Linux is an <a href=\"https:\/\/linuxiac.com\/what-is-enterprise-linux\/\" data-type=\"post\" data-id=\"114728\">enterprise-grade distribution<\/a> that&#8217;s fully compatible with RHEL and often used as a drop-in replacement. It&#8217;s especially known for being rock-solid on servers. But even though it\u2019s mainly geared toward server use, a lot of users choose it as a dependable desktop OS too.<\/p>\n\n\n\n<p>As you can expect, no desktop setup feels complete without a reliable web browser. If you&#8217;re someone who prefers using Google Chrome, here\u2019s a quick and easy step-by-step guide to get it up and running on your <a href=\"https:\/\/linuxiac.com\/rocky-linux-10-released-this-is-whats-new\/\" data-type=\"post\" data-id=\"172689\">Rocky Linux 10<\/a> system in just a few minutes.<\/p>\n\n\n\n<p>First, let&#8217;s clarify something &#8211; the browser isn\u2019t available in Rocky\u2019s software repositories for two straightforward reasons. First, it\u2019s not open-source\u2014and like other RHEL-based distros, Rocky only includes free and open-source software in its official repos.<\/p>\n\n\n\n<p>Furthermore, redistributing proprietary software like Chrome would require special permission from Google, which would bring on legal and logistical headaches. Of course, there\u2019s no issue installing it straight from Microsoft\u2019s official repositories\u2014and I\u2019ll show you exactly how to do that in just a moment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-google-chrome-on-almalinux-rocky-linux\">Install Google Chrome on  Rocky Linux 10<\/h2>\n\n\n\n<p>This tutorial will utilize&nbsp;the <code>sudo<\/code> command&nbsp;and assume that your current user has the necessary permissions to execute commands as a privileged user.<\/p>\n\n\n\n<p>To ensure that the packages we receive to install the Chrome browser are genuine, we should first download and import the Google-signed GPG key on our Rocky Linux 10 system. To do so, type the following two commands:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">curl -O https:\/\/dl.google.com\/linux\/linux_signing_key.pub\nsudo rpm --import --nodigest --nosignature linux_signing_key.pub<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-01.jpg\"><img decoding=\"async\" width=\"1024\" height=\"335\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-01-1024x335.jpg\" alt=\"Download and import the Google-signed GPG key.\" class=\"wp-image-179615\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-01-1024x335.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-01-380x124.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-01-768x251.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-01.jpg 1048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Download and import the Google-signed GPG key.<\/figcaption><\/figure>\n\n\n\n<p>As you can see in the screenshot above, the second command returns a few messages, but don\u2019t worry, they\u2019re just warnings. Here\u2019s the case.<\/p>\n\n\n\n<p>The <code>rpm<\/code> command complains about a handful of expired or SHA-1-signed subkeys that are still bundled in Google\u2019s keyring. However, Rocky 10 tracks CentOS Stream\/RHEL 10, and in May 2024, Red Hat completely removed support for SHA-1.<\/p>\n\n\n\n<p>At the same time, the current Google public key (\u201c<em>linux_signing_key.pub<\/em>\u201c) is still self-signed with SHA-1. This is why we use \u201c<em>\u2013nodigest \u2013nosignature<\/em>\u201d in the key import command. What I\u2019m trying to say is that this is completely on Google\u2019s end, so it\u2019s out of our hands.<\/p>\n\n\n\n<p>The good news is that the key you need is already in your RPM database, despite the warnings. And because the packages themselves are signed with RSA\/SHA-512, when installing the browser, the transaction will pass the GPG check. In other words, we can proceed safely with installing Google Chrome on Rocky 10.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-2-add-google-s-chrome-repository\">Step 2: Add Google\u2019s Chrome Repository<\/h3>\n\n\n\n<p>After importing the key, you must add the official Google Chrome repository to your Rocky 10 system. This implies that the update package will be made available with the rest of your system\u2019s regular updates when a new version is released.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo tee \/etc\/yum.repos.d\/google-chrome.repo &lt;&lt;<span class=\"hljs-string\">'EOF'<\/span>\n&#91;google-chrome]\nname=Google Chrome\nbaseurl=https:\/\/dl.google.com\/linux\/chrome\/rpm\/stable\/<span class=\"hljs-variable\">$basearch<\/span>\nenabled=1\ngpgcheck=1\ngpgkey=https:\/\/dl.google.com\/linux\/linux_signing_key.pub\nEOF<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-3-refresh-package-list\">Step 3: Refresh Package List<\/h3>\n\n\n\n<p>Before proceeding with the installation, you should update the package list. Run the below command to update the repository\u2019s index.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo dnf update<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-02.jpg\"><img decoding=\"async\" width=\"1024\" height=\"238\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-02-1024x238.jpg\" alt=\"Update package list.\" class=\"wp-image-179621\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-02-1024x238.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-02-380x88.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-02-768x179.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-02.jpg 1027w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Update package list.<\/figcaption><\/figure>\n\n\n\n<p>As you can see, your new Google Chrome repo is now available and ready for use.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Install Google Chrome on Rocky Linux 10<\/h3>\n\n\n\n<p>We\u2019re now all set. To install the Chrome browser on your Rocky 10 system, run the following command:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">sudo dnf install google-chrome-stable<\/code><\/span><\/pre>\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-03.jpg\"><img decoding=\"async\" width=\"1024\" height=\"525\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-03-1024x525.jpg\" alt=\"Install Google Chrome on Rocky Linux 10.\" class=\"wp-image-179624\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-03-1024x525.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-03-380x195.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-03-768x393.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-03.jpg 1052w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Install Google Chrome on Rocky Linux 10.<\/figcaption><\/figure>\n\n\n\n<p>Wait for the installation to finish\u2014it should only take a few seconds. But before you open the browser for the first time, let\u2019s take care of something on the visual side. Here\u2019s what to do.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Fix the Missing Chrome Icon in the App Menu (Optional)<\/h3>\n\n\n\n<p>If you open the list of applications in the GNOME Dash, you might be a bit surprised to see that Google Chrome isn\u2019t showing its usual icon. Instead, it\u2019s using a generic placeholder\u2014the default icon for apps without an assigned icon.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04.jpg\"><img decoding=\"async\" width=\"1024\" height=\"640\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04-1024x640.jpg\" alt=\"Missing Google Chrome icon in GNOME Dash.\" class=\"wp-image-179630\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04-1024x640.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04-380x238.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04-768x480.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04-1536x960.jpg 1536w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-04.jpg 1680w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Missing Google Chrome icon in GNOME Dash.<\/figcaption><\/figure>\n\n\n\n<p>This only happens if you\u2019re using the default icon theme that comes with Rocky Linux 10, which just doesn\u2019t include an icon for Chrome. But no worries\u2014we\u2019ll have that fixed in no time. Run the two commands below.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo curl -L https:\/\/www.google.com\/chrome\/static\/images\/chrome-logo.svg -o \/usr\/share\/icons\/hicolor\/scalable\/apps\/google-chrome.svg\nsudo gtk-update-icon-cache \/usr\/share\/icons\/hicolor<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-05.jpg\"><img decoding=\"async\" width=\"1024\" height=\"208\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-05-1024x208.jpg\" alt=\"Fixing the missing Google Chrome icon.\" class=\"wp-image-179636\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-05-1024x208.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-05-380x77.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-05-768x156.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-05.jpg 1060w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Fixing the missing Google Chrome icon.<\/figcaption><\/figure>\n\n\n\n<p>The first command uses Curl to download the official Chrome logo in SVG format directly from Google\u2019s servers and saves it to the appropriate icon directory. The second refreshes the GTK icon cache for the hicolor icon theme.<\/p>\n\n\n\n<p>Then, log out of your Rocky 10 system and log back in. Chrome should now show up in your list of applications with its familiar icon\u2014the one we all know and recognize.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06.jpg\"><img decoding=\"async\" width=\"1024\" height=\"640\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06-1024x640.jpg\" alt=\"The missing Google Chrome icon has been fixed.\" class=\"wp-image-179639\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06-1024x640.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06-380x238.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06-768x480.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06-1536x960.jpg 1536w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-06.jpg 1680w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">The missing Google Chrome icon has been fixed.<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Run Google Chrome<\/h3>\n\n\n\n<p>That\u2019s all. Click on the icon to run Google Chrome. The first time you\u2019ll have the chance to make it your default browser. You can also choose to \u201c<em>Automatically send usage statistics and crash reports to Google<\/em>.\u201d It is up to you whether you want to enable this or not. Make your choices, and then click the \u201c<em>OK<\/em>\u201d button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-07.jpg\"><img decoding=\"async\" width=\"992\" height=\"290\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-07.jpg\" alt=\"Set up Google Chrome\u2019s initial settings.\" class=\"wp-image-179642\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-07.jpg 992w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-07-380x111.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-07-768x225.jpg 768w\" sizes=\"(max-width: 992px) 100vw, 992px\" \/><\/a><figcaption class=\"wp-element-caption\">Set up Google Chrome\u2019s initial settings.<\/figcaption><\/figure>\n\n\n\n<p>Google Chrome will start. Happy browsing!<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08.jpg\"><img decoding=\"async\" width=\"1024\" height=\"640\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08-1024x640.jpg\" alt=\"Google Chrome web browser successfully installed on Rocky Linux 10.\" class=\"wp-image-179648\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08-1024x640.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08-380x238.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08-768x480.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08-1536x960.jpg 1536w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/07\/rocky10-install-chrome-08.jpg 1680w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Google Chrome web browser successfully installed on Rocky Linux 10.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"uninstall-google-chrome\">Uninstall Google Chrome<\/h2>\n\n\n\n<p>If you decide to remove the Google Chrome browser from your Rocky Linux 10 system for some reason, you can do it quickly and easily by typing the command shown below:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo dnf remove google-chrome-stable<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>And that\u2019s it! Installing Google Chrome on an Enterprise Linux setup, such as Rocky  Linux 10, is quick and straightforward once you know the right steps.<\/p>\n\n\n\n<p>Keep in mind that the installation process shown in this guide adds Google\u2019s official Chrome repository to your system, allowing the browser to <a href=\"https:\/\/linuxiac.com\/how-to-set-up-automatic-updates-on-rocky-linux-almalinux\/\">receive the latest updates automatically<\/a> whenever you update your system via the Software app or <a href=\"https:\/\/linuxiac.com\/dnf-command-linux\/\">using the DNF command<\/a>.<\/p>\n\n\n\n<p>Thanks for your time! I hope you find this guide helpful. Thank you for using it, and as always, your comments are greatly appreciated. Happy browsing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Need Google Chrome on your Enterprise Linux system? Here\u2019s how to install it on Rocky Linux 10.<\/p>\n","protected":false},"author":10,"featured_media":179594,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,4417],"tags":[3636,4439,5417,3254],"class_list":["post-179591","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-linux-knowledge","tag-browsers","tag-chrome","tag-enterprise-linux","tag-rocky-linux"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/179591","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/comments?post=179591"}],"version-history":[{"count":0,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/179591\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/179594"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=179591"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=179591"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=179591"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}