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

 

 


Tema destacado: Introducción a la Factorización De Semiprimos (RSA)


  Mostrar Mensajes
Páginas: [1] 2 3
1  Sistemas Operativos / GNU/Linux / Editor VI o VIM en: 28 Enero 2014, 00:38 am
Yo quiero guardar un archivo utilizando combinaciones de teclas rápidas como ctrl + ALGO y otras (las mas comunes), en vez de usar ":wq", y otras funciones mas ... no los encuentro en el help de mi ubuntu, alguien podría escribirlas, gracias...
2  Seguridad Informática / Seguridad / Como protegerse de wireshark? en: 21 Agosto 2013, 04:32 am
Bueno mi es como puedo cifrar todo mi trafico saliente de mi placa notebook cuando estoy en una red inalambrica..o que manera de protegerme de ser esnifeado?
3  Sistemas Operativos / GNU/Linux / Re: Internet Super-Server en ubuntu 11.10 destock (inetd) en: 4 Julio 2012, 04:47 am
* Not starting internet superserver: no services enabled

supongo que de algun archivo de configuracion falta habilitarlo con un "yes" pero busco no lo he encontrado,si alguien me puede dar una mano , muchas gracias.
4  Sistemas Operativos / GNU/Linux / Re: Internet Super-Server en ubuntu 11.10 destock (inetd) en: 4 Julio 2012, 04:34 am
Gracias por ayudar ccruch  ya habia probado como tu me dijiste pero esto es lo que ocurre:

# sudo service inetd start
inetd: unrecognized service


mira en la carpeta /etc, tengo el siguiente archivo inetd.conf, esta compuesto por lo siguiente:

# /etc/inetd.conf:  see inetd(8) for further informations.
#
# Internet superserver configuration database
#
#
# Lines starting with "#:LABEL:" or "#<off>#" should not
# be changed unless you know what you are doing!
#
# If you want to disable an entry so it isn't touched during
# package updates just comment it out with a single '#' character.
#
# Packages should modify this file by using update-inetd(8)
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
#:INTERNAL: Internal services
#discard      stream   tcp   nowait   root   internal
#discard      dgram   udp   wait   root   internal
#daytime      stream   tcp   nowait   root   internal
#time      stream   tcp   nowait   root   internal

#:STANDARD: These are standard services.

#:BSD: Shell, login, exec and talk are BSD protocols.

#:MAIL: Mail, news and uucp services.

#:INFO: Info services

#:BOOT: TFTP service is provided primarily for booting.  Most sites
#       run this only on machines acting as "boot servers."

#:RPC: RPC based services

#:HAM-RADIO: amateur-radio services

#:OTHER: Other services


En /etc/rc0.d tengo k20openbsd-inetd con lo siguiente:

#!/bin/sh -e
### BEGIN INIT INFO
# Provides:          openbsd-inetd
# Required-Start:    $local_fs $remote_fs
# Required-Stop:     $local_fs $remote_fs
# Should-Start:      $syslog
# Should-Stop:       $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start or stop the inetd daemon.
### END INIT INFO

DAEMON=/usr/sbin/inetd

[ -x $DAEMON -a -e /etc/inetd.conf ] || exit 0

[ -e /etc/default/openbsd-inetd ] && . /etc/default/openbsd-inetd

. /lib/lsb/init-functions

checkportmap () {
  if ! grep -v -s "^ *#" /etc/inetd.conf | grep -q -s 'rpc/'; then
    return 0
  fi

  if [ ! -x /usr/bin/rpcinfo ]; then
    log_action_msg "WARNING: rpcinfo not available - RPC services may be unavailable!"
    log_action_msg "         (Commenting out the rpc services in inetd.conf will"
    log_action_msg "         disable this message)"
  elif ! /usr/bin/rpcinfo -u localhost portmapper >/dev/null 2>&1; then
    log_action_msg "WARNING: portmapper inactive - RPC services unavailable!"
    log_action_msg "         (Commenting out the rpc services in inetd.conf will"
    log_action_msg "         disable this message)"
  fi
}

checknoservices () {
    if ! grep -q "^[[:alnum:]/]" /etc/inetd.conf; then
   log_action_msg "Not starting internet superserver: no services enabled"
   exit 0
    fi
}

