{"id":25980,"date":"2024-02-29T15:30:11","date_gmt":"2024-02-29T15:30:11","guid":{"rendered":"https:\/\/linuxways.net\/?p=25980"},"modified":"2024-02-29T15:30:11","modified_gmt":"2024-02-29T15:30:11","slug":"install-deb-files-ubuntu-22-04","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/ubuntu\/install-deb-files-ubuntu-22-04\/","title":{"rendered":"How to Install Deb Files on Ubuntu 22.04"},"content":{"rendered":"<p>The deb is the default installable file format for Linux distros including Ubuntu. The deb file enables you to install local applications on Ubuntu. Even though you can install applications from the Ubuntu Software store with one click. But there comes a time when the software you are looking for is not available in the Ubuntu Software store. In that scenario, you can install that application through the deb file on Ubuntu 22.04.<\/p>\n<p>The deb file can be downloaded from the official website of the respective application you want to install either through a web browser or using the wget command line tool.<\/p>\n<p><strong>Outline:<\/strong><\/p>\n<ul>\n<li><a href=\"#post-25980-_pv37djsw4kpy\">How to Install Deb Files on Ubuntu 22.04<\/a><\/li>\n<li><a href=\"#post-25980-_hgxo52iz7cmv\">How to Remove Deb Files from Ubuntu 22.04<\/a><\/li>\n<li><a href=\"#post-25980-_i1p51v2bq7bq\">Conclusion<\/a><\/li>\n<\/ul>\n<h2><a id=\"post-25980-_pv37djsw4kpy\"><\/a>How to Install Deb Files on Ubuntu 22.04<\/h2>\n<p>The deb files on Ubuntu can be installed using:<\/p>\n<ul>\n<li><a href=\"#post-25980-_1i4xc9zet3u0\">Terminal<\/a><\/li>\n<li><a href=\"#post-25980-_5jnlipymsm4y\">GUI<\/a><\/li>\n<\/ul>\n<h2><a id=\"post-25980-_1i4xc9zet3u0\"><\/a>How to Install Deb Files on Ubuntu 22.04 Using Terminal<\/h2>\n<p>Linux Terminal offers three methods to install deb packages on the Ubuntu system, including:<\/p>\n<ul>\n<li><a href=\"#post-25980-_cyiubk3724of\">apt Package Manager<\/a><\/li>\n<li><a href=\"#post-25980-_xjvy1vxbyc28\">dpkg Package Manager<\/a><\/li>\n<li><a href=\"#post-25980-_467y9y51pw2\">GDebi Package Installer<\/a><\/li>\n<\/ul>\n<h3><a id=\"post-25980-_cyiubk3724of\"><\/a>Method 1: Install Deb Files on Ubuntu Using apt Package Manager<\/h3>\n<p>The apt is the default package manager for Ubuntu. It can install, remove, and update deb packages on Ubuntu. Installing deb packages on Ubuntu through apt is the official and trusted way. Combine the <strong>apt<\/strong> command with the <strong>install<\/strong> command and provide the package path to install the deb application on Ubuntu.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<p>This is the syntax to install the deb package using the apt package manager on Ubuntu:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> apt <span class=\"kw2\">install<\/span> <span class=\"br0\">&#91;<\/span>package-path<span class=\"br0\">&#93;<\/span><\/div><\/div>\n<p>You can install the deb file on Ubuntu 22.04 by running the given command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> apt <span class=\"kw2\">install<\/span> ~<span class=\"sy0\">\/<\/span>Downloads<span class=\"sy0\">\/<\/span>google-chrome-stable.deb<\/div><\/div>\n<p>Replace the deb package path with your desired package path:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"817\" height=\"224\" class=\"wp-image-25994\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-1.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-1.png 817w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-1-300x82.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-1-768x211.png 768w\" sizes=\"auto, (max-width: 817px) 100vw, 817px\" \/><\/p>\n<p>When the Terminal asks for a user password, enter the password to authenticate the package installation process.<\/p>\n<p>After installing the deb file, check its version to verify whether it was installed or not by placing the &#8211;version flag alongside the package name, as shown below:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\">google-chrome <span class=\"re5\">--version<\/span><\/div><\/div>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"815\" height=\"115\" class=\"wp-image-26000\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-2.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-2.png 815w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-2-300x42.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-2-768x108.png 768w\" sizes=\"auto, (max-width: 815px) 100vw, 815px\" \/><\/p>\n<p><strong>Note: <\/strong>You can also navigate to the desired deb file location and install it through the below-given command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> apt <span class=\"kw2\">install<\/span> .<span class=\"sy0\">\/<\/span>deb_file<\/div><\/div>\n<p>Remember to replace the deb file with your desired deb file.<\/p>\n<h3><a id=\"post-25980-_xjvy1vxbyc28\"><\/a>Method 2: Install a Deb File on Ubuntu Through dpkg<\/h3>\n<p>The dpkg is the package manager in Ubuntu that works with .deb packages. It can remove, install, configure, or update deb packages on Ubuntu. To install the deb package using the dpkg package manager, combine the dpkg command with the <strong>-i<\/strong> flag and provide the application path.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<p>Here is the command syntax to install the deb package on Ubuntu 22.04 using the dpkg package manager:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> <span class=\"kw2\">dpkg<\/span> <span class=\"re5\">-i<\/span> <span class=\"br0\">&#91;<\/span>package-path<span class=\"br0\">&#93;<\/span><\/div><\/div>\n<p>Run the mentioned command to install the deb package on Ubuntu 22.04:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> <span class=\"kw2\">dpkg<\/span> <span class=\"re5\">-i<\/span> ~<span class=\"sy0\">\/<\/span>Downloads<span class=\"sy0\">\/<\/span>google-chrome-stable.deb<\/div><\/div>\n<p>Remember to replace the package path with your deb package path:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"267\" class=\"wp-image-26011\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-3.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-3.png 816w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-3-300x98.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-3-768x251.png 768w\" sizes=\"auto, (max-width: 816px) 100vw, 816px\" \/><\/p>\n<h3><a id=\"post-25980-_467y9y51pw2\"><\/a>Method 3: Install Deb Files on Ubuntu Using the GDebi Package Installer<\/h3>\n<p>GDebi is another tool to install deb packages on Ubuntu 22.04. GDebi allows the users to install deb packages through both Terminal and GUI methods. It is more reliable and fast when it comes to installing deb files on Linux systems.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<p>Here is the syntax to install the deb file on Ubuntu using the GDebi package installer:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> gdebi <span class=\"br0\">&#91;<\/span>package-path<span class=\"br0\">&#93;<\/span><\/div><\/div>\n<p><strong>Step 1: Install GDebi Package Installer<\/strong><\/p>\n<p>The GDebi application does not come preinstalled on Ubuntu, so you need to install it first. Execute the given command to install GDebi on Ubuntu:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> apt <span class=\"kw2\">install<\/span> gdebi <span class=\"re5\">-y<\/span><\/div><\/div>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"815\" height=\"245\" class=\"wp-image-26026\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-4.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-4.png 815w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-4-300x90.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-4-768x231.png 768w\" sizes=\"auto, (max-width: 815px) 100vw, 815px\" \/><\/p>\n<p><strong>Step 2: Install Deb Package Using GDebi Package Installer<\/strong><\/p>\n<p>To install the deb file on Ubuntu through the GDebi tool, specify the deb package path to the gdebi command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> gdebi ~<span class=\"sy0\">\/<\/span>Downloads<span class=\"sy0\">\/<\/span>google-chrome-stable.deb<\/div><\/div>\n<p>Remember to replace the package path with your deb package path:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"294\" class=\"wp-image-26035\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-5.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-5.png 816w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-5-300x108.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-5-768x277.png 768w\" sizes=\"auto, (max-width: 816px) 100vw, 816px\" \/><\/p>\n<h2><a id=\"post-25980-_5jnlipymsm4y\"><\/a>How to Install Deb Files on Ubuntu 22.04 Using GUI<\/h2>\n<p>To install deb files on Ubuntu via GUI, you can check these methods:<\/p>\n<ul>\n<li><a href=\"#post-25980-_v9ppk6jruz3e\">Ubuntu Software Application<\/a><\/li>\n<li><a href=\"#post-25980-_xjvy1vxbyc28\">GDebi Package Installer<\/a><\/li>\n<\/ul>\n<h3><a id=\"post-25980-_v9ppk6jruz3e\"><\/a>Method 1: Install Deb File on Ubuntu Using Ubuntu Software<\/h3>\n<p>Check the instructions provided below to install the deb file through the Ubuntu Software store:<\/p>\n<ul>\n<li>First, locate the deb package you want to install from the <strong>Files<\/strong> Explorer.<\/li>\n<\/ul>\n<p>Then, right-click on the deb package and select the highlighted option.<\/p>\n<ul>\n<li>After that, select <strong>Software Install<\/strong> and click <strong>Select<\/strong> to proceed:<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"765\" height=\"466\" class=\"wp-image-26048\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-6.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-6.png 765w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-6-300x183.png 300w\" sizes=\"auto, (max-width: 765px) 100vw, 765px\" \/><\/p>\n<ul>\n<li>Click on the<strong> Install<\/strong> button to install the application:<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"893\" height=\"296\" class=\"wp-image-26058\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-7.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-7.png 893w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-7-300x99.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-7-768x255.png 768w\" sizes=\"auto, (max-width: 893px) 100vw, 893px\" \/><\/p>\n<ul>\n<li>Type the user password and click the Authenticate button to begin the deb package installation:<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"412\" height=\"379\" class=\"wp-image-26066\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-8.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-8.png 412w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-8-300x276.png 300w\" sizes=\"auto, (max-width: 412px) 100vw, 412px\" \/><\/p>\n<h3><a id=\"post-25980-_l5366uowdrut\"><\/a>Method 2: Install Deb Files on Ubuntu Through GDebi Package Installer<\/h3>\n<p>The GDebi application allows the users to install the deb packages through its GUI interface. To install a deb package on Ubuntu using GDebi Package Installer, first, navigate to the folder where you have downloaded the deb file. Then, right-click on the deb file, then, select <strong>Open with Other Applications<\/strong> option. After that, choose <strong>GDebi Package Installer<\/strong> and hit <strong>Select<\/strong>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"767\" height=\"465\" class=\"wp-image-26075\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-9.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-9.png 767w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-9-300x182.png 300w\" sizes=\"auto, (max-width: 767px) 100vw, 767px\" \/><\/p>\n<ul>\n<li>Lastly, click on the <strong>Install Package <\/strong>to begin the installation:<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"548\" height=\"434\" class=\"wp-image-26086\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-10.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-10.png 548w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-10-300x238.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-10-150x120.png 150w\" sizes=\"auto, (max-width: 548px) 100vw, 548px\" \/><\/p>\n<h2><a id=\"post-25980-_hgxo52iz7cmv\"><\/a>How to Remove Deb Files from Ubuntu 22.04<\/h2>\n<p>The methods to remove the deb files are the same as were used for installing the deb packages. Check these methods to remove deb packages from Ubuntu:<\/p>\n<ul>\n<li><a href=\"#post-25980-_bov9uzv443q2\">apt Package Manager<\/a><\/li>\n<li><a href=\"#post-25980-_ymu55qt4qx29\">dpkg Package Manager<\/a><\/li>\n<li><a href=\"#post-25980-_pe9shdolcqrk\">Ubuntu Software Application<\/a><\/li>\n<li><a href=\"#post-25980-_6gircmgczcbl\">GDebi<\/a><\/li>\n<\/ul>\n<h3><a id=\"post-25980-_bov9uzv443q2\"><\/a>Method 1: Uninstall Deb Files from Ubuntu Using apt Package Manager<\/h3>\n<p>To remove the deb file from Ubuntu using apt, execute the mentioned command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> apt remove google-chrome-stable <span class=\"re5\">-y<\/span><\/div><\/div>\n<p>Make sure to change the deb file name <strong>google-chrome-stable<\/strong> when removing the deb package on your system:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"813\" height=\"201\" class=\"wp-image-26091\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-11.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-11.png 813w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-11-300x74.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-11-768x190.png 768w\" sizes=\"auto, (max-width: 813px) 100vw, 813px\" \/><\/p>\n<h3><a id=\"post-25980-_ymu55qt4qx29\"><\/a>Method 2: Uninstall Deb Files from Ubuntu Using dpkg Package Manager<\/h3>\n<p>Run the <strong>dpkg<\/strong> command along with the <strong>-r<\/strong> flag having the deb file name specified to it to remove the installed deb package from Ubuntu 22.04 using the dpkg manager:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"kw2\">sudo<\/span> <span class=\"kw2\">dpkg<\/span> <span class=\"re5\">-r<\/span> google-chrome-stable<\/div><\/div>\n<p>The <strong>-r<\/strong> flag is referred to as the remove command:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"815\" height=\"310\" class=\"wp-image-26095\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-12.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-12.png 815w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-12-300x114.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-12-768x292.png 768w\" sizes=\"auto, (max-width: 815px) 100vw, 815px\" \/><\/p>\n<p>Don\u2019t forget to replace the package with your desired deb package.<\/p>\n<h3><a id=\"post-25980-_pe9shdolcqrk\"><\/a>Method 3: Uninstall Deb Files from Ubuntu Using Ubuntu Software Application<\/h3>\n<p>To remove the deb package from Ubuntu 22.04, first, launch the <strong>Ubuntu Software<\/strong> application from the left-screen panel. Move to the <strong>Installed<\/strong> section. Locate the installed <strong>deb<\/strong> package and click <strong>Uninstall<\/strong>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"932\" height=\"404\" class=\"wp-image-26096\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-13.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-13.png 932w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-13-300x130.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-13-768x333.png 768w\" sizes=\"auto, (max-width: 932px) 100vw, 932px\" \/><\/p>\n<h3><a id=\"post-25980-_6gircmgczcbl\"><\/a>Method 4: Uninstall Deb Files from Ubuntu through GDebi Tool<\/h3>\n<p>To remove the deb file from Ubuntu 22.04 using GDebi, route to the directory containing the deb file, right-click on the file, then, click the <strong>Open with Other Application<\/strong> option. After that, choose the <strong>GDebi Package Installer<\/strong> option and hit the <strong>Select<\/strong> button. In the GDebi Package Installer, click on the <strong>Remove Package<\/strong>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"549\" height=\"431\" class=\"wp-image-26097\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-14.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-14.png 549w, https:\/\/linuxways.net\/wp-content\/uploads\/2024\/02\/word-image-25980-14-300x236.png 300w\" sizes=\"auto, (max-width: 549px) 100vw, 549px\" \/><\/p>\n<h2><a id=\"post-25980-_i1p51v2bq7bq\"><\/a>Conclusion<\/h2>\n<p>The deb is the default installable file that you can use to install local applications on Ubuntu. Users can install the deb package using GUI and Terminal methods on Ubuntu. For Terminal, use the dpkg package manager, apt package manager, and the GDebi package installer to install the deb files. While using GUI, you can use the Ubuntu Software Store and GDebi Package Installer to install deb packages on Ubuntu. However, the recommended method to install a deb package on Ubuntu is through the apt package manager.<\/p>","protected":false},"excerpt":{"rendered":"<p>You can install the deb file on Ubuntu 22.04 using the apt package manager, dpkg package manager, and the GDebi package installer. <\/p>","protected":false},"author":110,"featured_media":26132,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-25980","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu"],"_links":{"self":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/25980","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/users\/110"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/comments?post=25980"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/25980\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/26132"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=25980"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=25980"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=25980"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}