4x04 Seguridad en sistemas Unix / Linux (parte 2)
@eZine
Published in
Knowledge Slaves Hacker
· 11 months ago
... Starting /sbin/rpc.portmap..." # /sbin/rpc.portmap #fi # At this point, we are ready to talk to The World... # Mount NFS filesystems: #echo "Mounting remote file systems..." #/sbin/mount -a -t nfs # This may be our /usr runtime!!! # Show the mounted volumes: #/sbin/mount -v -t nfs # Begin a list of started daemons: echo -n "Starting daemons: " # Start the SYSLOGD/KLOGD daemons: if [ -x ${NET}/syslogd ]; then echo -n " syslogd" ${NET}/syslogd sleep 1 # prevent syslogd/klogd race condition on SMP kernels echo -n " klogd" # '-c 3' = display level 'error' or higher messages on console ...