{"id":18302,"date":"2023-03-11T15:26:08","date_gmt":"2023-03-11T15:26:08","guid":{"rendered":"https:\/\/www.how2shout.com\/linux\/?p=18302"},"modified":"2024-03-20T07:38:14","modified_gmt":"2024-03-20T07:38:14","slug":"install-google-chrome-on-debian-12-bookworm","status":"publish","type":"post","link":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/","title":{"rendered":"How to Install Google Chrome on Debian 12 BookWorm"},"content":{"rendered":"\n<p><em>Mozilla FireFox is already there on all Debian Linux as a default browser. However, those who are interested in setting up Google Chrome on Debian 12 bookworm, can see this guide.&nbsp;<\/em><\/p>\n\n\n\n<p>Google which is behind the Chrome browser already made its browser popular, powerful, and stable to fulfill the demands of daily internet surfing. Moreover, because it is a default browser on Android phones, syncing between the PC and mobile browser is one of the reasons why users prefer to use Chrome on desktops, even on Linux.<\/p>\n\n\n\n<p>On the other hand, Debian 12 Bookworm is the upgrade to the existing long-term supported version of <strong>Debian i.e 11 Bullseye.<\/strong> So, if you are a server user then you wouldn&#8217;t like to switch to Bookworm (which was still in the testing phase while writing this article). Whereas Desktop users surely want to try their hands on it to experience the latest features and additions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-installing-google-chrome-in-debian-12-linux\">Installing Google Chrome in Debian 12 Linux<\/h2>\n\n\n\n<p>Although we have performed this guide to configure Chrome browser on Debian 12, this step-by-step guide can be used for<a href=\"https:\/\/www.how2shout.com\/linux\/install-chrome-browser-on-debian-11-bullseye-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\"> Debian 11 Bullseye as well.<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-requirements\">Requirements<\/h3>\n\n\n\n<p>The prerequisites required to install Google Chrome on Debian 12 are not new, it is like any other software installation for Linux. That is <strong>sudo or root <\/strong>user access and active <strong>internet<\/strong> connectivity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-start-with-updating\">Start with updating<\/h3>\n\n\n\n<p>Might be there are some updates available that must be on your Debian 12 to mitigate the package compatibility issues. Also, running the system update command will rebuild the package index cache for APT, so that it could recognize the latest versions available to install through the system default or added repositories.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt update &amp;&amp; sudo apt upgrade<\/code><\/pre>\n\n\n\n<p>Also, install <strong>curl <\/strong>and <strong>apt-transport-https<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install apt-transport-https curl -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-google-chrome-linux-signing-key\">Google Chrome Linux signing key<\/h3>\n\n\n\n<p>We can go without adding the digital GPG key used to sign the packages of Chrome browser for the Debian Linux systems. But later while installing the browser, the system will generate errors and refuse to install any package from the repository of Chrome. Therefore, it is better to add the GPG key first and then the repository using the next step.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">curl -fSsL https:\/\/dl.google.com\/linux\/linux_signing_key.pub | sudo gpg --dearmor | sudo tee \/usr\/share\/keyrings\/google-chrome.gpg &gt;&gt; \/dev\/null<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-adding-the-google-chrome-repository-to-debian-12\">Adding the Google Chrome repository to Debian 12<\/h3>\n\n\n\n<p>With the addition of the GPG key, we can go for the official Google Chrome repository that offers the packages we require to install the browser in Debian Linux including Bookworm. So, in your, terminal copy-paste the given command and hit the <strong>Enter <\/strong>key.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">echo deb [arch=amd64 signed-by=\/usr\/share\/keyrings\/google-chrome.gpg] http:\/\/dl.google.com\/linux\/chrome\/deb\/ stable main | sudo tee \/etc\/apt\/sources.list.d\/google-chrome.list<\/code><\/pre>\n\n\n\n<p>To refresh the APT cache, once again run the system update command after adding the repository.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt update<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-installing-google-chrome-on-debian-12\">Installing Google Chrome on Debian 12<\/h3>\n\n\n\n<p>We have configured all the required things we need to download the latest stable Chrome version on Debian Linux. Next &#8211;<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Type the following command into the terminal: <code>sudo apt install google-chrome-stable<\/code><\/li>\n\n\n\n<li>Press <code>Y<\/code> when prompted to confirm the installation.<\/li>\n\n\n\n<li>Wait for the installation to complete.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"668\" height=\"260\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2023\/03\/apt-install-google-chrome-stable-debian.png\" alt=\"apt install google chrome stable debian\" class=\"wp-image-18308\" title=\"apt install google chrome stable debian\"\/><\/figure>\n\n\n\n<p>That&#8217;s it! You\u2019ve successfully installed Google Chrome on your Debian Linux system.<\/p>\n\n\n\n<p>However, the above command will only provide the <strong>stable version<\/strong> but there are many developers or other users who wish to go for the <strong>testing <\/strong>versions such as <strong>Beta <\/strong>and <strong>Unstable<\/strong>. So, if you are one of them then, here are the commands:<\/p>\n\n\n\n<p><strong>For the Beta browser version<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install google-chrome-beta<\/code><\/pre>\n\n\n\n<p><strong>For an Unstable browser version<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install google-chrome-unstable<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-run-chrome-on-debian-gui-and-terminal\">Run Chrome on Debian &#8211; GUI and Terminal<\/h3>\n\n\n\n<p>After completing the installation of the browser version you want, we can start the browser either using the <strong>graphical user interfac<\/strong>e the Debian or its <strong>Terminal<\/strong>. Here we show how to use both.<\/p>\n\n\n\n<p><strong>For GUI:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click on the <strong>Activities&nbsp;<\/strong><\/li>\n\n\n\n<li>Go to the <strong>Search<\/strong> box<\/li>\n\n\n\n<li>Type <strong>chrome<\/strong> and as its icon appears click to run the same.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"890\" height=\"353\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2023\/03\/Run-Google-Chrome-on-Debian-using-GUI.png\" alt=\"Run Google Chrome on Debian using GUI\" class=\"wp-image-18311\"\/><\/figure>\n\n\n\n<p><strong>For Terminal&nbsp;<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open the <strong>command<\/strong> terminal, you can select it by clicking on the <strong>Activities<\/strong> link given in the <strong>Taskbar<\/strong> and then searching for the same.<\/li>\n\n\n\n<li>After that as per the edition of <strong>Chrome <\/strong>you have installed on <strong>Debian 12<\/strong>, use the given commands:<\/li>\n\n\n\n<li>For <strong>Stable<\/strong>&#8211; <code>google-chrome-stable<\/code><\/li>\n\n\n\n<li>To start <strong>beta<\/strong>&#8211; <code>google-chrome-beta<\/code><\/li>\n\n\n\n<li>For running <strong>unstable<\/strong>&#8211; <code>google-chrome-unstable<\/code><\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"899\" height=\"600\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png\" alt=\"Open Chrome on Debian using Terminal\" class=\"wp-image-18310\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-updating-and-managing-google-chrome-on-debian-linux\">Updating and managing Google Chrome on Debian Linux<\/h3>\n\n\n\n<p>It\u2019s important to keep your software up to date to ensure that you have the latest security patches and bug fixes. So, in the future, if there is some upgrade available for Google Chrome on Debian 12 Linux, then here are the commands to follow:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Type the following command into the Debian 12 terminal: <code>sudo apt update<\/code><\/li>\n\n\n\n<li>Run the upgrade command: <code>sudo apt upgrade google-chrome-stable<\/code><\/li>\n\n\n\n<li>Press<code> Y <\/code>when prompted to confirm the update.<\/li>\n\n\n\n<li>Wait for the process to complete.<\/li>\n\n\n\n<li>Similarly, you can upgrade the <strong>Beta <\/strong>and <strong>Unstable <\/strong>versions of the browser as well.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-chrome-uninstallation-from-debian\">Chrome Uninstallation from Debian<\/h3>\n\n\n\n<p>If you encounter any issues during the installation of Google Chrome on Debian 12&nbsp; Linux and want to remove it then here is the command to follow. However, if&nbsp; you think it is some dependency issues, try installing the missing dependencies by typing the following command into the terminal: <code>sudo apt-get install -f<\/code><\/p>\n\n\n\n<p><strong>Whereas, <\/strong>those who don&#8217;t want the browser anymore or facing any installation errors, try <strong>removing<\/strong> the existing installation of <strong>Google Chrome<\/strong> by typing the following <strong>command<\/strong> into the <strong>terminal<\/strong>:<\/p>\n\n\n\n<p><strong>For stable:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt autoremove --purge google-chrome-stable<\/code><\/pre>\n\n\n\n<p><strong>For Beta:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt autoremove --purge google-chrome-beta<\/code><\/pre>\n\n\n\n<p><strong>For Unstable:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt autoremove --purge google-chrome-unstable<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-alternatives-to-google-chrome-for-debian-linux\">Alternatives to Google Chrome for Debian Linux<\/h3>\n\n\n\n<p>Nodoubt, the Chrome is a great browser to use on Debian Linux, however, if you are not satisfied with it then can go for other available <strong>alternative <\/strong>browsers such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Mozilla Firefox<\/strong>: Firefox is an open-source web browser and the default one in most Linux systems; it is known for its privacy and security features.<\/li>\n\n\n\n<li><strong>Chromium<\/strong>: Chromium is also an open-source web browser that Google uses to create its Chrome. If you don&#8217;t want to use propriety software, Chromium is an ideal open-source alternative with the same features as Google Chrome but is more lightweight.<\/li>\n\n\n\n<li><strong>Brave Browser<\/strong>: Brave Browser is a privacy-focused web browser that blocks ads and trackers by default.<\/li>\n\n\n\n<li><strong>Opera<\/strong>: Another popular browser with lots of user-friendly features. See: <a href=\"https:\/\/www.how2shout.com\/linux\/how-to-install-opera-browser-on-ubuntu-20-04-lts\/\">Opera browser on Ubuntu 20.04 | 22.04 LTS<\/a><\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-final-thoughts\">Final thoughts:<\/h4>\n\n\n\n<p>Installing Google Chrome on Debian 12 Linux is not a difficult task as you have witnessed, after going through this article. However, only go for it if you have some specific needs otherwise FireFox is enough to surf&nbsp;the internet.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mozilla FireFox is already there on all Debian Linux as a default browser. However, those who are interested in setting up Google Chrome on Debian 12 bookworm, can see this guide.&nbsp; Google which is behind the Chrome browser already made its browser popular, powerful, and stable to fulfill the demands of daily internet surfing. Moreover, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":18310,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","_mbp_gutenberg_autopost":false,"footnotes":""},"categories":[145],"tags":[155,3199],"class_list":{"0":"post-18302","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-debian","8":"tag-debian","9":"tag-debian-12"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Google Chrome on Debian 12 BookWorm<\/title>\n<meta name=\"description\" content=\"FireFox is already on Linux as a default browser. However, if you want to install Google Chrome on Debian 12 bookworm, can see this guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Google Chrome on Debian 12 BookWorm\" \/>\n<meta property=\"og:description\" content=\"FireFox is already on Linux as a default browser. However, if you want to install Google Chrome on Debian 12 bookworm, can see this guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxShout\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/how2shout\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-11T15:26:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-20T07:38:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png\" \/>\n\t<meta property=\"og:image:width\" content=\"899\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Heyan Maurya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:site\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Heyan Maurya\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/\"},\"author\":{\"name\":\"Heyan Maurya\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\"},\"headline\":\"How to Install Google Chrome on Debian 12 BookWorm\",\"datePublished\":\"2023-03-11T15:26:08+00:00\",\"dateModified\":\"2024-03-20T07:38:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/\"},\"wordCount\":1002,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Open-Chrome-on-Debian-using-Terminal.png\",\"keywords\":[\"Debian\",\"debian 12\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#respond\"]}],\"copyrightYear\":\"2023\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/\",\"name\":\"How to Install Google Chrome on Debian 12 BookWorm\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Open-Chrome-on-Debian-using-Terminal.png\",\"datePublished\":\"2023-03-11T15:26:08+00:00\",\"dateModified\":\"2024-03-20T07:38:14+00:00\",\"description\":\"FireFox is already on Linux as a default browser. However, if you want to install Google Chrome on Debian 12 bookworm, can see this guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Open-Chrome-on-Debian-using-Terminal.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Open-Chrome-on-Debian-using-Terminal.png\",\"width\":899,\"height\":600,\"caption\":\"Open Chrome on Debian 12 using Terminal\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/install-google-chrome-on-debian-12-bookworm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linux.how2shout.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Google Chrome on Debian 12 BookWorm\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"name\":\"LinuxShout\",\"description\":\"Find the open source solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"alternateName\":\"Linux how2shout\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linux.how2shout.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\",\"name\":\"LinuxShout\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"width\":503,\"height\":349,\"caption\":\"LinuxShout\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/how2shout\",\"https:\\\/\\\/x.com\\\/h2smedia\",\"https:\\\/\\\/instagram.com\\\/h2smedia\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/h2smedia\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/how2shout\",\"https:\\\/\\\/youtube.com\\\/h2smedia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\",\"name\":\"Heyan Maurya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"caption\":\"Heyan Maurya\"},\"description\":\"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...\",\"sameAs\":[\"https:\\\/\\\/www.how2shout.com\\\/\"],\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/author\\\/heyan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Google Chrome on Debian 12 BookWorm","description":"FireFox is already on Linux as a default browser. However, if you want to install Google Chrome on Debian 12 bookworm, can see this guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Google Chrome on Debian 12 BookWorm","og_description":"FireFox is already on Linux as a default browser. However, if you want to install Google Chrome on Debian 12 bookworm, can see this guide.","og_url":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/","og_site_name":"LinuxShout","article_publisher":"https:\/\/www.facebook.com\/how2shout","article_published_time":"2023-03-11T15:26:08+00:00","article_modified_time":"2024-03-20T07:38:14+00:00","og_image":[{"width":899,"height":600,"url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png","type":"image\/png"}],"author":"Heyan Maurya","twitter_card":"summary_large_image","twitter_creator":"@h2smedia","twitter_site":"@h2smedia","twitter_misc":{"Written by":"Heyan Maurya","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#article","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/"},"author":{"name":"Heyan Maurya","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72"},"headline":"How to Install Google Chrome on Debian 12 BookWorm","datePublished":"2023-03-11T15:26:08+00:00","dateModified":"2024-03-20T07:38:14+00:00","mainEntityOfPage":{"@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/"},"wordCount":1002,"commentCount":4,"publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"image":{"@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png","keywords":["Debian","debian 12"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#respond"]}],"copyrightYear":"2023","copyrightHolder":{"@id":"https:\/\/linux.how2shout.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/","url":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/","name":"How to Install Google Chrome on Debian 12 BookWorm","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#primaryimage"},"image":{"@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png","datePublished":"2023-03-11T15:26:08+00:00","dateModified":"2024-03-20T07:38:14+00:00","description":"FireFox is already on Linux as a default browser. However, if you want to install Google Chrome on Debian 12 bookworm, can see this guide.","breadcrumb":{"@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#primaryimage","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/03\/Open-Chrome-on-Debian-using-Terminal.png","width":899,"height":600,"caption":"Open Chrome on Debian 12 using Terminal"},{"@type":"BreadcrumbList","@id":"https:\/\/linux.how2shout.com\/install-google-chrome-on-debian-12-bookworm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linux.how2shout.com\/"},{"@type":"ListItem","position":2,"name":"How to Install Google Chrome on Debian 12 BookWorm"}]},{"@type":"WebSite","@id":"https:\/\/linux.how2shout.com\/#website","url":"https:\/\/linux.how2shout.com\/","name":"LinuxShout","description":"Find the open source solutions","publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"alternateName":"Linux how2shout","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linux.how2shout.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/linux.how2shout.com\/#organization","name":"LinuxShout","url":"https:\/\/linux.how2shout.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","width":503,"height":349,"caption":"LinuxShout"},"image":{"@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/how2shout","https:\/\/x.com\/h2smedia","https:\/\/instagram.com\/h2smedia","https:\/\/www.linkedin.com\/company\/h2smedia\/","https:\/\/www.pinterest.com\/how2shout","https:\/\/youtube.com\/h2smedia"]},{"@type":"Person","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72","name":"Heyan Maurya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","caption":"Heyan Maurya"},"description":"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...","sameAs":["https:\/\/www.how2shout.com\/"],"url":"https:\/\/linux.how2shout.com\/author\/heyan\/"}]}},"_links":{"self":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/18302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/comments?post=18302"}],"version-history":[{"count":6,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/18302\/revisions"}],"predecessor-version":[{"id":22019,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/18302\/revisions\/22019"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media\/18310"}],"wp:attachment":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media?parent=18302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/categories?post=18302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/tags?post=18302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}