Changes between Version 3 and Version 4 of InitrdCliente


Ignore:
Timestamp:
Jul 15, 2009, 9:38:59 AM (16 years ago)
Author:
adelcastillo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InitrdCliente

    v3 v4  
    6868= Compilaciones estáticas de los principales programas =
    6969
     70La mayoría de las fuentes se han conseguido a través de "apt-get source paquete" en una Ubuntu Jaunty. Si no se dice nada se supondrá que se ha obtenido de esa manera. Para instalar las dependencias necesarias se puede hacer de esta manera "apt-get build-dep paquete". No olvidar ejecutar strip después de compilarlo ya que puede disminuir mucho el tamaño del ejecutable final.
     71
     72== chntpw ==
     73
     74{{{
     75make chntpw.static
     76}}}
     77
     78== ctorrent ==
     79{{{
     80LDFLAGS=-static ./configure
     81make
     82}}}
     83
     84== s/fdisk ==
     85El paquete es el util-linux.
     86{{{
     87LDFLAGS=-static ./configure --with-fsprobe={blkid,volume_id}
     88make
     89}}}
     90
     91== kexec-tools ==
     92{{{
     93LDFLAGS=-static ./configure
     94make
     95}}}
     96== ntfsclone ==
     97{{{
     98LDFLAGS=-static ./configure
     99make
     100}}}
     101
     102== parted ==
     103Para compilar se necesita gcc-4.2, la version 4.3 da errores.
     104{{{
     105LDFLAGS='-static' ./configure --disable-Werror
     106make
     107}}}
     108
     109== partimage ==
     110Descargado directamente desde: http://sourceforge.net/projects/partimage/files/stable/partimage-0.6.4-static.tar.bz2/download
     111
     112== tftp ==
     113{{{
     114LDFLAGS='-static' ./configure --without-tcpwrappers
     115make
     116}}}