elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Guía actualizada para evitar que un ransomware ataque tu empresa


  Mostrar Mensajes
Páginas: 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 49
41  Sistemas Operativos / GNU/Linux / Re: problema con ubuntu y windows en: 25 Abril 2011, 21:46 pm
Talvez tengas escondido el menu del Grub?
Comenta (pon un "#") hiddenmenu en el archivo de configuracion (menu.lst o grub.cfg...).
42  Sistemas Operativos / GNU/Linux / Re: ¿Linux compatible con aplicaciones windows? en: 19 Abril 2011, 23:47 pm
No conozco pero seguro hay equivalente para eso.

Y si, puedes ejecutar (ALGUNOS) juegos con Wine, fijate aca
43  Sistemas Operativos / GNU/Linux / Re: ¿Linux compatible con aplicaciones windows? en: 19 Abril 2011, 20:28 pm
No existe una "version de Linux" que ejecute programas de Window$.
Antes que nada para que los necesitas? talvez tienes un equivalente (gratis, libre y mejor) y capaz no necesitas usarlo. De ultima, como ya dijeron, usa Wine.
44  Sistemas Operativos / GNU/Linux / Re: Requisitos Linux en: 19 Abril 2011, 20:21 pm
Depende cada una, tambien depende que escritorio uses (KDE y Gnome requieren mas).
45  Programación / Scripting / Re: [Bash] Mis scripts en: 18 Abril 2011, 12:23 pm
Código
  1. #!/usr/bin/env bash
  2. # Script para extraer archivos
  3. # JuszR gentoo@rocks.net
  4. # GPL
  5.  
  6.  
  7. if [ "$#" -lt 1 ]; then
  8. echo -ne "\n\tUso:"
  9. echo -e "\n\t$(basename $0) <archivo> (.tar, .rar, .bz2...)"
  10. echo ""
  11. exit 1
  12. fi
  13.  
  14. if [ -f $1 ] ; then
  15.        case $1 in
  16.            *.tar.bz2 | *.tbz2)   tar xvjf $1        ;;
  17.            *.tar.gz)    tar xvzf $1     ;;
  18.            *.bz2)       bunzip2 $1       ;;
  19.            *.rar)       unrar x $1     ;;
  20.            *.gz)        gunzip $1     ;;
  21.            *.tar)       tar xvf $1        ;;
  22.            *.tgz)       tar xvzf $1       ;;
  23.            *.zip)       unzip $1     ;;
  24.            *.Z)         uncompress $1  ;;
  25.            *.7z)        7z x $1    ;;
  26.            *)           echo "'$1' no puede ser extraido" ;;
  27. esac
  28.    else
  29.        echo "'$1' no es un archivo valido"
  30.    fi
  31.  

Código
  1. #!/usr/bin/env bash
  2. # Colores en bash
  3. # JuszR gentoo@rocks.net
  4. # GPL
  5.  
  6. # Variables
  7. txtund=$(tput sgr 0 1)          # Subrayado
  8. txtbld=$(tput bold)             # Negrita
  9. bldred=${txtbld}$(tput setaf 1) #  rojo
  10. bldblu=${txtbld}$(tput setaf 4) #  azul
  11. bldwht=${txtbld}$(tput setaf 7) #  blanco
  12. txtrst=$(tput sgr0)             # Resetear
  13. info=${bldwht}*${txtrst}        # Feedback
  14. pass=${bldblu}*${txtrst}
  15. warn=${bldred}!${txtrst}
  16.  
  17. echo
  18. echo -e "$(tput bold) norm  negr  subr   tput-colores$(tput sgr0)"
  19.  
  20. for i in $(seq 1 7); do
  21.  echo " $(tput setaf $i)Texto$(tput sgr0) $(tput bold)$(tput setaf $i)Texto$(tput sgr0) $(tput sgr 0 1)$(tput setaf $i)Texto$(tput sgr0)  \$(tput setaf $i)"
  22. done
  23.  
  24. echo ' Negrita            $(tput bold)'
  25. echo ' Subrayado       $(tput sgr 0 1)'
46  Programación / Scripting / Re: Python (novato) en: 16 Abril 2011, 23:42 pm
Usas Python 3.x? Intenta con:
Código
  1. input("Pulsa cualquier tecla")
47  Sistemas Operativos / GNU/Linux / Re: administrar segundo usuario en: 10 Febrero 2011, 12:06 pm
Podrias tambien usar sudo para ejecutar esos comandos de 'admin'.
48  Seguridad Informática / Bugs y Exploits / Re: phishing fakebuuk en: 9 Febrero 2011, 00:01 am
Una especia de xploit, o me equivoco ?
49  Foros Generales / Foro Libre / Re: ¿Porqué usar linux/Unix en lugar de plataforma Dos/Windows ? en: 8 Febrero 2011, 23:46 pm
Linux es 100% configurable, tienes acceso al codigo y ves realmente lo que pasa.
En mi opinion, creo que en Linux tienes la opcion de aprender mas (por lo menos yo aprendi mucho mas que en Windows).   :silbar:

Gentoo rocks!
50  Sistemas Operativos / GNU/Linux / Re: Cosas curiosas XD en: 1 Febrero 2011, 22:43 pm
Interesante, no sabia que existia un messenger para consola. ;D

Por cierto, yo uso cmus como reproductor.
Páginas: 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 49
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines