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

 

 


Tema destacado: Recopilación Tutoriales y Manuales Hacking, Seguridad, Privacidad, Hardware, etc


  Mostrar Mensajes
Páginas: [1] 2 3 4 5 6 7 8
1  Sistemas Operativos / Windows / Re: ¿Linux? ¿Windows? o ¿Ambos? en: 30 Marzo 2012, 22:03 pm
1. Tener fedora solamente como S.O
Porque puedes virtualizar windows desde fedora :) y asi no tienes que reiniciar tu computadora para usar windows, sino que directamente desde fedora inicias windows virtualmente.
2  Comunicaciones / Redes / Re: Error al buscar el archivo /etc/init.d/bind9 en: 8 Marzo 2011, 19:34 pm
si te dá un fail entonces puedes mirar los logs
 /var/log/syslog y /var/log/messages
y tratar de interpretar que podría estar fallando.
3  Comunicaciones / Redes / Re: Error al buscar el archivo /etc/init.d/bind9 en: 8 Marzo 2011, 19:11 pm
nunca mencionaste "Linux from Scratch" xD

Citar
Create the named.conf file from which named will read the location of zone files, root name servers and secure DNS keys:

Código:
cat > /srv/named/etc/named.conf << "EOF"
 options {
     directory "/etc/namedb";
    pid-file "/var/run/named.pid";
    statistics-file "/var/run/named.stats";

 };
 controls {
     inet 127.0.0.1 allow { localhost; } keys { rndc_key; };
 };
 key "rndc_key" {
     algorithm hmac-md5;
     secret "<Insert secret from rndc-confgen's output here>";
 };
 zone "." {
     type hint;
     file "root.hints";
 };
 zone "0.0.127.in-addr.arpa" {
     type master;
     file "pz/127.0.0";
 };

// Bind 9 now logs by default through syslog (except debug).
// These are the default logging rules.

logging {
     category default { default_syslog; default_debug; };
     category unmatched { null; };

  channel default_syslog {
      syslog daemon;                      // send to syslog's daemon
                                          // facility
      severity info;                      // only send priority info
                                          // and higher
  };

  channel default_debug {
      file "named.run";                   // write to named.run in
                                          // the working directory
                                          // Note: stderr is used instead
                                          // of "named.run"
                                          // if the server is started
                                          // with the '-f' option.
      severity dynamic;                   // log at the server's
                                          // current debug level
  };

  channel default_stderr {
      stderr;                             // writes to stderr
      severity info;                      // only send priority info
                                          // and higher
  };

  channel null {
     null;                                // toss anything sent to
                                          // this channel
  };
};

EOF
4  Comunicaciones / Redes / Re: Servidor de Nombres de Dominio (DNS) en: 8 Marzo 2011, 15:55 pm
buenísimo el tute. sobre todo por los gráficos.
plap plap plap  ;-)
5  Comunicaciones / Redes / Re: Certificacion CCNA en: 8 Marzo 2011, 15:52 pm
vale la pena... bueno para nosotros como estudiantes debería valer la pena porque estaremos configurando routers... que no llegaríamos a comprar uno porque son caros... y pues que hariamos con un router en nuestro dormitorio? XD

además la documentación que tienen es muy buena, muy atractiva. CCNA v4 exploration.
6  Comunicaciones / Redes / Re: Velocidad de internet buena o mala? en: 8 Marzo 2011, 15:49 pm
a mi también me aparecen cosas asi... me muestra que cuando descargo lo hago a 500kbps pero mi jdownloader me dice que estoy descargando a 90Kbps je!  :xD

si, el tiene razon, sabes cuanto son 100mbps? xD con esa velocidad podrias hacer un backup de elhacker.net en 10 segundos xDD
jajaja
7  Comunicaciones / Redes / Re: duda certificación cisco en: 8 Marzo 2011, 15:44 pm
pues... yo tengo ccna 4 y me sirvió de mucho. mis amigos en el instituto me sirven el café gracias a eso.
y pues sobre la certificación yo creo que es necesario que haya un tutor o docente que diga si el estudiante está o no calificado para dar el examen de ceritifcación.
ergo, es necesario pagar las clases e ir y hacer los laboratorios y dar los examenes de cada capítulo frente al docente.
8  Comunicaciones / Redes / Re: Error al buscar el archivo /etc/init.d/bind9 en: 8 Marzo 2011, 15:39 pm
mirá a lo mejor pueda servirte esto.. yo tengo esto dentro de el archivo /etc/init.d/bind9

Código:
#!/bin/sh -e