case "$1" in
    start)
   checknoservices
        checkportmap
   log_daemon_msg "Starting internet superserver" "inetd"
   start-stop-daemon --start --quiet --pidfile /var/run/inetd.pid \
       --oknodo --exec $DAEMON -- $OPTIONS
   log_end_msg 0
   ;;
    stop)
   log_daemon_msg "Stopping internet superserver" "inetd"
   start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \
       --oknodo
   log_end_msg 0
   ;;
    reload|force-reload)
   log_daemon_msg "Reloading internet superserver" "inetd"
   start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \
       --oknodo --signal 1
   log_end_msg 0
   ;;
    restart)
   checkportmap
   log_daemon_msg "Restarting internet superserver" "inetd"
   start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \
       --oknodo
   checknoservices
   sleep 1
   start-stop-daemon --start --quiet --pidfile /var/run/inetd.pid \
       --exec $DAEMON -- $OPTIONS
   log_end_msg 0
   ;;
    status)
   status_of_proc -p /var/run/inetd.pid $DAEMON inetd && exit 0 || exit $?
   ;;
    *)
   echo "Usage: /etc/init.d/openbsd-inetd {start|stop|reload|force-reload|restart|status}"
   exit 2
   ;;
esac

exit 0





Muchas gracias por su ayuda.
5  Sistemas Operativos / GNU/Linux / Internet Super-Server en ubuntu 11.10 destock (inetd) en: 2 Julio 2012, 06:22 am
Hola , tengo entendido que hay que habilitar el servicio (inetd_enable="YES")de "/etc/rc.conf" en la carpeta etc no tengo este archivo, solamente rc.local,tampoco tenia inetd.conf pero lo pude ubicar instalando el paquete simple network service spawner .Que tendria que hacer para habilitar el servicio en ubuntu 11.10 ?.. muchas gracias. ;-)

encontre el archivo rc.conf  en /etc/init/

pero no dice nada "inetd_enable="YES""...
6  Programación / Scripting / Se desaparece la consola!! en: 22 Marzo 2012, 05:53 am
MOD: Aviso, Usa el botón "Insertar código", y ponle un título describiendo el lenguaje en tu post.  :P

El codigo es el siguiente ,lo ejecuto y no me pide ninguna variable , se abre y se cierra la consola en segundos..

Código
  1. #!/usr/bin/bash
  2. if [ $# -lt 2 ]
  3. then
  4. echo $0 Numero Numero2
  5. exit 1
  6. fi
  7. calculo=`expr $1 + $2`
  8. echo $calculo
  9. exit 0

Que estoy haciendo mal?muchas gracias.
7  Comunicaciones / Mensajería / emphaty + facebook en: 30 Julio 2011, 06:33 am
Mi pregunta es la siguiente  , cada vez que entro en emphaty y quiero configurar el chat del facebook no puedo porque me sale error en la red.. mi navegador es google crohme.Saludos
8  Sistemas Operativos / GNU/Linux / Sin sonido en ubuntu como root pero si como root en: 30 Julio 2011, 02:45 am
Mi problema es el suiuiente tengo sonido como usuario pero no como root y me sale el error 
"esperando que el sistema de sonido responda" .. Pero si entro como usuario que si tengo sonido y pongo algo de sonido entro como root y me sigue andando pero no me deja entrar a sistema > preferencia>sonido. Gracias
9  Sistemas Operativos / GNU/Linux / Re: no puedo iniciar en modo grafico mi ubuntu en: 30 Julio 2011, 02:39 am
desintale los driver de nvidia. es un bug  ;-)
10  Sistemas Operativos / GNU/Linux / no puedo iniciar en modo grafico mi ubuntu en: 29 Julio 2011, 23:28 pm
Buenas mi problema es el siguiente, instale unos driver de la placa de video y ahora me pide login y pass en modo comando y algo de tty.
la captura que tome es la siguiente: [Edit del mod: La salida del log de Xorg fue a pastebin] http://pastebin.com/iEnxSD6f

Alguien me puede decir como volver a la normalidad..desde ya gracias..Saludos
Páginas: [1] 2 3
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines