{"id":578,"date":"2009-05-18T17:14:12","date_gmt":"2009-05-18T11:29:12","guid":{"rendered":"https:\/\/www.sparksupport.com\/blog\/?p=578"},"modified":"2024-07-01T12:29:05","modified_gmt":"2024-07-01T12:29:05","slug":"system-admin-tools-basic-linux-commands","status":"publish","type":"post","link":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/","title":{"rendered":"System Admin Tools Basic Linux Commands For System Admins"},"content":{"rendered":"<p><\/p>\n<p>System Admin Tools:First of all lets learn how to find out what is chocking or gobbling up the server resource. You can get the memory usage by issuing the command &#8220;free -m&#8221;<\/p>\n<p>[bash]<\/p>\n<p>root@spark [~]# free -m<\/p>\n<p>total used free shared buffers cached<\/p>\n<p>Mem: 4051 3052 999 0 249 1294<\/p>\n<p>-\/+ buffers\/cache: 1508 2543<\/p>\n<p>Swap: 4000 1 3999<\/p>\n<p>[\/bash]<\/p>\n<p>The top row &#8216;used&#8217; (3052) value will almost always nearly match the top row mem value (4051). Since Linux likes to use any spare memory to cache disk blocks (1294).<\/p>\n<p>The key figure to look at is the buffers\/cache row used value (1508). This is how much space your applications are currently using. For best performance, this number should be less than your total (4051) memory.<\/p>\n<p><strong>VMSTAT<\/strong><\/p>\n<p>vmstat helps you to see, among other things, if your server is swapping. Take a look at the following run of vmstat doing a one second refresh for two iterations.<\/p>\n<p>[bash]<\/p>\n<p>root@spark [~]# vmstat 1 2<\/p>\n<p>procs &#8212;&#8212;&#8212;&#8211;memory&#8212;&#8212;&#8212;- &#8212;swap&#8211; &#8212;&#8211;io&#8212;- &#8211;system&#8211; &#8212;-cpu&#8212;-<\/p>\n<p>r b swpd free buff cache si so bi bo in cs us sy id wa<\/p>\n<p>0 0 1172 1689332 333588 663092 0 0 19 113 1 2 3 1 95 1<\/p>\n<p>0 0 1172 1690320 332920 663100 0 0 352 256 355 681 5 3 91 2<\/p>\n<p>[\/bash]<\/p>\n<p>The first row shows your server averages. The si (swap in) and so (swap out) columns show if you have been swapping (i.e. needing to dip into &#8216;virtual&#8217; memory) in order to run your server&#8217;s applications. The si\/so numbers should be 0 (or close to it). Numbers in the hundreds or thousands indicate your server is swapping heavily. This consumes a lot of CPU and other server resources and you would get a very significant benefit from adding more memory to your server.<\/p>\n<p>Some other columns of interest: The r (runnable) b (blocked) and w (waiting) columns help see your server load. Waiting processes are swapped out. Blocked processes are typically waiting on I\/O. The runnable column is the number of processes trying to something. These numbers combine to form the &#8216;load&#8217; value on your server. Typically you want the load value to be one or less per CPU in your server.<\/p>\n<p>The bi (bytes in) and bo (bytes out) column show disk I\/O (including swapping memory to\/from disk) on your server.<br>The us (user), sy (system) and id (idle) show the amount of CPU your server is using. The higher the idle value, the better.<\/p>\n<p><strong>PS<\/strong><\/p>\n<p>This command is used to know all the processes running in the server by System Admin Tools. It can be also used to find out process which is using most of the memory and cpu.<\/p>\n<p>To find out top 3 memory consuming processes.<\/p>\n<p>[bash]<\/p>\n<p>ps -auxf | sort -nr -k 4 | head -3<\/p>\n<p>[\/bash]<\/p>\n<p>To find out top 3 cpu consuming processes<\/p>\n<p>[bash]<\/p>\n<p>ps -auxf | sort -nr -k 3 | head -3<\/p>\n<p>[\/bash]<\/p>\n<p><strong>TOP<\/strong><\/p>\n<p>Say the System Admin Tools is slow and you want to find out who is gobbling up all the CPU and\/or memory. To display the top processes, you use the command top.<\/p>\n<p>Note that unlike other commands, top does not produce an output and sits still. It refreshes the screen to display new information. So, if you just issue top and leave the screen up, the most current information is always up. Top runs until you press &#8220;q&#8221; to quit top.<\/p>\n<p>[bash]<\/p>\n<p>$ top<\/p>\n<p>18:46:13 up 11 days, 21:50, 5 users, load average: 0.11, 0.19, 0.18<\/p>\n<p>151 processes: 147 sleeping, 4 running, 0 zombie, 0 stopped<\/p>\n<p>CPU states: cpu user nice system irq softirq iowait idle<\/p>\n<p>total 12.5% 0.0% 6.7% 0.0% 0.0% 5.3% 75.2%<\/p>\n<p>Mem: 1026912k av, 999548k used, 27364k free, 0k shrd, 116104k buff<\/p>\n<p>758312k actv, 145904k in_d, 16192k in_c<\/p>\n<p>Swap: 2041192k av, 122224k used, 1918968k free 590140k cached<\/p>\n<p>PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND<\/p>\n<p>451 spark 15 0 6044 4928 4216 S 0.1 0.4 0:20 0 tnslsnr<\/p>\n<p>8991 spark 15 0 1248 1248 896 R 0.1 0.1 0:00 0 top<\/p>\n<p>1 root 19 0 440 400 372 S 0.0 0.0 0:04 0 init<\/p>\n<p>2 root 15 0 0 0 0 SW 0.0 0.0 0:00 0 keventd<\/p>\n<p>3 root 15 0 0 0 0 SW 0.0 0.0 0:00 0 kapmd<\/p>\n<p>4 root 34 19 0 0 0 SWN 0.0 0.0 0:00 0 ksoftirqd\/0<\/p>\n<p>7 root 15 0 0 0 0 SW 0.0 0.0 0:01 0 bdflush<\/p>\n<p>5 root 15 0 0 0 0 SW 0.0 0.0 0:33 0 kswapd<\/p>\n<p>6 root 15 0 0 0 0 SW 0.0 0.0 0:14 0 kscand<\/p>\n<p>8 root 15 0 0 0 0 SW 0.0 0.0 0:00 0 kupdated<\/p>\n<p>9 root 25 0 0 0 0 SW 0.0 0.0 0:00 0 mdrecoveryd<\/p>\n<p>&#8230; output snipped &#8230;<\/p>\n<p>[\/bash]<\/p>\n<p>Let&#8217;s examine the different types of information produced by System Admin Tools.<\/p>\n<p>The first line:<\/p>\n<p>[bash]<\/p>\n<p>18:46:13 up 11 days, 21:50, 5 users, load average: 0.11, 0.19, 0.18<\/p>\n<p>[\/bash]<\/p>\n<p>shows the current time (18:46:13), that system has been up for 11 days; that the System Admin Tools has been working for 21 hours 50 seconds. The load average of the system is shown (0.11, 0.19, 0.18) for the last 1, 5 and 15 minutes respectively. (By the way, you can also get this information by issuing the uptime command.)<\/p>\n<p>If the load average is not required, press the letter &#8220;l&#8221; (lowercase L); it will turn it off. To turn it back on press l again. The second line: 151 processes: 147 sleeping, 4 running, 0 zombie, 0 stopped shows the number of processes, running, sleeping, etc. The third and fourth lines:<\/p>\n<p>[bash]<\/p>\n<p>CPU states: cpu user nice system irq softirq iowait idle<\/p>\n<p>total 12.5% 0.0% 6.7% 0.0% 0.0% 5.3% 75.2%<\/p>\n<p>[\/bash]<\/p>\n<p>show the CPU utilization details. The above line shows that user processes consume 12.5% and system consumes 6.7%. The user processes include the Oracle processes. Press &#8220;t&#8221; to turn these three lines off and on. If there are more than one CPU, you will see one line per CPU.<\/p>\n<p>The next two lines:<\/p>\n<p>[bash]<\/p>\n<p>Mem: 1026912k av, 1000688k used, 26224k free, 0k shrd, 113624k buff<\/p>\n<p>758668k actv, 146872k in_d, 14460k in_c Swap: 2041192k av, 122476k<\/p>\n<p>used, 1918716k free 591776k cached<\/p>\n<p>[\/bash]<\/p>\n<p>show the memory available and utilized. Total memory is &#8220;1026912k av&#8221;, approximately 1GB, of which only 26224k or 26MB is free. The swap space is 2GB; but it&#8217;s almost not used. To turn it off and on, press &#8220;m&#8221;.<\/p>\n<p>The rest of the display shows the processes in a tabular format. Here is the explanation of the columns:<\/p>\n<p>Column Description<\/p>\n<p>PID The process ID of the process<\/p>\n<p>USER The user running the process<\/p>\n<p>PRI The priority of the process<\/p>\n<p>NI The nice value: The higher the value, the lower the priority of the task<\/p>\n<p>SIZE Memory used by this process (code+data+stack)<\/p>\n<p>RSS The physical memory used by this process<\/p>\n<p>SHARE The shared memory used by this process<\/p>\n<p><strong>STAT<\/strong><\/p>\n<p>The status of this process, shown in code. Some major status codes are:<\/p>\n<p>R Running<\/p>\n<p>S Sleeping<\/p>\n<p>Z Zombie<\/p>\n<p>T Stopped<\/p>\n<p>You can also see second and third characters, which indicate:<\/p>\n<p>W Swapped out process<\/p>\n<p>N positive nice value<\/p>\n<p>%CPU The percentage of CPU used by this process<\/p>\n<p>%MEM The percentage of memory used by this process<\/p>\n<p>TIME The total CPU time used by this process<\/p>\n<p>CPU If this is a multi-processor System Admin Tools, this column indicates the ID of the CPU this process is running on.<\/p>\n<p>COMMAND The command issued by this process<\/p>\n<p>While the top is being displayed, you can press a few keys to format the display as you like. Pressing the uppercase M key sorts the output by memory usage. (Note that using lowercase m will turn the memory summary lines on or off at the top of the display.) This is very useful when you want to find out who is consuming the memory. Here is sample output:<\/p>\n<p>[bash]<\/p>\n<p>PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND<\/p>\n<p>31903 spark 15 0 75760 72M 72508 S 0.0 7.2 0:01 0 ora_smon_PRODB2<\/p>\n<p>31909 spark 15 0 68944 66M 64572 S 0.0 6.6 0:03 0 ora_mmon_PRODB2<\/p>\n<p>31897 spark 15 0 53788 49M 48652 S 0.0 4.9 0:00 0 ora_dbw0_PRODB2<\/p>\n<p>[\/bash]<\/p>\n<p>Now that you learned how to interpret the output, let&#8217;s see how to use command line parameters.<\/p>\n<p>The most useful is -d, which indicates the delay between the screen refreshes. To refresh every second, use top -d 1.<\/p>\n<p>The other useful option is -p. If you want to monitor only a few processes, not all, you can specify only those after the -p option. To monitor processes 13609, 13608 and 13554, issue: top -p 13609 -p 13608 -p 13554<br>This will show results in the same format as the top command, but only those specific processes.<\/p>\n<p><strong>SKILL &amp; SNICE<\/strong><\/p>\n<p>From the previous discussion you learned how to identify a CPU consuming resource. What if you find that a process is consuming a lot of CPU and memory, but you don&#8217;t want to kill it? Consider the top output below:<\/p>\n<p>[bash]<\/p>\n<p>$ top -c -p 16514<\/p>\n<p>23:00:44 up 12 days, 2:04, 4 users, load average: 0.47, 0.35, 0.31<\/p>\n<p>1 processes: 1 sleeping, 0 running, 0 zombie, 0 stopped<\/p>\n<p>CPU states: cpu user nice system irq softirq iowait idle<\/p>\n<p>total 0.0% 0.6% 8.7% 2.2% 0.0% 88.3% 0.0%<\/p>\n<p>Mem: 1026912k av, 1010476k used, 16436k free, 0k shrd, 52128k buff<\/p>\n<p>766724k actv, 143128k in_d, 14264k in_c<\/p>\n<p>Swap: 2041192k av, 83160k used, 1958032k free 799432k cached<\/p>\n<p>PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND<\/p>\n<p>16514 spark 19 4 28796 26M 20252 D N 7.0 2.5 0:03 0 sparkPRODB2&#8230;<\/p>\n<p>[\/bash]<\/p>\n<p>Now that you confirmed the process 16514 is consuming a lot of memory, you can &#8220;freeze&#8221; it but not kill it using the skill command.<\/p>\n<p>[bash]<\/p>\n<p>$ skill -STOP 1<br>After this, check the top output:<br>23:01:11 up 12 days, 2:05, 4 users, load average: 1.20, 0.54, 0.38<\/p>\n<p>1 processes: 0 sleeping, 0 running, 0 zombie, 1 stopped<\/p>\n<p>CPU states: cpu user nice system irq softirq iowait idle<\/p>\n<p>total 2.3% 0.0% 0.3% 0.0% 0.0% 2.3% 94.8%<\/p>\n<p>Mem: 1026912k av, 1008756k used, 18156k free, 0k shrd, 3976k buff<\/p>\n<p>770024k actv, 143496k in_d, 12876k in_c<\/p>\n<p>Swap: 2041192k av, 83152k used, 1958040k free 851200k cached<\/p>\n<p>PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND<\/p>\n<p>16514 spark 19 4 28796 26M 20252 T N 0.0 2.5 0:04 0 sparkPRODB2&#8230;<\/p>\n<p>[\/bash]<\/p>\n<p>The CPU is now 94% idle from 0%. The process is effectively frozen. After some time, you may want to revive the process from coma:<\/p>\n<p>[bash]<\/p>\n<p>$ skill -CONT 16514<\/p>\n<p>[\/bash]<\/p>\n<p>This approach is immensely useful for temporarily freezing processes to make room for more important processes to complete.<\/p>\n<p>The command is very versatile. If you want to stop all processes of the user &#8220;spark&#8221;, only one command does it all:<\/p>\n<p>[bash]<\/p>\n<p>$ skill -STOP spark&gt;<\/p>\n<p>[\/bash]<\/p>\n<p>You can use a user, a PID, a command or terminal id as argument. The following stops all rman commands.<\/p>\n<p>[bash]<\/p>\n<p>$ skill -STOP rman<\/p>\n<p>[\/bash]<\/p>\n<p>As you can see, skill decides that argument you entered a process ID, userid, or command and acts appropriately. This may cause an issue in some cases, where you may have a user and a command in the same name. The best example is the &#8220;spark&#8221; process, which is typically run by the user &#8220;spark&#8221;. So, when you want to stop the process called &#8220;spark&#8221; and you issue:<\/p>\n<p>[bash]<\/p>\n<p>$ skill -STOP spark<\/p>\n<p>[\/bash]<\/p>\n<p>all the processes of user &#8220;spark&#8221; stop, including the session you may be on. To be completely unambiguous you can optionally give a new parameter to specify the type of the parameter. To stop a command called spark, you can give:<\/p>\n<p>[bash]<\/p>\n<p>$ skill -STOP -c spark<\/p>\n<p>[\/bash]<\/p>\n<p>The command snice is similar. Instead of stopping a process it makes its priority a lower one. First, check the top output:<\/p>\n<p>[bash]<\/p>\n<p>PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND<\/p>\n<p>3 root 15 0 0 0 0 RW 0.0 0.0 0:00 0 kapmd<\/p>\n<p>13680 spark 15 0 11336 10M 8820 T 0.0 1.0 0:00 0 spark<\/p>\n<p>13683 spark 15 0 9972 9608 7788 T 0.0 0.9 0:00 0 spark<\/p>\n<p>13686 spark 15 0 9860 9496 7676 T 0.0 0.9 0:00 0 spark<\/p>\n<p>13689 spark 15 0 10004 9640 7820 T 0.0 0.9 0:00 0 spark<\/p>\n<p>13695 spark 15 0 9984 9620 7800 T 0.0 0.9 0:00 0 spark<\/p>\n<p>13698 spark 15 0 10064 9700 7884 T 0.0 0.9 0:00 0 spark<\/p>\n<p>13701 spark 15 0 22204 21M 16940 T 0.0 2.1 0:00 0 spark<\/p>\n<p>[\/bash]<\/p>\n<p>Now, drop the priority of the processes of &#8220;spark&#8221; by four points. Note that the higher the number, the lower the priority.<\/p>\n<p>[bash]<\/p>\n<p>$ snice +4 -u spark<br>PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND<\/p>\n<p>16894 spark 20 4 38904 32M 26248 D N 5.5 3.2 0:01 0 spark<\/p>\n<p>[\/bash]<\/p>\n<p>Note how the NI column (for nice values) is now 4 and the priority is now set to 20, instead of 15. This is quite useful in reducing priorities.<\/p>\n<p>Now lets get over to trace the process and manipulate it System Admin Tools.<\/p>\n<p><strong>lsof<\/strong><\/p>\n<p>The command lsof shows a list of processes attached to open files or network ports. List processes attached to a given file: lsof filenmame<\/p>\n<p>[bash]<\/p>\n<p>List all open files on system:<br>lsof<\/p>\n<p>(Long list)<\/p>\n<p>List all files opened by user:<\/p>\n<p>[\/bash]<\/p>\n<p>The commands netstat -punta and socklist will list open network connections. Use the command lsof -i TCP:port-number to see the processes attached to the port.<\/p>\n<p>[bash]<\/p>\n<p>root@spark [~]# lsof -i TCP:25 COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME exim 11350 mailnull 4u IPv4 1226820346 TCP 201.201.203.43:smtp-&gt;esp222.neoplus.adsl.tpnet.pl:2466 (ESTABLISHED) exim 11350 mailnull 5u IPv4 1226820346 TCP 201.201.203.43:smtp-&gt;esp222.neoplus.adsl.tpnet.pl:2466 (ESTABLISHED) exim 11811 mailnull 4u IPv4 1226830746 TCP 201.201.203.43:smtp-&gt;ANantes-151-1-39-245.w83-195.abo.wanadoo.fr:627 31 (ESTABLISHED) exim 11811 mailnull 5u IPv4 1226830746 TCP 201.201.203.43:smtp-&gt;ANantes-151-1-39-245.w83-195.abo.wanadoo.fr:627 31 (ESTABLISHED) exim 14135 mailnull 4u IPv4 1226855434 TCP 201.201.203.43:smtp-&gt;125.115.215.112:3653 (ESTABLISHED) exim 14135 mailnull 5u IPv4 1226855434 TCP 201.201.203.43:smtp-&gt;125.115.215.112:3653 (ESTABLISHED)<\/p>\n<p>[\/bash]<\/p>\n<p><strong>To kill the processes<\/strong><\/p>\n<p>[bash]<\/p>\n<p>kill<\/p>\n<p>killall<\/p>\n<p>[\/bash]<\/p>\n<p>This will perform an orderly shutdown of the process. If it hangs give a stronger signal with:<\/p>\n<p>[bash]<\/p>\n<p>kill -9 .<\/p>\n<p>[\/bash]<\/p>\n<p>This method is not as sanitary and thus less preferred.<\/p>\n<p>A signal may be given to the process. The program must be programmed to handle the given signal. See \/usr\/include\/bits\/signum.h for a full list.<\/p>\n<p>To restart a process after updating it&#8217;s configuration file by System Admin Tools, issue the command<\/p>\n<p>[bash]<\/p>\n<p>kill -HUP<\/p>\n<p>[\/bash]<\/p>\n<p>The process attached to an open file can be killed using the command fuser:<\/p>\n<p>[bash]<\/p>\n<p>fuser -ki filename<\/p>\n<p>[\/bash]<\/p>\n\n\n<p>for more useful ideas please visit our web site <a href=\"https:\/\/www.sparksupport.com\/\">sparksupport.com<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>System Admin Tools:First of all lets learn how to find out what is chocking or gobbling up the server resource. You can get the memory<\/p>\n","protected":false},"author":11,"featured_media":5117,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24,6],"tags":[26],"class_list":["post-578","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles","category-linux","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 Basic Linux Commands For System Admins -<\/title>\n<meta name=\"description\" content=\"Check to see what are the best tools for System Admin Tools. Check the advice and commands that experts use in their system administrators.\" \/>\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-basic-linux-commands\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"System Admin Tools Basic Linux Commands For System Admins -\" \/>\n<meta property=\"og:description\" content=\"Check to see what are the best tools for System Admin Tools. Check the advice and commands that experts use in their system administrators.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/\" \/>\n<meta property=\"article:published_time\" content=\"2009-05-18T11:29:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-01T12:29:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1400\" \/>\n\t<meta property=\"og:image:height\" content=\"869\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Prince Joseph\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prince Joseph\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 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-basic-linux-commands\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/\"},\"author\":{\"name\":\"Prince Joseph\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/fdf9723cb111ad3ff9cae2be3c338574\"},\"headline\":\"System Admin Tools Basic Linux Commands For System Admins\",\"datePublished\":\"2009-05-18T11:29:12+00:00\",\"dateModified\":\"2024-07-01T12:29:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/\"},\"wordCount\":2113,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp\",\"keywords\":[\"linux commands\"],\"articleSection\":[\"Articles\",\"linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/\",\"name\":\"System Admin Tools Basic Linux Commands For System Admins -\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp\",\"datePublished\":\"2009-05-18T11:29:12+00:00\",\"dateModified\":\"2024-07-01T12:29:05+00:00\",\"description\":\"Check to see what are the best tools for System Admin Tools. Check the advice and commands that experts use in their system administrators.\",\"breadcrumb\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp\",\"width\":1400,\"height\":869},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sparksupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"System Admin Tools Basic Linux Commands For System Admins\"}]},{\"@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\/fdf9723cb111ad3ff9cae2be3c338574\",\"name\":\"Prince Joseph\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f7c5c2516a95f08ae367062cf0ad025eeca19c74379652497ff84dc2555c5e99?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f7c5c2516a95f08ae367062cf0ad025eeca19c74379652497ff84dc2555c5e99?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f7c5c2516a95f08ae367062cf0ad025eeca19c74379652497ff84dc2555c5e99?s=96&d=mm&r=g\",\"caption\":\"Prince Joseph\"},\"url\":\"https:\/\/sparksupport.com\/blog\/author\/prince\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"System Admin Tools Basic Linux Commands For System Admins -","description":"Check to see what are the best tools for System Admin Tools. Check the advice and commands that experts use in their system administrators.","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-basic-linux-commands\/","og_locale":"en_US","og_type":"article","og_title":"System Admin Tools Basic Linux Commands For System Admins -","og_description":"Check to see what are the best tools for System Admin Tools. Check the advice and commands that experts use in their system administrators.","og_url":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/","article_published_time":"2009-05-18T11:29:12+00:00","article_modified_time":"2024-07-01T12:29:05+00:00","og_image":[{"width":1400,"height":869,"url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp","type":"image\/webp"}],"author":"Prince Joseph","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prince Joseph","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#article","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/"},"author":{"name":"Prince Joseph","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/fdf9723cb111ad3ff9cae2be3c338574"},"headline":"System Admin Tools Basic Linux Commands For System Admins","datePublished":"2009-05-18T11:29:12+00:00","dateModified":"2024-07-01T12:29:05+00:00","mainEntityOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/"},"wordCount":2113,"commentCount":0,"publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp","keywords":["linux commands"],"articleSection":["Articles","linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/","url":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/","name":"System Admin Tools Basic Linux Commands For System Admins -","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp","datePublished":"2009-05-18T11:29:12+00:00","dateModified":"2024-07-01T12:29:05+00:00","description":"Check to see what are the best tools for System Admin Tools. Check the advice and commands that experts use in their system administrators.","breadcrumb":{"@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#primaryimage","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2009\/05\/13.webp","width":1400,"height":869},{"@type":"BreadcrumbList","@id":"https:\/\/sparksupport.com\/blog\/system-admin-tools-basic-linux-commands\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sparksupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"System Admin Tools Basic Linux Commands For System Admins"}]},{"@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\/fdf9723cb111ad3ff9cae2be3c338574","name":"Prince Joseph","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f7c5c2516a95f08ae367062cf0ad025eeca19c74379652497ff84dc2555c5e99?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f7c5c2516a95f08ae367062cf0ad025eeca19c74379652497ff84dc2555c5e99?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f7c5c2516a95f08ae367062cf0ad025eeca19c74379652497ff84dc2555c5e99?s=96&d=mm&r=g","caption":"Prince Joseph"},"url":"https:\/\/sparksupport.com\/blog\/author\/prince\/"}]}},"_links":{"self":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/578","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\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/comments?post=578"}],"version-history":[{"count":0,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/578\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media\/5117"}],"wp:attachment":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media?parent=578"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/categories?post=578"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/tags?post=578"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}