{"id":430,"date":"2007-08-18T18:22:07","date_gmt":"2007-08-18T12:37:07","guid":{"rendered":"https:\/\/www.sparksupport.com\/blog\/?p=430"},"modified":"2024-07-01T12:51:15","modified_gmt":"2024-07-01T12:51:15","slug":"system-admin-tools-part-11","status":"publish","type":"post","link":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/","title":{"rendered":"System Admin Tools Part 11"},"content":{"rendered":"<p>Now I am going introduce you to a set of commands &amp; System Admin Tools that may come handy<\/p>\n<p><strong>FIND<\/strong><\/p>\n<p>[bash]<br>find -perm 777 -type d -exec chmod 755 {} \\; #Command to change all the folders under present directory with 777 to 755<\/p>\n<p>find -perm 755 -type f -exec chmod 644 {} \\; #Command to change all the folders under present directory with 755 to 644<\/p>\n<p>find -type d -maxdepth 3 -exec cp file {} \\; #Copy file to 3 levels of directories below the present directory<\/p>\n<p>find . -name &#8220;*.trn&#8221; -ctime +3 -exec rm -f {} \\; #Forcible remove files with .trn extension and 3 days old.<\/p>\n<p>find . -cmin -5 #Find all files created or updated in the last five minutes:<\/p>\n<p>[\/bash]<\/p>\n<p>(Great for finding effects of make install)<\/p>\n<p><strong>LS<\/strong><\/p>\n<p>[bash]<\/p>\n<p>ls -lSh #List files by their size<\/p>\n<p>ls -ltr #List files by date<\/p>\n<p>ls -F #Appends a symbol after files and directories<\/p>\n<p>[\/bash]<\/p>\n<p><strong>RSYNC<\/strong><\/p>\n<p>[bash]<\/p>\n<p>rsync -e ssh -az \/currentdirectory IP:\/remotedirectory #Sync remote directory with our current directory.<\/p>\n<p>rsync &#8211;bwlimit=1000 fromfile tofile #Locally copy with rate limit<\/p>\n<p>[\/bash]<\/p>\n<p><strong>GPG<\/strong><\/p>\n<p>[bash]<\/p>\n<p>gpg -c file #Encrypt file<\/p>\n<p>gpg file.gpg #Decrypt file<\/p>\n<p>[\/bash]<\/p>\n<p><strong>DF<\/strong><\/p>\n<p>[bash]<\/p>\n<p>du -h &#8211;max-depth 1 #Show disk space used by all the files and directories.<\/p>\n<p>du -s * | sort -k1,1rn | head #Show top disk users in current directory.<\/p>\n<p>df -h #Show free disk space<\/p>\n<p>df -i #Show free inodes<\/p>\n<p>[\/bash]<\/p>\n<p>Add system swap space for virtual memory paging used for System Admin Tools<\/p>\n<p>Swap space may be a swap partition, a swap file or a combination of the two. One should size swap space to be at least twice the size of the computer&#8217;s RAM. (but less than 2GB)<\/p>\n<p>[bash]<\/p>\n<p>dd if=\/dev\/zero of=\/swapfile bs=1024 count=265032 &#8211; #Create file filled with zeros of size 256Mb<\/p>\n<p>mkswap \/swapfile #Create swap file<\/p>\n<p>swapon \/swapfile #Begin use of given swap file.<\/p>\n<p>[\/bash]<\/p>\n<p>Assign a priority with the &#8220;-p&#8221; flag.<\/p>\n<p>[bash]<\/p>\n<p>swapon -s #List swap files<\/p>\n<p>scat \/proc\/swaps #Same as above<\/p>\n<p>[\/bash]<\/p>\n<p>This example refers to a swap file. One may also use a swap partition.<br>Make entry to \/etc\/fstab to permanently use swap file or partition.<\/p>\n<p>[bash]<\/p>\n<p>\/swapfile swap swap defaults 0 0<\/p>\n<p>[\/bash]<\/p>\n<p>Note: To remove the use of swap space, use the command swapoff. If using a swap partition, the partition must be unmounted.<\/p>\n<p><strong>Debugging System Admin Tools<\/strong><\/p>\n<p>[bash]<\/p>\n<p>strace -c ls &gt;\/dev\/null #Summarise\/profile system calls made by command<\/p>\n<p>strace -f -e open ls&gt;\/dev\/null #List system calls made by<br>command<\/p>\n<p>ltrace -f -e getenv ls &gt;\/dev\/null #List library calls made by command<\/p>\n<p>lsof -p $$ #List paths that process id has open<\/p>\n<p>lsof -p PID #List paths PID has open<\/p>\n<p>lsof ~ #List processes that have specified path open<\/p>\n<p>last reboot #Indicates last reboot time<\/p>\n<p>[\/bash]<\/p>\n<p>renice +15 PID #To give lower priority for a PID -19 is highest and +20 is lowest<\/p>\n<p>To check number of IP&#8217;s connecting to port 80<\/p>\n<p>[bash]<\/p>\n<p>netstat -tanpu |grep :80 |awk {&#8216;print $5&#8217;} |cut -d: -f1 |sort -n |uniq -c<\/p>\n<p>tcpdump not port 22 #To show network traffic except on port 22<\/p>\n<p>[\/bash]<\/p>\n<p><strong>Perl Administration using System Admin Tools<\/strong><\/p>\n<p>Installation of perl module can be done from tar file.<\/p>\n<p>[bash]<\/p>\n<p>tar xzf yourmodule.tar.gz #Untar Module<\/p>\n<p>perl Makefile.PL #Build with PERL makefile:<\/p>\n<p>make<\/p>\n<p>make install #Install<\/p>\n<p>[\/bash]<\/p>\n<p>You can also do this from cpan shell<\/p>\n<p>[bash]<br>perl -MCPAN -e shell #First time through it will ask questions Answer &#8220;no&#8221; to the first question for<\/p>\n<p>autoconfigure<\/p>\n<p>cpan&gt; install URI<\/p>\n<p>cpan&gt; i \/PerlMagick\/ #Inquire about module. (Search by keyword)<\/p>\n<p>Distribution J\/JC\/JCRISTY\/PerlMagick-5.36.tar.gz<\/p>\n<p>Module Image::Magick (J\/JC\/JCRISTY\/PerlMagick-5.36.tar.gz)<\/p>\n<p>cpan&gt; install Image::Magick<\/p>\n<p>cpan&gt;force install Image::Magick #Install a module forcefully.<\/p>\n<p>[\/bash]<\/p>\n<p><strong>YUM :RPM Updater<\/strong><\/p>\n<p>YUM (Yellowdog Updater, Modified) is a client command line application for updating an RPM based system from an internet repository (YUM &#8220;yum-arch&#8221; server) accessible by URL (http:\/\/xxx, ftp:\/\/yyy or even file:\/\/zzz local or NFS)<\/p>\n<p>[bash]<br>yum -y install package-name #To install a package along with its dependencies<\/p>\n<p>yum remove package-name #To remove package<\/p>\n<p>yum list #To list available packages version and state<\/p>\n<p>yum list extras #To list packages not available in repositories but listed in config file<\/p>\n<p>yum list obsoletes #To list packages which are obsoleted by repositories<\/p>\n<p>yum clean all #To list packages which are obsoleted by packages in yum repository<\/p>\n<p>yum update #Update all packages on your system<\/p>\n<p>yum update package-name #Update a package<\/p>\n<p>yum update package-name-prefix\\* #Update all with same prefix<\/p>\n<p>[\/bash]<\/p>\n<p>You can add new repos in \/etc\/yum.repos.d with files named file.repo For the option &#8220;gpgcheck=1&#8221; to work, use the &#8220;rpm &#8211;import GPG-KEY<\/p>\n<p>[bash]<br>rpm &#8211;import \/usr\/share\/rhn\/RPM-GPG-KEY<\/p>\n<p>rpm &#8211;import \/usr\/share\/rhn\/RPM-GPG-KEY-fedora<\/p>\n<p>File: \/etc\/yum.repos.d\/fedora.repo with following entry<\/p>\n<p>[base]<\/p>\n<p>name=Fedora Core $releasever &#8211; $basearch &#8211; Base<\/p>\n<p>#baseurl=http:\/\/download.fedora.redhat.com\/pub\/fedora\/linux\/core\/$releasever\/$basearch\/os\/<\/p>\n<p>mirrorlist=http:\/\/fedora.redhat.com\/download\/mirrors\/fedora-core-$releasever<\/p>\n<p>enabled=1<\/p>\n<p>gpgcheck=1<\/p>\n<p>[\/bash]<\/p>\n<p>Additional Commands&nbsp;<\/p>\n<p>[bash]<\/p>\n<p>tzselect #To change time zone of the machine<\/p>\n<p>command 2&gt;&amp;amp;1 | tee outputfile.txt #Output of a command is send to a text file<\/p>\n<p>wget &#8211;mirror http:\/\/www.example.com #To mirror a site<\/p>\n<p>wget -c http:\/\/www.example.com\/largefile #To continue downloading partially downloaded file<\/p>\n<p>[\/bash]<\/p>\n<p>Many more tricky commands to be updated soon based on System Admin Tools for more visit<\/p>\n<p class=\"first\"><a href=\"https:\/\/www.sparksupport.com\/it-infrastructure-management\">IT INFRASTRUCTURE MANAGEMENT<\/a><\/p>\n<p>)<\/p>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Now I am going introduce you to a set of commands &amp; System Admin Tools that may come handy FIND [bash]find -perm 777 -type d<\/p>\n","protected":false},"author":3,"featured_media":5132,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24,6],"tags":[25,26],"class_list":["post-430","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles","category-linux","tag-linux-command-line-tools","tag-linux-commands"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>System Admin Tools Part 11 - list of most widely used commands<\/title>\n<meta name=\"description\" content=\"We know the importance of System Admin Tools, the list of most widely used commands and tools to help you solve different problems very quickly.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"System Admin Tools Part 11 - list of most widely used commands\" \/>\n<meta property=\"og:description\" content=\"We know the importance of System Admin Tools, the list of most widely used commands and tools to help you solve different problems very quickly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\" \/>\n<meta property=\"article:published_time\" content=\"2007-08-18T12:37:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-01T12:51:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png\" \/>\n\t<meta property=\"og:image:width\" content=\"549\" \/>\n\t<meta property=\"og:image:height\" content=\"323\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Shijil T S\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shijil T S\" \/>\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\":\"Article\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\"},\"author\":{\"name\":\"Shijil T S\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/22359d1be71d2034f0fcfad7bb1d20e1\"},\"headline\":\"System Admin Tools Part 11\",\"datePublished\":\"2007-08-18T12:37:07+00:00\",\"dateModified\":\"2024-07-01T12:51:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\"},\"wordCount\":895,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png\",\"keywords\":[\"linux command line tools\",\"linux commands\"],\"articleSection\":[\"Articles\",\"linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\",\"name\":\"System Admin Tools Part 11 - list of most widely used commands\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png\",\"datePublished\":\"2007-08-18T12:37:07+00:00\",\"dateModified\":\"2024-07-01T12:51:15+00:00\",\"description\":\"We know the importance of System Admin Tools, the list of most widely used commands and tools to help you solve different problems very quickly.\",\"breadcrumb\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png\",\"width\":549,\"height\":323},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sparksupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"System Admin Tools Part 11\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\",\"url\":\"https:\/\/sparksupport.com\/blog\/\",\"name\":\"SparkSupport Blog\",\"description\":\"SparkSupport Blogs\",\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sparksupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\",\"name\":\"SparkSupport\",\"url\":\"https:\/\/sparksupport.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg\",\"width\":216,\"height\":44,\"caption\":\"SparkSupport\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/22359d1be71d2034f0fcfad7bb1d20e1\",\"name\":\"Shijil T S\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/b230de1fe222ae355698bc2670ef7c4290aef391ab75b46d111dc54cb3ab0e99?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b230de1fe222ae355698bc2670ef7c4290aef391ab75b46d111dc54cb3ab0e99?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b230de1fe222ae355698bc2670ef7c4290aef391ab75b46d111dc54cb3ab0e99?s=96&d=mm&r=g\",\"caption\":\"Shijil T S\"},\"description\":\"Hi All.. I am the CEO of SparkSupport and a Certified Kubernetes Expert, passionate about delivering innovative technology solutions and helping teams achieve their best.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/shijils\/\"],\"url\":\"https:\/\/sparksupport.com\/blog\/author\/shijil\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"System Admin Tools Part 11 - list of most widely used commands","description":"We know the importance of System Admin Tools, the list of most widely used commands and tools to help you solve different problems very quickly.","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:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/","og_locale":"en_US","og_type":"article","og_title":"System Admin Tools Part 11 - list of most widely used commands","og_description":"We know the importance of System Admin Tools, the list of most widely used commands and tools to help you solve different problems very quickly.","og_url":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/","article_published_time":"2007-08-18T12:37:07+00:00","article_modified_time":"2024-07-01T12:51:15+00:00","og_image":[{"width":549,"height":323,"url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png","type":"image\/png"}],"author":"Shijil T S","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shijil T S","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#article","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/"},"author":{"name":"Shijil T S","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/22359d1be71d2034f0fcfad7bb1d20e1"},"headline":"System Admin Tools Part 11","datePublished":"2007-08-18T12:37:07+00:00","dateModified":"2024-07-01T12:51:15+00:00","mainEntityOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/"},"wordCount":895,"commentCount":0,"publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png","keywords":["linux command line tools","linux commands"],"articleSection":["Articles","linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/","url":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/","name":"System Admin Tools Part 11 - list of most widely used commands","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png","datePublished":"2007-08-18T12:37:07+00:00","dateModified":"2024-07-01T12:51:15+00:00","description":"We know the importance of System Admin Tools, the list of most widely used commands and tools to help you solve different problems very quickly.","breadcrumb":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#primaryimage","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2007\/08\/pp.png","width":549,"height":323},{"@type":"BreadcrumbList","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-part-11\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sparksupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"System Admin Tools Part 11"}]},{"@type":"WebSite","@id":"https:\/\/sparksupport.com\/blog\/#website","url":"https:\/\/sparksupport.com\/blog\/","name":"SparkSupport Blog","description":"SparkSupport Blogs","publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sparksupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/sparksupport.com\/blog\/#organization","name":"SparkSupport","url":"https:\/\/sparksupport.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg","width":216,"height":44,"caption":"SparkSupport"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/22359d1be71d2034f0fcfad7bb1d20e1","name":"Shijil T S","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b230de1fe222ae355698bc2670ef7c4290aef391ab75b46d111dc54cb3ab0e99?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b230de1fe222ae355698bc2670ef7c4290aef391ab75b46d111dc54cb3ab0e99?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b230de1fe222ae355698bc2670ef7c4290aef391ab75b46d111dc54cb3ab0e99?s=96&d=mm&r=g","caption":"Shijil T S"},"description":"Hi All.. I am the CEO of SparkSupport and a Certified Kubernetes Expert, passionate about delivering innovative technology solutions and helping teams achieve their best.","sameAs":["https:\/\/www.linkedin.com\/in\/shijils\/"],"url":"https:\/\/sparksupport.com\/blog\/author\/shijil\/"}]}},"_links":{"self":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/430","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/comments?post=430"}],"version-history":[{"count":0,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/430\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media\/5132"}],"wp:attachment":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media?parent=430"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/categories?post=430"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/tags?post=430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}