Difference between revisions of "Dhcpcd"

From CBLFS
Jump to navigationJump to search
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| ftp://ftp.osuosl.org/pub/gentoo/distfiles/dhcpcd-{{Dhcpcd-Version}}.tar.bz2
+
| http://download.berlios.de/dhcpcd/dhcpcd-{{Dhcpcd-Version}}.tar.bz2
 
|}
 
|}
  
Line 17: Line 17:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix="" --mandir=/usr/share/man &&
+
  make CC="gcc"
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
chmod -v 754 /etc/dhcpc/dhcpcd.exe
 
  
 
== Multilib ==
 
== Multilib ==
Line 32: Line 30:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix="" --mandir=/usr/share/man &&
+
  make CC="gcc ${BUILD32}"  
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
chmod -v 754 /etc/dhcpc/dhcpcd.exe
 
  
 
=== N32 ===
 
=== N32 ===
Line 44: Line 40:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix="" --mandir=/usr/share/man &&
+
  make CC="gcc ${BUILDN32}"
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
chmod -v 754 /etc/dhcpc/dhcpcd.exe
 
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 56: Line 50:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --prefix="" --mandir=/usr/share/man &&
+
  make CC="gcc ${BUILD64}"
make
 
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
chmod -v 754 /etc/dhcpc/dhcpcd.exe
 

Revision as of 21:19, 28 December 2006

Download Source: http://download.berlios.de/dhcpcd/dhcpcd-5.2.8.tar.bz2

Introduction to Dhcpcd

Dhcpcd is an implementation of the DHCP client specified in RFC2131. This is useful for connecting your computer to a network which uses DHCP to assign network addresses.

Dependencies

Non-Multilib

Compile the package:

make CC="gcc"

Install the package

make 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 install

N32

Compile the package:

make CC="gcc ${BUILDN32}"

Install the package

make install

64Bit

Compile the package:

make CC="gcc ${BUILD64}"

Install the package

make install