Difference between revisions of "Traceroute"

From CBLFS
Jump to navigationJump to search
 
 
(13 intermediate revisions by 6 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://gd.tuwien.ac.at/platform/sun/packages/solaris/freeware/SOURCES/traceroute-1.4a12.tar.gz
+
| http://downloads.sourceforge.net/traceroute/traceroute-{{Traceroute-Version}}.tar.gz
|-
+
|}
!Download Source:
+
{| style="text-align: left; background-color: AliceBlue;"
| ftp://ftp.ee.lbl.gov/traceroute-1.4a12.tar.gz
+
!Download Patch:
 +
| http://cross-lfs.org/~cosmo/patches/traceroute-{{Traceroute-Version}}-defaults_fix-1.patch
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|The Traceroute package contains a program which is used to display the network route that packets take to reach a specified host. This is a standard network troubleshooting tool. If you find yourself unable to connect to another system, traceroute can help pinpoint the problem.}}
 +
 +
{{Note|The patch is only required if using Make 3.82 or newer.}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 16: Line 21:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's/-o bin/-o root/' Makefile.in &&
+
  traceroute-{{Traceroute-Version}}-defaults_fix-1.patch
./configure --prefix=/usr &&
 
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install &&
+
  make prefix=/usr install
make install-man
 
 
 
'''''Note: traceroute is install with SUID. To be FHS compliant, move it to /usr/bin as:'''''
 
mv -v /usr/sbin/traceroute /usr/bin
 
  
 
== Multilib ==
 
== Multilib ==
Line 35: Line 35:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's/-o bin/-o root/' Makefile.in &&
+
  traceroute-{{Traceroute-Version}}-defaults_fix-1.patch
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
+
  make CC="gcc ${BUILD32}"
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make prefix=/usr install
make install-man
 
  
 
=== N32 ===
 
=== N32 ===
Line 48: Line 46:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's/-o bin/-o root/' Makefile.in &&
+
  traceroute-{{Traceroute-Version}}-defaults_fix-1.patch
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  make CC="gcc ${BUILDN32}"
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make prefix=/usr install
make install-man
 
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 61: Line 57:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's/-o bin/-o root/' Makefile.in &&
+
  traceroute-{{Traceroute-Version}}-defaults_fix-1.patch
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  make CC="gcc ${BUILD64}"
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make prefix=/usr install
make install-man
 
  
== Content ==
+
= Contents =
  
The Traceroute package contains a program which is used to display the network route that packets take to reach a specified host. This is a standard network troubleshooting tool. If you find yourself unable to connect to another system, traceroute can help pinpoint the problem.
+
{| style="text-align: left;"
 
+
|-valign="top"
Installed Program: traceroute
+
! Installed Programs:
Installed Libraries: None
+
| traceroute
Installed Directories: None
+
|-valign="top"
 +
! Installed Libraries:
 +
| None
 +
|-valign="top"
 +
! Installed Directories:
 +
| None
 +
|}
  
 
=== Short Descriptions ===
 
=== Short Descriptions ===
  
 
traceroute: does basically what it says: it traces the route your packets take from the host you are working on to another host on a network, showing all the intermediate hops (gateways) along the way.
 
traceroute: does basically what it says: it traces the route your packets take from the host you are working on to another host on a network, showing all the intermediate hops (gateways) along the way.
 +
 +
[[Category:Network Applications]]

Latest revision as of 07:20, 28 August 2010

Download Source: http://downloads.sourceforge.net/traceroute/traceroute-2.0.15.tar.gz
Download Patch: http://cross-lfs.org/~cosmo/patches/traceroute-2.0.15-defaults_fix-1.patch

Introduction to Traceroute

The Traceroute package contains a program which is used to display the network route that packets take to reach a specified host. This is a standard network troubleshooting tool. If you find yourself unable to connect to another system, traceroute can help pinpoint the problem.

Project Homepage: Unknown

Caution.png

Note

The patch is only required if using Make 3.82 or newer.

Dependencies

Non-Multilib

Compile the package:

traceroute-2.0.15-defaults_fix-1.patch
make

Install the package

make prefix=/usr install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

traceroute-2.0.15-defaults_fix-1.patch
make CC="gcc ${BUILD32}"

Install the package

make prefix=/usr install

N32

Compile the package:

traceroute-2.0.15-defaults_fix-1.patch
make CC="gcc ${BUILDN32}"

Install the package

make prefix=/usr install

64Bit

Compile the package:

traceroute-2.0.15-defaults_fix-1.patch
make CC="gcc ${BUILD64}"

Install the package

make prefix=/usr install

Contents

Installed Programs: traceroute
Installed Libraries: None
Installed Directories: None

Short Descriptions

traceroute: does basically what it says: it traces the route your packets take from the host you are working on to another host on a network, showing all the intermediate hops (gateways) along the way.