{"id":1889,"date":"2024-03-06T09:29:01","date_gmt":"2024-03-06T09:29:01","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=1889"},"modified":"2024-03-06T09:29:03","modified_gmt":"2024-03-06T09:29:03","slug":"top-50-linux-commands-for-administrator","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/","title":{"rendered":"Top 50 Linux Commands for Administrator"},"content":{"rendered":"\n<p>In this tutiorial i&#8217;m going to share Top 50 Linux command for administrator use.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>ls Command<\/strong><\/li>\n<\/ol>\n\n\n\n<p><code>ls<\/code> is probably the first command every Linux user types in their terminal. It allows you to list the contents of the directory you want (the current directory by default), including files and other nested directories.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls\r<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>cd Command<\/strong>:<\/h3>\n\n\n\n<p><code>cd<\/code> stands for &#8220;change directory.&#8221; It allows you to navigate between directories in the Linux file system.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/path\/to\/directory\r<\/code><\/pre>\n\n\n\n<p>3. <strong>mkdir Command<\/strong>:<\/p>\n\n\n\n<p><code>mkdir<\/code> stands for &#8220;make directory.&#8221; It is used to create new directories.<\/p>\n\n\n\n<p>Example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir new_directory\r<\/code><\/pre>\n\n\n\n<p>4. <strong>rm Command<\/strong><\/p>\n\n\n\n<p><code>rm<\/code> stands for &#8220;remove.&#8221; It is used to delete files and directories.<\/p>\n\n\n\n<p>Example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rm file.txt\r<\/code><\/pre>\n\n\n\n<p>5. <strong>rmdir Command<\/strong><\/p>\n\n\n\n<p><code>rmdir<\/code> stands for &#8220;remove directory.&#8221; It is used to delete empty directories.<\/p>\n\n\n\n<p>Example:- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rmdir empty_directory\r<\/code><\/pre>\n\n\n\n<p>6. <strong>cp Command<\/strong>:<\/p>\n\n\n\n<p><code>cp<\/code> stands for &#8220;copy.&#8221; It is used to copy files and directories from one location to another.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>cp file.txt \/destination\/path<\/code><\/code><\/pre>\n\n\n\n<p><strong>7. mv Command:<\/strong><\/p>\n\n\n\n<p>mv stands for &#8220;move.&#8221; It is used to move files and directories from one location to another or to rename them.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mv file.txt new_location\/<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">8. cat Command:<\/h2>\n\n\n\n<p>cat is short for &#8220;concatenate.&#8221; It is used to display the contents of a file.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">less Command:<\/h2>\n\n\n\n<p>less is a file viewer similar to more, but it allows backward as well as forward navigation.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>less file.txt<\/code><\/pre>\n\n\n\n<p>more Command:<\/p>\n\n\n\n<p>more is a file viewer that displays the contents of a file one page at a time.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>more file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">head Command:<\/h2>\n\n\n\n<p>head is used to display the beginning of a file.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>head file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">tail Command:<\/h2>\n\n\n\n<p>tail is used to display the end of a file.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tail file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">14. touch Command:<\/h2>\n\n\n\n<p>touch is used to create an empty file or update the timestamp of an existing file.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>touch new_file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><br>15. chmod Command:<\/h2>\n\n\n\n<p>chmod stands for &#8220;change mode.&#8221; It is used to change the permissions of a file or directory.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod 755 file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">16. chown Command:<\/h2>\n\n\n\n<p>chown stands for &#8220;change owner.&#8221; It is used to change the owner of a file or directory.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chown user:group file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">17. chgrp Command:<\/h2>\n\n\n\n<p>chgrp stands for &#8220;change group.&#8221; It is used to change the group ownership of a file or directory.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chgrp group file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">18. find Command:<\/h2>\n\n\n\n<p>find is used to search for files and directories in a directory hierarchy.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/path\/to\/search -name \"file.txt\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">19. locate Command:<\/h2>\n\n\n\n<p>locate is used to find files by name.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>locate file.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">20. du Command:<\/h2>\n\n\n\n<p>du stands for &#8220;disk usage.&#8221; It is used to display the disk usage of files and directories.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>du -sh directory\/<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">21 df Command:<\/h2>\n\n\n\n<p>df stands for &#8220;disk free.&#8221; It is used to display disk space usage and availability.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>df -h<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">22. free Command:<\/h2>\n\n\n\n<p>free is used to display free and used memory in the system.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>free -h<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">23. top Command:<\/h2>\n\n\n\n<p>top is used to display system processes and resource usage in real-time.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> top\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">24. ps Command:<\/h2>\n\n\n\n<p>ps is used to display a snapshot of current processes.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ps aux<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">25. kill Command:<\/h2>\n\n\n\n<p>kill is used to terminate processes.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>kill PID<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><br>26. sudo Command:<\/h2>\n\n\n\n<p>sudo is used to execute a command as another user, typically the superuser.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo command<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">27 su Command:<\/h2>\n\n\n\n<p>su is used to switch user accounts or become the superuser.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>su username<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">28. passwd Command:<\/h2>\n\n\n\n<p>passwd is used to change a user&#8217;s password.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>passwd username<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">29. useradd Command:<\/h2>\n\n\n\n<p>useradd is used to create a new user account.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>useradd username<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><br>30 userdel Command:<\/h2>\n\n\n\n<p>userdel is used to delete a user account.<br>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>userdel username<\/code><\/pre>\n\n\n\n<p>Thanks for reading. \ud83d\udc4d\ud83d\udc4d<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutiorial i&#8217;m going to share Top 50 Linux command for administrator use. ls is probably the first command every Linux user types in their terminal&#8230;. <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[28,670,632],"class_list":["post-1889","post","type-post","status-publish","format-standard","hentry","category-linux","tag-linux","tag-linux-command","tag-linux-performance"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Top 50 Linux Commands for Administrator - DevOps Freelancer<\/title>\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.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Top 50 Linux Commands for Administrator - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"In this tutiorial i&#8217;m going to share Top 50 Linux command for administrator use. ls is probably the first command every Linux user types in their terminal....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/amitsthakurs\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-06T09:29:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-06T09:29:03+00:00\" \/>\n<meta name=\"author\" content=\"Amit Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/amits_thakurs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar\" \/>\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.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/\"},\"author\":{\"name\":\"Amit Kumar\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"headline\":\"Top 50 Linux Commands for Administrator\",\"datePublished\":\"2024-03-06T09:29:01+00:00\",\"dateModified\":\"2024-03-06T09:29:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/\"},\"wordCount\":511,\"commentCount\":0,\"keywords\":[\"linux\",\"linux-command\",\"linux-performance\"],\"articleSection\":[\"linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/\",\"name\":\"Top 50 Linux Commands for Administrator - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-03-06T09:29:01+00:00\",\"dateModified\":\"2024-03-06T09:29:03+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-administrator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Top 50 Linux Commands for Administrator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\",\"name\":\"Amit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"caption\":\"Amit Kumar\"},\"description\":\"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\\\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/amitsthakurs\\\/\",\"https:\\\/\\\/www.instagram.com\\\/amits_thakurs\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/amits-thakurs\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/amits_thakurs\"],\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/author\\\/amit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Top 50 Linux Commands for Administrator - DevOps Freelancer","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.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/","og_locale":"en_US","og_type":"article","og_title":"Top 50 Linux Commands for Administrator - DevOps Freelancer","og_description":"In this tutiorial i&#8217;m going to share Top 50 Linux command for administrator use. ls is probably the first command every Linux user types in their terminal....","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2024-03-06T09:29:01+00:00","article_modified_time":"2024-03-06T09:29:03+00:00","author":"Amit Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/amits_thakurs","twitter_misc":{"Written by":"Amit Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/"},"author":{"name":"Amit Kumar","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"headline":"Top 50 Linux Commands for Administrator","datePublished":"2024-03-06T09:29:01+00:00","dateModified":"2024-03-06T09:29:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/"},"wordCount":511,"commentCount":0,"keywords":["linux","linux-command","linux-performance"],"articleSection":["linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/","name":"Top 50 Linux Commands for Administrator - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"datePublished":"2024-03-06T09:29:01+00:00","dateModified":"2024-03-06T09:29:03+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-administrator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Top 50 Linux Commands for Administrator"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b","name":"Amit Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","caption":"Amit Kumar"},"description":"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.","sameAs":["https:\/\/www.facebook.com\/amitsthakurs\/","https:\/\/www.instagram.com\/amits_thakurs\/","https:\/\/www.linkedin.com\/in\/amits-thakurs\/","https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs"],"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1889","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=1889"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1889\/revisions"}],"predecessor-version":[{"id":1890,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1889\/revisions\/1890"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=1889"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=1889"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=1889"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}