From e10bf099b01e6daf913796b2533657dce193844b Mon Sep 17 00:00:00 2001 From: Abayomi <73853894+yomikoye@users.noreply.github.com> Date: Wed, 14 Sep 2022 13:16:13 +0300 Subject: [PATCH] Add traceroute resources (#1758) * Remove upcoming page and PDFs page from indexing * Add tooling content * Add project management contentg * Add content for design system basics * Update 110-traceroute.md Add information for traceroute to DevOps roadmap with links * Update content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md Co-authored-by: Kamran Ahmed --- .../101-live-in-terminal/110-traceroute.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md index 0295e347c..d35cf2aca 100644 --- a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md +++ b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md @@ -1 +1,9 @@ -# Traceroute \ No newline at end of file +# Traceroute + +`traceroute` command is a command in Linux that prints the route a network packet takes from its source (e.g. your computer) to the destination host (e.g., roadmap.sh). It is quite valuable in investigating slow network connections as it can help us spot the slow leg of the network packet journey through the internet. + +It has the following syntax: `$ traceroute [OPTIONS] DESTINATION` e.g. `$ traceroute roadmap.sh` + +Free Content +How to Run Traceroute in Linux +Traceroute command in Linux with examples