date : 2019-12-22 start time : 21.35.50 stop time : 21.35.54 runtime : 4 remark : size (MB) : 0.305 layout-version : 1.26.72 hostname : ttylinux2015 domain : virtualization : virtualbox nodename : ttylinux2015 model-id : x86_64 cpu_cnt : 1 cpu-speed : 2395.015 MHz bin : /optbin data : /var/optdata OS-name : Linux license : linux kernel version : 3.10.2 OS-version-level : #1 SMP PREEMPT Sun Mar 1 13:35:37 MST 2015 linux distro name : ttylinux linux distro file : /etc/ttylinux-target linux distro details : x86_64-generic-linux-gnu OS-release : 86_64-generic-linux-gnu timezone : TZ=UTC hwclock : Sun Dec 22 21:35:52 2019 0.000000 seconds run level : superuser password : 0100e85915bc1a00179cd434802c70df memory real : 995 MB uptime : 2 min
#!/bin/bash source /etc/rc.d/rc.functions if [[ "${1}" = "start" ]]; then if [[ -x /bin/loadkeys ]]; then echo "keycode 14 = BackSpace" | /bin/loadkeys echo "keycode 111 = Delete" | /bin/loadkeys fi fi if [[ "${1}" = "stop" ]]; then : fi
#!/bin/bash trap ":" SIGINT SIGQUIT SIGTERM SIGTSTP set +e # Do not exit immediately if a command exits with a non-zero status. set +u # Do not treat unset variables as an error when substituting. source /etc/rc.d/rc.functions PATH=/sbin:/bin; export PATH [[ -x /bin/dmesg ]] && /bin/dmesg -n1 # Set console loglevel to 1 (man dmesg). exec 0<> /dev/console 1>&0 2>&0 # Set the I/O of this script to the console. stty onlcr # Avoid staircase text, I think. mount -n -t proc proc /proc if ! LANG=C fgrep -q "proc /proc proc" /proc/mounts; then failure $"no proc file system; cannot mount it at /proc -- BYE BYE" /etc/rc.d/rc.sysdone fi mount -n -t sysfs sysfs /sys if ! LANG=C fgrep -q "sysfs /sys sysfs" /proc/mounts; then failure $"no sysfs; cannot mount it at /sys -- BYE BYE" /etc/rc.d/rc.sysdone fi if [[ ! -d /proc/bus/usb && -x /sbin/modprobe ]]; then /sbin/modprobe usbcore >/dev/null 2>&1 fi [[ -d /proc/bus/usb ]] && mount -n -o devmode=0666 -t usbfs usbfs /proc/bus/usb mount -n -o remount,rw / if [[ ! -L /etc/mtab ]]; then rm -f /etc/mtab* >/etc/mtab mount -f / # Enter / into mtab. fi k_console="" # console=<device> k_root="" # root=<device> if LANG=C grep -q "\<console=" /proc/cmdline; then k_console=$(sed 's/.*console=\([^ ,]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<root=" /proc/cmdline; then k_root=$(sed 's/.*root=\([^ ]*\).*/\1/' /proc/cmdline) fi k_enet=0 # enet k_nofirewall=0 # nofirewall k_nofsck=0 # nofsck k_nosshd=0 # nosshd k_fqdn="" # host=<name> k_hwclock="" # hwclock=local|utc k_login="" # login=<device,...> k_modules="" # modules=<module,...> k_nologin="" # nologin=<device,...> k_tz="" # tz=<timezone> k_uuid="" # crosslinux-flash=<uuid> LANG=C grep -q "\<enet\>" /proc/cmdline && k_enet=1 LANG=C grep -q "\<nofirewall\>" /proc/cmdline && k_nofirewall=1 LANG=C grep -q "\<nofsck\>" /proc/cmdline && k_nofsck=1 LANG=C grep -q "\<nosshd\>" /proc/cmdline && k_nosshd=1 if LANG=C grep -q "\<host=" /proc/cmdline; then k_fqdn=$(sed 's/.*host=\([^ ]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<hwclock=" /proc/cmdline; then k_hwclock=$(sed 's/.*hwclock=\([^ ]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<login=" /proc/cmdline; then k_login=$(sed 's/.*login=\([^ ]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<modules=" /proc/cmdline; then k_modules=$(sed 's/.*modules=\([^ ]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<nologin=" /proc/cmdline; then k_nologin=$(sed 's/.*nologin=\([^ ]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<tz=" /proc/cmdline; then k_tz=$(sed 's/.*tz=\([^ ]*\).*/\1/' /proc/cmdline) fi if LANG=C grep -q "\<crosslinux-flash=" /proc/cmdline; then k_uuid=$(sed 's/.*crosslinux-flash=\([^ ]*\).*/\1/' /proc/cmdline) fi if [[ -n "${k_fqdn}" ]]; then hostName="${k_fqdn%%.*}" domain=${k_fqdn%.*} [[ "${k_fqdn}" = "${hostName}" ]] && hostName="" ip=$(LANG=C grep "# HOSTNAME$" /etc/hosts | LANG=C awk '{ print $1 }') hostline="${ip} ${k_fqdn} ${hostName} # HOSTNAME" if [[ -f /etc/hosts ]]; then sed -e "s/^.* # HOSTNAME$/${hostline}/" -i /etc/hosts else echo "${hostline}" >/etc/hosts fi rm -f /etc/HOSTNAME echo "${k_fqdn}" >/etc/HOSTNAME unset hostName unset domain unset ip unset hostline fi [[ -r /etc/HOSTNAME ]] && HOSTNAME=$(</etc/HOSTNAME) || HOSTNAME=localhost HOSTNAME=${HOSTNAME%%.*} echo $"" echo -e $"${T_RED}ttylinux 2015.02${T_NORM}" echo -e $"${T_BLUE} > ${T_CYAN}http://www.ttylinux.net/${T_NORM}" echo -e $"${T_BLUE} > ${T_BOLD}hostname: ${HOSTNAME}${T_NORM}" echo $"" unset banner if [[ -x /bin/hostname ]]; then /bin/hostname ${HOSTNAME} else action $"cannot set hostname: /bin/hostname not found" false if ! LANG=C grep -q "${HOSTNAME}" /etc/hosts; then attn $"hostname ${HOSTNAME} NOT found in /etc/hosts file" fi fi if [[ -x /sbin/sysctl && -r /etc/sysctl.conf ]]; then echo $"configuring kernel parameters..." /sbin/sysctl -p /etc/sysctl.conf echo $"...kernel parameters done." fi [[ -w /proc/sys/kernel/printk ]] && echo "4 4 1 7" >/proc/sys/kernel/printk if [[ -r /etc/modtab ]]; then if [[ -e /proc/ksyms || -e /proc/modules ]]; then while read module arguments; do [[ -z "${module}" || x"${module}" = x"#" ]] && continue modprobe ${module} ${arguments} >/dev/null 2>&1 if [[ $? -eq 0 ]]; then success $"load Kernel Module: ${module}" else failure $"load kernel module: ${module}" fi done </etc/modtab fi fi _kmodules=${k_modules//,/ } if [[ -n "${_kmodules}" ]]; then for module in ${_kmodules}; do modprobe ${module} >/dev/null 2>&1 if [[ $? -eq 0 ]]; then success $"load Kernel Module: ${module}" else failure $"load kernel module: ${module}" fi done; unset module fi unset _kmodules if [[ -x /lib/udev/udevd ]]; then action $"mounting /run tmpfs" \ mount -n -t tmpfs tmpfs /run -o mode=755,size=1024k action $"setting up static device nodes" \ cp -a /lib/udev/devices/* /dev/ [[ -f /proc/sys/kernel/hotplug ]] && echo "" >>/proc/sys/kernel/hotplug action $"starting udevd" \ /lib/udev/udevd --daemon waiting $"waiting for uevents" /usr/bin/udevadm trigger --action=add --type=devices /usr/bin/udevadm settle [[ $? -eq 0 ]] && done_success || done_failure fi if [[ ! -e /dev/root ]]; then if [[ x"${k_root:0:5}" = x"/dev/" && -b "${k_root}" ]]; then ln -s ${k_root} /dev/root elif [[ ${k_root} -gt 0 ]] 2>/dev/null; then major=$((${k_root} / 100)) minor=$((${k_root} % 100)) mknod -m 660 /dev/root b $major $minor chown root.disk /dev/root fi fi _swaps="" for sd in $( LANG=C egrep -v "^[[:space:]]*(#|$)" /etc/fstab | \ LANG=C awk '{ if ($3 == "swap") print $1 }' ); do if [[ x"${sd%[0-7]}" = x"/dev/loop" ]]; then bd=$(LANG=C grep ${sd} /etc/swaptab | LANG=C awk '{ print $2 }') cr=$(LANG=C grep ${sd} /etc/swaptab | LANG=C awk '{ print $3 }') action $"setup ${cr} encryption via ${sd} for swap ${bd}" \ dd if=/dev/urandom bs=1 count=15 2>/dev/null | \ losetup -p 0 -e ${cr} ${sd} ${bd} unset bd unset cr fi _swaps="${_swaps} ${sd}" mkswap ${sd} >/dev/null 2>&1 || failure $"mkswap failure: ${sd}" swapon ${sd} >/dev/null 2>&1 || failure $"swapon failure: ${sd}" done; unset sd unset _swaps cfgFile=/etc/sysconfig/clock [[ ! -f "${cfgFile}" ]] && >"${cfgFile}" if [[ -n "${k_tz}" ]]; then TZ=${k_tz} if LANG=C grep -q "^TZ=" ${cfgFile}; then sed -e "s/\<TZ=.*/TZ=${TZ}/" -i "${cfgFile}" sed -e "s/\<TZ=.*/TZ=${TZ}/" -i "/etc/profile" else echo "TZ=${TZ}" >>${cfgFile} fi fi if [[ -n "${k_hwclock}" ]]; then [[ "${k_hwclock}" = "utc" ]] && UTC=yes || UTC=no if LANG=C grep -q "^UTC=" ${cfgFile}; then sed -e "s/\<UTC=.*/UTC=${UTC}/" -i "${cfgFile}" else echo "UTC=${UTC}" >>${cfgFile} fi fi unset cfgFile UTC=yes TZ=UTC [[ -f /etc/sysconfig/clock ]] && source /etc/sysconfig/clock [[ -n "${TZ}" ]] && { export TZ sed -e "s/\<TZ=.*/TZ=${TZ}/" -i "/etc/profile" } HWCLOCKARGS="-s" case "${UTC}" in yes|true|1) HWCLOCKARGS="${HWCLOCKARGS} -u"; tz="utc" ;; # UCT no|false|0) HWCLOCKARGS="${HWCLOCKARGS} -l"; tz="local" ;; # local time esac if [[ -n "$(ls /dev/rtc* 2>/dev/null)" ]]; then hwclock ${HWCLOCKARGS} fi unset tz rootFSCK="yes" [[ -f /etc/.norootfsck ]] && rootFSCK="no" [[ ${k_nofsck} -eq 1 ]] && rootFSCK="no" if [[ "${rootFSCK}" = "yes" ]]; then mount -n -o remount,ro / fsck -T -C -p / rcStat=$? [[ "${rcStat}" = "0" ]] && success $"root file system checked" [[ "${rcStat}" = "1" ]] && passed $"root file system checked" if [[ ${rcStat} -gt 1 ]]; then failure $"checking root filesystem" echo $"" echo $"fsck returned ${rcStat}" echo $"" echo $"***** An error occurred during the file system check." echo $"***** Login as root. The system might reboot when you" echo $"***** return from the the sulogin shell." echo $"" PS1=$"(Repair file system) \# # "; export PS1 mount -n -o remount,rw / sulogin /dev/console echo -n $"sulogin returned $? Type 'r' to reboot system: " a=""; read a if [[ x"${a}" = x"r" ]]; then echo $"unmounting file systems." umount -a -v mount -n -o remount,ro / echo $"reboot in progress." reboot -f fi unset a fi unset rcStat mount -n -o remount,rw / fi unset rootFSCK dev=$(LANG=C egrep -v "^[[:space:]]*(#|$)" /etc/fstab | \ LANG=C awk '{ if ($2 == "/tmp") print $1 }') if [[ -b "${dev}" ]]; then mke2fs ${dev} >/dev/null 2>&1 fi if [[ -z "${dev}" ]]; then rm -rf /tmp && mkdir -m 1777 /tmp fi unset dev if [[ ${k_nofsck} -eq 0 ]]; then fsck -A -C -R -T -p -t nonfs,nosmbfs rcStat=$? [[ "${rcStat}" = "0" ]] && success $"file systems checked" [[ "${rcStat}" = "1" ]] && passed $"file systems checked" if [[ ${rcStat} -gt 1 ]]; then failure $"checking root filesystem" echo $"" echo $"fsck returned ${rcStat}" echo $"" echo $"***** An error occurred during the file system check." echo $"***** Login as root. The system might reboot when you" echo $"***** return from the the sulogin shell." echo $"" PS1=$"(Repair file system) \# # "; export PS1 mount -n -o remount,rw / sulogin /dev/console echo -n $"sulogin returned $? Type 'r' to reboot system: " a=""; read a if [[ x"${a}" = x"r" ]]; then echo $"unmounting file systems." umount -a -v mount -n -o remount,ro / echo $"reboot in progress." reboot -f fi unset a fi unset rcStat fi mount -a -t nonfs chmod 1777 /tmp PATH=/sbin:/usr/sbin:/bin:/usr/bin; export PATH if [[ -x /usr/bin/udevadm ]]; then waiting $"waiting for previous uevents" for f in $(udevadm info --run)/tmp-rules--*; do _dest=${f##*tmp-rules--} [[ "${_dest}" = '*' ]] && break cat ${f} >> /etc/udev/rules.d/${_dest} rm -f ${f} unset _dest done; unset f /usr/bin/udevadm trigger --action=add --type=subsystems /usr/bin/udevadm settle [[ $? -eq 0 ]] && done_success || done_failure fi [[ -f /etc/sysconfig/clock ]] && source /etc/sysconfig/clock [[ -n "${TZ}" ]] && { export TZ sed -e "s/\<TZ=.*/TZ=${TZ}/" -i "/etc/profile" } HWCLOCKARGS="-s" case "${UTC}" in yes|true|1) HWCLOCKARGS="${HWCLOCKARGS} -u"; tz="utc" ;; # UCT no|false|0) HWCLOCKARGS="${HWCLOCKARGS} -l"; tz="local" ;; # local time esac if [[ -n "$(ls /dev/rtc* 2>/dev/null)" ]]; then action $"setting up system clock [${tz}] $(date)" hwclock ${HWCLOCKARGS} else attn $"no RTC device found /dev/rtc[0-9]" fi unset tz _font="/etc/i18n/font" _kmap="/etc/i18n/kmap-$(uname -m)" if [[ -x /usr/sbin/loadfont && -r ${_font} ]]; then if [[ x"${k_console:0:9}" != x"/dev/ttyS" && \ x"${k_console:0:5}" != x"/ttyS" && \ x"${k_console:0:4}" != x"ttyS" ]]; then /usr/sbin/loadfont <${_font} fi fi if [[ -x /sbin/loadkmap && -r ${_kmap} ]]; then /sbin/loadkmap <${_kmap} fi unset _font unset _kmap SYSFONT="" SYSKMAP="" [[ -f /etc/sysconfig/console ]] && source /etc/sysconfig/console if [[ -n "${SYSFONT}" && -x /bin/setfont ]]; then action $"setting console font (${SYSFONT})" /bin/setfont ${SYSFONT} fi if [[ -n "${SYSKMAP}" && -x /bin/loadkeys ]]; then action $"loading console keymap (${SYSKMAP})" /bin/loadkeys ${SYSKMAP} fi rm -rf /var/tmp mkdir -m 1777 /var/tmp for file in /var/lock/subsys/* /var/run/*; do [[ -e "${file}" ]] && rm -rf ${file} done; unset file >/var/run/utmp touch /var/log/wtmp chgrp utmp /var/run/utmp /var/log/wtmp chmod 0444 /var/run/utmp chmod 0664 /var/log/wtmp if [[ -f /var/run/utmpx || -f /var/log/wtmpx ]]; then >/var/run/utmpx touch /var/log/wtmpx chgrp utmp /var/run/utmpx /var/log/wtmpx chmod 0444 /var/run/utmpx chmod 0664 /var/log/wtmpx fi if [[ -x /bin/dmesg ]]; then /bin/dmesg >/var/log/dmesg 2>&1 fi [[ -f /proc/modules && -x /sbin/depmod ]] && \ action $"updating module dependencies" /sbin/depmod -A wait _login=${k_console} [[ x"${k_console:0:5}" = x"/dev/" ]] && _login=${k_console:5} _login="${_login} "${k_login//,/ } _nologin=${k_nologin//,/ } _kick=0 if [[ -n "${_login}" ]]; then for p in ${_login}; do if LANG=C grep -q "^#${p}" /etc/inittab; then sed -e "s/^#${p}/${p}/" -i "/etc/inittab" _kick=1 fi if LANG=C grep -q "^#${p}" /etc/securetty; then sed -e "s/^#${p}/${p}/" -i "/etc/securetty" fi done; unset p fi if [[ -n "${_nologin}" ]]; then for p in ${_nologin}; do if LANG=C grep -q "^${p}" /etc/inittab; then sed -e "s/^${p}/#${p}/" -i "/etc/inittab" _kick=1 fi if LANG=C grep -q "^${p}" /etc/securetty; then sed -e "s/^${p}/#${p}/" -i "/etc/securetty" fi done; unset p fi [[ ${_kick} -eq 1 ]] && kill -HUP 1 # Signal init to reread /etc/inittab. unset _kick unset _login unset _nologin if [[ ${k_enet} -eq 1 ]]; then if [[ -L "/sys/class/net/eth0" ]]; then /sbin/sysconfig --netconfig ifcfg-eth0.enable=yes /sbin/sysconfig --netconfig ifcfg-eth0.dhcp=yes fi if [[ -L "/sys/class/net/eth1" ]]; then /sbin/sysconfig --netconfig ifcfg-eth1.enable=yes /sbin/sysconfig --netconfig ifcfg-eth1.dhcp=yes fi if [[ -L "/sys/class/net/eth2" ]]; then /sbin/sysconfig --netconfig ifcfg-eth2.enable=yes /sbin/sysconfig --netconfig ifcfg-eth2.dhcp=yes fi if [[ -L "/sys/class/net/eth3" ]]; then /sbin/sysconfig --netconfig ifcfg-eth3.enable=yes /sbin/sysconfig --netconfig ifcfg-eth3.dhcp=yes fi if [[ -L "/sys/class/net/usb0" ]]; then /sbin/sysconfig --netconfig ifcfg-usb0.enable=yes /sbin/sysconfig --netconfig ifcfg-usb0.dhcp=yes fi if [[ -L "/sys/class/net/usb1" ]]; then /sbin/sysconfig --netconfig ifcfg-usb1.enable=yes /sbin/sysconfig --netconfig ifcfg-usb1.dhcp=yes fi fi if [[ ${k_nofirewall} -eq 1 ]]; then cfgFile=/etc/sysconfig/firewall [[ ! -f ${cfgFile} ]] && >${cfgFile} if LANG=C grep -q "^FIREWALL=" ${cfgFile}; then sed -e "s/\<FIREWALL=.*/FIREWALL=off/" -i "${cfgFile}" else echo "FIREWALL=off" >>${cfgFile} fi unset cfgFile fi if [[ ${k_nosshd} -eq 1 ]]; then cfgFile=/etc/sysconfig/ssh [[ ! -f ${cfgFile} ]] && >${cfgFile} if LANG=C grep -q "^SSHD=" ${cfgFile}; then sed -e "s/\<SSHD=.*/SSHD=no/" -i "${cfgFile}" else echo "SSHD=no" >>${cfgFile} fi unset cfgFile fi mhz=$(LANG=C grep "^cpu MHz" /proc/cpuinfo | LANG=C awk '{ print $4 }') if [[ "$(uname -m)" = "ppc" ]]; then mhz=$(LANG=C grep "^clock" /proc/cpuinfo | LANG=C awk '{ print $3 }') fi if [[ "${mhz%%.*}" -le 1000 ]]; then rm -f /etc/.nosshkeygen >/etc/.nosshkeygen fi unset mhz [[ -x /etc/rc.d/rc.local ]] && /etc/rc.d/rc.local start for p in /etc/rc.d/rc.startup/*; do [[ -x ${p} ]] && ${p} start done; unset p _nfs="no" while read _dev _dir _type _text; do [[ x"${_type}" = x"nfs" ]] && _nfs="yes" done </etc/fstab if [[ "${_nfs}" = "yes" ]]; then waiting $"mounting NFS" sleep 1 # Give dhcp some time to complete. mount -a -t nfs [[ $? -eq 0 ]] && done_success || done_failure fi unset _nfs unset _dev unset _dir unset _type unset _text if [[ ! -f /etc/.first_boot_done ]]; then echo -e $"${T_BLUE}=> ${T_BOLD}First-Boot Sequence:${T_NORM}" (cd /; rm -rf "lost+found"; /usr/sbin/mklost+found) action $"setting shared object cache [running ldconfig]" ldconfig if [[ -d /proc/asound && -x /usr/sbin/alsactl ]]; then touch /etc/asound.state action $"initializing alsa sound state" \ $(/usr/sbin/alsactl init >/dev/null 2>&1) fi date >/etc/.first_boot_done fi if [[ -n "${k_uuid}" ]]; then [[ -z "${k_uuid}" ]] && echo $"Cannot find user setup UUID." && exit 0 COUNT=5 BDEV=$(findfs UUID=${k_uuid} 2>/dev/null) while [[ -z "${BDEV}" && ${COUNT} -gt 0 ]]; do sleep 1 BDEV=$(findfs UUID=${k_uuid} 2>/dev/null) COUNT=$((${COUNT} - 1)) done unset COUNT [[ -z "${BDEV}" ]] && echo $"Cannot find user setup BDEV." && exit 0 mount ${BDEV} /mnt/flash [[ $? -ne 0 ]] && echo $"Cannot mount user setup [${BDEV}]." && exit 0 if [[ ! -x /mnt/flash/config/crosslinux-setup ]]; then umount ${BDEV} else /mnt/flash/config/crosslinux-setup ${BDEV} [[ $? -ne 2 ]] && umount ${BDEV} fi unset BDEV fi _mixer=/usr/bin/amixer _playr=/etc/sysconfig/sound-scripts/play if [[ -x ${_mixer} ]]; then ${_mixer} -c 0 sset Line,0 66%,66% unmute >/dev/null 2>&1 ${_mixer} -c 0 sset PCM,0 66%,66% unmute >/dev/null 2>&1 ${_mixer} -c 0 sset Master,0 66%,66% unmute >/dev/null 2>&1 fi [[ -x ${_playr} ]] && ${_playr} boot unset _mixer unset _playr unset k_enet unset k_nofirewall unset k_nofsck unset k_nosshd unset k_fqdn unset k_hwclock unset k_login unset k_modules unset k_nologin unset k_tz unset k_uuid unset k_console unset k_root
TZ=UTC UTC=yes
SYSFONT="lat9v-16" SYSKMAP=/lib/kbd/keymaps/i386/qwerty/us.map.gz
CROND=yes CROND_OPTIONS="-l 0 -c /var/spool/cron/crontabs"
FIREWALL=on
MOUSEPROTOCOL=imps2 MOUSEDEVICE=/dev/input/mice
INETD=yes NETWORKING=yes
SSHD=yes SSHD_OPTIONS=""
SYSLOGD_OPTIONS="-s 128" KLOGD_OPTIONS="-c 2"
::sysinit:/etc/rc.d/rc.sysinit tty1::respawn:/sbin/getty 115200 tty1 tty2::respawn:/sbin/getty 115200 tty2 tty3::respawn:/sbin/getty 115200 tty3 tty4::respawn:/sbin/getty 115200 tty4 tty5::respawn:/sbin/getty 115200 tty5 tty6::respawn:/sbin/getty 115200 tty6 ::ctrlaltdel:/sbin/reboot ::shutdown:/etc/rc.d/rc.sysdone
LILO version 24.0 (released 07-Juni-2013) * Copyright (C) 1992-1998 Werner Almesberger (until v20) * Copyright (C) 1999-2007 John Coffman (until v22) * Copyright (C) 2009-2013 Joachim Wiedorn (since v23) This program comes with ABSOLUTELY NO WARRANTY. This is free software distributed under the BSD License (3-clause). Details can be found in the file COPYING, which is distributed with this software. Compiled at 13:04:15 on Mar 1 2015 Reading boot sector from /dev/sda Installed: Sat Dec 30 11:15:03 2017 Global settings: Delay before booting: 0.0 seconds Command-line timeout: 6.0 seconds No unattended booting No PC/AT keyboard hardware prescence check Always enter boot prompt Boot-time BIOS data saved Boot-time BIOS data auto-suppress write NOT bypassed Large memory (>15M) is NOT used to load initial ramdisk Non-RAID installation Boot device will not be used for the Map file Serial line access is disabled Bitmap file is 412 paragraphs (6592 bytes) No default boot command line Images: ttylinux * No password Boot command-line won't be locked No single-key activation VGA mode is taken from boot image Kernel is loaded "high" No initial RAM disk No fallback Options: "root=801"
boot = /dev/sda install = bmp bitmap = /boot/lilo.bmp bmp-colors = 1,2,,2,1, bmp-table = 33,11,1,8 bmp-timer = 44,20,1,2, compact # Try merging read for adjacent sectors into a single read request. default = ttylinux lba32 # Use 32-bit Logical Block Address, not cylinder/head/sector. prompt timeout = 60 image=/boot/vmlinuz label = ttylinux root = /dev/sda1
auto BOOT_IMAGE=ttylinux root=801
processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 58 model name : Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz stepping : 9 microcode : 0x19 cpu MHz : 2395.015 cache size : 6144 KB fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq monitor ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt aes xsave avx rdrand hypervisor lahf_lm fsgsbase bogomips : 4790.03 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management:
4: cascade
Character devices: 1 mem 4 /dev/vc/0 4 tty 4 ttyS 5 /dev/tty 5 /dev/console 5 /dev/ptmx 7 vcs 9 st 10 misc 13 input 14 sound 21 sg 29 fb 116 alsa 128 ptm 136 pts 180 usb 189 usb_device 202 cpu/msr 203 cpu/cpuid 249 hidraw 250 uio 251 bsg 252 ptp 253 pps 254 rtc Block devices: 1 ramdisk 3 ide0 259 blkext 7 loop 8 sd 11 sr 22 ide1 65 sd 66 sd 67 sd 68 sd 69 sd 70 sd 71 sd 128 sd 129 sd 130 sd 131 sd 132 sd 133 sd 134 sd 135 sd
dev.cdrom.autoclose = 1 dev.cdrom.autoeject = 0 dev.cdrom.check_media = 0 dev.cdrom.debug = 0 dev.cdrom.info = dev.cdrom.info = dev.cdrom.info = dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17 dev.cdrom.info = Can change speed: 1 dev.cdrom.info = Can close tray: 1 dev.cdrom.info = Can lock tray: 1 dev.cdrom.info = Can open tray: 1 dev.cdrom.info = Can play audio: 1 dev.cdrom.info = Can read DVD: 1 dev.cdrom.info = Can read MCN: 1 dev.cdrom.info = Can read MRW: 1 dev.cdrom.info = Can read multisession: 1 dev.cdrom.info = Can select disk: 0 dev.cdrom.info = Can write CD-R: 0 dev.cdrom.info = Can write CD-RW: 0 dev.cdrom.info = Can write DVD-R: 0 dev.cdrom.info = Can write DVD-RAM: 0 dev.cdrom.info = Can write MRW: 1 dev.cdrom.info = Can write RAM: 0 dev.cdrom.info = Reports media changed: 1 dev.cdrom.info = drive # of slots: 1 dev.cdrom.info = drive name: hdc dev.cdrom.info = drive speed: 32 dev.cdrom.lock = 1 dev.hpet.max-user-freq = 64 dev.scsi.logging_level = 0
Attached devices: Host: scsi0 Channel: 00 Id: 00 Lun: 00 Vendor: ATA Model: VBOX HARDDISK Rev: 1.0 Type: Direct-Access ANSI SCSI revision: 05
fdisk: Disk /dev/root: 2006 MB, 2006936064 bytes fdisk: 255 heads, 63 sectors/track, 243 cylinders, total 3919797 sectors fdisk: Units = sectors of 1 * 512 = 512 bytes fdisk: Disk /dev/root doesn't contain a valid partition table
model: VBOX CD-ROM driver: ide-cdrom version 5.00
ide-gd version 1.18 ide-cdrom version 5.00
path : pci-0000:00:01.1
id : ata-VBOX_HARDDISK_VBe69e00aa-f1e55062-part1 uuid : d99d420e-f3ca-46cf-8eaf-065b397fa434
id : ata-VBOX_HARDDISK_VBe69e00aa-f1e55062
0: IO-APIC-edge timer 1: IO-APIC-edge i8042 8: IO-APIC-edge rtc0 9: IO-APIC-fasteoi acpi 12: IO-APIC-edge i8042 14: IO-APIC-edge ide0 15: IO-APIC-edge ide1 16: IO-APIC-fasteoi eth1 19: IO-APIC-fasteoi eth0 21: IO-APIC-fasteoi ahci, 22: IO-APIC-fasteoi ohci_hcd:usb1 NMI: Non-maskable interrupts LOC: Local timer SPU: Spurious interrupts PMI: Performance monitoring IWI: IRQ work RTR: APIC ICR RES: Rescheduling interrupts CAL: Function call TLB: TLB shootdowns TRM: Thermal event THR: Threshold APIC MCE: Machine check MCP: Machine check ERR: MIS:
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-1
0
-1
0
0
0
-1
0
-1
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0000-001f : dma1 0020-0021 : pic1 0040-0043 : timer0 0050-0053 : timer1 0060-0060 : keyboard 0064-0064 : keyboard 0070-0071 : rtc_cmos 0070-0071 : rtc0 0080-008f : dma page reg 00a0-00a1 : pic2 00c0-00df : dma2 00f0-00ff : fpu 0170-0177 : 0000:00:01.1 0170-0177 : piix 01f0-01f7 : 0000:00:01.1 01f0-01f7 : piix 0376-0376 : 0000:00:01.1 0376-0376 : piix 03c0-03df : vga+ 03f6-03f6 : 0000:00:01.1 03f6-03f6 : piix 0cf8-0cff : PCI conf1 4000-403f : 0000:00:07.0 4000-4003 : ACPI PM1a_EVT_BLK 4004-4005 : ACPI PM1a_CNT_BLK 4008-400b : ACPI PM_TMR 4020-4021 : ACPI GPE0_BLK 4100-410f : 0000:00:07.0 d000-d00f : 0000:00:01.1 d000-d00f : piix d010-d017 : 0000:00:03.0 d010-d017 : e1000 d020-d03f : 0000:00:04.0 d100-d1ff : 0000:00:05.0 d100-d1ff : Intel 82801AA-ICH d200-d23f : 0000:00:05.0 d200-d23f : Intel 82801AA-ICH d240-d247 : 0000:00:08.0 d240-d247 : e1000 d248-d24f : 0000:00:0d.0 d248-d24f : ahci d250-d253 : 0000:00:0d.0 d250-d253 : ahci d258-d25f : 0000:00:0d.0 d258-d25f : ahci d260-d263 : 0000:00:0d.0 d260-d263 : ahci d270-d27f : 0000:00:0d.0 d270-d27f : ahci
MemTotal: 1019128 kB SwapTotal: 0 kB VmallocTotal: 34359738367 kB
00000000-00000fff : reserved 00001000-0009fbff : System RAM 0009fc00-0009ffff : reserved 000c0000-000c7fff : Video ROM 000e2000-000ef3ff : Adapter ROM 000f0000-000fffff : reserved 000f0000-000fffff : System ROM 00100000-3ffeffff : System RAM 01000000-0182393b : Kernel code 0182393c-01c0a5ff : Kernel data 01ce4000-01d5dfff : Kernel bss 3fff0000-3fffffff : ACPI Tables e0000000-e0ffffff : 0000:00:02.0 f0000000-f001ffff : 0000:00:03.0 f0000000-f001ffff : e1000 f0400000-f07fffff : 0000:00:04.0 f0800000-f0803fff : 0000:00:04.0 f0804000-f0804fff : 0000:00:06.0 f0804000-f0804fff : ohci_hcd f0820000-f083ffff : 0000:00:08.0 f0820000-f083ffff : e1000 f0840000-f0841fff : 0000:00:0d.0 f0840000-f0841fff : ahci fec00000-fec00fff : reserved fec00000-fec003ff : IOAPIC 0 fee00000-fee00fff : Local APIC fee00000-fee00fff : reserved fffc0000-ffffffff : reserved
serinfo:1.0 driver revision: 0: uart:unknown port:000003F8 irq:4 1: uart:unknown port:000002F8 irq:3 2: uart:unknown port:000003E8 irq:4 3: uart:unknown port:000002E8 irq:3
ACTION=="remove", GOTO="ttylinux_cdrom_end" SUBSYSTEM!="block", GOTO="ttylinux_cdrom_end" ENV{DEVTYPE}!="disk", GOTO="ttylinux_cdrom_end" KERNEL=="hd[a-z]*", IMPORT{program}="cdrom_id $tempnode" KERNEL=="pcd[0-9]*", IMPORT{program}="cdrom_id $tempnode" KERNEL=="scd[0-9]*", IMPORT{program}="cdrom_id $tempnode" LABEL="ttylinux_cdrom_end"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:01.1", SYMLINK+="cdrom", ENV{GENERATED}="1" SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:01.1", SYMLINK+="dvd", ENV{GENERATED}="1"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:be:94:9b", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1" SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="08:00:27:69:08:47", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
alias autofs autofs4 alias char-major-195 nvidia alias char-major-13 input alias char-major-13-0 joydev alias char-major-13-1 joydev alias char-major-13-2 joydev alias char-major-13-3 joydev alias block-major-7 loop alias dummy0 dummy alias dummy1 dummy alias net-pf-1 unix alias net-pf-2 ipv4 alias net-pf-10 ipv6 alias net-pf-15 af_key alias net-pf-16 af_netlink alias net-pf-17 af_packet alias net-pf-23 irda alias net-pf-31 bluetooth alias char-major-108-* ppp_generic alias ppp-compress-21 bsd_comp alias ppp-compress-24 ppp_deflate alias ppp-compress-26 ppp_deflate alias tty-ldisc-3 ppp_async alias char-major-6 lp alias parport_lowlevel parport_pc alias char-major-14 soundcore # I dunno this does anything. alias char-major-116-* snd # Native ALSA devices have default number 116. alias sound-service-*-0 snd-mixer-oss # Do ALSA OSS emulation loading. alias sound-service-*-1 snd-seq-oss # Do ALSA OSS emulation loading. alias sound-service-*-3 snd-pcm-oss # Do ALSA OSS emulation loading. alias sound-service-*-8 snd-seq-oss # Do ALSA OSS emulation loading. alias sound-service-*-12 snd-pcm-oss # Do ALSA OSS emulation loading. alias char-major-180 usbcore alias usbdevfs usbcore alias usb-controller ohci-hcd alias usb-controller usb-uhci alias usb-ohci ohci-hcd alias usb-uhci uhci-hcd alias uhci uhci-hcd options snd major=116 options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1 install loop /sbin/modprobe --ignore-install loop && /sbin/modprobe cryptoloop install dummy0 /sbin/modprobe -o dummy0 --ignore-install dummy install dummy1 /sbin/modprobe -o dummy1 --ignore-install dummy install ip_tables /bin/true install sound-slot-* \ /sbin/modprobe snd-card-${MODPROBE_MODULE##sound[_-]slot[_-]} install snd-pcm \ /sbin/modprobe --ignore-install snd-pcm && \ /sbin/modprobe snd-pcm-oss && \ /sbin/modprobe snd-seq-device && \ /sbin/modprobe snd-seq-oss install snd-emu10k1 \ /sbin/modprobe --ignore-install snd-emu10k1 && \ /sbin/modprobe snd-emu10k1-synth install snd-ens1371 /sbin/modprobe --ignore-install snd-ens1371 install ohci_hcd /sbin/modprobe --ignore-install ehci_hcd install uhci_hcd /sbin/modprobe --ignore-install ehci_hcd install usbmouse \ /sbin/modprobe --first-time --ignore-install usbmouse && \ { /sbin/modprobe hid; /bin/true; }
install loop /sbin/modprobe --ignore-install loop && /sbin/modprobe cryptoloop install dummy0 /sbin/modprobe -o dummy0 --ignore-install dummy install dummy1 /sbin/modprobe -o dummy1 --ignore-install dummy install ip_tables /bin/true install sound_slot_* /sbin/modprobe snd-card-${MODPROBE_MODULE##sound[_-]slot[_-]} install snd_pcm /sbin/modprobe --ignore-install snd-pcm && /sbin/modprobe snd-pcm-oss && /sbin/modprobe snd-seq-device && /sbin/modprobe snd-seq-oss install snd_emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth install snd_ens1371 /sbin/modprobe --ignore-install snd-ens1371 install ohci_hcd /sbin/modprobe --ignore-install ehci_hcd install uhci_hcd /sbin/modprobe --ignore-install ehci_hcd install usbmouse /sbin/modprobe --first-time --ignore-install usbmouse && { /sbin/modprobe hid; /bin/true; } options snd major=116 options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1
full path: /lib/modules/3.10.2/modules.dep kernel/arch/x86/crypto/aes-x86_64.ko: kernel/arch/x86/crypto/blowfish-x86_64.ko: kernel/crypto/blowfish_common.ko kernel/arch/x86/crypto/twofish-x86_64.ko: kernel/crypto/twofish_common.ko kernel/arch/x86/crypto/crc32c-intel.ko: kernel/fs/configfs/configfs.ko: kernel/fs/reiserfs/reiserfs.ko: kernel/fs/exportfs/exportfs.ko: kernel/fs/nfsd/nfsd.ko: kernel/fs/exportfs/exportfs.ko kernel/fs/cifs/cifs.ko: kernel/fs/autofs4/autofs4.ko: kernel/fs/jfs/jfs.ko: kernel/fs/xfs/xfs.ko: kernel/fs/exportfs/exportfs.ko kernel/crypto/crypto_null.ko: kernel/crypto/md4.ko: kernel/crypto/sha256_generic.ko: kernel/crypto/sha512_generic.ko: kernel/crypto/ecb.ko: kernel/crypto/pcbc.ko: kernel/crypto/blowfish_generic.ko: kernel/crypto/blowfish_common.ko kernel/crypto/blowfish_common.ko: kernel/crypto/twofish_common.ko: kernel/crypto/arc4.ko: kernel/drivers/idle/i7300_idle.ko: kernel/drivers/tty/serial/8250/serial_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/char/agp/agpgart.ko: kernel/drivers/char/agp/amd64-agp.ko: kernel/drivers/char/agp/agpgart.ko kernel/drivers/char/agp/intel-agp.ko: kernel/drivers/char/agp/intel-gtt.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/char/agp/intel-gtt.ko: kernel/drivers/char/agp/agpgart.ko kernel/drivers/char/agp/sis-agp.ko: kernel/drivers/char/agp/agpgart.ko kernel/drivers/char/agp/via-agp.ko: kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/drm_kms_helper.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/drm.ko: kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/ttm/ttm.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/tdfx/tdfx.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/r128/r128.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/radeon/radeon.ko: kernel/drivers/gpu/drm/drm_kms_helper.ko kernel/drivers/gpu/drm/ttm/ttm.ko kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/mga/mga.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/i915/i915.ko: kernel/drivers/char/agp/intel-agp.ko kernel/drivers/char/agp/intel-gtt.ko kernel/drivers/gpu/drm/drm_kms_helper.ko kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/sis/sis.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/savage/savage.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/via/via.ko: kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/gpu/drm/nouveau/nouveau.ko: kernel/drivers/platform/x86/mxm-wmi.ko kernel/drivers/platform/x86/wmi.ko kernel/drivers/gpu/drm/drm_kms_helper.ko kernel/drivers/gpu/drm/ttm/ttm.ko kernel/drivers/gpu/drm/drm.ko kernel/drivers/char/agp/agpgart.ko kernel/drivers/block/floppy.ko: kernel/drivers/block/pktcdvd.ko: kernel/drivers/block/nbd.ko: kernel/drivers/block/cryptoloop.ko: kernel/drivers/misc/cb710/cb710.ko: kernel/drivers/ide/delkin_cb.ko: kernel/drivers/ide/ide-cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/3com/3c589_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/3com/3c574_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/8390/axnet_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/8390/pcnet_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/amd/nmclan_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/fujitsu/fmvj18x_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/smsc/smc91c92_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/ethernet/xircom/xirc2ps_cs.ko: kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko: kernel/net/wireless/cfg80211.ko kernel/drivers/net/wireless/iwlwifi/dvm/iwldvm.ko: kernel/drivers/leds/led-class.ko kernel/net/mac80211/mac80211.ko kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko kernel/net/wireless/cfg80211.ko kernel/drivers/net/wireless/iwlwifi/mvm/iwlmvm.ko: kernel/drivers/leds/led-class.ko kernel/net/mac80211/mac80211.ko kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko kernel/net/wireless/cfg80211.ko kernel/drivers/net/wireless/iwlegacy/iwlegacy.ko: kernel/drivers/leds/led-class.ko kernel/net/mac80211/mac80211.ko kernel/net/wireless/cfg80211.ko kernel/drivers/net/wireless/iwlegacy/iwl4965.ko: kernel/drivers/net/wireless/iwlegacy/iwlegacy.ko kernel/drivers/leds/led-class.ko kernel/net/mac80211/mac80211.ko kernel/net/wireless/cfg80211.ko kernel/drivers/net/wireless/iwlegacy/iwl3945.ko: kernel/drivers/net/wireless/iwlegacy/iwlegacy.ko kernel/drivers/leds/led-class.ko kernel/net/mac80211/mac80211.ko kernel/net/wireless/cfg80211.ko kernel/drivers/net/bonding/bonding.ko: kernel/drivers/net/dummy.ko: kernel/drivers/net/tun.ko: kernel/drivers/net/ppp/ppp_generic.ko: kernel/drivers/net/slip/slhc.ko kernel/drivers/net/ppp/ppp_async.ko: kernel/drivers/net/ppp/ppp_generic.ko kernel/drivers/net/slip/slhc.ko kernel/drivers/net/ppp/bsd_comp.ko: kernel/drivers/net/ppp/ppp_generic.ko kernel/drivers/net/slip/slhc.ko kernel/drivers/net/ppp/ppp_deflate.ko: kernel/drivers/net/ppp/ppp_generic.ko kernel/drivers/net/slip/slhc.ko kernel/drivers/net/ppp/ppp_synctty.ko: kernel/drivers/net/ppp/ppp_generic.ko kernel/drivers/net/slip/slhc.ko kernel/drivers/net/slip/slhc.ko: kernel/drivers/firewire/firewire-core.ko: kernel/drivers/firewire/firewire-ohci.ko: kernel/drivers/firewire/firewire-core.ko kernel/drivers/firewire/firewire-sbp2.ko: kernel/drivers/firewire/firewire-core.ko kernel/drivers/firewire/firewire-net.ko: kernel/drivers/firewire/firewire-core.ko kernel/drivers/usb/serial/usbserial.ko: kernel/drivers/usb/serial/ark3116.ko: kernel/drivers/usb/serial/usbserial.ko kernel/drivers/usb/serial/ftdi_sio.ko: kernel/drivers/usb/serial/usbserial.ko kernel/drivers/usb/serial/pl2303.ko: kernel/drivers/usb/serial/usbserial.ko kernel/drivers/usb/gadget/udc-core.ko: kernel/drivers/usb/gadget/libcomposite.ko: kernel/drivers/usb/gadget/udc-core.ko kernel/fs/configfs/configfs.ko kernel/drivers/usb/gadget/g_mass_storage.ko: kernel/drivers/usb/gadget/libcomposite.ko kernel/drivers/usb/gadget/udc-core.ko kernel/fs/configfs/configfs.ko kernel/drivers/thermal/intel_powerclamp.ko: kernel/drivers/mmc/host/sdhci.ko: kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/leds/led-class.ko kernel/drivers/mmc/host/sdhci-pci.ko: kernel/drivers/mmc/host/sdhci.ko kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/leds/led-class.ko kernel/drivers/mmc/host/wbsd.ko: kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/mmc/host/cb710-mmc.ko: kernel/drivers/misc/cb710/cb710.ko kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/mmc/host/via-sdmmc.ko: kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/mmc/host/ushc.ko: kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/mmc/host/sdhci-pltfm.ko: kernel/drivers/mmc/host/sdhci.ko kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/leds/led-class.ko kernel/drivers/mmc/core/mmc_core.ko: kernel/drivers/mmc/card/mmc_block.ko: kernel/drivers/mmc/core/mmc_core.ko kernel/drivers/leds/led-class.ko: kernel/drivers/crypto/padlock-aes.ko: kernel/drivers/crypto/padlock-sha.ko: kernel/drivers/platform/x86/wmi.ko: kernel/drivers/platform/x86/mxm-wmi.ko: kernel/drivers/platform/x86/wmi.ko kernel/drivers/parport/parport.ko: kernel/drivers/parport/parport_pc.ko: kernel/drivers/parport/parport.ko kernel/drivers/pcmcia/pcmcia_core.ko: kernel/drivers/pcmcia/pcmcia.ko: kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/pcmcia/pcmcia_rsrc.ko: kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/pcmcia/yenta_socket.ko: kernel/drivers/pcmcia/pcmcia_rsrc.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/pcmcia/pd6729.ko: kernel/drivers/pcmcia/pcmcia_rsrc.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/pcmcia/i82092.ko: kernel/drivers/pcmcia/pcmcia_rsrc.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/drivers/message/i2o/i2o_core.ko: kernel/drivers/message/i2o/i2o_config.ko: kernel/drivers/message/i2o/i2o_core.ko kernel/drivers/message/i2o/i2o_bus.ko: kernel/drivers/message/i2o/i2o_core.ko kernel/drivers/message/i2o/i2o_block.ko: kernel/drivers/message/i2o/i2o_core.ko kernel/drivers/message/i2o/i2o_scsi.ko: kernel/drivers/message/i2o/i2o_core.ko kernel/drivers/message/i2o/i2o_proc.ko: kernel/drivers/message/i2o/i2o_core.ko kernel/sound/soundcore.ko: kernel/sound/core/oss/snd-mixer-oss.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/oss/snd-pcm-oss.ko: kernel/sound/core/oss/snd-mixer-oss.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/snd.ko: kernel/sound/soundcore.ko kernel/sound/core/snd-hwdep.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/snd-timer.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/snd-hrtimer.ko: kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/snd-pcm.ko: kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/snd-page-alloc.ko: kernel/sound/core/snd-rawmidi.ko: kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq.ko: kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq-device.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq-midi-event.ko: kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/oss/snd-seq-oss.ko: kernel/sound/core/seq/snd-seq-midi-event.ko kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq-dummy.ko: kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq-midi.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-midi-event.ko kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq-midi-emul.ko: kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/core/seq/snd-seq-virmidi.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-midi-event.ko kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/other/snd-ak4117.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/other/snd-ak4xxx-adda.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/other/snd-ak4114.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/other/snd-ak4113.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/other/snd-pt2258.ko: kernel/sound/i2c/snd-i2c.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/snd-cs8427.ko: kernel/sound/i2c/snd-i2c.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/i2c/snd-i2c.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/drivers/snd-dummy.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko: kernel/sound/core/snd-hwdep.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/drivers/opl3/snd-opl3-synth.ko: kernel/sound/core/seq/snd-seq-midi-emul.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/drivers/mpu401/snd-mpu401.ko: kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/drivers/vx/snd-vx-lib.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/isa/sb/snd-sb-common.ko: kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/isa/sb/snd-sb16-dsp.ko: kernel/sound/isa/sb/snd-sb-common.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-ad1889.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-als300.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-als4000.ko: kernel/sound/isa/sb/snd-sb-common.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-atiixp.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-atiixp-modem.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-azt3328.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-bt87x.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-cmipci.ko: kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-cs4281.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-cs5530.ko: kernel/sound/isa/sb/snd-sb16-dsp.ko kernel/sound/isa/sb/snd-sb-common.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-ens1370.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-ens1371.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-es1938.ko: kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-es1968.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-fm801.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-intel8x0.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-intel8x0m.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-maestro3.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-rme32.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-rme96.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-sonicvibes.ko: kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-via82xx.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/snd-via82xx-modem.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ac97/snd-ac97-codec.ko: kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ali5451/snd-ali5451.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/asihpi/snd-asihpi.ko: kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/au88x0/snd-au8810.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/au88x0/snd-au8820.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/au88x0/snd-au8830.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/aw2/snd-aw2.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ctxfi/snd-ctxfi.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ca0106/snd-ca0106.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/cs46xx/snd-cs46xx.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/cs5535audio/snd-cs5535audio.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/lx6464es/snd-lx6464es.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-darla20.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-gina20.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-layla20.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-darla24.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-gina24.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-layla24.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-mona.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-mia.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-echo3g.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-indigo.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-indigoio.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-indigodj.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-indigoiox.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/echoaudio/snd-indigodjx.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/emu10k1/snd-emu10k1.ko: kernel/sound/synth/snd-util-mem.ko kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/emu10k1/snd-emu10k1-synth.ko: kernel/sound/synth/emux/snd-emux-synth.ko kernel/sound/core/seq/snd-seq-virmidi.ko kernel/sound/pci/emu10k1/snd-emu10k1.ko kernel/sound/synth/snd-util-mem.ko kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/seq/snd-seq-midi-emul.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-midi-event.ko kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/emu10k1/snd-emu10k1x.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-realtek.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-cmedia.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-analog.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-idt.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-si3054.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-cirrus.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-ca0110.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-ca0132.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-conexant.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-via.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-codec-hdmi.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/hda/snd-hda-intel.ko: kernel/sound/pci/hda/snd-hda-codec.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ice1712/snd-ice1712.ko: kernel/sound/i2c/snd-cs8427.ko kernel/sound/i2c/snd-i2c.ko kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko kernel/sound/i2c/other/snd-ak4xxx-adda.ko kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko: kernel/sound/i2c/other/snd-ak4xxx-adda.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ice1712/snd-ice1724.ko: kernel/sound/i2c/other/snd-ak4113.ko kernel/sound/i2c/other/snd-pt2258.ko kernel/sound/i2c/other/snd-ak4114.ko kernel/sound/i2c/snd-i2c.ko kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko kernel/sound/i2c/other/snd-ak4xxx-adda.ko kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/korg1212/snd-korg1212.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/mixart/snd-mixart.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/nm256/snd-nm256.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/oxygen/snd-oxygen-lib.ko: kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/oxygen/snd-oxygen.ko: kernel/sound/pci/oxygen/snd-oxygen-lib.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/oxygen/snd-virtuoso.ko: kernel/sound/pci/oxygen/snd-oxygen-lib.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/pcxhr/snd-pcxhr.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/riptide/snd-riptide.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/rme9652/snd-rme9652.ko: kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/rme9652/snd-hdsp.ko: kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/rme9652/snd-hdspm.ko: kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/trident/snd-trident.ko: kernel/sound/synth/snd-util-mem.ko kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/ymfpci/snd-ymfpci.ko: kernel/sound/pci/ac97/snd-ac97-codec.ko kernel/sound/ac97_bus.ko kernel/sound/drivers/mpu401/snd-mpu401-uart.ko kernel/sound/drivers/opl3/snd-opl3-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pci/vx222/snd-vx222.ko: kernel/sound/drivers/vx/snd-vx-lib.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/synth/snd-util-mem.ko: kernel/sound/synth/emux/snd-emux-synth.ko: kernel/sound/core/seq/snd-seq-virmidi.ko kernel/sound/synth/snd-util-mem.ko kernel/sound/core/seq/snd-seq-midi-emul.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-midi-event.ko kernel/sound/core/seq/snd-seq.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/snd-usb-audio.ko: kernel/sound/usb/snd-usbmidi-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/snd-usbmidi-lib.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/misc/snd-ua101.ko: kernel/sound/usb/snd-usbmidi-lib.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/usx2y/snd-usb-usx2y.ko: kernel/sound/usb/snd-usbmidi-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/usx2y/snd-usb-us122l.ko: kernel/sound/usb/snd-usbmidi-lib.ko kernel/sound/core/snd-hwdep.ko kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/caiaq/snd-usb-caiaq.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/usb/6fire/snd-usb-6fire.ko: kernel/sound/core/snd-rawmidi.ko kernel/sound/core/seq/snd-seq-device.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/sound/pcmcia/vx/snd-vxpocket.ko: kernel/sound/drivers/vx/snd-vx-lib.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/sound/pcmcia/pdaudiocf/snd-pdaudiocf.ko: kernel/sound/i2c/other/snd-ak4117.ko kernel/sound/core/snd-pcm.ko kernel/sound/core/snd-page-alloc.ko kernel/sound/core/snd-timer.ko kernel/sound/core/snd.ko kernel/sound/soundcore.ko kernel/drivers/pcmcia/pcmcia.ko kernel/drivers/pcmcia/pcmcia_core.ko kernel/sound/ac97_bus.ko: kernel/net/netfilter/nf_conntrack_h323.ko: kernel/net/netfilter/xt_HMARK.ko: kernel/net/netfilter/xt_LED.ko: kernel/net/netfilter/xt_TCPMSS.ko: kernel/net/netfilter/xt_TEE.ko: kernel/net/ipv6/ipv6.ko kernel/net/netfilter/xt_hashlimit.ko: kernel/net/ipv4/netfilter/nf_nat_h323.ko: kernel/net/netfilter/nf_conntrack_h323.ko kernel/net/ipv4/ip_tunnel.ko: kernel/net/ipv6/netfilter/ip6_tables.ko: kernel/net/ipv6/netfilter/ip6table_filter.ko: kernel/net/ipv6/netfilter/ip6_tables.ko kernel/net/ipv6/netfilter/ip6table_mangle.ko: kernel/net/ipv6/netfilter/ip6_tables.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/ip6table_raw.ko: kernel/net/ipv6/netfilter/ip6_tables.ko kernel/net/ipv6/netfilter/ip6table_nat.ko: kernel/net/ipv6/netfilter/nf_nat_ipv6.ko kernel/net/ipv6/netfilter/ip6_tables.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/nf_conntrack_ipv6.ko: kernel/net/ipv6/netfilter/nf_defrag_ipv6.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/nf_defrag_ipv6.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/nf_nat_ipv6.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/ip6t_ah.ko: kernel/net/ipv6/netfilter/ip6t_eui64.ko: kernel/net/ipv6/netfilter/ip6t_frag.ko: kernel/net/ipv6/netfilter/ip6t_ipv6header.ko: kernel/net/ipv6/netfilter/ip6t_mh.ko: kernel/net/ipv6/netfilter/ip6t_hbh.ko: kernel/net/ipv6/netfilter/ip6t_rpfilter.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/ip6t_rt.ko: kernel/net/ipv6/netfilter/ip6t_MASQUERADE.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/netfilter/ip6t_NPT.ko: kernel/net/ipv6/netfilter/ip6t_REJECT.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/ipv6.ko: kernel/net/ipv6/ah6.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/esp6.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/ipcomp6.ko: kernel/net/ipv6/xfrm6_tunnel.ko kernel/net/ipv6/tunnel6.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/xfrm6_tunnel.ko: kernel/net/ipv6/tunnel6.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/tunnel6.ko: kernel/net/ipv6/xfrm6_mode_transport.ko: kernel/net/ipv6/xfrm6_mode_tunnel.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/xfrm6_mode_beet.ko: kernel/net/ipv6/ipv6.ko kernel/net/ipv6/sit.ko: kernel/net/ipv4/ip_tunnel.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/ip6_tunnel.ko: kernel/net/ipv6/tunnel6.ko kernel/net/ipv6/ipv6.ko kernel/net/ipv6/ip6_gre.ko: kernel/net/ipv6/ip6_tunnel.ko kernel/net/ipv4/ip_tunnel.ko kernel/net/ipv6/tunnel6.ko kernel/net/ipv6/ipv6.ko kernel/net/wireless/cfg80211.ko: kernel/net/mac80211/mac80211.ko: kernel/net/wireless/cfg80211.ko kernel/lib/crc-t10dif.ko:
parm nr_uarts : 4 parm share_irqs : 0 parm skip_txen_test : 0
parm acpica_version : 20130328 parm aml_debug_output : N parm ec_delay : 500 parm ec_storm_threshold : 8 parm immediate_undock : Y
parm marvell_enable : 1
parm expired_cred_retry_delay : 5
parm cache_time : 1000
parm events_dfl_poll_msecs : 2000
parm max_part : 0 parm rd_nr : 0 parm rd_size : 4096
parm off : 0
parm dflt_msg_enable : 255 parm msi : 2 parm ofld_disable : 0
parm dbfifo_drain_delay : 1000 parm dbfifo_int_thresh : 10 parm dflt_msg_enable : 255 parm force_init : 0 parm force_old_init : 0 parm intr_cnt : 4,8,16 parm intr_holdoff : 5,10,20,50,100 parm msi : 2 parm tp_vlan_pri_map : 811
parm debug : 0
parm copybreak : 256
parm copybreak : 256
parm ignore_oc : N parm log2_irq_thresh : 0 parm park : 0
parm max_user_bgreq : 327 parm max_user_congthresh : 327
parm debug : 0 parm ignore_special_drivers : 0
parm fnmode : 1 parm iso_layout : 1
parm bit_test : 0
parm debug : N
parm debug_mask : 0
parm debug_mask : 0
parm all_generic_ide : N
parm flushtimeout : 10 parm nflog : Y parm nlbufsiz : 3776
parm autoconf : 1 parm disable : 0 parm disable_ipv6 : 0
parm noraid : 0
parm copybreak : 256
parm consoleblank : 600 parm initcall_debug : N parm nousb : N parm panic : 0 parm pause_on_oops : 0
parm brl_nbchords : 1 parm brl_timeout : 300
parm ahci_em_messages : 1 parm devslp_idle_timeout : 1000 parm ignore_sss : 0 parm skip_host_reset : 0
parm acpi_gtf_filter : 7 parm allow_tpm : 0 parm ata_probe_timeout : 0 parm atapi_an : 0 parm atapi_dmadir : 0 parm atapi_enabled : 1 parm atapi_passthru16 : 1 parm dma : 7 parm fua : 0 parm ignore_hpa : 0 parm noacpi : 0 parm zpodd_poweroff_delay : 30
parm nlm_grace_period : 0 parm nlm_max_connections : 1024 parm nlm_tcpport : 0 parm nlm_timeout : 10 parm nlm_udpport : 0 parm nsm_use_hostnames : N
parm max_loop : 0 parm max_part : 0
parm debug_level : 0 parm enable_64b_cqe_eqe : N parm enable_qos : N parm internal_err_reset : 1 parm log_mtts_per_seg : 3 parm log_num_mac : 7 parm log_num_mgm_entry_size : 10 parm log_num_vlan : 0 parm num_vfs : 0 parm port_type_array : 0,0 parm probe_vf : 0 parm use_prio : N
parm inline_thold : 104 parm pfcrx : 0 parm pfctx : 0 parm udp_rss : 1
parm tap_time : 200 parm xres : 1024 parm yres : 768
parm myri10ge_dca : 1 parm myri10ge_deassert_wait : 1 parm myri10ge_ecrc_enable : 1 parm myri10ge_fill_thresh : 256 parm myri10ge_flow_control : 1 parm myri10ge_force_firmware : 0 parm myri10ge_fw_name : (null) parm myri10ge_fw_names : (null),(null),(null),(null),(null),(null),(null),(null) parm myri10ge_initial_mtu : 9000 parm myri10ge_intr_coal_delay : 75 parm myri10ge_max_irq_loops : 1048576 parm myri10ge_max_slices : 1 parm myri10ge_msi : 1 parm myri10ge_napi_weight : 64 parm myri10ge_rss_hash : 5 parm myri10ge_small_bytes : -1 parm myri10ge_watchdog_timeout : 1
parm auto_fw_reset : -284119278
parm acct : N parm expect_hashsize : 512 parm hashsize : 7955 parm nf_conntrack_helper : Y parm tstamp : N
parm master_timeout : 300 parm ts_algo : kmp
parm loose : N parm ports : 21
parm hashsize : 7955
parm dcc_timeout : 300 parm max_dcc_channels : 8 parm ports : 6667
parm timeout : 3
parm ports : 6566
parm ports : 5060 parm sip_direct_media : 1 parm sip_direct_signalling : 1 parm sip_timeout : 3600
parm timeout : 30
parm ports : 69
parm debug : 0
parm cache_getent : /sbin/nfs_cache_getent parm cache_getent_timeout : 15 parm callback_tcpport : 0 parm enable_ino64 : Y parm max_session_slots : 16 parm nfs4_disable_idmapping : Y parm nfs_idmap_cache_timeout : 600 parm send_implementation_id : 1
parm policy : [default] performance powersave
parm always_kmsg_dump : N parm console_suspend : Y parm ignore_loglevel : N parm time : N
parm ignore_ppc : -1 parm ignore_tpc : 0 parm latency_factor : 2
parm proto : auto parm rate : 100 parm resetafter : 5 parm resolution : 200 parm resync_time : 0 parm smartscroll : Y
parm backend : (null) parm update_ms : -1
parm auto_fw_reset : 1 parm load_fw_file : 0 parm qlcnic_config_npars : 0 parm qlcnic_mac_learn : 0 parm use_msi : 1 parm use_msi_x : 1
parm debug : -1 parm qlge_irq_type : 0
parm debug : N
parm rcu_cpu_stall_suppress : 0 parm rcu_cpu_stall_timeout : 60
parm blimit : 10 parm jiffies_till_first_fqs : 3 parm jiffies_till_next_fqs : 3 parm qhimark : 10000 parm qlowmark : 100 parm rcu_fanout_leaf : 16
parm irq_coalescing_io_count : 0 parm irq_coalescing_usecs : 0 parm msi : 0
parm adma : N parm msi : N parm swncq : Y
parm slow_down : 0
parm msi : N
parm default_dev_flags : 0 parm inq_timeout : 20 parm max_luns : 1 parm max_report_luns : 511 parm scan : sync parm scsi_logging_level : 0
parm interrupt_mode : 0 parm irq_adapt_high_thresh : 16000 parm irq_adapt_low_thresh : 8000 parm phy_flash_cfg : N parm rss_cpus : 0 parm rx_refill_threshold : 0 parm separate_tx_channels : N
parm allow_dio : 0 parm def_reserved_size : 32768 parm scatter_elem_sz : 32768
parm max_interrupt_work : 40 parm multicast_filter_limit : 128 parm sis900_debug : -1
parm cards_limit : 1 parm major : 116 parm slots : (null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null)
parm enable_loopback : N parm power_save : 0
parm ac97_clock : 0 parm ac97_quirk : (null) parm buggy_irq : 0 parm buggy_semaphore : N parm enable : N parm id : (null) parm index : -1 parm inside_vm : -1 parm joystick : 0 parm spdif_aclink : 0 parm xbox : N
parm maximum_substreams : 4 parm preallocate_dma : 1
parm adsp_map : 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 parm dsp_map : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 parm nonblock_open : Y
parm seq_client_load : 14,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 parm seq_default_timer_card : -1 parm seq_default_timer_class : 1 parm seq_default_timer_device : 3 parm seq_default_timer_resolution : 0 parm seq_default_timer_sclass : 0 parm seq_default_timer_subdevice : 0
parm duplex : N parm ports : 1
parm maxqlen : 1024 parm seq_oss_debug : 0
parm timer_limit : 4 parm timer_tstamp_monotonic : 1
parm preclaim_oss : 1
parm irqfixup : 0 parm noirqdebug : N
parm xa_test : 0
parm auth_hashtable_size : 16 parm max_resvport : 1023 parm min_resvport : 665 parm pool_mode : global parm tcp_max_slot_table_entries : 65536 parm tcp_slot_table_entries : 2 parm udp_slot_table_entries : 16
parm sysrq_downtime_ms : 0
parm beta : 717 parm bic_scale : 41 parm fast_convergence : 1 parm hystart : 1 parm hystart_ack_delta : 2 parm hystart_detect : 3 parm hystart_low_window : 16 parm initial_ssthresh : 0 parm tcp_friendliness : 1
parm act : 0 parm crt : 0 parm psv : 0 parm tzp : 0
parm ignore_oc : N
parm debug : 0
parm delay_use : 1 parm option_zero_cd : 1 parm swi_tru_install : 1
parm authorized_default : -1 parm blinkenlights : N parm initial_descriptor_timeout : 5000 parm old_scheme_first : N parm usbfs_memory_mb : 16 parm usbfs_snoop : N parm use_both_schemes : Y
parm ignoreled : 0 parm mousepoll : 0 parm quirks : (null),(null),(null),(null)
parm rx_copybreak : 200
parm allow_duplicates : N parm brightness_switch_enabled : Y parm use_bios_initial_backlight : Y
parm cur_default : 2 parm default_blu : 0,0,0,0,170,170,170,170,85,85,85,85,255,255,255,255 parm default_grn : 0,0,170,85,0,0,170,170,85,85,255,255,85,85,255,255 parm default_red : 0,170,0,170,0,170,0,170,85,255,85,255,85,255,85,255 parm default_utf8 : 1 parm global_cursor_default : 1 parm italic : 2 parm underline : 3
parm disable_numa : N
parm link_quirk : 0
parm ip_list_gid : 0 parm ip_list_hash_size : 128 parm ip_list_perms : 420 parm ip_list_tot : 100 parm ip_list_uid : 0 parm ip_pkt_list_tot : 20
kernel.acpi_video_flags = 0 kernel.auto_msgmni = 1 kernel.blk_iopoll = 1 kernel.bootloader_type = 2 kernel.bootloader_version = 2 kernel.cad_pid = 1 kernel.cap_last_cap = 36 kernel.compat-log = 1 kernel.core_pattern = core kernel.core_pipe_limit = 0 kernel.core_uses_pid = 0 kernel.ctrl-alt-del = 0 kernel.dmesg_restrict = 0 kernel.domainname = (none) kernel.hostname = ttylinux2015 kernel.hotplug = kernel.io_delay_type = 0 kernel.keys.gc_delay = 300 kernel.keys.maxbytes = 20000 kernel.keys.maxkeys = 200 kernel.keys.root_maxbytes = 20000 kernel.keys.root_maxkeys = 200 kernel.kptr_restrict = 0 kernel.kstack_depth_to_print = 12 kernel.max_lock_depth = 1024 kernel.modprobe = /sbin/modprobe kernel.modules_disabled = 0 kernel.msgmax = 8192 kernel.msgmnb = 16384 kernel.ngroups_max = 65536 kernel.osrelease = 3.10.2 kernel.ostype = Linux kernel.overflowgid = 65534 kernel.overflowuid = 65534 kernel.panic = 0 kernel.panic_on_io_nmi = 0 kernel.panic_on_oops = 0 kernel.panic_on_unrecovered_nmi = 0 kernel.perf_event_mlock_kb = 516 kernel.perf_event_paranoid = 1 kernel.pid_max = 32768 kernel.poweroff_cmd = /sbin/poweroff kernel.print-fatal-signals = 0 kernel.pty.max = 4096 kernel.pty.reserve = 1024 kernel.real-root-dev = 0 kernel.sched_child_runs_first = 0 kernel.sched_rr_timeslice_ms = 100 kernel.sched_rt_period_us = 1000000 kernel.sched_rt_runtime_us = 950000 kernel.sem = 250 32000 32 128 kernel.sg-big-buff = 32768 kernel.shm_rmid_forced = 0 kernel.shmall = 2097152 kernel.shmmax = 33554432 kernel.shmmni = 4096 kernel.sysrq = 1 kernel.unknown_nmi_panic = 0 kernel.usermodehelper.bset = 4294967295 4294967295 kernel.usermodehelper.inheritable = 4294967295 4294967295 kernel.version = #1 SMP PREEMPT Sun Mar 1 13:35:37 MST 2015
Filesystem 1K-blocks Used Available Use% Mounted on /dev/root 1929068 134368 1696708 7% / devtmpfs 509148 0 509148 0% /dev tmpfs 1024 172 852 17% /run tmpfs 24 0 24 0% /dev/shm
/dev/root on / type ext2 (rw,relatime,errors=continue,user_xattr,acl) devpts on /dev/pts type devpts (rw,relatime,gid=5,mode=620) devtmpfs on /dev type devtmpfs (rw,relatime,size=k,nr_inodes=127287,mode=755) proc on /proc type proc (rw,relatime) rootfs on / type rootfs (rw) sysfs on /sys type sysfs (rw,relatime) tmpfs on /dev/shm type tmpfs (rw,nosuid,noexec,relatime,size=k) tmpfs on /run type tmpfs (rw,relatime,size=k,mode=755)
[defaults] base_features = sparse_super,filetype,resize_inode,dir_index,ext_attr default_mntopts = acl,user_xattr enable_periodic_fsck = 0 blocksize = 4096 inode_size = 256 inode_ratio = 16384 [fs_types] ext3 = { features = has_journal } ext4 = { features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize auto_64-bit_support = 1 inode_size = 256 } ext4dev = { features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize inode_size = 256 options = test_fs=1 } small = { blocksize = 1024 inode_size = 128 inode_ratio = 4096 } floppy = { blocksize = 1024 inode_size = 128 inode_ratio = 8192 } big = { inode_ratio = 32768 } huge = { inode_ratio = 65536 } news = { inode_ratio = 4096 } largefile = { inode_ratio = 1048576 blocksize = -1 } largefile4 = { inode_ratio = 4194304 blocksize = -1 } hurd = { blocksize = 4096 inode_size = 128 }
/dev/sda1 / ext2 defaults 0 0 devpts /dev/pts devpts gid=5,mode=0620 0 0 proc /proc proc noauto 0 0 sysfs /sys sysfs noauto 0 0 tmpfs /dev/shm tmpfs rw,noexec,nosuid,size=24k 0 0
Filesystem 1K-blocks Used Available Use% Mounted on /dev/root 1929068 134372 1696704 7% /
Filesystem 1K-blocks Used Available Use% Mounted on devtmpfs 509148 0 509148 0% /dev
Filesystem 1K-blocks Used Available Use% Mounted on tmpfs 1024 172 852 17% /run
Filesystem 1K-blocks Used Available Use% Mounted on tmpfs 24 0 24 0% /dev/shm
Server: 213.46.228.196 Address 1: 213.46.228.196 ns02.upclive.nl
[ping] [tcp] ftp # port 21 ssh # port 22 http # port 80 [udp] tftp # port 69 1024:65535 # Allow access to unprivileged ports.
order hosts,bind multi on
127.0.0.1 localhost.localdomain localhost loopback 192.168.0.36 crosslinux_host # HOSTNAME 192.168.56.10 centos64 192.168.56.39 fc27srv 192.168.56.45 fc29srv
default 0.0.0.0 # default route - mandatory loopback 127.0.0.0 # loopback network - mandatory link-local 192.168.1.0 # this network address
passwd: files group: files shadow: files gshadow: files hosts: files dns networks: files dns services: files protocols: files rpc: files ethers: files netmasks: files netgroup: files publickey: files bootparams: files automount: files aliases: files
hopopt 0 HOPOPT icmp 1 ICMP igmp 2 IGMP ggp 3 GGP ip 4 IP st 5 ST tcp 6 TCP cbt 7 CBT egp 8 EGP igp 9 IGP bbn-rcc-mon 10 BBN-RCC-MON nvp-ii 11 NVP-II pup 12 PUP argus 13 ARGUS emcon 14 EMCON xnet 15 XNET chaos 16 CHAOS udp 17 UDP mux 18 MUX dcn-meas 19 DCN-MEAS hmp 20 HMP prm 21 PRM xns-idp 22 XNS-IDP trunk-1 23 TRUNK-1 trunk-2 24 TRUNK-2 leaf-1 25 LEAF-1 leaf-2 26 LEAF-2 rdp 27 RDP irtp 28 IRTP iso-tp4 29 ISO-TP4 netblt 30 NETBLT mfe-nsp 31 MFE-NSP merit-inp 32 MERIT-INP dccp 33 DCCP 3pc 34 3PC idpr 35 IDPR xtp 36 XTP ddp 37 DDP idpr-cmtp 38 IDPR-CMTP tp++ 39 TP++ il 40 IL ipv6 41 IPv6 sdrp 42 SDRP ipv6-route 43 IPv6-Route ipv6-frag 44 IPv6-Frag idrp 45 IDRP rsvp 46 RSVP gre 47 GRE dsr 48 DSR bna 49 BNA esp 50 ESP ah 51 AH i-nlsp 52 I-NLSP swipe 53 SWIPE narp 54 NARP mobile 55 MOBILE tlsp 56 TLSP skip 57 SKIP ipv6-icmp 58 IPv6-ICMP ipv6-nonxt 59 IPv6-NoNxt ipv6-opts 60 IPv6-Opts cftp 62 CFTP sat-expak 64 SAT-EXPAK kryptolan 65 KRYPTOLAN rvd 66 RVD ippc 67 IPPC sat-mon 69 SAT-MON visa 70 VISA ipcv 71 IPCV cpnx 72 CPNX cphb 73 CPHB wsn 74 WSN pvp 75 PVP br-sat-mon 76 BR-SAT-MON sun-nd 77 SUN-ND wb-mon 78 WB-MON wb-expak 79 WB-EXPAK iso-ip 80 ISO-IP vmtp 81 VMTP secure-vmtp 82 SECURE-VMTP vines 83 VINES ttp 84 TTP nsfnet-igp 85 NSFNET-IGP dgp 86 DGP tcf 87 TCF eigrp 88 EIGRP ospfigp 89 OSPFIGP sprite-rpc 90 Sprite-RPC larp 91 LARP mtp 92 MTP ax.25 93 AX.25 ipip 94 IPIP micp 95 MICP scc-sp 96 SCC-SP etherip 97 ETHERIP encap 98 ENCAP gmtp 100 GMTP ifmp 101 IFMP pnni 102 PNNI pim 103 PIM aris 104 ARIS scps 105 SCPS qnx 106 QNX a/n 107 A/N ipcomp 108 IPComp snp 109 SNP compaq-peer 110 Compaq-Peer ipx-in-ip 111 IPX-in-IP vrrp 112 VRRP pgm 113 PGM l2tp 115 L2TP ddx 116 DDX iatp 117 IATP stp 118 STP srp 119 SRP uti 120 UTI smp 121 SMP sm 122 SM ptp 123 PTP isis 124 ISIS fire 125 FIRE crtp 126 CRTP crudp 127 CRUDP sscopmce 128 SSCOPMCE iplt 129 IPLT sps 130 SPS pipe 131 PIPE sctp 132 SCTP fc 133 FC rsvp-e2e-ignore 134 RSVP-E2E-IGNORE mobility 135 Mobility udplite 136 UDPLite mpls-in-ip 137 MPLS-in-IP use 253 Use use 254 Use
portmapper 100000 portmap sunrpc rpcbind rstatd 100001 rstat rup perfmeter rstat_svc rusersd 100002 rusers nfs 100003 nfsprog ypserv 100004 ypprog mountd 100005 mount showmount ypbind 100007 walld 100008 rwall shutdown yppasswdd 100009 yppasswd etherstatd 100010 etherstat rquotad 100011 rquotaprog quota rquota sprayd 100012 spray 3270_mapper 100013 rje_mapper 100014 selection_svc 100015 selnsvc database_svc 100016 rexd 100017 rex alis 100018 sched 100019 llockmgr 100020 nlockmgr 100021 x25.inr 100022 statmon 100023 status 100024 bootparam 100026 ypupdated 100028 ypupdate keyserv 100029 keyserver sunlink_mapper 100033 tfsd 100037 nsed 100038 nsemntd 100039 showfhd 100043 showfh ioadmd 100055 rpc.ioadmd NETlicense 100062 sunisamd 100065 debug_svc 100066 dbsrv ypxfrd 100069 rpc.ypxfrd bugtraqd 100071 kerbd 100078 event 100101 na.event # SunNet Manager logger 100102 na.logger # SunNet Manager sync 100104 na.sync hostperf 100107 na.hostperf activity 100109 na.activity # SunNet Manager hostmem 100112 na.hostmem sample 100113 na.sample x25 100114 na.x25 ping 100115 na.ping rpcnfs 100116 na.rpcnfs hostif 100117 na.hostif etherif 100118 na.etherif iproutes 100120 na.iproutes layers 100121 na.layers snmp 100122 na.snmp snmp-cmc snmp-synoptics snmp-unisys snmp-utk traffic 100123 na.traffic nfs_acl 100227 sadmind 100232 nisd 100300 rpc.nisd nispasswd 100303 rpc.nispasswdd ufsd 100233 ufsd fedfs_admin 100418 pcnfsd 150001 pcnfs amd 300019 amq sgi_fam 391002 fam bwnfsd 545580417 fypxfrd 600100069 freebsd-ypxfrd
0001: search arnhem.chello.nl 0002: nameserver 213.46.228.196 0003: nameserver 62.179.104.196
tcpmux 1/tcp tcpmux 1/udp compressnet 2/tcp compressnet 2/udp compressnet 3/tcp compressnet 3/udp rje 5/tcp rje 5/udp echo 7/tcp echo 7/udp discard 9/dccp discard 9/tcp discard 9/udp systat 11/tcp systat 11/udp daytime 13/tcp daytime 13/udp qotd 17/tcp qotd 17/udp msp 18/tcp msp 18/udp chargen 19/tcp chargen 19/udp ftp-data 20/tcp ftp-data 20/udp ftp 21/tcp ftp 21/udp ssh 22/tcp ssh 22/udp telnet 23/tcp telnet 23/udp smtp 25/tcp smtp 25/udp nsw-fe 27/tcp nsw-fe 27/udp msg-icp 29/tcp msg-icp 29/udp msg-auth 31/tcp msg-auth 31/udp dsp 33/tcp dsp 33/udp time 37/tcp time 37/udp rap 38/tcp rap 38/udp rlp 39/tcp rlp 39/udp graphics 41/tcp graphics 41/udp name 42/tcp name 42/udp nameserver 42/tcp nameserver 42/udp nicname 43/tcp whois nicname 43/udp whois mpm-flags 44/tcp mpm-flags 44/udp mpm 45/tcp mpm 45/udp mpm-snd 46/tcp mpm-snd 46/udp ni-ftp 47/tcp ni-ftp 47/udp auditd 48/tcp auditd 48/udp tacacs 49/tcp tacacs 49/udp re-mail-ck 50/tcp re-mail-ck 50/udp la-maint 51/tcp la-maint 51/udp xns-time 52/tcp xns-time 52/udp domain 53/tcp domain 53/udp xns-ch 54/tcp xns-ch 54/udp isi-gl 55/tcp isi-gl 55/udp xns-auth 56/tcp xns-auth 56/udp xns-mail 58/tcp xns-mail 58/udp ni-mail 61/tcp ni-mail 61/udp acas 62/tcp acas 62/udp whois++ 63/tcp whois++ 63/udp covia 64/tcp covia 64/udp tacacs-ds 65/tcp tacacs-ds 65/udp sql*net 66/tcp sql*net 66/udp bootps 67/tcp bootps 67/udp bootpc 68/tcp bootpc 68/udp tftp 69/tcp tftp 69/udp gopher 70/tcp gopher 70/udp netrjs-1 71/tcp netrjs-1 71/udp netrjs-2 72/tcp netrjs-2 72/udp netrjs-3 73/tcp netrjs-3 73/udp netrjs-4 74/tcp netrjs-4 74/udp deos 76/tcp deos 76/udp vettcp 78/tcp vettcp 78/udp finger 79/tcp finger 79/udp http 80/tcp http 80/udp www 80/tcp www 80/udp www-http 80/tcp www-http 80/udp hosts2-ns 81/tcp hosts2-ns 81/udp xfer 82/tcp xfer 82/udp mit-ml-dev 83/tcp mit-ml-dev 83/udp ctf 84/tcp ctf 84/udp mit-ml-dev 85/tcp mit-ml-dev 85/udp mfcobol 86/tcp mfcobol 86/udp kerberos 88/tcp kerberos 88/udp su-mit-tg 89/tcp su-mit-tg 89/udp dnsix 90/tcp dnsix 90/udp mit-dov 91/tcp mit-dov 91/udp npp 92/tcp npp 92/udp dcp 93/tcp dcp 93/udp objcall 94/tcp objcall 94/udp supdup 95/tcp supdup 95/udp dixie 96/tcp dixie 96/udp swift-rvf 97/tcp swift-rvf 97/udp tacnews 98/tcp tacnews 98/udp metagram 99/tcp metagram 99/udp newacct 100/tcp hostname 101/tcp hostname 101/udp iso-tsap 102/tcp iso-tsap 102/udp gppitnp 103/tcp gppitnp 103/udp acr-nema 104/tcp acr-nema 104/udp csnet-ns 105/tcp csnet-ns 105/udp cso 105/tcp cso 105/udp 3com-tsmux 106/tcp 3com-tsmux 106/udp rtelnet 107/tcp rtelnet 107/udp snagas 108/tcp snagas 108/udp pop2 109/tcp pop2 109/udp pop3 110/tcp pop3 110/udp sunrpc 111/tcp sunrpc 111/udp mcidas 112/tcp mcidas 112/udp auth 113/tcp auth 113/udp ident 113/tcp sftp 115/tcp sftp 115/udp ansanotify 116/tcp ansanotify 116/udp uucp-path 117/tcp uucp-path 117/udp sqlserv 118/tcp sqlserv 118/udp nntp 119/tcp nntp 119/udp cfdptkt 120/tcp cfdptkt 120/udp erpc 121/tcp erpc 121/udp smakynet 122/tcp smakynet 122/udp ntp 123/tcp ntp 123/udp ansatrader 124/tcp ansatrader 124/udp locus-map 125/tcp locus-map 125/udp nxedit 126/tcp nxedit 126/udp locus-con 127/tcp locus-con 127/udp gss-xlicen 128/tcp gss-xlicen 128/udp pwdgen 129/tcp pwdgen 129/udp cisco-fna 130/tcp cisco-fna 130/udp cisco-tna 131/tcp cisco-tna 131/udp cisco-sys 132/tcp cisco-sys 132/udp statsrv 133/tcp statsrv 133/udp ingres-net 134/tcp ingres-net 134/udp epmap 135/tcp epmap 135/udp profile 136/tcp profile 136/udp netbios-ns 137/tcp netbios-ns 137/udp netbios-dgm 138/tcp netbios-dgm 138/udp netbios-ssn 139/tcp netbios-ssn 139/udp emfis-data 140/tcp emfis-data 140/udp emfis-cntl 141/tcp emfis-cntl 141/udp bl-idm 142/tcp bl-idm 142/udp imap 143/tcp imap 143/udp uma 144/tcp uma 144/udp uaac 145/tcp uaac 145/udp iso-tp0 146/tcp iso-tp0 146/udp iso-ip 147/tcp iso-ip 147/udp jargon 148/tcp jargon 148/udp aed-512 149/tcp aed-512 149/udp sql-net 150/tcp sql-net 150/udp hems 151/tcp hems 151/udp bftp 152/tcp bftp 152/udp sgmp 153/tcp sgmp 153/udp netsc-prod 154/tcp netsc-prod 154/udp netsc-dev 155/tcp netsc-dev 155/udp sqlsrv 156/tcp sqlsrv 156/udp knet-cmp 157/tcp knet-cmp 157/udp pcmail-srv 158/tcp pcmail-srv 158/udp nss-routing 159/tcp nss-routing 159/udp sgmp-traps 160/tcp sgmp-traps 160/udp snmp 161/tcp snmp 161/udp snmptrap 162/tcp snmptrap 162/udp cmip-man 163/tcp cmip-man 163/udp cmip-agent 164/tcp cmip-agent 164/udp xns-courier 165/tcp xns-courier 165/udp s-net 166/tcp s-net 166/udp namp 167/tcp namp 167/udp rsvd 168/tcp rsvd 168/udp send 169/tcp send 169/udp print-srv 170/tcp print-srv 170/udp multiplex 171/tcp multiplex 171/udp cl/1 172/tcp cl/1 172/udp xyplex-mux 173/tcp xyplex-mux 173/udp mailq 174/tcp mailq 174/udp vmnet 175/tcp vmnet 175/udp genrad-mux 176/tcp genrad-mux 176/udp xdmcp 177/tcp xdmcp 177/udp nextstep 178/tcp nextstep 178/udp bgp 179/tcp bgp 179/udp ris 180/tcp ris 180/udp unify 181/tcp unify 181/udp audit 182/tcp audit 182/udp ocbinder 183/tcp ocbinder 183/udp ocserver 184/tcp ocserver 184/udp remote-kis 185/tcp remote-kis 185/udp kis 186/tcp kis 186/udp aci 187/tcp aci 187/udp mumps 188/tcp mumps 188/udp qft 189/tcp qft 189/udp gacp 190/tcp gacp 190/udp prospero 191/tcp prospero 191/udp osu-nms 192/tcp osu-nms 192/udp srmp 193/tcp srmp 193/udp irc 194/tcp irc 194/udp dn6-nlm-aud 195/tcp dn6-nlm-aud 195/udp dn6-smm-red 196/tcp dn6-smm-red 196/udp dls 197/tcp dls 197/udp dls-mon 198/tcp dls-mon 198/udp smux 199/tcp smux 199/udp src 200/tcp src 200/udp at-rtmp 201/tcp at-rtmp 201/udp at-nbp 202/tcp at-nbp 202/udp at-3 203/tcp at-3 203/udp at-echo 204/tcp at-echo 204/udp at-5 205/tcp at-5 205/udp at-zis 206/tcp at-zis 206/udp at-7 207/tcp at-7 207/udp at-8 208/tcp at-8 208/udp qmtp 209/tcp qmtp 209/udp z39.50 210/tcp z39.50 210/udp 914c/g 211/tcp 914c/g 211/udp anet 212/tcp anet 212/udp ipx 213/tcp ipx 213/udp vmpwscs 214/tcp vmpwscs 214/udp softpc 215/tcp softpc 215/udp CAIlic 216/tcp CAIlic 216/udp dbase 217/tcp dbase 217/udp mpp 218/tcp mpp 218/udp uarps 219/tcp uarps 219/udp imap3 220/tcp imap3 220/udp fln-spx 221/tcp fln-spx 221/udp rsh-spx 222/tcp rsh-spx 222/udp cdc 223/tcp cdc 223/udp masqdialer 224/tcp masqdialer 224/udp direct 242/tcp direct 242/udp sur-meas 243/tcp sur-meas 243/udp inbusiness 244/tcp inbusiness 244/udp link 245/tcp link 245/udp dsp3270 246/tcp dsp3270 246/udp subntbcst_tftp 247/tcp subntbcst_tftp 247/udp bhfhs 248/tcp bhfhs 248/udp rap 256/tcp rap 256/udp set 257/tcp set 257/udp esro-gen 259/tcp esro-gen 259/udp openport 260/tcp openport 260/udp nsiiops 261/tcp nsiiops 261/udp arcisdms 262/tcp arcisdms 262/udp hdap 263/tcp hdap 263/udp bgmp 264/tcp bgmp 264/udp x-bone-ctl 265/tcp x-bone-ctl 265/udp sst 266/tcp sst 266/udp td-service 267/tcp td-service 267/udp td-replica 268/tcp td-replica 268/udp http-mgmt 280/tcp http-mgmt 280/udp personal-link 281/tcp personal-link 281/udp cableport-ax 282/tcp cableport-ax 282/udp rescap 283/tcp rescap 283/udp corerjd 284/tcp corerjd 284/udp fxp 286/tcp fxp 286/udp k-block 287/tcp k-block 287/udp novastorbakcup 308/tcp novastorbakcup 308/udp entrusttime 309/tcp entrusttime 309/udp bhmds 310/tcp bhmds 310/udp asip-webadmin 311/tcp asip-webadmin 311/udp vslmp 312/tcp vslmp 312/udp magenta-logic 313/tcp magenta-logic 313/udp opalis-robot 314/tcp opalis-robot 314/udp dpsi 315/tcp dpsi 315/udp decauth 316/tcp decauth 316/udp zannet 317/tcp zannet 317/udp pkix-timestamp 318/tcp pkix-timestamp 318/udp ptp-event 319/tcp ptp-event 319/udp ptp-general 320/tcp ptp-general 320/udp pip 321/tcp pip 321/udp rtsps 322/tcp rtsps 322/udp texar 333/tcp texar 333/udp pdap 344/tcp pdap 344/udp pawserv 345/tcp pawserv 345/udp zserv 346/tcp zserv 346/udp fatserv 347/tcp fatserv 347/udp csi-sgwp 348/tcp csi-sgwp 348/udp mftp 349/tcp mftp 349/udp matip-type-a 350/tcp matip-type-a 350/udp bhoetty 351/tcp bhoetty 351/udp matip-type-b 351/tcp matip-type-b 351/udp bhoedap4 352/tcp bhoedap4 352/udp dtag-ste-sb 352/tcp dtag-ste-sb 352/udp ndsauth 353/tcp ndsauth 353/udp bh611 354/tcp bh611 354/udp datex-asn 355/tcp datex-asn 355/udp cloanto-net-1 356/tcp cloanto-net-1 356/udp bhevent 357/tcp bhevent 357/udp shrinkwrap 358/tcp shrinkwrap 358/udp nsrmp 359/tcp nsrmp 359/udp scoi2odialog 360/tcp scoi2odialog 360/udp semantix 361/tcp semantix 361/udp srssend 362/tcp srssend 362/udp rsvp_tunnel 363/tcp rsvp_tunnel 363/udp aurora-cmgr 364/tcp aurora-cmgr 364/udp dtk 365/tcp dtk 365/udp odmr 366/tcp odmr 366/udp mortgageware 367/tcp mortgageware 367/udp qbikgdp 368/tcp qbikgdp 368/udp rpc2portmap 369/tcp rpc2portmap 369/udp codaauth2 370/tcp codaauth2 370/udp clearcase 371/tcp clearcase 371/udp ulistproc 372/tcp ulistproc 372/udp legent-1 373/tcp legent-1 373/udp legent-2 374/tcp legent-2 374/udp hassle 375/tcp hassle 375/udp nip 376/tcp nip 376/udp tnETOS 377/tcp tnETOS 377/udp dsETOS 378/tcp dsETOS 378/udp is99c 379/tcp is99c 379/udp is99s 380/tcp is99s 380/udp hp-collector 381/tcp hp-collector 381/udp hp-managed-node 382/tcp hp-managed-node 382/udp hp-alarm-mgr 383/tcp hp-alarm-mgr 383/udp arns 384/tcp arns 384/udp ibm-app 385/tcp ibm-app 385/udp asa 386/tcp asa 386/udp aurp 387/tcp aurp 387/udp unidata-ldm 388/tcp unidata-ldm 388/udp ldap 389/tcp ldap 389/udp uis 390/tcp uis 390/udp synotics-relay 391/tcp synotics-relay 391/udp synotics-broker 392/tcp synotics-broker 392/udp meta5 393/tcp meta5 393/udp embl-ndt 394/tcp embl-ndt 394/udp netcp 395/tcp netcp 395/udp netware-ip 396/tcp netware-ip 396/udp mptn 397/tcp mptn 397/udp kryptolan 398/tcp kryptolan 398/udp iso-tsap-c2 399/tcp iso-tsap-c2 399/udp work-sol 400/tcp work-sol 400/udp ups 401/tcp ups 401/udp genie 402/tcp genie 402/udp decap 403/tcp decap 403/udp nced 404/tcp nced 404/udp ncld 405/tcp ncld 405/udp imsp 406/tcp imsp 406/udp timbuktu 407/tcp timbuktu 407/udp prm-sm 408/tcp prm-sm 408/udp prm-nm 409/tcp prm-nm 409/udp decladebug 410/tcp decladebug 410/udp rmt 411/tcp rmt 411/udp synoptics-trap 412/tcp synoptics-trap 412/udp smsp 413/tcp smsp 413/udp infoseek 414/tcp infoseek 414/udp bnet 415/tcp bnet 415/udp silverplatter 416/tcp silverplatter 416/udp onmux 417/tcp onmux 417/udp hyper-g 418/tcp hyper-g 418/udp ariel1 419/tcp ariel1 419/udp smpte 420/tcp smpte 420/udp ariel2 421/tcp ariel2 421/udp ariel3 422/tcp ariel3 422/udp opc-job-start 423/tcp opc-job-start 423/udp opc-job-track 424/tcp opc-job-track 424/udp icad-el 425/tcp icad-el 425/udp smartsdp 426/tcp smartsdp 426/udp svrloc 427/tcp svrloc 427/udp ocs_cmu 428/tcp ocs_cmu 428/udp ocs_amu 429/tcp ocs_amu 429/udp utmpsd 430/tcp utmpsd 430/udp utmpcd 431/tcp utmpcd 431/udp iasd 432/tcp iasd 432/udp nnsp 433/tcp nnsp 433/udp mobileip-agent 434/tcp mobileip-agent 434/udp mobilip-mn 435/tcp mobilip-mn 435/udp dna-cml 436/tcp dna-cml 436/udp comscm 437/tcp comscm 437/udp dsfgw 438/tcp dsfgw 438/udp dasp 439/tcp dasp 439/udp sgcp 440/tcp sgcp 440/udp decvms-sysmgt 441/tcp decvms-sysmgt 441/udp cvc_hostd 442/tcp cvc_hostd 442/udp https 443/tcp https 443/udp snpp 444/tcp snpp 444/udp microsoft-ds 445/tcp microsoft-ds 445/udp ddm-rdb 446/tcp ddm-rdb 446/udp ddm-dfm 447/tcp ddm-dfm 447/udp ddm-ssl 448/tcp ddm-ssl 448/udp as-servermap 449/tcp as-servermap 449/udp tserver 450/tcp tserver 450/udp sfs-smp-net 451/tcp sfs-smp-net 451/udp sfs-config 452/tcp sfs-config 452/udp creativeserver 453/tcp creativeserver 453/udp contentserver 454/tcp contentserver 454/udp creativepartnr 455/tcp creativepartnr 455/udp macon-tcp 456/tcp macon-udp 456/udp scohelp 457/tcp scohelp 457/udp appleqtc 458/tcp appleqtc 458/udp ampr-rcmd 459/tcp ampr-rcmd 459/udp skronk 460/tcp skronk 460/udp datasurfsrv 461/tcp datasurfsrv 461/udp datasurfsrvsec 462/tcp datasurfsrvsec 462/udp alpes 463/tcp alpes 463/udp kpasswd 464/tcp kpasswd 464/udp igmpv3lite 465/udp urd 465/tcp digital-vrc 466/tcp digital-vrc 466/udp mylex-mapd 467/tcp mylex-mapd 467/udp photuris 468/tcp photuris 468/udp rcp 469/tcp rcp 469/udp scx-proxy 470/tcp scx-proxy 470/udp mondex 471/tcp mondex 471/udp ljk-login 472/tcp ljk-login 472/udp hybrid-pop 473/tcp hybrid-pop 473/udp tn-tl-w1 474/tcp tn-tl-w2 474/udp tcpnethaspsrv 475/tcp tcpnethaspsrv 475/udp tn-tl-fd1 476/tcp tn-tl-fd1 476/udp ss7ns 477/tcp ss7ns 477/udp spsc 478/tcp spsc 478/udp iafserver 479/tcp iafserver 479/udp iafdbase 480/tcp iafdbase 480/udp ph 481/tcp ph 481/udp bgs-nsi 482/tcp bgs-nsi 482/udp ulpnet 483/tcp ulpnet 483/udp integra-sme 484/tcp integra-sme 484/udp powerburst 485/tcp powerburst 485/udp avian 486/tcp avian 486/udp saft 487/tcp saft 487/udp gss-http 488/tcp gss-http 488/udp nest-protocol 489/tcp nest-protocol 489/udp micom-pfs 490/tcp micom-pfs 490/udp go-login 491/tcp go-login 491/udp ticf-1 492/tcp ticf-1 492/udp ticf-2 493/tcp ticf-2 493/udp pov-ray 494/tcp pov-ray 494/udp intecourier 495/tcp intecourier 495/udp pim-rp-disc 496/tcp pim-rp-disc 496/udp dantz 497/tcp dantz 497/udp siam 498/tcp siam 498/udp iso-ill 499/tcp iso-ill 499/udp isakmp 500/tcp isakmp 500/udp stmf 501/tcp stmf 501/udp asa-appl-proto 502/tcp asa-appl-proto 502/udp intrinsa 503/tcp intrinsa 503/udp citadel 504/tcp citadel 504/udp mailbox-lm 505/tcp mailbox-lm 505/udp ohimsrv 506/tcp ohimsrv 506/udp crs 507/tcp crs 507/udp xvttp 508/tcp xvttp 508/udp snare 509/tcp snare 509/udp fcp 510/tcp fcp 510/udp passgo 511/tcp passgo 511/udp biff 512/udp comsat 512/udp exec 512/tcp login 513/tcp who 513/udp shell 514/tcp syslog 514/udp printer 515/tcp printer 515/udp videotex 516/tcp videotex 516/udp talk 517/tcp talk 517/udp ntalk 518/tcp ntalk 518/udp utime 519/tcp utime 519/udp efs 520/tcp router 520/udp ripng 521/tcp ripng 521/udp ulp 522/tcp ulp 522/udp ibm-db2 523/tcp ibm-db2 523/udp ncp 524/tcp ncp 524/udp timed 525/tcp timed 525/udp tempo 526/tcp tempo 526/udp stx 527/tcp stx 527/udp custix 528/tcp custix 528/udp irc-serv 529/tcp irc-serv 529/udp courier 530/tcp courier 530/udp conference 531/tcp conference 531/udp netnews 532/tcp netnews 532/udp netwall 533/tcp netwall 533/udp windream 534/tcp windream 534/udp iiop 535/tcp iiop 535/udp opalis-rdv 536/tcp opalis-rdv 536/udp nmsp 537/tcp nmsp 537/udp gdomap 538/tcp gdomap 538/udp apertus-ldp 539/tcp apertus-ldp 539/udp uucp 540/tcp uucp 540/udp uucp-rlogin 541/tcp uucp-rlogin 541/udp commerce 542/tcp commerce 542/udp klogin 543/tcp klogin 543/udp kshell 544/tcp kshell 544/udp appleqtcsrvr 545/tcp appleqtcsrvr 545/udp dhcpv6-client 546/tcp dhcpv6-client 546/udp dhcpv6-server 547/tcp dhcpv6-server 547/udp afpovertcp 548/tcp afpovertcp 548/udp idfp 549/tcp idfp 549/udp new-rwho 550/tcp new-rwho 550/udp cybercash 551/tcp cybercash 551/udp devshr-nts 552/tcp devshr-nts 552/udp pirp 553/tcp pirp 553/udp rtsp 554/tcp rtsp 554/udp dsf 555/tcp dsf 555/udp remotefs 556/tcp remotefs 556/udp openvms-sysipc 557/tcp openvms-sysipc 557/udp sdnskmp 558/tcp sdnskmp 558/udp teedtap 559/tcp teedtap 559/udp rmonitor 560/tcp rmonitor 560/udp monitor 561/tcp monitor 561/udp chshell 562/tcp chshell 562/udp nntps 563/tcp nntps 563/udp 9pfs 564/tcp 9pfs 564/udp whoami 565/tcp whoami 565/udp streettalk 566/tcp streettalk 566/udp banyan-rpc 567/tcp banyan-rpc 567/udp ms-shuttle 568/tcp ms-shuttle 568/udp ms-rome 569/tcp ms-rome 569/udp meter 570/tcp meter 570/udp meter 571/tcp meter 571/udp sonar 572/tcp sonar 572/udp banyan-vip 573/tcp banyan-vip 573/udp ftp-agent 574/tcp ftp-agent 574/udp vemmi 575/tcp vemmi 575/udp ipcd 576/tcp ipcd 576/udp vnas 577/tcp vnas 577/udp ipdd 578/tcp ipdd 578/udp decbsrv 579/tcp decbsrv 579/udp sntp-heartbeat 580/tcp sntp-heartbeat 580/udp bdp 581/tcp bdp 581/udp scc-security 582/tcp scc-security 582/udp philips-vc 583/tcp philips-vc 583/udp keyserver 584/tcp keyserver 584/udp password-chg 586/tcp password-chg 586/udp submission 587/tcp submission 587/udp cal 588/tcp cal 588/udp eyelink 589/tcp eyelink 589/udp tns-cml 590/tcp tns-cml 590/udp http-alt 591/tcp http-alt 591/udp eudora-set 592/tcp eudora-set 592/udp http-rpc-epmap 593/tcp http-rpc-epmap 593/udp tpip 594/tcp tpip 594/udp cab-protocol 595/tcp cab-protocol 595/udp smsd 596/tcp smsd 596/udp ptcnameservice 597/tcp ptcnameservice 597/udp sco-websrvrmg3 598/tcp sco-websrvrmg3 598/udp acp 599/tcp acp 599/udp ipcserver 600/tcp ipcserver 600/udp syslog-conn 601/tcp syslog-conn 601/udp xmlrpc-beep 602/tcp xmlrpc-beep 602/udp idxp 603/tcp idxp 603/udp tunnel 604/tcp tunnel 604/udp soap-beep 605/tcp soap-beep 605/udp urm 606/tcp urm 606/udp nqs 607/tcp nqs 607/udp sift-uft 608/tcp sift-uft 608/udp npmp-trap 609/tcp npmp-trap 609/udp npmp-local 610/tcp npmp-local 610/udp npmp-gui 611/tcp npmp-gui 611/udp hmmp-ind 612/tcp hmmp-ind 612/udp hmmp-op 613/tcp hmmp-op 613/udp sshell 614/tcp sshell 614/udp sco-inetmgr 615/tcp sco-inetmgr 615/udp sco-sysmgr 616/tcp sco-sysmgr 616/udp sco-dtmgr 617/tcp sco-dtmgr 617/udp dei-icda 618/tcp dei-icda 618/udp compaq-evm 619/tcp compaq-evm 619/udp sco-websrvrmgr 620/tcp sco-websrvrmgr 620/udp escp-ip 621/tcp escp-ip 621/udp collaborator 622/tcp collaborator 622/udp asf-rmcp 623/tcp asf-rmcp 623/udp cryptoadmin 624/tcp cryptoadmin 624/udp dec_dlm 625/tcp dec_dlm 625/udp asia 626/tcp asia 626/udp passgo-tivoli 627/tcp passgo-tivoli 627/udp qmqp 628/tcp qmqp 628/udp 3com-amp3 629/tcp 3com-amp3 629/udp rda 630/tcp rda 630/udp ipp 631/tcp ipp 631/udp bmpp 632/tcp bmpp 632/udp servstat 633/tcp servstat 633/udp ginad 634/tcp ginad 634/udp rlzdbase 635/tcp rlzdbase 635/udp ldaps 636/tcp ldaps 636/udp lanserver 637/tcp lanserver 637/udp mcns-sec 638/tcp mcns-sec 638/udp msdp 639/tcp msdp 639/udp entrust-sps 640/tcp entrust-sps 640/udp repcmd 641/tcp repcmd 641/udp esro-emsdp 642/tcp esro-emsdp 642/udp sanity 643/tcp sanity 643/udp dwr 644/tcp dwr 644/udp pssc 645/tcp pssc 645/udp ldp 646/tcp ldp 646/udp dhcp-failover 647/tcp dhcp-failover 647/udp rrp 648/tcp rrp 648/udp cadview-3d 649/tcp cadview-3d 649/udp obex 650/tcp obex 650/udp ieee-mms 651/tcp ieee-mms 651/udp hello-port 652/tcp hello-port 652/udp repscmd 653/tcp repscmd 653/udp aodv 654/tcp aodv 654/udp tinc 655/tcp tinc 655/udp spmp 656/tcp spmp 656/udp rmc 657/tcp rmc 657/udp tenfold 658/tcp tenfold 658/udp mac-srvr-admin 660/tcp mac-srvr-admin 660/udp hap 661/tcp hap 661/udp pftp 662/tcp pftp 662/udp purenoise 663/tcp purenoise 663/udp asf-secure-rmcp 664/tcp asf-secure-rmcp 664/udp sun-dr 665/tcp sun-dr 665/udp doom 666/tcp doom 666/udp mdqs 666/tcp mdqs 666/udp disclose 667/tcp disclose 667/udp mecomm 668/tcp mecomm 668/udp meregister 669/tcp meregister 669/udp vacdsm-sws 670/tcp vacdsm-sws 670/udp vacdsm-app 671/tcp vacdsm-app 671/udp vpps-qua 672/tcp vpps-qua 672/udp cimplex 673/tcp cimplex 673/udp acap 674/tcp acap 674/udp dctp 675/tcp dctp 675/udp vpps-via 676/tcp vpps-via 676/udp vpp 677/tcp vpp 677/udp ggf-ncp 678/tcp ggf-ncp 678/udp mrm 679/tcp mrm 679/udp entrust-aaas 680/tcp entrust-aaas 680/udp entrust-aams 681/tcp entrust-aams 681/udp xfr 682/tcp xfr 682/udp corba-iiop 683/tcp corba-iiop 683/udp corba-iiop-ssl 684/tcp corba-iiop-ssl 684/udp mdc-portmapper 685/tcp mdc-portmapper 685/udp hcp-wismar 686/tcp hcp-wismar 686/udp asipregistry 687/tcp asipregistry 687/udp realm-rusd 688/tcp realm-rusd 688/udp nmap 689/tcp nmap 689/udp vatp 690/tcp vatp 690/udp msexch-routing 691/tcp msexch-routing 691/udp hyperwave-isp 692/tcp hyperwave-isp 692/udp connendp 693/tcp connendp 693/udp ha-cluster 694/tcp ha-cluster 694/udp ieee-mms-ssl 695/tcp ieee-mms-ssl 695/udp rushd 696/tcp rushd 696/udp uuidgen 697/tcp uuidgen 697/udp olsr 698/tcp olsr 698/udp accessnetwork 699/tcp accessnetwork 699/udp epp 700/tcp epp 700/udp lmp 701/tcp lmp 701/udp iris-beep 702/tcp iris-beep 702/udp elcsd 704/tcp elcsd 704/udp agentx 705/tcp agentx 705/udp silc 706/tcp silc 706/udp borland-dsj 707/tcp borland-dsj 707/udp entrust-kmsh 709/tcp entrust-kmsh 709/udp entrust-ash 710/tcp entrust-ash 710/udp cisco-tdp 711/tcp cisco-tdp 711/udp tbrpf 712/tcp tbrpf 712/udp netviewdm1 729/tcp netviewdm1 729/udp netviewdm2 730/tcp netviewdm2 730/udp netviewdm3 731/tcp netviewdm3 731/udp netgw 741/tcp netgw 741/udp netrcs 742/tcp netrcs 742/udp flexlm 744/tcp flexlm 744/udp fujitsu-dev 747/tcp fujitsu-dev 747/udp ris-cm 748/tcp ris-cm 748/udp kerberos-adm 749/tcp kerberos-adm 749/udp kerberos-iv 750/udp loadav 750/udp rfile 750/tcp pump 751/tcp pump 751/udp qrh 752/tcp qrh 752/udp rrh 753/tcp rrh 753/udp tell 754/tcp tell 754/udp nlogin 758/tcp nlogin 758/udp con 759/tcp con 759/udp ns 760/tcp ns 760/udp rxe 761/tcp rxe 761/udp quotad 762/tcp quotad 762/udp cycleserv 763/tcp cycleserv 763/udp omserv 764/tcp omserv 764/udp webster 765/tcp webster 765/udp phonebook 767/tcp phonebook 767/udp vid 769/tcp vid 769/udp cadlock 770/tcp cadlock 770/udp rtip 771/tcp rtip 771/udp cycleserv2 772/tcp cycleserv2 772/udp notify 773/udp submit 773/tcp acmaint_dbd 774/udp rpasswd 774/tcp acmaint_transd 775/udp entomb 775/tcp wpages 776/tcp wpages 776/udp multiling-http 777/tcp multiling-http 777/udp wpgs 780/tcp wpgs 780/udp mdbs_daemon 800/tcp mdbs_daemon 800/udp device 801/tcp device 801/udp fcp-udp 810/tcp fcp-udp 810/udp itm-mcell-s 828/tcp itm-mcell-s 828/udp pkix-3-ca-ra 829/tcp pkix-3-ca-ra 829/udp netconf-ssh 830/tcp netconf-ssh 830/udp netconf-beep 831/tcp netconf-beep 831/udp netconfsoaphttp 832/tcp netconfsoaphttp 832/udp netconfsoapbeep 833/tcp netconfsoapbeep 833/udp dhcp-failover2 847/tcp dhcp-failover2 847/udp gdoi 848/tcp gdoi 848/udp iscsi 860/tcp iscsi 860/udp owamp-control 861/tcp owamp-control 861/udp rsync 873/tcp rsync 873/udp iclcnet-locate 886/tcp iclcnet-locate 886/udp iclcnet_svinfo 887/tcp iclcnet_svinfo 887/udp accessbuilder 888/tcp accessbuilder 888/udp cddbp 888/tcp omginitialrefs 900/tcp omginitialrefs 900/udp smpnameres 901/tcp smpnameres 901/udp ideafarm-chat 902/tcp ideafarm-chat 902/udp ideafarm-catch 903/tcp ideafarm-catch 903/udp kink 910/tcp kink 910/udp xact-backup 911/tcp xact-backup 911/udp apex-mesh 912/tcp apex-mesh 912/udp apex-edge 913/tcp apex-edge 913/udp ftps-data 989/tcp ftps-data 989/udp ftps 990/tcp ftps 990/udp nas 991/tcp nas 991/udp telnets 992/tcp telnets 992/udp imaps 993/tcp imaps 993/udp ircs 994/tcp ircs 994/udp pop3s 995/tcp pop3s 995/udp vsinet 996/tcp vsinet 996/udp maitrd 997/tcp maitrd 997/udp busboy 998/tcp puparp 998/udp applix 999/udp garcon 999/tcp puprouter 999/tcp puprouter 999/udp cadlock2 1000/tcp cadlock2 1000/udp surf 1010/tcp surf 1010/udp exp1 1021/tcp exp1 1021/udp exp2 1022/tcp exp2 1022/udp
status: inactive
eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 08:00:27:69:08:47 brd ff:ff:ff:ff:ff:ff inet 192.168.0.36/24 brd 192.168.0.255 scope global eth0 valid_lft forever preferred_lft forever inet6 fe80::a00:27ff:fe69:847/64 scope link valid_lft forever preferred_lft forever
BROADCAST=192.168.1.255 CIDRLEN=24 DHCP=yes ENABLE=yes GATEWAY=192.168.1.1 IPADDRESS=192.168.1.20 NAME=Ethernet NETMASK=255.255.255.0 NETWORK=192.168.1.0
eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 08:00:27:be:94:9b brd ff:ff:ff:ff:ff:ff inet 192.168.56.36/24 brd 192.168.56.255 scope global eth1 valid_lft forever preferred_lft forever inet6 fe80::a00:27ff:febe:949b/64 scope link valid_lft forever preferred_lft forever
BROADCAST=192.168.56.255 CIDRLEN=24 DHCP=no ENABLE=yes IPADDRESS=192.168.56.36 NAME=Ethernet NETMASK=255.255.255.0 NETWORK=192.168.56.0
lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever
BROADCAST=127.0.0.255 CIDRLEN=8 DHCP=no ENABLE=yes IPADDRESS=127.0.0.1 NAME=loopback NETMASK=255.0.0.0 NETWORK=127.0.0.0
ftp stream tcp nowait root /usr/sbin/ftpd ftpd -S -w /home/ftpd/ tftp dgram udp nowait root /usr/sbin/tftpd tftpd -c -l /home/tftpd/
shared-memory: ------ Shared Memory Segments -------- shared-memory: key shmid owner perms bytes nattch status message-queue: ------ Message Queues -------- message-queue: key msqid owner perms used-bytes messages semaphores: ------ Semaphore Arrays -------- semaphores: key semid owner perms nsems
icmp_echo_ignore_all: 0 icmp_echo_ignore_broadcasts: 1 icmp_errors_use_inbound_ifaddr: 0 icmp_ignore_bogus_error_responses: 1 icmp_ratelimit: 1000 icmp_ratemask: 6168
ip_default_ttl: 64 ip_dynaddr: 0 ip_early_demux: 1 ip_forward: 0 ip_local_port_range: 32768 61000 ip_local_reserved_ports: ip_no_pmtu_disc: 0 ip_nonlocal_bind: 0 ipfrag_high_thresh: 4194304 ipfrag_low_thresh: 3145728 ipfrag_max_dist: 64 ipfrag_secret_interval: 600 ipfrag_time: 30
tcp_abort_on_overflow: 0 tcp_adv_win_scale: 1 tcp_allowed_congestion_control: cubic reno tcp_app_win: 31 tcp_available_congestion_control: cubic reno tcp_base_mss: 512 tcp_challenge_ack_limit: 100 tcp_congestion_control: cubic tcp_dsack: 1 tcp_early_retrans: 3 tcp_ecn: 2 tcp_fack: 1 tcp_fastopen: 0 tcp_fin_timeout: 60 tcp_frto: 2 tcp_keepalive_intvl: 75 tcp_keepalive_probes: 9 tcp_keepalive_time: 7200 tcp_limit_output_bytes: 131072 tcp_low_latency: 0 tcp_max_orphans: 4096 tcp_max_ssthresh: 0 tcp_max_syn_backlog: 128 tcp_max_tw_buckets: 4096 tcp_mem: 23724 31632 47448 tcp_moderate_rcvbuf: 1 tcp_mtu_probing: 0 tcp_no_metrics_save: 0 tcp_orphan_retries: 0 tcp_reordering: 3 tcp_retrans_collapse: 1 tcp_retries1: 3 tcp_retries2: 15 tcp_rfc1337: 0 tcp_rmem: 4096 87380 6291456 tcp_sack: 1 tcp_slow_start_after_idle: 1 tcp_stdurg: 0 tcp_syn_retries: 6 tcp_synack_retries: 5 tcp_thin_dupack: 0 tcp_thin_linear_timeouts: 0 tcp_timestamps: 1 tcp_tso_win_divisor: 3 tcp_tw_recycle: 0 tcp_tw_reuse: 0 tcp_window_scaling: 1 tcp_wmem: 4096 16384 4194304 tcp_workaround_signed_windows: 0
domain:
binding:
is-master-server: 0
is-slave-server: 0
is-client: 0
ftp 21 ssh 22
kernel ip routing table destination:gateway:genmask:flags:irtt:iface 0.0.0.0:192.168.0.1:0.0.0.0:ug:0:eth0 192.168.0.0:0.0.0.0:255.255.255.0:u:0:eth0 192.168.56.0:0.0.0.0:255.255.255.0:u:0:eth1
net.core.dev_weight = 64 net.core.message_burst = 10 net.core.message_cost = 5 net.core.netdev_budget = 300 net.core.netdev_max_backlog = 1000 net.core.netdev_tstamp_prequeue = 1 net.core.optmem_max = 20480 net.core.rmem_default = 212992 net.core.rmem_max = 212992 net.core.rps_sock_flow_entries = 0 net.core.somaxconn = 128 net.core.warnings = 1 net.core.wmem_default = 212992 net.core.wmem_max = 212992 net.core.xfrm_acq_expires = 30 net.core.xfrm_aevent_etime = 10 net.core.xfrm_aevent_rseqth = 2 net.core.xfrm_larval_drop = 1 net.ipv4.conf.all.accept_local = 0 net.ipv4.conf.all.accept_redirects = 0 net.ipv4.conf.all.accept_source_route = 0 net.ipv4.conf.all.arp_accept = 0 net.ipv4.conf.all.arp_announce = 0 net.ipv4.conf.all.arp_filter = 0 net.ipv4.conf.all.arp_ignore = 0 net.ipv4.conf.all.arp_notify = 0 net.ipv4.conf.all.bootp_relay = 0 net.ipv4.conf.all.disable_policy = 0 net.ipv4.conf.all.disable_xfrm = 0 net.ipv4.conf.all.force_igmp_version = 0 net.ipv4.conf.all.forwarding = 0 net.ipv4.conf.all.log_martians = 1 net.ipv4.conf.all.mc_forwarding = 0 net.ipv4.conf.all.medium_id = 0 net.ipv4.conf.all.promote_secondaries = 0 net.ipv4.conf.all.proxy_arp = 0 net.ipv4.conf.all.proxy_arp_pvlan = 0 net.ipv4.conf.all.route_localnet = 0 net.ipv4.conf.all.rp_filter = 1 net.ipv4.conf.all.secure_redirects = 1 net.ipv4.conf.all.send_redirects = 1 net.ipv4.conf.all.shared_media = 1 net.ipv4.conf.all.src_valid_mark = 0 net.ipv4.conf.all.tag = 0 net.ipv4.conf.default.accept_local = 0 net.ipv4.conf.default.accept_redirects = 0 net.ipv4.conf.default.accept_source_route = 0 net.ipv4.conf.default.arp_accept = 0 net.ipv4.conf.default.arp_announce = 0 net.ipv4.conf.default.arp_filter = 0 net.ipv4.conf.default.arp_ignore = 0 net.ipv4.conf.default.arp_notify = 0 net.ipv4.conf.default.bootp_relay = 0 net.ipv4.conf.default.disable_policy = 0 net.ipv4.conf.default.disable_xfrm = 0 net.ipv4.conf.default.force_igmp_version = 0 net.ipv4.conf.default.forwarding = 0 net.ipv4.conf.default.log_martians = 1 net.ipv4.conf.default.mc_forwarding = 0 net.ipv4.conf.default.medium_id = 0 net.ipv4.conf.default.promote_secondaries = 0 net.ipv4.conf.default.proxy_arp = 0 net.ipv4.conf.default.proxy_arp_pvlan = 0 net.ipv4.conf.default.route_localnet = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.secure_redirects = 1 net.ipv4.conf.default.send_redirects = 1 net.ipv4.conf.default.shared_media = 1 net.ipv4.conf.default.src_valid_mark = 0 net.ipv4.conf.default.tag = 0 net.ipv4.icmp_echo_ignore_all = 0 net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.icmp_errors_use_inbound_ifaddr = 0 net.ipv4.icmp_ignore_bogus_error_responses = 1 net.ipv4.icmp_ratelimit = 1000 net.ipv4.icmp_ratemask = 6168 net.ipv4.igmp_max_memberships = 20 net.ipv4.igmp_max_msf = 10 net.ipv4.inet_peer_maxttl = 600 net.ipv4.inet_peer_minttl = 120 net.ipv4.inet_peer_threshold = 65664 net.ipv4.ip_default_ttl = 64 net.ipv4.ip_dynaddr = 0 net.ipv4.ip_early_demux = 1 net.ipv4.ip_forward = 0 net.ipv4.ip_local_port_range = 32768 61000 net.ipv4.ip_local_reserved_ports = net.ipv4.ip_no_pmtu_disc = 0 net.ipv4.ip_nonlocal_bind = 0 net.ipv4.ipfrag_high_thresh = 4194304 net.ipv4.ipfrag_low_thresh = 3145728 net.ipv4.ipfrag_max_dist = 64 net.ipv4.ipfrag_secret_interval = 600 net.ipv4.ipfrag_time = 30 net.ipv4.neigh.default.anycast_delay = 100 net.ipv4.neigh.default.app_solicit = 0 net.ipv4.neigh.default.base_reachable_time = 30 net.ipv4.neigh.default.base_reachable_time_ms = 30000 net.ipv4.neigh.default.delay_first_probe_time = 5 net.ipv4.neigh.default.gc_interval = 30 net.ipv4.neigh.default.gc_stale_time = 60 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_thresh2 = 512 net.ipv4.neigh.default.gc_thresh3 = 1024 net.ipv4.neigh.default.locktime = 100 net.ipv4.neigh.default.mcast_solicit = 3 net.ipv4.neigh.default.proxy_delay = 80 net.ipv4.neigh.default.proxy_qlen = 64 net.ipv4.neigh.default.retrans_time = 100 net.ipv4.neigh.default.retrans_time_ms = 1000 net.ipv4.neigh.default.ucast_solicit = 3 net.ipv4.neigh.default.unres_qlen = 31 net.ipv4.neigh.default.unres_qlen_bytes = 65536 net.ipv4.ping_group_range = 1 0 net.ipv4.route.error_burst = 5000 net.ipv4.route.error_cost = 1000 net.ipv4.route.gc_elasticity = 8 net.ipv4.route.gc_interval = 60 net.ipv4.route.gc_min_interval = 0 net.ipv4.route.gc_min_interval_ms = 500 net.ipv4.route.gc_thresh = -1 net.ipv4.route.gc_timeout = 300 net.ipv4.route.max_size = 2147483647 net.ipv4.route.min_adv_mss = 256 net.ipv4.route.min_pmtu = 552 net.ipv4.route.mtu_expires = 600 net.ipv4.route.redirect_load = 20 net.ipv4.route.redirect_number = 9 net.ipv4.route.redirect_silence = 20480 net.ipv4.tcp_abort_on_overflow = 0 net.ipv4.tcp_adv_win_scale = 1 net.ipv4.tcp_allowed_congestion_control = cubic reno net.ipv4.tcp_app_win = 31 net.ipv4.tcp_available_congestion_control = cubic reno net.ipv4.tcp_base_mss = 512 net.ipv4.tcp_challenge_ack_limit = 100 net.ipv4.tcp_congestion_control = cubic net.ipv4.tcp_dsack = 1 net.ipv4.tcp_early_retrans = 3 net.ipv4.tcp_ecn = 2 net.ipv4.tcp_fack = 1 net.ipv4.tcp_fastopen = 0 net.ipv4.tcp_fin_timeout = 60 net.ipv4.tcp_frto = 2 net.ipv4.tcp_keepalive_intvl = 75 net.ipv4.tcp_keepalive_probes = 9 net.ipv4.tcp_keepalive_time = 7200 net.ipv4.tcp_limit_output_bytes = 131072 net.ipv4.tcp_low_latency = 0 net.ipv4.tcp_max_orphans = 4096 net.ipv4.tcp_max_ssthresh = 0 net.ipv4.tcp_max_syn_backlog = 128 net.ipv4.tcp_max_tw_buckets = 4096 net.ipv4.tcp_mem = 23724 31632 47448 net.ipv4.tcp_moderate_rcvbuf = 1 net.ipv4.tcp_mtu_probing = 0 net.ipv4.tcp_no_metrics_save = 0 net.ipv4.tcp_orphan_retries = 0 net.ipv4.tcp_reordering = 3 net.ipv4.tcp_retrans_collapse = 1 net.ipv4.tcp_retries1 = 3 net.ipv4.tcp_retries2 = 15 net.ipv4.tcp_rfc1337 = 0 net.ipv4.tcp_rmem = 4096 87380 6291456 net.ipv4.tcp_sack = 1 net.ipv4.tcp_slow_start_after_idle = 1 net.ipv4.tcp_stdurg = 0 net.ipv4.tcp_syn_retries = 6 net.ipv4.tcp_synack_retries = 5 net.ipv4.tcp_thin_dupack = 0 net.ipv4.tcp_thin_linear_timeouts = 0 net.ipv4.tcp_timestamps = 1 net.ipv4.tcp_tso_win_divisor = 3 net.ipv4.tcp_tw_recycle = 0 net.ipv4.tcp_tw_reuse = 0 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_wmem = 4096 16384 4194304 net.ipv4.tcp_workaround_signed_windows = 0 net.ipv4.udp_mem = 23865 31820 47730 net.ipv4.udp_rmem_min = 4096 net.ipv4.udp_wmem_min = 4096 net.ipv4.xfrm4_gc_thresh = 1024 net.ipv6.bindv6only = 0 net.ipv6.conf.all.accept_dad = 1 net.ipv6.conf.all.accept_ra = 1 net.ipv6.conf.all.accept_ra_defrtr = 1 net.ipv6.conf.all.accept_ra_pinfo = 1 net.ipv6.conf.all.accept_ra_rtr_pref = 1 net.ipv6.conf.all.accept_redirects = 1 net.ipv6.conf.all.accept_source_route = 0 net.ipv6.conf.all.autoconf = 1 net.ipv6.conf.all.dad_transmits = 1 net.ipv6.conf.all.disable_ipv6 = 0 net.ipv6.conf.all.force_mld_version = 0 net.ipv6.conf.all.force_tllao = 0 net.ipv6.conf.all.forwarding = 0 net.ipv6.conf.all.hop_limit = 64 net.ipv6.conf.all.max_addresses = 16 net.ipv6.conf.all.max_desync_factor = 600 net.ipv6.conf.all.mtu = 1280 net.ipv6.conf.all.ndisc_notify = 0 net.ipv6.conf.all.proxy_ndp = 0 net.ipv6.conf.all.regen_max_retry = 3 net.ipv6.conf.all.router_probe_interval = 60 net.ipv6.conf.all.router_solicitation_delay = 1 net.ipv6.conf.all.router_solicitation_interval = 4 net.ipv6.conf.all.router_solicitations = 3 net.ipv6.conf.all.temp_prefered_lft = 86400 net.ipv6.conf.all.temp_valid_lft = 604800 net.ipv6.conf.all.use_tempaddr = 0 net.ipv6.conf.default.accept_dad = 1 net.ipv6.conf.default.accept_ra = 1 net.ipv6.conf.default.accept_ra_defrtr = 1 net.ipv6.conf.default.accept_ra_pinfo = 1 net.ipv6.conf.default.accept_ra_rtr_pref = 1 net.ipv6.conf.default.accept_redirects = 1 net.ipv6.conf.default.accept_source_route = 0 net.ipv6.conf.default.autoconf = 1 net.ipv6.conf.default.dad_transmits = 1 net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.default.force_mld_version = 0 net.ipv6.conf.default.force_tllao = 0 net.ipv6.conf.default.forwarding = 0 net.ipv6.conf.default.hop_limit = 64 net.ipv6.conf.default.max_addresses = 16 net.ipv6.conf.default.max_desync_factor = 600 net.ipv6.conf.default.mtu = 1280 net.ipv6.conf.default.ndisc_notify = 0 net.ipv6.conf.default.proxy_ndp = 0 net.ipv6.conf.default.regen_max_retry = 3 net.ipv6.conf.default.router_probe_interval = 60 net.ipv6.conf.default.router_solicitation_delay = 1 net.ipv6.conf.default.router_solicitation_interval = 4 net.ipv6.conf.default.router_solicitations = 3 net.ipv6.conf.default.temp_prefered_lft = 86400 net.ipv6.conf.default.temp_valid_lft = 604800 net.ipv6.conf.default.use_tempaddr = 0 net.ipv6.icmp.ratelimit = 1000 net.ipv6.ip6frag_high_thresh = 4194304 net.ipv6.ip6frag_low_thresh = 3145728 net.ipv6.ip6frag_secret_interval = 600 net.ipv6.ip6frag_time = 60 net.ipv6.mld_max_msf = 64 net.ipv6.neigh.default.anycast_delay = 100 net.ipv6.neigh.default.app_solicit = 0 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.locktime = 0 net.ipv6.neigh.default.mcast_solicit = 3 net.ipv6.neigh.default.proxy_delay = 80 net.ipv6.neigh.default.proxy_qlen = 64 net.ipv6.neigh.default.retrans_time_ms = 1000 net.ipv6.neigh.default.ucast_solicit = 3 net.ipv6.neigh.default.unres_qlen = 31 net.ipv6.neigh.default.unres_qlen_bytes = 65536 net.ipv6.route.gc_elasticity = 9 net.ipv6.route.gc_interval = 30 net.ipv6.route.gc_min_interval = 0 net.ipv6.route.gc_min_interval_ms = 500 net.ipv6.route.gc_thresh = 1024 net.ipv6.route.gc_timeout = 60 net.ipv6.route.max_size = 4096 net.ipv6.route.min_adv_mss = 1220 net.ipv6.route.mtu_expires = 600 net.ipv6.xfrm6_gc_thresh = 1024 net.netfilter.nf_conntrack_acct = 0 net.netfilter.nf_conntrack_buckets = 8192 net.netfilter.nf_conntrack_checksum = 1 net.netfilter.nf_conntrack_events = 1 net.netfilter.nf_conntrack_events_retry_timeout = 15 net.netfilter.nf_conntrack_expect_max = 124 net.netfilter.nf_conntrack_generic_timeout = 600 net.netfilter.nf_conntrack_helper = 1 net.netfilter.nf_conntrack_icmp_timeout = 30 net.netfilter.nf_conntrack_log_invalid = 0 net.netfilter.nf_conntrack_max = 31820 net.netfilter.nf_conntrack_tcp_be_liberal = 0 net.netfilter.nf_conntrack_tcp_loose = 1 net.netfilter.nf_conntrack_tcp_max_retrans = 3 net.netfilter.nf_conntrack_tcp_timeout_close = 10 net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60 net.netfilter.nf_conntrack_tcp_timeout_established = 432000 net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120 net.netfilter.nf_conntrack_tcp_timeout_last_ack = 30 net.netfilter.nf_conntrack_tcp_timeout_max_retrans = 300 net.netfilter.nf_conntrack_tcp_timeout_syn_recv = 60 net.netfilter.nf_conntrack_tcp_timeout_syn_sent = 120 net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120 net.netfilter.nf_conntrack_tcp_timeout_unacknowledged = 300 net.netfilter.nf_conntrack_timestamp = 0 net.netfilter.nf_conntrack_udp_timeout = 30 net.netfilter.nf_conntrack_udp_timeout_stream = 180 net.netfilter.nf_conntrack_udplite_timeout = 30 net.netfilter.nf_conntrack_udplite_timeout_stream = 180 net.netfilter.nf_log.0 = NONE net.netfilter.nf_log.1 = NONE net.netfilter.nf_log.10 = ip6t_LOG net.netfilter.nf_log.11 = NONE net.netfilter.nf_log.12 = NONE net.netfilter.nf_log.2 = ipt_LOG net.netfilter.nf_log.3 = NONE net.netfilter.nf_log.4 = NONE net.netfilter.nf_log.5 = NONE net.netfilter.nf_log.6 = NONE net.netfilter.nf_log.7 = NONE net.netfilter.nf_log.8 = NONE net.netfilter.nf_log.9 = NONE net.nf_conntrack_max = 31820 net.unix.max_dgram_qlen = 10
awk base64 busybox cat chgrp chmod chown cp cpio date dd df dmesg dnsdomainname dumpkmap echo egrep false fdflush fgrep fsync grep gunzip gzip hostname iostat kbd_mode kill ln login ls mkdir mknod mktemp more mpstat mv netstat nice pidof ps rm rmdir sed sleep stat stty sync tar touch true uname usleep vi watch zcat
arp blockdev fdisk freeramdisk getty halt hdparm hwclock ifconfig init ip ipaddr iplink iproute iprule iptunnel klogd loadkmap mkdosfs mkfs.vfat mkswap poweroff reboot route setconsole sulogin swapoff swapon sysctl syslogd tunctl udhcpc
basename bunzip2 bzcat bzip2 chvt clear cmp comm cut dc deallocvt diff dirname dos2unix du eject env expr fgconsole find free ftpget ftpput fuser hd head hexdump id install ipcrm ipcs killall last less logger logname lsof lspci lsusb lzcat lzma md5sum microcom mkfifo nc nmeter nohup nslookup od openvt patch pgrep pkill pmap pstree readlink realpath renice reset resize setkeycodes setsid sha3sum showkey sort split strings tail taskset tee telnet tftp top tr tty uniq unix2dos unlzma unxz unzip uptime uudecode uuencode wc wget which who xargs xz xzcat
addgroup adduser chroot crond delgroup deluser ether-wake fbset fdformat ftpd inetd killall5 loadfont nbd-client ntpd powertop rdate readahead rfkill rtcwake setfont setlogcons tftpd
0 * * * * /etc/cron.d/cron.prog /etc/cron.hourly 0 21 * * * /etc/cron.d/cron.prog /etc/cron.daily 15 21 * * 0 /etc/cron.d/cron.prog /etc/cron.weekly 30 21 1 * * /etc/cron.d/cron.prog /etc/cron.monthly
#!/bin/bash if [[ $# -lt 1 ]]; then echo "Usage: $(basename $0) <dir>" exit 1 fi if [[ ! -d $1 ]]; then echo "Not a directory: $1" exit 1 fi for name in $1/* ; do [[ -d ${name} ]] && continue [[ "${name%.bak}" != "${name}" ]] && continue [[ "${name%.swp}" != "${name}" ]] && continue [[ "${name%,v}" != "${name}" ]] && continue [[ "${name%~}" != "${name}" ]] && continue [[ -x ${name} ]] && ${name} done exit 0
scc_0000_s_first 8277d30c474a4bce6e20c63a3a5726ce scc_0000_s_general 0fbe9c38cac24d9c24b8ef7c06c6d275 scc_0100_s_boot bc5645e0f7752fbdfa081de92f58eb60 scc_0200_s_hardware 113c7ddbf99d93333033614b17b2b929 scc_0300_s_kernel da7c04a47fc8c998eeef1aa87718f39e scc_0400_s_vol_mngt f6e8a925b17a2b344026b67cb4aea6af scc_0500_s_network 684319ac66fdb91950d68716d3a95f92 scc_0500_u_named 410084ba8c6264fc9631af72b864dc8c scc_0600_s_software 6aa70903fc219ccacd71f14ceb9b65a3 scc_0610_s_oracle_sapr3 c8f90e2326b3e00126119d9b1eebee87 scc_0620_s_appl_server a1561923771c3d7f4f1a9478fd77b2ad scc_0630_s_pkgmngt ecf150e9622b70b85263c04b6b0dcd32 scc_0640_s_local d11785b307c10b6952465a8c938126cd scc_0700_s_hp_ov f8a541fb32e6f512d854f29ba445057e scc_0700_u_hp_ovou_srv e74fa70325d6805a8e6defa379080bf8 scc_0800_s_oracle 2f065f54d478a69a1d1799a3e1340846 scc_0900_s_system f8fa6c3affd20d8d784f6dda578084e3 scc_1000_s_users 0aa7c285d27b6dfef7f9d8a01da867ef scc_1100_s_openstack 4b883d58b869924f0fbbf6d9d2f00baf scc_9999_s_perms 978fae9c87db7d17536768276dc0633e scc_utils 9de6d352dd73361d5997f06dfab129cb
alsa-lib-1.0.28 alsa-utils-1.0.28 bash-4.2 binutils-2.23 busybox-1.22.1 calc-2.12.4.13 cloog-0.16.1 crosslinux-basefs crosslinux-libc crosslinux-libc-devel dropbear-2014.63 dtach-0.8 dvtm-0.11 e2fsprogs-1.42.9 gcc-4.7.3 gmp-5.0.5 gpm-1.20.7 haserl-0.9.32 iptables-1.4.18 kmod-16 kmodules-3.10.2 lilo-24.0 lua-5.2.3 lynx-2.8.8 make-4.0 mpc-1.0.1 mpfr-3.1.1 nano-2.3.2 ncurses-5.9 ntfs-3g-ntfsprogs-2014.2.15 ppl-0.11 readline-6.3 retawq-0.2.6c scc-1.26.72 thttpd-2.25b tree-1.7.0 ttylinux-utils-1.6 udev-182 util-linux-2.24
Linux version 3.10.2 (djerome@localhost.localdomain) (gcc version 4.7.3 (crosstool-NG 1.19.0) ) #1 SMP PREEMPT Sun Mar 1 13:35:37 MST 2015 Command line: auto BOOT_IMAGE=ttylinux root=801 e820: BIOS-provided physical RAM map: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved BIOS-e820: [mem 0x0000000000100000-0x000000003ffeffff] usable BIOS-e820: [mem 0x000000003fff0000-0x000000003fffffff] ACPI data BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved NX (Execute Disable) protection: active SMBIOS 2.5 present. DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006 e820: update [mem 0x00000000-0x00000fff] usable ==> reserved e820: remove [mem 0x000a0000-0x000fffff] usable No AGP bridge found e820: last_pfn = 0x3fff0 max_arch_pfn = 0x400000000 MTRR default type: uncachable MTRR variable ranges disabled: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 CPU MTRRs all blank - virtualized system. found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ffff88000009fff0] Base memory trampoline at [ffff880000099000] 99000 size 24576 init_memory_mapping: [mem 0x00000000-0x000fffff] [mem 0x00000000-0x000fffff] page 4k BRK [0x01d5f000, 0x01d5ffff] PGTABLE BRK [0x01d60000, 0x01d60fff] PGTABLE BRK [0x01d61000, 0x01d61fff] PGTABLE init_memory_mapping: [mem 0x3fc00000-0x3fdfffff] [mem 0x3fc00000-0x3fdfffff] page 2M init_memory_mapping: [mem 0x3c000000-0x3fbfffff] [mem 0x3c000000-0x3fbfffff] page 2M init_memory_mapping: [mem 0x00100000-0x3bffffff] [mem 0x00100000-0x001fffff] page 4k [mem 0x00200000-0x3bffffff] page 2M init_memory_mapping: [mem 0x3fe00000-0x3ffeffff] [mem 0x3fe00000-0x3ffeffff] page 4k BRK [0x01d62000, 0x01d62fff] PGTABLE ACPI: RSDP 00000000000e0000 00024 (v02 VBOX ) ACPI: XSDT 000000003fff0030 0003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061) ACPI: FACP 000000003fff00f0 000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061) ACPI: DSDT 000000003fff0470 022EA (v02 VBOX VBOXBIOS 00000002 INTL 20100528) ACPI: FACS 000000003fff0200 00040 ACPI: APIC 000000003fff0240 00054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061) ACPI: SSDT 000000003fff02a0 001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528) ACPI: Local APIC address 0xfee00000 [ffffea0000000000-ffffea0000dfffff] PMD -> [ffff88003e600000-ffff88003f3fffff] on node 0 Zone ranges: DMA [mem 0x00001000-0x00ffffff] DMA32 [mem 0x01000000-0xffffffff] Normal empty Movable zone start for each node Early memory node ranges node 0: [mem 0x00001000-0x0009efff] node 0: [mem 0x00100000-0x3ffeffff] On node 0 totalpages: 262030 DMA zone: 56 pages used for memmap DMA zone: 21 pages reserved DMA zone: 3998 pages, LIFO batch:0 DMA32 zone: 3528 pages used for memmap DMA32 zone: 258032 pages, LIFO batch:31 ACPI: PM-Timer IO Port: 0x4008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Using ACPI (MADT) for SMP configuration information smpboot: Allowing 1 CPUs, 0 hotplug CPUs nr_irqs_gsi: 40 PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 e820: [mem 0x40000000-0xfebfffff] available for PCI devices setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1 PERCPU: Embedded 26 pages/cpu @ffff88003fc00000 s75264 r8192 d23040 u2097152 pcpu-alloc: s75264 r8192 d23040 u2097152 alloc=1*2097152 pcpu-alloc: [0] 0 Built 1 zonelists in Zone order, mobility grouping on. Total pages: 258425 Kernel command line: auto BOOT_IMAGE=ttylinux root=801 PID hash table entries: 4096 (order: 3, 32768 bytes) Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) xsave: enabled xstate_bv 0x7, cntxt size 0x340 Checking aperture... No AGP bridge found Memory: 1018268k/1048512k available (8334k kernel code, 392k absent, 29852k reserved, 3995k data, 832k init) Preemptible hierarchical RCU implementation. RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1. Experimental no-CBs for all CPUs Experimental no-CBs CPUs: 0-7. NO_HZ: Full dynticks CPUs: 1-7. NR_IRQS:4352 nr_irqs:256 16 Console: colour VGA+ 80x25 console [tty0] enabled tsc: Fast TSC calibration failed tsc: PIT calibration matches PMTIMER. 1 loops tsc: Detected 2395.015 MHz processor Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.03 BogoMIPS (lpj=2395015) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 256 CPU: Physical Processor ID: 0 mce: CPU supports 0 MCE banks Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0 Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32 tlb_flushall_shift: 1 Freeing SMP alternatives: 28k freed ACPI: Core revision 20130328 ACPI: All ACPI Tables successfully acquired ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09) Performance Events: unsupported p6 CPU model 58 no PMU driver, software events only. Brought up 1 CPUs smpboot: Total of 1 processors activated (4790.03 BogoMIPS) devtmpfs: initialized NET: Registered protocol family 16 ACPI: bus type PCI registered PCI: Using configuration type 1 for base access bio: create slab <bio-0> at 0 ACPI: Added _OSI(Module Device) ACPI: Added _OSI(Processor Device) ACPI: Added _OSI(3.0 _SCP Extensions) ACPI: Added _OSI(Processor Aggregator Device) ACPI: EC: Look up EC in DSDT ACPI: Executed 1 blocks of module-level executable AML code ACPI: Interpreter enabled ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130328/hwxface-568) ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568) ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130328/hwxface-568) ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20130328/hwxface-568) ACPI: (supports S0 S5) ACPI: Using IOAPIC for interrupt routing PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug ACPI: No dock devices found. ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) acpi PNP0A03:00: host bridge window [mem 0x40000000-0xfdffffff] (ignored) PCI: root bus 00: using default resources acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. PCI host bridge to bus 0000:00 pci_bus 0000:00: root bus resource [bus 00-ff] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f] pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000 pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe0ffffff pref] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000 pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff] pci 0000:00:03.0: reg 18: [io 0xd010-0xd017] pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000 pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f] pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff] pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 pci 0000:00:05.0: reg 10: [io 0xd100-0xd1ff] pci 0000:00:05.0: reg 14: [io 0xd200-0xd23f] pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310 pci 0000:00:06.0: reg 10: [mem 0xf0804000-0xf0804fff] pci 0000:00:07.0: [8086:7113] type 00 class 0x068000 pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB pci 0000:00:08.0: [8086:100e] type 00 class 0x020000 pci 0000:00:08.0: reg 10: [mem 0xf0820000-0xf083ffff] pci 0000:00:08.0: reg 18: [io 0xd240-0xd247] pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601 pci 0000:00:0d.0: reg 10: [io 0xd248-0xd24f] pci 0000:00:0d.0: reg 14: [io 0xd250-0xd253] pci 0000:00:0d.0: reg 18: [io 0xd258-0xd25f] pci 0000:00:0d.0: reg 1c: [io 0xd260-0xd263] pci 0000:00:0d.0: reg 20: [io 0xd270-0xd27f] pci 0000:00:0d.0: reg 24: [mem 0xf0840000-0xf0841fff] pci_bus 0000:00: on NUMA node 0 acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x0e) ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11) ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11) ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11) ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11) ACPI: Enabled 2 GPEs in block 00 to 07 acpi root: \_SB_.PCI0 notify handler is installed Found 1 acpi root devices vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none vgaarb: loaded vgaarb: bridge control possible 0000:00:02.0 SCSI subsystem initialized ACPI: bus type ATA registered libata version 3.00 loaded. ACPI: bus type USB registered usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb pps_core: LinuxPPS API ver. 1 registered pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> PTP clock support registered PCI: Using ACPI for IRQ routing PCI: pci_cache_line_size set to 64 bytes e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] e820: reserve RAM buffer [mem 0x3fff0000-0x3fffffff] Switching to clocksource refined-jiffies pnp: PnP ACPI init ACPI: bus type PNP registered pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active) pnp 00:01: [dma 4] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active) pnp 00:02: Plug and Play ACPI device, IDs PNP0f03 (active) pnp: PnP ACPI: found 3 devices ACPI: bus type PNP unregistered Switching to clocksource acpi_pm pci_bus 0000:00: resource 4 [io 0x0000-0xffff] pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff] NET: Registered protocol family 2 TCP established hash table entries: 8192 (order: 5, 131072 bytes) TCP bind hash table entries: 8192 (order: 5, 131072 bytes) TCP: Hash tables configured (established 8192 bind 8192) TCP: reno registered UDP hash table entries: 512 (order: 2, 16384 bytes) UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) NET: Registered protocol family 1 RPC: Registered named UNIX socket transport module. RPC: Registered udp transport module. RPC: Registered tcp transport module. RPC: Registered tcp NFSv4.1 backchannel transport module. pci 0000:00:00.0: Limiting direct PCI/PCI transfers pci 0000:00:01.0: Activating ISA DMA hang workarounds pci 0000:00:02.0: Boot video device PCI: CLS 0 bytes, default 64 platform rtc_cmos: registered platform RTC device (no PNP device found) microcode: CPU0 sig=0x306a9, pf=0x2, revision=0x19 microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba sha1_ssse3: Using AVX optimized SHA-1 implementation NFS: Registering the id_resolver key type Key type id_resolver registered Key type id_legacy registered fuse init (API version 7.22) msgmni has been set to 1988 Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) io scheduler noop registered io scheduler deadline registered (default) io scheduler cfq registered ACPI: AC Adapter [AC] (on-line) input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 ACPI: Power Button [PWRF] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1 ACPI: Sleep Button [SLPF] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/LNXVIDEO:00/input/input2 ACPI: Battery Slot [BAT0] (battery present) Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled Non-volatile memory driver v1.3 brd: module loaded loop: module loaded Uniform Multi-Platform E-IDE driver piix 0000:00:01.1: IDE controller (0x8086:0x7111 rev 0x01) piix 0000:00:01.1: not 100% native mode: will probe irqs later ide0: BM-DMA at 0xd000-0xd007 ide1: BM-DMA at 0xd008-0xd00f Probing IDE interface ide0... Probing IDE interface ide1... tsc: Refined TSC clocksource calibration: 2394.569 MHz Switching to clocksource tsc hdc: VBOX CD-ROM, ATAPI CD/DVD-ROM drive hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4 hdc: UDMA/33 mode selected ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 ide1 at 0x170-0x177,0x376 on irq 15 ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports ide-gd driver 1.18 ide-cd driver 5.00 ide-cd: hdc: ATAPI 32X DVD-ROM drive, 128kB Cache cdrom: Uniform CD-ROM driver Revision: 3.20 st: Version 20101219, fixed bufsize 32768, s/g segs 256 ahci 0000:00:0d.0: version 3.0 ahci: SSS flag set, parallel bus scan disabled ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc ahci 0000:00:0d.0: setting latency timer to 64 scsi0 : ahci ata1: SATA max UDMA/133 abar m8192@0xf0840000 port 0xf0840100 irq 21 pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.16 (Dec 05, 2012) bnx2x: Broadcom NetXtreme II 5771x/578xx 10/20-Gigabit Ethernet Driver bnx2x 1.78.17-0 (2013/04/11) enic: Cisco VIC Ethernet NIC Driver, ver 2.1.1.39 dmfe: Davicom DM9xxx net driver, version 1.36.4 (2002-01-17) v1.01-e (2.4 port) Sep-11-2006 Donald Becker <becker@scyld.com> http://www.scyld.com/network/drivers.html uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29) vxge: Copyright(c) 2002-2010 Exar Corp. vxge: Driver version: 2.5.3.22640-k e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI e100: Copyright(c) 1999-2006 Intel Corporation e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI e1000: Copyright (c) 1999-2006 Intel Corporation. e1000 0000:00:03.0: setting latency timer to 64 ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) ata1.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133 ata1.00: 16777216 sectors, multi 128: LBA48 NCQ (depth 31/32) ata1.00: configured for UDMA/133 scsi 0:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5 sd 0:0:0:0: [sda] 16777216 512-byte logical blocks: (8.58 GB/8.00 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sda: sda1 sd 0:0:0:0: Attached scsi generic sg0 type 0 sd 0:0:0:0: [sda] Attached SCSI disk e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 08:00:27:69:08:47 e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection e1000 0000:00:08.0: setting latency timer to 64 e1000 0000:00:08.0 eth1: (PCI:33MHz:32-bit) 08:00:27:be:94:9b e1000 0000:00:08.0 eth1: Intel(R) PRO/1000 Network Connection e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k e1000e: Copyright(c) 1999 - 2013 Intel Corporation. igb: Intel(R) Gigabit Ethernet Network Driver - version 5.0.3-k igb: Copyright (c) 2007-2013 Intel Corporation. igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.0.2-k igbvf: Copyright (c) 2009 - 2012 Intel Corporation. ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.13.10-k ixgbe: Copyright (c) 1999-2013 Intel Corporation. ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI ixgb: Copyright (c) 1999-2008 Intel Corporation. jme: JMicron JMC2XX ethernet driver version 1.0.8 sky2: driver version 1.30 myri10ge: Version 1.5.3-1.534 ns83820.c: National Semiconductor DP83820 10/100/1000 driver. QLogic 1/10 GbE Converged/Intelligent Ethernet Driver v5.2.42 QLogic/NetXen Network Driver v4.0.80 Solarflare NET driver v3.2 tehuti: Tehuti Networks(R) Network Driver, 7.29.3 tehuti: Options: hw_csum tlan: ThunderLAN driver v1.17 tlan: 0 devices installed, PCI: 0 EISA: 0 ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver ehci-pci: EHCI PCI platform driver ehci-platform: EHCI generic platform driver ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver ohci_hcd 0000:00:06.0: setting latency timer to 64 ohci_hcd 0000:00:06.0: OHCI Host Controller ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 1 ohci_hcd 0000:00:06.0: irq 22, io mem 0xf0804000 hub 1-0:1.0: USB hub found hub 1-0:1.0: 12 ports detected uhci_hcd: USB Universal Host Controller Interface driver usbcore: registered new interface driver usb-storage i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12 serio: i8042 KBD port at 0x60,0x64 irq 1 serio: i8042 AUX port at 0x60,0x64 irq 12 mousedev: PS/2 mouse device common for all mice input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 input: PC Speaker as /devices/platform/pcspkr/input/input4 rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0 rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram cpuidle: using governor ladder cpuidle: using governor menu ledtrig-cpu: registered to indicate activity on CPUs hidraw: raw HID events driver (C) Jiri Kosina usbcore: registered new interface driver usbhid usbhid: USB HID core driver Netfilter messages via NETLINK v0.30. nfnl_acct: registering with nfnetlink. nf_conntrack version 0.5.0 (7955 buckets, 31820 max) ctnetlink v0.93: registering with nfnetlink. xt_time: kernel timezone is -0000 ip_tables: (C) 2000-2006 Netfilter Core Team ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully arp_tables: (C) 2002 David S. Miller TCP: cubic registered Initializing XFRM netlink socket NET: Registered protocol family 17 NET: Registered protocol family 15 Key type dns_resolver registered psmouse serio1: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64 input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input5 VFS: Mounted root (ext2 filesystem) readonly on device 8:1. devtmpfs: mounted Freeing unused kernel memory: 832k freed udevd[895]: starting version 182 usb 1-1: new full-speed USB device number 2 using ohci_hcd Linux agpgart interface v0.103 intel8x0: disable (unknown or VT-d) VM optimization snd_intel8x0 0000:00:05.0: setting latency timer to 64 input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/input/input6 hid-generic 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0 intel8x0: white list rate for 1028:0177 is 48000 NET: Registered protocol family 10 e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready dropped IN=eth0 OUT= MAC=ff:ff:ff:ff:ff:ff:08:00:27:c8:a2:e9:08:00 SRC=0.0.0.0 DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=68 DPT=67 LEN=308 dropped IN=eth0 OUT= MAC=ff:ff:ff:ff:ff:ff:08:00:27:c8:a2:e9:08:00 SRC=0.0.0.0 DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=68 DPT=67 LEN=308 IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready dropped IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:08:00:27:ba:81:14:08:00 SRC=0.0.0.0 DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=68 DPT=67 LEN=308 dropped IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:08:00:27:35:9a:f2:08:00 SRC=192.168.56.100 DST=255.255.255.255 LEN=576 TOS=0x00 PREC=0x00 TTL=255 ID=6 PROTO=UDP SPT=67 DPT=68 LEN=556 dropped IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:08:00:27:ba:81:14:08:00 SRC=0.0.0.0 DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=68 DPT=67 LEN=308 nr_pdflush_threads exported in /proc is scheduled for removal sed: The scan_unevictable_pages sysctl/node-interface has been disabled for lack of a legitimate use case. If you have one, please send an email to linux-mm@kvack.org.
ttylinux ver 2015.02 [halftime] x86_64 class \s kernel \r (\l) The initial "root" and "user" password is "password".
set -o ignoreeof set -o noclobber set -o posix set -o vi export LC_ALL=POSIX export PATH="/bin:/usr/bin:/sbin:/usr/sbin" export POSIXLY_CORRECT=y export TZ=UTC [[ $(id -u) -lt 5000 ]] && umask 002 || umask 077 [[ $(id -u) -eq 0 ]] && umask 022 if [[ -n "${PS1}" && -n "$(echo $- | grep i)" ]]; then PS1="\[\e[31m\]\${?#0}\[\e[32m\]$\[\e[0m\] " PS2=" " PS4="${LINENO} xtrace --> " [[ "${USER}" = "root" ]] && PS1="\[\e[31m\]\${?#0}#\[\e[0m\] " alias Date="date '+DATE: %a. %h %d, 20%y.'" alias Time="date '+TIME: %r.'" alias cp="cp -i" alias rm="rm -i" alias mv="mv -i" alias bz="bzip2" alias buz="bunzip2" alias cls="clear" alias d="ls --color=auto -aCF" alias dir="ls --color=auto -ashCF" alias gz="gzip" alias guz="gunzip" alias l="ls --color=auto -Fhl" alias ll="ls --color=auto -Fahl" alias pd="popd" alias sd="pushd" alias ssh="dbclient" fi for i in /etc/profile.d/*.sh; do [[ -f $i ]] && . $i done; unset i
/bin/bash /bin/sh
Chop wood, carry water.
ttylinux ver 2015.02 [halftime] x86_64 class \s kernel \r (\l) The initial "root" and "user" password is "password".
ttylinux2015
PID USER TIME COMMAND 1 root 0 0:01 init 2 root 0 0:00 [kthreadd] 3 root 2 0:00 [ksoftirqd/0] 4 root 2 0:00 [kworker/0:0] 5 root 2 0:00 [kworker/0:0H] 6 root 2 0:00 [kworker/u2:0] 7 root 2 0:00 [migration/0] 8 root 2 0:00 [rcu_preempt] 9 root 2 0:00 [rcuop/0] 10 root 2 0:00 [rcu_bh] 11 root 2 0:00 [rcuob/0] 12 root 2 0:00 [rcu_sched] 13 root 2 0:00 [rcuos/0] 14 root 2 0:00 [khelper] 15 root 2 0:00 [kdevtmpfs] 16 root 2 0:00 [kworker/u2:1] 360 root 2 0:00 [writeback] 362 root 2 0:00 [bioset] 364 root 2 0:00 [kblockd] 408 root 2 0:00 [ata_sff] 418 root 2 0:00 [khubd] 519 root 2 0:00 [kworker/0:1] 520 root 2 0:00 [rpciod] 538 root 2 0:00 [kswapd0] 539 root 2 0:00 [fsnotify_mark] 540 root 2 0:00 [nfsiod] 542 root 2 0:00 [crypto] 577 root 2 0:00 [kworker/u2:2] 677 root 2 0:00 [kworker/0:1H] 691 root 2 0:00 [scsi_eh_0] 731 root 2 0:00 [cnic_wq] 732 root 2 0:00 [bnx2x] 737 root 2 0:00 [cxgb4] 753 root 2 0:00 [kworker/u2:3] 777 root 2 0:00 [mlx4] 797 root 2 0:00 [sfc_reset] 829 root 2 0:00 [kpsmoused] 861 root 2 0:00 [deferwq] 862 root 2 0:00 [kworker/0:2] 895 root 1 0:00 /lib/udev/udevd --daemon 930 root 895 0:00 /lib/udev/udevd --daemon 967 root 895 0:00 /lib/udev/udevd --daemon 1037 root 1 0:00 /sbin/klogd -c 2 1040 root 1 0:00 /sbin/syslogd -s 128 1078 root 1 0:00 udhcpc -b -i eth0 -p /var/run/udhcpc.eth0.pid 1100 root 1 0:00 /usr/sbin/dropbear 1110 root 1 0:00 /usr/sbin/inetd 1120 root 1 0:00 /usr/sbin/gpm -m /dev/input/mice -t imps2 1130 root 1 0:00 /usr/sbin/crond -l 0 -c /var/spool/cron/crontabs 1136 root 1 0:00 /sbin/getty 115200 tty1 1137 root 1 0:00 /sbin/getty 115200 tty2 1138 root 1 0:00 /sbin/getty 115200 tty3 1139 root 1 0:00 /sbin/getty 115200 tty4 1140 root 1 0:00 /sbin/getty 115200 tty5 1141 root 1 0:00 /sbin/getty 115200 tty6 1142 root 1100 0:00 /usr/sbin/dropbear 1143 root 1142 0:00 -bash 1153 root 1143 0:00 {get_scc} /bin/sh ./get_scc 10205 root 1153 0:00 {scc} /bin/sh /optbin/scc -I /root/.ssh/id_rsa -p scp -s fc29srv:/var/opt/scc-srv/data/transfer/cp 10251 root 10205 0:00 {scc-log} /bin/sh /optbin/scc-log -c -e -S -l -m 0 10303 root 10251 0:00 {scc-collect} /bin/sh /optbin/scc-collect -e -S 10364 root 10303 0:00 {scc-collect} /bin/sh /optbin/scc-collect -e -S 10365 root 10303 0:00 cut -c 1 300 10366 root 0:00 ps
console tty1 tty2 tty3 tty4 tty5 tty6
/lib /usr/lib
ld-linux-x86-64.so.2 -> ld-2.17.so libanl.so.1 -> libanl-2.17.so libblkid.so.1 -> libblkid.so.1.1.0 libc.so.6 -> libc-2.17.so libcrypt.so.1 -> libcrypt-2.17.so libdl.so.2 -> libdl-2.17.so libformw.so.5 -> libformw.so.5.9 libgcc_s.so.1 -> libgcc_s.so.1 libhistory.so.6 -> libhistory.so.6.3 libkmod.so.2 -> libkmod.so.2.2.6 libm.so.6 -> libm-2.17.so libmemusage.so -> libmemusage.so libmenuw.so.5 -> libmenuw.so.5.9 libncursesw.so.5 -> libncursesw.so.5.9 libnsl.so.1 -> libnsl-2.17.so libnss_compat.so.2 -> libnss_compat-2.17.so libnss_db.so.2 -> libnss_db-2.17.so libnss_dns.so.2 -> libnss_dns-2.17.so libnss_files.so.2 -> libnss_files-2.17.so libnss_hesiod.so.2 -> libnss_hesiod-2.17.so libnss_nis.so.2 -> libnss_nis-2.17.so libnss_nisplus.so.2 -> libnss_nisplus-2.17.so libpanelw.so.5 -> libpanelw.so.5.9 libpthread.so.0 -> libpthread-2.17.so libreadline.so.6 -> libreadline.so.6.3 libresolv.so.2 -> libresolv-2.17.so librt.so.1 -> librt-2.17.so libthread_db.so.1 -> libthread_db-1.0.so libudev.so.0 -> libudev.so.0.13.1 libutil.so.1 -> libutil-2.17.so
libasound.so.2 -> libasound.so.2.0.0 libbfd-2.23.so -> libbfd.so libcloog-isl.so.1 -> libcloog-isl.so.1.0.1 libgcc_s.so.1 -> libgcc_s.so.1 libgmp.so.10 -> libgmp.so.10.0.5 libgmpxx.so.4 -> libgmpxx.so.4.2.5 libgpm.so.2 -> libgpm.so.2.1.0 libisl.so.5 -> libisl.so.5.0.1 libitm.so.1 -> libitm.so.1.0.0 libmp.so.3 -> libmp.so.3.1.25 libmpc.so.3 -> libmpc.so.3.0.0 libmpfr.so.4 -> libmpfr.so.4.1.1 libntfs-3g.so.85 -> libntfs-3g.so.85.0.0 libopcodes-2.23.so -> libopcodes.so libppl.so.9 -> libppl.so.9.0.0 libppl_c.so.4 -> libppl_c.so.4.0.0 libpwl.so.5 -> libpwl.so.5.0.0 libquadmath.so.0 -> libquadmath.so.0.0.0 libstdc++.so.6 -> libstdc++.so.6.0.17
vm.admin_reserve_kbytes = 8192 vm.block_dump = 0 vm.dirty_background_bytes = 0 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_writeback_centisecs = 500 vm.drop_caches = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 vm.max_map_count = 65530 vm.min_free_kbytes = 4036 vm.mmap_min_addr = 4096 vm.nr_pdflush_threads = 0 vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 3 vm.panic_on_oom = 0 vm.percpu_pagelist_fraction = 0 vm.scan_unevictable_pages = 0 vm.stat_interval = 1 vm.swappiness = 60 vm.user_reserve_kbytes = 31735 vm.vfs_cache_pressure = 100
root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/bin/false daemon:x:2:2:daemon:/sbin:/bin/false adm:x:3:4:adm:/var/adm:/bin/false lp:x:4:7:lp:/var/spool/lpd:/bin/false sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt httpd:x:41:41:HTTP Daemon:/var/lib/httpd:/bin/false ftpd:x:42:42:FTP Daemon:/var/lib/ftpd:/bin/false sshd:x:43:43:SSH PrivSep Daemon:/var/lib/sshd:/bin/false vcsa:x:69:69:virtual console memory owner:/dev:/sbin/false dbus:x:81:81:System Message Bus:/:/sbin/false user:x:1000:1000:ttylinux user:/home/user:/bin/bash nobody:x:65534:65534:nobody:/var/lib/nobody:/bin/false
root:ERASED:17530:0:99999:7::: bin:x:11609:0:99999:7::: daemon:x:11609:0:99999:7::: adm:x:11609:0:99999:7::: lp:x:11609:0:99999:7::: sync:x:11609:0:99999:7::: shutdown:x:11609:0:99999:7::: halt:x:11609:0:99999:7::: httpd:x:11609:0:99999:7::: ftpd:x:11609:0:99999:7::: sshd:x:11609:0:99999:7::: vcsa:x:11609:0:99999:7::: dbus:x:11609:0:99999:7::: user:ERASED:14707:0:99999:7::: nobody:x:11609:0:99999:7:::
adm:4:root,adm,daemon audio:15:user bin:1:root,bin,daemon cdrom:17: daemon:2:root,bin,daemon dbus:81: disk:6:root dvdrom:18: floppy:19: ftpd:42: httpd:41: kmem:9: lp:7:daemon,lp mem:8: ppp:40: root:0:root rpc:32: rpcuser:29: slocate:21: sshd:43:sshd sys:3:root,bin,adm tty:5: usb:20: utempter:35: utmp:22: uucp:13:uucp vcsa:69: video:16: wheel:10:root nobody:65534:nobody user:1000:user
authorized_keys: ssh-rsa rsa-key-20130912_scc ssh known hosts: centos64 ssh-rsa ssh known hosts: fc27srv ecdsa-sha2-nistp256 ssh known hosts: fc29srv ecdsa-sha2-nistp256
-rw-r--r-- root root /etc/inittab -rw-r--r-- root root /etc/lilo.conf -rwxr-xr-x root root /etc/rc.d/rc.local -rwxrwxr-x root root /etc/rc.d/rc.sysinit -rw-r--r-- root root /etc/sysconfig/clock -rw-r--r-- root root /etc/sysconfig/console -rw-r--r-- root root /etc/sysconfig/cron -rw-r--r-- root root /etc/sysconfig/firewall -rw-r--r-- root root /etc/sysconfig/mouse -rw-r--r-- root root /etc/sysconfig/network -rw-r--r-- root root /etc/sysconfig/ssh -rw-r--r-- root root /etc/sysconfig/syslog -r--r--r-- root root /proc/cmdline
-rw-r--r-- root root /etc/udev/rules.d/10-ttylinux.rules -rw-r--r-- root root /etc/udev/rules.d/70-persistent-cd.rules -rw-r--r-- root root /etc/udev/rules.d/70-persistent-net.rules -rw-r--r-- root root /etc/udev/udev.conf -r--r--r-- root root /proc/devices -r--r--r-- root root /proc/dma -r--r--r-- root root /proc/ide/drivers -r--r--r-- root root /proc/ide/hdc/driver -r--r--r-- root root /proc/ide/hdc/model -r--r--r-- root root /proc/ioports -r--r--r-- root root /proc/scsi/scsi -r--r--r-- root root /proc/tty/driver/serial
-rw-r--r-- root root /etc/modprobe.d/modprobe.conf -rw-r--r-- root root /lib/modules/3.10.2/modules.dep
-rw-r--r-- root root /etc/firewall.conf -rw-r--r-- root root /etc/host.conf -rw-r--r-- root root /etc/hosts -rw-r--r-- root root /etc/networks -rw-r--r-- root root /etc/nsswitch.conf -rw-r--r-- root root /etc/protocols -rw-r--r-- root root /etc/rpc -rw-r--r-- root root /etc/services -rw-r--r-- root root /etc/sysconfig/network-scripts/ifcfg-eth0 -rw-r--r-- root root /etc/sysconfig/network-scripts/ifcfg-eth1 -rw-r--r-- root root /etc/sysconfig/network-scripts/ifcfg-lo
-rwxr--r-- root root /etc/cron.d/cron.prog -rw-r--r-- root root /var/spool/cron/crontabs/root
-rw-r--r-- root root /etc/HOSTNAME -rw-r--r-- root root /etc/issue -rw-r--r-- root root /etc/issue.net -rw-r--r-- root root /etc/ld.so.conf -rw-r--r-- root root /etc/profile -rw------- root root /etc/securetty -rw-r--r-- root root /etc/shells
-rw-r--r-- root root /root/.ssh/authorized_keys
-rw-r--r-- root root /etc/fstab -rw-r--r-- root root /etc/mke2fs.conf
Time | Total seconds | Module seconds | Module | Label |
---|---|---|---|---|
21.35.50 | 0 | 0 | scc-collect | start of run |
21.35.50 | 0 | 0 | scc_0000_s_first | start of module |
21.35.50 | 0 | 0 | scc_0000_s_first | end of module |
21.35.50 | 0 | 0 | scc_0000_s_general | start of module |
21.35.51 | 1 | 1 | scc_0000_s_general | end of module |
21.35.51 | 1 | 0 | scc_0100_s_boot | start of module |
21.35.51 | 1 | 0 | scc_0100_s_boot | end of module |
21.35.51 | 1 | 0 | scc_0200_s_hardware | start of module |
21.35.52 | 2 | 1 | scc_0200_s_hardware | end of disk |
21.35.52 | 2 | 1 | scc_0200_s_hardware | end of module |
21.35.52 | 2 | 0 | scc_0300_s_kernel | start of module |
21.35.52 | 2 | 0 | scc_0300_s_kernel | end of module |
21.35.52 | 2 | 0 | scc_0400_s_vol_mngt | start of module |
21.35.52 | 2 | 0 | scc_0400_s_vol_mngt | end of file systems |
21.35.52 | 2 | 0 | scc_0400_s_vol_mngt | end of module |
21.35.52 | 2 | 0 | scc_0500_s_network | start of module |
21.35.53 | 3 | 1 | scc_0500_s_network | end of module |
21.35.53 | 3 | 0 | scc_0600_s_software | start of module |
21.35.53 | 3 | 0 | scc_0600_s_software | end of module |
21.35.53 | 3 | 0 | scc_0610_s_oracle_sapr3 | start of module |
21.35.53 | 3 | 0 | scc_0610_s_oracle_sapr3 | end of module |
21.35.53 | 3 | 0 | scc_0620_s_appl_server | start of module |
21.35.53 | 3 | 0 | scc_0620_s_appl_server | end of module |
21.35.53 | 3 | 0 | scc_0630_s_pkgmngt | start of module |
21.35.53 | 3 | 0 | scc_0630_s_pkgmngt | end of module |
21.35.53 | 3 | 0 | scc_0640_s_local | start of module |
21.35.54 | 4 | 1 | scc_0640_s_local | end of module |
21.35.54 | 4 | 0 | scc_0700_s_hp_ov | start of module |
21.35.54 | 4 | 0 | scc_0700_s_hp_ov | end of module |
21.35.54 | 4 | 0 | scc_0800_s_oracle | start of module |
21.35.54 | 4 | 0 | scc_0800_s_oracle | end of module |
21.35.54 | 4 | 0 | scc_0900_s_system | start of module |
21.35.54 | 4 | 0 | scc_0900_s_system | end of module |
21.35.54 | 4 | 0 | scc_1000_s_users | start of module |
21.35.54 | 4 | 0 | scc_1000_s_users | end of module |
21.35.54 | 4 | 0 | scc_1100_s_openstack | start of module |
21.35.54 | 4 | 0 | scc_1100_s_openstack | end of module |
21.35.54 | 4 | 0 | scc_9999_s_perms | start of module |
21.35.54 | 4 | 0 | scc_9999_s_perms | end of module |
21.35.54 | 4 | 4 | scc-collect | end of run |
Help-info is excluded from the fix/var and class counters.
Category | Count | Percentage |
---|---|---|
fix | 4232 | 88 |
var | 560 | 12 |
total | 4792 | 100 |
Contents of file: /etc/rc.d/rc.local Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.d/rc.sysinit Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/clock Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/console Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/cron Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/firewall Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/mouse Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/ssh Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/syslog Ignore blank lines and lines starting with character: #
Contents of file: /etc/inittab Ignore blank lines and lines starting with character: #
Contents of file: /etc/lilo.conf Ignore blank lines and lines starting with character: #
Contents of file: /proc/cmdline Ignore blank lines and lines starting with character: #
Contents of file: /proc/dma Ignore blank lines and lines starting with character: #
Contents of file: /proc/devices Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any hardware/device changes in these files will also be detected via the above data. Direct sysctl hardware/device changes will not be detected via the configuration files in the system module.
Contents of file: /proc/scsi/scsi Ignore blank lines and lines starting with character: #
model: Contents of file: /proc/ide/hdc/model model: Ignore blank lines and lines starting with character: # driver: Contents of file: /proc/ide/hdc/driver driver: Ignore blank lines and lines starting with character: #
Contents of file: /proc/ide/drivers Ignore blank lines and lines starting with character: #
Contents of file: /proc/ioports Ignore blank lines and lines starting with character: #
Contents of file: /proc/tty/driver/serial Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/10-ttylinux.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/70-persistent-cd.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/70-persistent-net.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/modprobe.d/modprobe.conf Ignore blank lines and lines starting with character: #
Contents of file: /lib/modules/VERSION/modules.dep Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any kernel changes in these files will also be detected via the above data. Direct sysctl kernel changes will not be detected via the configuration files in the system module.
Contents of file: /etc/mke2fs.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/fstab Ignore blank lines and lines starting with character: # The contents has been sorted and multiple spaces have been replaced by a single space.
Contents of file: /etc/firewall.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/host.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/hosts Ignore blank lines and lines starting with character: #
Contents of file: /etc/networks Ignore blank lines and lines starting with character: #
Contents of file: /etc/nsswitch.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/protocols Ignore blank lines and lines starting with character: #
Contents of file: /etc/rpc Ignore blank lines and lines starting with character: #
Contents of file: /etc/services Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network-scripts/ifcfg-eth0 Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network-scripts/ifcfg-eth1 Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network-scripts/ifcfg-lo Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any network changes in these files will also be detected via the above data. Direct sysctl network changes will not be detected via the configuration files in the system module.
Contents of file: /var/spool/cron/crontabs/root Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.d/cron.prog Ignore blank lines and lines starting with character: #
Contents of file: /etc/issue.net Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile Ignore blank lines and lines starting with character: #
Contents of file: /etc/shells Ignore blank lines and lines starting with character: #
Contents of file: /etc/motd Ignore blank lines and lines starting with character: #
Contents of file: /etc/issue Ignore blank lines and lines starting with character: #
Contents of file: /etc/HOSTNAME Ignore blank lines and lines starting with character: #
Contents of file: /etc/securetty Ignore blank lines and lines starting with character: #
Contents of file: /etc/ld.so.conf Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any virtual memory changes in these files will also be detected via the above data. Direct sysctl virtual memory changes will not be detected via the configuration files in the system module.
authorized_keys: Contents of file: /root/.ssh/authorized_keys authorized_keys: Ignore blank lines and lines starting with character: # ssh known hosts: Contents of file: /root/.ssh/known_hosts ssh known hosts: Ignore blank lines and lines starting with character: #
Fix data in the snapshot has a default color. Variable data in the snapshot has a specific color.
Generated by SCC version 1.26.72 (© Siem Korteweg) on Sun Dec 22 21:35:55 UTC 2019