| 70 | La 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 | {{{ |
| 75 | make chntpw.static |
| 76 | }}} |
| 77 | |
| 78 | == ctorrent == |
| 79 | {{{ |
| 80 | LDFLAGS=-static ./configure |
| 81 | make |
| 82 | }}} |
| 83 | |
| 84 | == s/fdisk == |
| 85 | El paquete es el util-linux. |
| 86 | {{{ |
| 87 | LDFLAGS=-static ./configure --with-fsprobe={blkid,volume_id} |
| 88 | make |
| 89 | }}} |
| 90 | |
| 91 | == kexec-tools == |
| 92 | {{{ |
| 93 | LDFLAGS=-static ./configure |
| 94 | make |
| 95 | }}} |
| 96 | == ntfsclone == |
| 97 | {{{ |
| 98 | LDFLAGS=-static ./configure |
| 99 | make |
| 100 | }}} |
| 101 | |
| 102 | == parted == |
| 103 | Para compilar se necesita gcc-4.2, la version 4.3 da errores. |
| 104 | {{{ |
| 105 | LDFLAGS='-static' ./configure --disable-Werror |
| 106 | make |
| 107 | }}} |
| 108 | |
| 109 | == partimage == |
| 110 | Descargado directamente desde: http://sourceforge.net/projects/partimage/files/stable/partimage-0.6.4-static.tar.bz2/download |
| 111 | |
| 112 | == tftp == |
| 113 | {{{ |
| 114 | LDFLAGS='-static' ./configure --without-tcpwrappers |
| 115 | make |
| 116 | }}} |