{"id":22086,"date":"2023-10-01T16:23:25","date_gmt":"2023-10-01T16:23:25","guid":{"rendered":"https:\/\/linuxways.net\/?p=22086"},"modified":"2023-10-01T16:23:52","modified_gmt":"2023-10-01T16:23:52","slug":"how-to-compress-files-in-ubuntu-22-04-using-command-line","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/ubuntu\/how-to-compress-files-in-ubuntu-22-04-using-command-line\/","title":{"rendered":"How to Compress Files in Ubuntu 22.04 Using Command Line?"},"content":{"rendered":"<p>The aim of Compressing a File is to keep all the information while diminishing the size of the file. <strong>Data Compression<\/strong> is essential to optimize <strong>data storage <\/strong>and <strong>data transmission <\/strong>as the reduced size file can be saved using <strong>less storage<\/strong> and can be transmitted taking<strong> lower bandwidth. <\/strong>There are many methods to <strong>compress files<\/strong> into <strong>archives<\/strong> in Ubuntu 22.04. Each compression method is characterized by the <strong>compression algorithm<\/strong> it uses to compress data.<\/p>\n<p>This article will demonstrate different methods of compressing files in Ubuntu 22.04 LTS using the command line. This article will discuss:<\/p>\n<ul>\n<li>Compress Files to .zip Archive<\/li>\n<li>Compress Files to tar.gz Archive<\/li>\n<li>Compress Files to .rar in the Archive<\/li>\n<li>Compress Files to .7z in the Archive<\/li>\n<li>Compress Files to Pigz in the Archive<\/li>\n<li>Compress Files to tar.xz in the Archive<\/li>\n<li>Compress Files to tar.bz2 in Archive<\/li>\n<\/ul>\n<h2><a id=\"post-22086-_vwi4ezl9toa3\"><\/a>How to Compress Files to .zip Archive in Ubuntu 22.04?<\/h2>\n<p><strong>\u201c.zip\u201d<\/strong> is a popular archive format as it is cross-platform compatible. \u201c.zip\u201d uses the \u201c<strong>DEFLATE<\/strong>\u201d compression algorithm. Files are compressed to a zip archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T]<\/strong> and by using the <strong>zip<\/strong> command. For example, files File1, File2, File3, File4, and File5 can be compressed to create a zipped archive \u201cCompressedZipArchive.zip\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">zip<\/span> CompressedZipArchive.zip <span class=\"sy0\">*<\/span>.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>zip: tar command line tool<\/li>\n<li>CompressedZipArchive.zip: Name of compressed archive<\/li>\n<li>*.txt: Select all the .txt files in the present working directory.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"864\" class=\"wp-image-22108\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-1.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-1.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-1-300x127.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-1-1024x432.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-1-768x324.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-1-1536x648.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>From the above image, it can be seen that File1, File2, File3, File4, and File5 are compressed resulting in the CompressedZipArchive.zip archive.<\/p>\n<p>Further, Files can be compressed by Ubuntu UI by <a href=\"https:\/\/linuxways.net\/de\/how-to-zip-files-and-directories-in-linux-ubuntu\/\">How to Zip Files and Directories in Linux\/Ubuntu?<\/a><\/p>\n<h2><a id=\"post-22086-_ckva8f17vzkj\"><\/a>How to Compress Files to tar.gz Archive in Ubuntu 22.04?<\/h2>\n<p>The \u201c<strong>tar.gz<\/strong>\u201d is a compressed archive file format for Linux systems that uses the \u201cgzip\u201d compression algorithm. Files are compressed to a tar.gz archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T] <\/strong>and by using the <strong>tar<\/strong> command. For example, files File1, File2, File3, File4, and File5 can be compressed to create a zipped archive \u201cCompressedTarGzArchive.zip\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">tar<\/span> czf CompressedTarGzArchive.tar.gz <span class=\"sy0\">*<\/span>.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>tar: tar command line tool<\/li>\n<li>c: Creates a new archive.<\/li>\n<li>z: Constructs the compressed archive using \u201cgzip\u201d.<\/li>\n<li>f: Write the archive &#8211; CompressedTarGzArchive.tar.gz (name of the archive file).<\/li>\n<li>*.txt: Select all the .txt files in the present working directory.<\/li>\n<\/ul>\n<h2><a id=\"post-22086-_g9q2otpktwgx\"><\/a><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"511\" class=\"wp-image-22123\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-2.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-2.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-2-300x75.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-2-1024x256.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-2-768x192.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-2-1536x383.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/h2>\n<p>From the above image, it can be seen that File1, File2, File3, File4, and File5 are compressed resulting in the CompressedTarGzArchive.tar.gz archive.<\/p>\n<h2><a id=\"post-22086-_o6r6gkfh6njl\"><\/a>How to Compress Files to .rar Archive in Ubuntu 22.04?<\/h2>\n<p>The \u201c<strong>.rar\u201d <\/strong>(Roshal Archive) file format supports data compression, file spanning, and error correction. It is not pre-installed in Ubuntu 22.04 and can be installed by:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">sudo<\/span> apt <span class=\"kw2\">install<\/span> rar<\/div><\/div>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"1119\" class=\"wp-image-22149\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-3.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-3.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-3-300x164.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-3-1024x560.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-3-768x420.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-3-1536x839.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>The above image shows that rar is successfully installed. Files are compressed to a .rar archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T]<\/strong> and by using the <strong>rar<\/strong> command. For example, files File1, File2, File3, File4, and File5 can be compressed to create a zipped archive \u201cCompressedRaRArchive.rar\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span>rar a CompressedRaRArchive.rar <span class=\"sy0\">*<\/span>.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>rar: rar command line tool<\/li>\n<li>a: add files to the archive<\/li>\n<li>CompressedRaRArchive.rar: name of the archive file.<\/li>\n<li>*.txt: Select all the .txt files in the present working directory.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"1134\" class=\"wp-image-22161\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-4.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-4.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-4-300x166.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-4-1024x567.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-4-768x425.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-4-1536x851.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<h1><\/h1>\n<p>From the above image, it can be seen that File1, File2, File3, File4, and File5 are compressed resulting in the CompressedRaRArchive.rar archive.<\/p>\n<h2><a id=\"post-22086-_ybl275if2szs\"><\/a>How to Compress Files to .7z Archive in Ubuntu 22.04?<\/h2>\n<p><strong>7z<\/strong> is a cross-platform file archiver that offers the highest compression ratio. It is not pre-installed in Ubuntu and can be installed by:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">sudo<\/span> <span class=\"kw2\">apt-get install<\/span> p7zip-full<\/div><\/div>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"1235\" class=\"wp-image-22173\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-5.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-5.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-5-300x181.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-5-1024x618.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-5-768x463.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-5-1536x926.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>The above image shows that p7zip-full is successfully installed. Files are compressed to a .7z archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T]<\/strong> and by using the <strong>7z<\/strong> command. For example, files File1, File2, File3, File4, and File5 can be compressed to create a zipped archive \u201cCompressed7zArchive.7z\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span>7z a Compressed7zArchive.7z <span class=\"sy0\">*<\/span>.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>7z: 7z command line tool<\/li>\n<li>a: add files to the archive<\/li>\n<li>Compressed7zArchive.7z: name of the archive file.<\/li>\n<li>*.txt: Select all the .txt files in the present working directory.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"1158\" class=\"wp-image-22179\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-6.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-6.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-6-300x170.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-6-1024x579.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-6-768x434.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-6-1536x869.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<h1><\/h1>\n<p>From the above image, it can be seen that File1, File2, File3, File4, and File5 are compressed resulting in the Compressed7zArchive.7z archive.<\/p>\n<h1><\/h1>\n<h2><a id=\"post-22086-_dnos87a21j0w\"><\/a>How to Compress Files to Pigz Archive in Ubuntu 22.04?<\/h2>\n<p><strong>Pigz <\/strong>is a highly efficient compression utility. Pigz is only used to compress a single file only unlike other compression utilities. Pigz is not pre-installed in Ubuntu 22.04 and can be installed by:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">sudo<\/span> apt <span class=\"kw2\">install<\/span> <span class=\"kw2\">pigz<\/span><\/div><\/div>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"956\" class=\"wp-image-22183\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-7.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-7.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-7-300x140.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-7-1024x478.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-7-768x359.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-7-1536x717.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>The above image shows that pigz is successfully installed. Files are compressed to a \u201cpigz\u201d archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T] <\/strong>and by using the <strong>pigz<\/strong> command. For example, a file File1 can be compressed to create a zipped archive \u201cFile1.txt.gz\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">pigz<\/span> File1.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>pigz: pigz command line tool.<\/li>\n<li>File1.txt: A text file that is required to be compressed.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"600\" class=\"wp-image-22185\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-8.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-8.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-8-300x88.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-8-1024x300.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-8-768x225.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-8-1536x450.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>From the above image, it can be seen that File1 is compressed resulting in File1.txt.gz archive.<\/p>\n<h2><a id=\"post-22086-_bywinfvdmnnf\"><\/a>How to Compress Files to tar.xz Archive in Ubuntu 22.04?<\/h2>\n<p>The \u201c<strong>tar.xz<\/strong>\u201d is a compressed archive file format for Linux systems that uses LZMA\/LZMA2 compression algorithms. Files are compressed to a .tar.xz archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T]<\/strong> and by using the <strong>tar<\/strong> command. For example, files File1, File2, File3, File4, and File5 can be compressed to create a zipped archive \u201cCompressedTarxzArchive.tar.xz\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">tar<\/span> cfJ CompressedTarxzArchive.tar.xz <span class=\"sy0\">*<\/span>.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>tar: tar command line tool.<\/li>\n<li>c: Creates a new archive.<\/li>\n<li>f: Write the archive &#8211; CompressedTarxzArchive.tar.xz (name of the archive file).<\/li>\n<li>J: Create the compressed files using \u201c.xz\u201d.<\/li>\n<li>*.txt: Select all the .txt files in the present working directory.<\/li>\n<\/ul>\n<h2><a id=\"post-22086-_1nim7rbt7bb2\"><\/a><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"515\" class=\"wp-image-22188\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-9.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-9.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-9-300x75.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-9-1024x258.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-9-768x193.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-9-1536x386.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/h2>\n<p>From the above image, it can be seen that File1, File2, File3, File4, and File5 are compressed resulting in the \u201cCompressedTarxzArchive.tar.xz\u201d archive.<\/p>\n<h2><a id=\"post-22086-_1e6916ys9xe\"><\/a>How to Compress Files to tar.bz2 Archive in Ubuntu 22.04?<\/h2>\n<p>The \u201c<strong>.tar.bz2<\/strong>\u201d is a compressed archive file format for Linux systems that is highly optimized for compression with the BZ2 compression algorithm. Files are compressed to a .tar.xz archive by launching the terminal by pressing the combination of <strong>[Ctrl+Alt+T]<\/strong> and by using the <strong>tar<\/strong> command. For example, files File1, File2, File3, File4, and File5 can be compressed to create a zipped archive \u201cCompressedTarbz2Archive.tar.bz2\u201d by executing the following command:<\/p>\n<div class=\"codecolorer-container bash blackboard\" style=\"width:100%;\"><div class=\"bash codecolorer\"><span class=\"co4\">$ <\/span><span class=\"kw2\">tar<\/span> <span class=\"re5\">-cvjf<\/span> CompressedTarbz2Archive.tar.bz2 <span class=\"sy0\">*<\/span>.txt<\/div><\/div>\n<p>The above command comprises of:<\/p>\n<ul>\n<li>tar: tar command line tool.<\/li>\n<li>c: Creates a new archive.<\/li>\n<li>v: Produce verbose output.<\/li>\n<li>j: creates the compressed files using \u201cbz2\u201d.<\/li>\n<li>f: Write to the archive &#8211; CompressedTarbz2Archive.tar.bz2: (name of the archive file)<\/li>\n<li>*.txt: Select all the .txt files in the present working directory.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"753\" class=\"wp-image-22191\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-10.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-10.png 2048w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-10-300x110.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-10-1024x377.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-10-768x282.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2023\/10\/word-image-22086-10-1536x565.png 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>From the above image, it can be seen that File1, File2, File3, File4, and File5 are compressed resulting in the \u201cCompressedTarbz2Archive.tar.bz2\u201d archive.<\/p>\n<h2><a id=\"post-22086-_k4r3ojha6hv3\"><\/a>Conclusion<\/h2>\n<p>There are many methods to compress files in Ubuntu 22.04. This article demonstrated seven methods of compressing files, i.e., compressing files to <strong>.zip, tar.gz, .rar, .7z, Pigz, tar.xz,<\/strong> and <strong>tarbz2<\/strong> archives using the Linux\/Ubuntu command line. The main difference between the compression methods is the compression algorithm each method uses to compress files\/directories.<\/p>","protected":false},"excerpt":{"rendered":"<p>There are many methods to compress files e.g., .zip, tar.gz, .rar, .7s, Pigz, tar.xz, and tarbz2. Each method differs from the others by the algorithm it uses.<\/p>","protected":false},"author":110,"featured_media":22199,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-22086","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\/22086","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=22086"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/22086\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/22199"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=22086"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=22086"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=22086"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}