close
Warning:
Failed to sync with repository "ogBrowser-Git": (1366, "Incorrect string value: '\\xF0\\x9F\\x93\\xA6 I...' for column 'message' at row 1"); repository information may be out of date. Look in the Trac log for more information including mitigation strategies.
- Timestamp:
-
Jul 15, 2009, 9:38:59 AM (16 years ago)
- Author:
-
adelcastillo
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
68 | 68 | = Compilaciones estáticas de los principales programas = |
69 | 69 | |
| 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 | }}} |