Comments on: LFCA: How to Monitor Basic System Metrics in Linux – Part 8 https://www.tecmint.com/monitor-basic-system-metrics-in-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Tue, 27 Apr 2021 08:28:22 +0000 hourly 1 By: James Kiarie https://www.tecmint.com/monitor-basic-system-metrics-in-linux/comment-page-1/#comment-1482231 Tue, 27 Apr 2021 08:28:22 +0000 https://www.tecmint.com/?p=42122#comment-1482231 In reply to dragonmouth.

The difference between the two is that when you are creating a cron job for the first time using the ‘crontab -e‘ command, you are basically opening the crontab file in a text editor ( vim editor in my case ) and defining your cron job. As you can clearly see, the file is opened in vim editor from the color-coded entries.

When you are listing the cronjobs using the crontab -l command, the cron command simply lists all the entries in the crontab including your cron job. This is more like using the cat command to view the contents of a file.

]]>
By: dragonmouth https://www.tecmint.com/monitor-basic-system-metrics-in-linux/comment-page-1/#comment-1481629 Sun, 25 Apr 2021 17:39:21 +0000 https://www.tecmint.com/?p=42122#comment-1481629 The “List Cron Jobs” image does not show the output of the “crontab -l” command. Is exactly the same as the “Create Cron Job in Linux” image.

]]>
By: Ravi Saive https://www.tecmint.com/monitor-basic-system-metrics-in-linux/comment-page-1/#comment-1479904 Fri, 23 Apr 2021 07:35:32 +0000 https://www.tecmint.com/?p=42122#comment-1479904 In reply to Gérard Talbot.

@Gerard,

Thanks, corrected the command in the article…

]]>
By: Gérard Talbot https://www.tecmint.com/monitor-basic-system-metrics-in-linux/comment-page-1/#comment-1479656 Thu, 22 Apr 2021 20:22:28 +0000 https://www.tecmint.com/?p=42122#comment-1479656 James and/or Ravi,

The 3rd cron job is edited like this

*/30    *	*	*	*

but should be instead

30    *	*	*	*

Gérard

]]>