Created
June 16, 2013 16:44
-
-
Save andru255/5792607 to your computer and use it in GitHub Desktop.
Diferencia entre un ejecutable .sh y un .deb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| La diferencia entre estos archivos es: | |
| [mi_archivo].sh | |
| Este archivo se ejecuta en consola de esta manera como user normal: | |
| $ sudo chmod +x [mi_archivo].sh | |
| $ ./mi_archivo.sh | |
| [mi_archivo].deb | |
| Este archivo es un paquete para distros de debian y se ejecutan de la siguiente manera: | |
| $sudo chmod +x [mi_archivo].deb | |
| $sudo dpkg -i [mi_archivo].deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment