Traceroute: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
Xep (talk | contribs)
mNo edit summary
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://gd.tuwien.ac.at/platform/sun/packages/solaris/freeware/SOURCES/traceroute-{{Traceroute-Version}}.tar.gz
| http://dmitry.butskoy.name/traceroute/traceroute-{{Traceroute-Version}}.tar.gz
|-
!Required Patch:
| http://svn.cross-lfs.org/svn/repos/patches/traceroute/traceroute-{{Traceroute-Version}}-update_config-1.patch
|}
|}


Line 18: Line 15:
Compile the package:
Compile the package:


patch -Np1 -i ../traceroute-{{Traceroute-Version}}-update_config-1.patch &&
sed -i -e 's/-o bin/-o root/' Makefile.in &&
./configure --prefix=/usr &&
  make
  make


Install the package
Install the package


  make install &&
  make prefix=/usr install
make install-man
 
Traceroute is installed SUID. To be FHS compliant, move it to /usr/bin with:
 
mv -v /usr/sbin/traceroute /usr/bin


== Multilib ==
== Multilib ==
Line 39: Line 28:
Compile the package:
Compile the package:


  patch -Np1 -i ../traceroute-{{Traceroute-Version}}-update_config-1.patch &&
  make CC="gcc ${BUILD32}"
sed -i -e 's/-o bin/-o root/' Makefile.in &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make


Install the package
Install the package


  make install &&
  make prefix=/usr install
make install-man
 
Traceroute is installed SUID. To be FHS compliant, move it to /usr/bin with:
 
mv -v /usr/sbin/traceroute /usr/bin


=== N32 ===
=== N32 ===
Line 57: Line 38:
Compile the package:
Compile the package:


  patch -Np1 -i ../traceroute-{{Traceroute-Version}}-update_config-1.patch &&
  make CC="gcc ${BUILDN32}"
sed -i -e 's/-o bin/-o root/' Makefile.in &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr &&
make


Install the package
Install the package


  make install &&
  make prefix=/usr install
make install-man
 
Traceroute is installed SUID. To be FHS compliant, move it to /usr/bin with:
 
mv -v /usr/sbin/traceroute /usr/bin


=== 64Bit ===
=== 64Bit ===
Line 75: Line 48:
Compile the package:
Compile the package:


  patch -Np1 -i ../traceroute-{{Traceroute-Version}}-update_config-1.patch &&
  make CC="gcc ${BUILD64}"
sed -i -e 's/-o bin/-o root/' Makefile.in &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr &&
make


Install the package
Install the package


  make install &&
  make prefix=/usr install
make install-man


Traceroute is installed SUID. To be FHS compliant, move it to /usr/bin with:
= Contents =


mv -v /usr/sbin/traceroute /usr/bin
{| style="text-align: left;"
 
|-valign="top"
== Content ==
! Installed Programs:
 
| traceroute
Installed Program: traceroute
|-valign="top"
 
! Installed Libraries:
Installed Libraries: None
| None
 
|-valign="top"
Installed Directories: None
! 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.

Revision as of 05:46, 25 May 2008

Download Source: http://dmitry.butskoy.name/traceroute/traceroute-2.0.15.tar.gz

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

Dependencies

Non-Multilib

Compile the package:

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:

make CC="gcc ${BUILD32}"

Install the package

make prefix=/usr install

N32

Compile the package:

make CC="gcc ${BUILDN32}"

Install the package

make prefix=/usr install

64Bit

Compile the package:

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.