{"id":2388,"date":"2025-01-23T14:48:45","date_gmt":"2025-01-23T14:48:45","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=2388"},"modified":"2025-03-26T04:56:37","modified_gmt":"2025-03-26T04:56:37","slug":"create-zip-file-in-linux","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html","title":{"rendered":"Create Zip File With Command in Linux With Examples"},"content":{"rendered":"\n<p>Compressing files isn\u2019t just about saving space; it\u2019s about convenience, speed, and efficiency. Imagine sending ten separate files in an email instead of a single, neatly packed zip file. It\u2019s faster, simpler, and more professional!<\/p>\n\n\n\n<p>Whether you\u2019re sharing documents or archiving old data, knowing how to create a zip file in Linux is essential for beginners and seasoned users alike. Linux offers powerful, straightforward zip commands to transform your file management in seconds!<\/p>\n\n\n\n<p>This guide will walk you through the process step by step, making it easy to compress files like a pro!<\/p>\n\n\n\n<p>Let\u2019s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>\u2794 You should have basic knowledge of the Linux Terminal<\/p>\n\n\n\n<p>\u2794 You have a Linux distribution installed (like Ubuntu, CentOS, Debian, etc.).<\/p>\n\n\n\n<p>\u2794 Minimal understanding of file paths<\/p>\n\n\n\n<p>\u2794 The zip command-line utility is installed.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/427\/echo-command-in-linux.html\"><strong>A Guide to Echo Command in Linux With Examples<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Installing the Zip Utility<\/strong><\/h2>\n\n\n\n<p>Most Linux distributions come with zip pre-installed. If not, you can install it using:<\/p>\n\n\n\n<p>\u27a2 <strong>For Ubuntu\/Debian:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt-get install zip unzip<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u27a2 <strong>For CentOS\/RHEL:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo yum install zip unzip<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/425\/remove-directory-in-linux.html\"><strong>How To Remove Directory in Linux With Command?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Create a Zip File?<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Basic Syntax<\/strong><\/h3>\n\n\n\n<p><strong>The basic syntax of the zip command is:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip [options] zipfile_name file1 file2 file3<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 <span class=\"code_syntax\">zipfile_name:<\/span> The name of the zip file you want to create.<\/p>\n\n\n\n<p>\u2794 <span class=\"code_syntax\">file1, file2, file3:<\/span> The files or folders you want to compress.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example &#8211; 1: Zipping Single File<\/strong><\/h3>\n\n\n\n<p>\u2794 Let\u2019s say you have a file named <span class=\"code_syntax\">example.txt<\/span>. To create a zip file:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip example.zip example.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will create a file named <span class=\"code_syntax\">example.zip<\/span> containing <span class=\"code_syntax\">example.txt<\/span>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example &#8211; 2: Zipping Multiple Files<\/strong><\/h3>\n\n\n\n<p>If you have multiple files, such as <span class=\"code_syntax\">file1.txt<\/span>, <span class=\"code_syntax\">file2.txt<\/span>, and <span class=\"code_syntax\">file3.txt<\/span>, you can zip them together:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip my_files.zip file1.txt file2.txt file3.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will create a zip archive named <span class=\"code_syntax\">my_files.zip<\/span> containing the three files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Example &#8211; 3: Zipping a Folder<\/strong><\/h3>\n\n\n\n<p>\u2794 To compress an entire folder, use the <span class=\"code_syntax\">-r<\/span> (recursive) option:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -r folder.zip my_folder<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><span class=\"code_syntax\">My_folder<\/span> is the folder you want to compress, and <span class=\"code_syntax\">folder.zip<\/span> is the resulting archive.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/423\/login-ssh-using-password-authentication.html\"><strong>How to Log into SSH using Password Authentication?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Additional Tasks You Can Perform With Zip Command<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Create a ZIP Archive<\/strong><\/h3>\n\n\n\n<p>\u2794 To zip multiple files into a single archive:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip archive.zip file1.txt file2.txt file3.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>List ZIP File Contents<\/strong><\/h3>\n\n\n\n<p>\u2794 You can view the contents of a zip file without extracting it using:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>unzip -l archive.zip<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will list all the files inside <span class=\"code_syntax\">archive.zip<\/span>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Add Specific File Types to the ZIP Archive<\/strong><\/h3>\n\n\n\n<p>\u2794 If you want to add files of a specific type, such as .txt files, use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip text_files.zip *.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will add all .txt files in the current directory to the archive <span class=\"code_syntax\">text_files.zip<\/span>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Delete Files From ZIP Archive<\/strong><\/h3>\n\n\n\n<p>\u2794 To delete a file from an existing zip archive, use the <span class=\"code_syntax\">-d<\/span> option:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip archive.zip -d file1.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This removes <span class=\"code_syntax\">file1.txt<\/span> from <span class=\"code_syntax\">archive.zip<\/span>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Create and Encrypt ZIP File<\/strong><\/h3>\n\n\n\n<p>\u2794 For better security, you can create a password-protected zip file with:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -e secure.zip file1.txt file2.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You will be prompted to set a password; the files will only be accessible with that password.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/401\/how-to-create-sudo-user-in-linux.html\"><strong>How to Create a User in Linux &amp; Add it to the sudoer File?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Advanced Zip Options<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Compression Levels<\/strong><\/h3>\n\n\n\n<p>\u2794 Zip supports compression levels from 0-9, allowing fine-tuned control over file compression:<\/p>\n\n\n\n<p style=\"font-size:18;\"><strong>Here:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>0:<\/strong> No compression<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>9:<\/strong> Maximum compression<\/li>\n<\/ul>\n\n\n\n<p><strong>Example &#8211; 1:<\/strong><\/p>\n\n\n\n<p># No compression (fastest)<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -0 nocompression.zip largefile.iso<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example &#8211; 2:<\/strong><\/p>\n\n\n\n<p># Default compression<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -6 defaultcompression.zip documents.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example &#8211; 3:<\/strong><\/p>\n\n\n\n<p># Maximum compression (slowest)<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -9 maxcompression.zip largefile.tar<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Excluding Files and Patterns<\/strong><\/h3>\n\n\n\n<p>\u2794 You can customise your zip by excluding specific files or using wildcards:<\/p>\n\n\n\n<p><strong>Example &#8211; 1:<\/strong><\/p>\n\n\n\n<p># Exclude log files<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -r project.zip \/path\/to\/project &#8211;exclude=*.log<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example &#8211; 2:<\/strong><\/p>\n\n\n\n<p># Multiple exclusion patterns<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -r backup.zip \/home\/user &#8211;exclude=*.tmp &#8211;exclude=*.cache<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example &#8211; 3:<\/strong><\/p>\n\n\n\n<p># Exclude entire directories<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>zip -r code.zip \/project\/source &#8211;exclude=*\/node_modules\/* &#8211;exclude=*\/venv\/*<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/412\/access-linux-server-using-putty-terminal.html\"><strong>How To Access Linux Server Using PuTTY SSH Terminal?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>The zip command is a powerful and simple tool for compressing files and folders in Linux. Whether you\u2019re managing single files or entire directories, using the zip command can save space and make file transfers easier.<\/p>\n\n\n\n<p>You can take full advantage of the zip utility by exploring additional options like encryption and file management.<\/p>\n\n\n\n<p>Start practising with the examples in this guide; soon, you will be zipping files like a pro!<\/p>\n\n\n    <div class=\"blg-advrt-main blg-prm-bx\">\n        <div class=\"row\" style=\"display: flex; justify-content: space-evenly; align-items: center;\">\n            <div class=\"col-md-5\">\n                <div class=\"blg-advrt-first blg-advrt-right\">\n                    <img decoding=\"async\" src=\"https:\/\/www.hostitsmart.com\/assets\/images\/blog\/Hidden-Costs-and-Fees.png\" alt=\"Hidden-Costs-and-Fees\" \/>\n                <\/div>\n            <\/div>\n            <div class=\"col-md-7\">\n                <div class=\"blg-advrt-first blg-advrt-left\">\n                    <div class=\"blg_advrt_cnt\">\n                        Affordable Hosting, No Extra Burdens!                    <\/div>\n                    <p>\n                        Get Pocket-friendly hosting without the headaches                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/web-hosting\">\n                            Get Cheap Hosting                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    ","protected":false},"excerpt":{"rendered":"<p>Compressing files isn\u2019t just about saving space; it\u2019s about convenience, speed, and efficiency. Imagine sending ten separate files in an email instead of a single, neatly packed zip file. It\u2019s faster, simpler, and more professional! Whether you\u2019re sharing documents or archiving old data, knowing how to create a zip file in Linux is essential for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-2388","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Zip File With Command in Linux With Examples<\/title>\n<meta name=\"description\" content=\"Learn to create a ZIP file in Linux using simple command-line steps by discovering practical examples for compressing files and directories efficiently.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Zip File With Command in Linux With Examples\" \/>\n<meta property=\"og:description\" content=\"Learn to create a ZIP file in Linux using simple command-line steps by discovering practical examples for compressing files and directories efficiently.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-23T14:48:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-26T04:56:37+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\",\"name\":\"Create Zip File With Command in Linux With Examples\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-01-23T14:48:45+00:00\",\"dateModified\":\"2025-03-26T04:56:37+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn to create a ZIP file in Linux using simple command-line steps by discovering practical examples for compressing files and directories efficiently.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Zip File With Command in Linux With Examples","description":"Learn to create a ZIP file in Linux using simple command-line steps by discovering practical examples for compressing files and directories efficiently.","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:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html","og_locale":"en_US","og_type":"article","og_title":"Create Zip File With Command in Linux With Examples","og_description":"Learn to create a ZIP file in Linux using simple command-line steps by discovering practical examples for compressing files and directories efficiently.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-01-23T14:48:45+00:00","article_modified_time":"2025-03-26T04:56:37+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html","name":"Create Zip File With Command in Linux With Examples","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-01-23T14:48:45+00:00","dateModified":"2025-03-26T04:56:37+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn to create a ZIP file in Linux using simple command-line steps by discovering practical examples for compressing files and directories efficiently.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2388"}],"version-history":[{"count":18,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2388\/revisions"}],"predecessor-version":[{"id":2646,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2388\/revisions\/2646"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}