{"id":1891,"date":"2023-12-29T10:13:23","date_gmt":"2023-12-29T10:13:23","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=1891"},"modified":"2024-03-29T05:08:04","modified_gmt":"2024-03-29T05:08:04","slug":"top-50-linux-commands-for-scuring-linux-server","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/","title":{"rendered":"Top 50 Linux Commands for Scuring Linux Server"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. <strong>passwd Command<\/strong>:<\/h2>\n\n\n\n<p>Changes a user&#8217;s password.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>passwd username\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. <strong>useradd Command<\/strong>:<\/h2>\n\n\n\n<p>Creates a new user account.<\/p>\n\n\n\n<p>Example:- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>useradd username\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. <strong>userdel Command<\/strong><\/h2>\n\n\n\n<p>Deletes a user account.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>userdel username\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. <strong>groupadd Command<\/strong>:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><\/li>\n<\/ul>\n\n\n\n<p>Creates a new group.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>groupadd groupname\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5. <strong>groupdel Command<\/strong><\/h2>\n\n\n\n<p>Deletes a group.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>groupdel groupname\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6. <strong>chmod Command<\/strong>:<\/h2>\n\n\n\n<p>Changes file permissions.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod 600 file.txt\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">7. <strong>chown Command<\/strong><\/h2>\n\n\n\n<p>Changes the owner of a file or directory.<\/p>\n\n\n\n<p>Example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>chown user:group file.txt<\/code><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">8. <strong>chgrp Command<\/strong><\/h2>\n\n\n\n<p>Changes the group ownership of a file or directory.<\/p>\n\n\n\n<p>Example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>chgrp groupname file.txt<\/code><\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\">9. ssh Command<\/h1>\n\n\n\n<p>Securely connects to a remote server.<\/p>\n\n\n\n<p>Example:- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh user@hostname\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">10 . <strong>scp Command<\/strong><\/h2>\n\n\n\n<p>Securely copies files between hosts.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>scp file.txt user@hostname:\/destination\/path<\/code><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">11. <strong>ufw Command<\/strong>:<\/h2>\n\n\n\n<p>Uncomplicated Firewall, a user-friendly interface to manage iptables firewall.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ufw enable\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">12. <strong>iptables Command<\/strong><\/h2>\n\n\n\n<p>Configures firewall rules.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>iptables -A INPUT -p tcp --dport 22 -j ACCEPT\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">13. <strong>fail2ban Command<\/strong><\/h2>\n\n\n\n<p>Protects against brute-force attacks by monitoring logs and blocking malicious IP addresses.<\/p>\n\n\n\n<p>Example :-<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>fail2ban-client status\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">14. <strong>sudo Command<\/strong><\/h2>\n\n\n\n<p>Allows users to execute commands with superuser privileges.<\/p>\n\n\n\n<p>Example :- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo command\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">15. <strong>ssh-keygen Command<\/strong><\/h2>\n\n\n\n<p>Generates SSH key pairs for authentication<\/p>\n\n\n\n<p>Example:- <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh-keygen -t rsa<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">16. chown Command:<\/h2>\n\n\n\n<p>chown stands for \u201cchange owner.\u201d 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 \u201cchange group.\u201d 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 \u201cdisk usage.\u201d 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 \u201cdisk free.\u201d 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\u2019s 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 learning \ud83d\udc4d\ud83d\udc4d<\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. passwd Command: Changes a user&#8217;s password. Example: 2. useradd Command: Creates a new user account. Example:- 3. userdel Command Deletes a user account. Example :- 4&#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":[738,28,739,670],"class_list":["post-1891","post","type-post","status-publish","format-standard","hentry","category-linux","tag-administrator-command","tag-linux","tag-linux-adminstrator","tag-linux-command"],"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 Scuring Linux Server - 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-scuring-linux-server\/\" \/>\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 Scuring Linux Server - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"1. passwd Command: Changes a user&#8217;s password. Example: 2. useradd Command: Creates a new user account. Example:- 3. userdel Command Deletes a user account. Example :- 4....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/\" \/>\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=\"2023-12-29T10:13:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-29T05:08:04+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=\"2 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-scuring-linux-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/\"},\"author\":{\"name\":\"Amit Kumar\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"headline\":\"Top 50 Linux Commands for Scuring Linux Server\",\"datePublished\":\"2023-12-29T10:13:23+00:00\",\"dateModified\":\"2024-03-29T05:08:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/\"},\"wordCount\":379,\"commentCount\":0,\"keywords\":[\"administrator-command\",\"linux\",\"linux-adminstrator\",\"linux-command\"],\"articleSection\":[\"linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/\",\"name\":\"Top 50 Linux Commands for Scuring Linux Server - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"datePublished\":\"2023-12-29T10:13:23+00:00\",\"dateModified\":\"2024-03-29T05:08:04+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/top-50-linux-commands-for-scuring-linux-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Top 50 Linux Commands for Scuring Linux Server\"}]},{\"@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 Scuring Linux Server - 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-scuring-linux-server\/","og_locale":"en_US","og_type":"article","og_title":"Top 50 Linux Commands for Scuring Linux Server - DevOps Freelancer","og_description":"1. passwd Command: Changes a user&#8217;s password. Example: 2. useradd Command: Creates a new user account. Example:- 3. userdel Command Deletes a user account. Example :- 4....","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2023-12-29T10:13:23+00:00","article_modified_time":"2024-03-29T05:08:04+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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/"},"author":{"name":"Amit Kumar","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"headline":"Top 50 Linux Commands for Scuring Linux Server","datePublished":"2023-12-29T10:13:23+00:00","dateModified":"2024-03-29T05:08:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/"},"wordCount":379,"commentCount":0,"keywords":["administrator-command","linux","linux-adminstrator","linux-command"],"articleSection":["linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/","name":"Top 50 Linux Commands for Scuring Linux Server - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"datePublished":"2023-12-29T10:13:23+00:00","dateModified":"2024-03-29T05:08:04+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/top-50-linux-commands-for-scuring-linux-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Top 50 Linux Commands for Scuring Linux Server"}]},{"@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\/1891","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=1891"}],"version-history":[{"count":2,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1891\/revisions"}],"predecessor-version":[{"id":2032,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1891\/revisions\/2032"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=1891"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=1891"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=1891"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}