{"id":1765,"date":"2022-11-15T12:30:00","date_gmt":"2022-11-15T18:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1765"},"modified":"2023-08-29T09:20:07","modified_gmt":"2023-08-29T14:20:07","slug":"5-most-used-alias-commands-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/","title":{"rendered":"5 Most Used alias Commands in Linux With Examples"},"content":{"rendered":"\n<p>This tutorial will show you the five most used alias commands in Linux with examples.<\/p>\n\n\n\n<p>Sometimes we need to reference some command using it with a shortcut. These commands with shortcuts defined in Linux are called &lt;b&lt;aliases. Aliases are used to replace long commands in order for the user to avoid spelling errors. Some administrators or regular users are using aliases because they are used to executing some commands with their own Linux language words that have been used over the years.<\/p>\n\n\n\n<p>In this tutorial, we are going to use the latest <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting\/\" title=\"\">Ubuntu 22.04 distribution<\/a>. You can choose any Linux distro you want. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with Ubuntu 22.04 OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>Every fresh installation of Ubuntu 22.04 requires the system packages to be updated to the latest versions available.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<p>Once the system is updated, we are ready to show you the 5 most used alias commands in Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Alias location and syntax<\/h2>\n\n\n\n<p>before we start with alias commands, it is important to be explained where the aliases are stored in our system and how they are defined. Well, the alias commands are stored in <strong>.bashrc<\/strong> file on our server. The syntax is the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">alias NameOfAlias='TheOriginalCommand'<\/pre>\n\n\n\n<p>The syntax starts with the alias command, then with the name of the alias we want to use, then the equal <strong>=<\/strong> sign, and last is the original Linux command in quotation marks.<\/p>\n\n\n\n<p>Once we define our alias in the <strong>.bashrc<\/strong> file on our server, we need to save the changes with our favorite editor and execute the following command in the terminal in order for the latest alias to be registered on the system.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">source .bashrc<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">1. The ll alias<\/h2>\n\n\n\n<p>The ll alias is used for listing the files and folders on our system. Instead of using every time the <strong>ls -alF<\/strong> command, we can simply use this alias, and we will get the output in no time.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">alias ll='ls -alF'<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. The search alias<\/h2>\n\n\n\n<p>Sometimes when we are trying to find some specific output by some word, we are using the <strong>grep<\/strong> command, for example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ll | grep active<\/pre>\n\n\n\n<p>We list the files or folders with the &#8220;active&#8221; words in their names. The <strong>grep<\/strong> command should filter them but is more intuitive if we use the <strong>search<\/strong> word. That is why we are going to define this alias.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">alias search='grep'<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. The Update and Upgrade alias<\/h2>\n\n\n\n<p>We often use the commands to update and upgrade the packages to the latest available versions. We use these commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt-get update -y &amp;&amp; apt-get upgrade -y<\/pre>\n\n\n\n<p>We can simply create an alias like this to save time with this command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">alias update='apt-get update -y &amp;&amp; apt-get upgrade -y'<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. The count alias<\/h2>\n\n\n\n<p>Administrators and regular Linux users often want to count the number of files in a specific directory. For that purpose, they need to find the files and use the pipe with the <strong>wc -l<\/strong> command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -type f | wc -l<\/pre>\n\n\n\n<p>We can simply create an alias <strong>count<\/strong> that will return the same output as the command above:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">alias count='find . -type f | wc -l'<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5. The ports alias<\/h2>\n\n\n\n<p>This alias is used when we need information about network connections, protocols, IP addresses, and ports that services are running on. The original command is <strong>netstat -tunlp<\/strong>. Since it can be simplified with an alias, we can easily create it:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">alias ports='netstat -tunlp'<\/pre>\n\n\n\n<p>These were the five most used aliases in the world of Linux system administrators. There are plenty of useful long commands that are used on a daily basis and can be simplified with aliases. In this tutorial, you learned the syntax on how to create aliases and save them into the <strong>.bashrc<\/strong> file.<\/p>\n\n\n\n<p>If you liked this post about the five most used alias commands in <a href=\"https:\/\/www.linuxcloudvps.com\/\" title=\"\">Linux<\/a> with examples, please share it with your friends on social networks or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a shortcut. These commands with shortcuts defined in Linux are called &lt;b&lt;aliases. Aliases are used to replace long commands in order for the user to avoid spelling errors. Some administrators &#8230; <a title=\"5 Most Used alias Commands in Linux With Examples\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\" aria-label=\"More on 5 Most Used alias Commands in Linux With Examples\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1766,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[207,260],"tags":[263,253,132],"class_list":["post-1765","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guide","category-linux","tag-alias","tag-commands","tag-linuxcloudvps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>5 Most Used alias Commands in Linux With Examples | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a\" \/>\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.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"5 Most Used alias Commands in Linux With Examples | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-15T18:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T14:20:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"5 Most Used alias Commands in Linux With Examples\",\"datePublished\":\"2022-11-15T18:30:00+00:00\",\"dateModified\":\"2023-08-29T14:20:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\"},\"wordCount\":616,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp\",\"keywords\":[\"alias\",\"commands\",\"linuxcloudvps\"],\"articleSection\":[\"Guide\",\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\",\"name\":\"5 Most Used alias Commands in Linux With Examples | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp\",\"datePublished\":\"2022-11-15T18:30:00+00:00\",\"dateModified\":\"2023-08-29T14:20:07+00:00\",\"description\":\"This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a\",\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp\",\"width\":742,\"height\":372,\"caption\":\"most used alias commands in linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.linuxcloudvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"5 Most Used alias Commands in Linux With Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/LinuxCloudVPS\",\"https:\/\/x.com\/LinuxCloudVPS\",\"http:\/\/www.linkedin.com\/company\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.linuxcloudvps.com\/\"],\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"5 Most Used alias Commands in Linux With Examples | LinuxCloudVPS Blog","description":"This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a","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.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"5 Most Used alias Commands in Linux With Examples | LinuxCloudVPS Blog","og_description":"This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2022-11-15T18:30:00+00:00","article_modified_time":"2023-08-29T14:20:07+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"5 Most Used alias Commands in Linux With Examples","datePublished":"2022-11-15T18:30:00+00:00","dateModified":"2023-08-29T14:20:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/"},"wordCount":616,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp","keywords":["alias","commands","linuxcloudvps"],"articleSection":["Guide","Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/","name":"5 Most Used alias Commands in Linux With Examples | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp","datePublished":"2022-11-15T18:30:00+00:00","dateModified":"2023-08-29T14:20:07+00:00","description":"This tutorial will show you the five most used alias commands in Linux with examples. Sometimes we need to reference some command using it with a","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/11\/most-used-alias-commands-in-linux.webp","width":742,"height":372,"caption":"most used alias commands in linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/5-most-used-alias-commands-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"5 Most Used alias Commands in Linux With Examples"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1765","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1765"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1765\/revisions"}],"predecessor-version":[{"id":1956,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1765\/revisions\/1956"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1766"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1765"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1765"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1765"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}