### BEGIN INIT INFO
# Provides:          bind9
# Required-Start:    $remote_fs
# Required-Stop:     $remote_fs
# Should-Start:      $network $syslog
# Should-Stop:       $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start and stop bind9
# Description:       bind9 is a Domain Name Server (DNS)
#        which translates ip addresses to and from internet names
### END INIT INFO

PATH=/sbin:/bin:/usr/sbin:/usr/bin

# for a chrooted server: "-u bind -t /var/lib/named"
# Don't modify this line, change or create /etc/default/bind9.
OPTIONS=""
RESOLVCONF=no

test -f /etc/default/bind9 && . /etc/default/bind9

test -x /usr/sbin/rndc || exit 0

. /lib/lsb/init-functions
PIDFILE=/var/run/named/named.pid

check_network() {
    if [ -x /usr/bin/uname ] && [ "X$(/usr/bin/uname -o)" = XSolaris ]; then
IFCONFIG_OPTS="-au"
    else
IFCONFIG_OPTS=""
    fi
    if [ -z "$(/sbin/ifconfig $IFCONFIG_OPTS)" ]; then
       #log_action_msg "No networks configured."
       return 1
    fi
    return 0
}

case "$1" in
    start)
log_daemon_msg "Starting domain name service..." "bind9"

modprobe capability >/dev/null 2>&1 || true

# dirs under /var/run can go away on reboots.
mkdir -p /var/run/named
chmod 775 /var/run/named
chown root:bind /var/run/named >/dev/null 2>&1 || true

if [ ! -x /usr/sbin/named ]; then
    log_action_msg "named binary missing - not starting"
    log_end_msg 1
fi

if ! check_network; then
    log_action_msg "no networks configured"
    log_end_msg 1
fi

if start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/named \
--pidfile ${PIDFILE} -- $OPTIONS; then
    if [ "X$RESOLVCONF" != "Xno" ] && [ -x /sbin/resolvconf ] ; then
echo "nameserver 127.0.0.1" | /sbin/resolvconf -a lo.named
    fi
    log_end_msg 0
else
    log_end_msg 1
fi
    ;;

    stop)
log_daemon_msg "Stopping domain name service..." "bind9"
if ! check_network; then
    log_action_msg "no networks configured"
    log_end_msg 1
fi

if [ "X$RESOLVCONF" != "Xno" ] && [ -x /sbin/resolvconf ] ; then
    /sbin/resolvconf -d lo.named
fi
pid=$(/usr/sbin/rndc stop -p | awk '/^pid:/ {print $2}') || true
if [ -z "$pid" ]; then # no pid found, so either not running, or error
    pid=$(pgrep -f ^/usr/sbin/named) || true
    start-stop-daemon --stop --oknodo --quiet --exec /usr/sbin/named \
    --pidfile ${PIDFILE} -- $OPTIONS
fi
if [ -n $pid ]; then
  while kill -0 $pid 2>/dev/null; do
    log_progress_msg "waiting for pid $pid to die"
    sleep 1
  done
fi
log_end_msg 0
    ;;

    reload|force-reload)
log_daemon_msg "Reloading domain name service..." "bind9"
if ! check_network; then
    log_action_msg "no networks configured"
    log_end_msg 1
fi

/usr/sbin/rndc reload >/dev/null && log_end_msg 0 || log_end_msg 1
    ;;

    restart)
if ! check_network; then
    log_action_msg "no networks configured"
    exit 1
fi

$0 stop
$0 start
    ;;
   
    status)
    ret=0
status_of_proc -p ${PIDFILE} /usr/sbin/named bind9 2>/dev/null || ret=$?
exit $ret
;;

    *)
log_action_msg "Usage: /etc/init.d/bind9 {start|stop|reload|restart|force-reload|status}"
exit 1
    ;;
esac

exit 0

y el archivo tiene estos permisos
Citar
$ ls -l /etc/init.d/bind9
-rwxr-xr-x 1 root root 3215 dic  1 20:07 /etc/init.d/bind9
9  Foros Generales / Foro Libre / Re: Te gusta sentir miedo y terror? en: 8 Marzo 2011, 02:47 am
pues a mi si me gusta asustarme y dejarme llevar por el miedo...
de hecho mis peliculas favoritas son: El arte del diablo 1 y 2, y El ojo del mal.
Y obvio que las películas de freddy cruger.  >:(

Y tienen razón las películas de terror de ahora no son tan buenas... sobre todo esa la de "actividad paranormal 1 y 2"  :-X
10  Sistemas Operativos / GNU/Linux / Re: BoliviaOS en: 30 Noviembre 2010, 20:04 pm
a lo mejor bajó el BoliviaOS.iso en su máquina lo vé como archivo comprimido.
Lo que tiene q hacer es grabarla como imágen en algún DVD
Páginas: [1] 2 3 4 5 6 7 8
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines