date : 2010-06-28 start time : 09.56.34 stop time : 09.56.51 runtime : 17 layout-version : 1.13.12 hostname : ttylinux111 domain : nodename : ttylinux111 model-id : i686 cpu_cnt : 1 cpu-speed : 2258.300 MHz OS-name : Linux license : linux kernel version : 2.6.30.5 OS-version-level : #1 SMP PREEMPT Sat Apr 24 09:54:16 MST 2010 linux distro name : ttylinux linux distro file : /etc/rc.d/rc.sysinit linux distro details : ttylinux timezone : /etc/sysconfig/clock: TZ=UTC timezone : /etc/sysconfig/clock: UTC=yes hwclock : Mon Jun 28 09:56:42 2010 0.000000 seconds run level : superuser password : 0770b0a2be8cba260140307985894cf0 memory real : 245.184 MB uptime : 3:44
09.56.35: 0 : 0 :start of run 09.56.41: 6 : 6 :scc_0000_s_general start of module 09.56.42: 1 : 7 :scc_0000_s_general end of module 09.56.42: 0 : 7 :scc_0100_s_boot start of module 09.56.42: 0 : 7 :scc_0100_s_boot end of module 09.56.42: 0 : 7 :scc_0200_s_hardware start of module 09.56.43: 1 : 8 : scc_0200_s_hardware: end of disk 09.56.43: 1 : 8 :scc_0200_s_hardware end of module 09.56.43: 0 : 8 :scc_0300_s_kernel start of module 09.56.43: 0 : 8 :scc_0300_s_kernel end of module 09.56.43: 0 : 8 :scc_0400_s_vol_mngt start of module 09.56.44: 1 : 9 : scc_0400_s_vol_mngt: end of file systems 09.56.44: 1 : 9 :scc_0400_s_vol_mngt end of module 09.56.44: 0 : 9 :scc_0500_s_network start of module 09.56.46: 2 : 11 :scc_0500_s_network end of module 09.56.46: 0 : 11 :scc_0500_u_named start of module 09.56.46: 0 : 11 :scc_0500_u_named end of module 09.56.46: 0 : 11 :scc_0600_s_software start of module 09.56.48: 2 : 13 :scc_0600_s_software end of module 09.56.48: 0 : 13 :scc_0610_s_oracle_sapr3 start of module 09.56.48: 0 : 13 :scc_0610_s_oracle_sapr3 end of module 09.56.48: 0 : 13 :scc_0620_s_websphere start of module 09.56.48: 0 : 13 :scc_0620_s_websphere end of module 09.56.48: 0 : 13 :scc_0630_s_pkgmngt start of module 09.56.49: 1 : 14 :scc_0630_s_pkgmngt end of module 09.56.49: 0 : 14 :scc_0700_s_hp_ov start of module 09.56.49: 0 : 14 :scc_0700_s_hp_ov end of module 09.56.49: 0 : 14 :scc_0700_u_hp_ovou_srv start of module 09.56.49: 0 : 14 :scc_0700_u_hp_ovou_srv end of module 09.56.49: 0 : 14 :scc_0800_s_oracle start of module 09.56.49: 0 : 14 :scc_0800_s_oracle end of module 09.56.49: 0 : 14 :scc_0900_s_system start of module 09.56.50: 1 : 15 :scc_0900_s_system end of module 09.56.50: 0 : 15 :scc_1000_s_users start of module 09.56.51: 1 : 16 :scc_1000_s_users end of module 09.56.51: 16 : 16 :end of run
#!/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.
if [[ ! _d /proc ]]; then
attn $"no /proc directory, you hoser"
/etc/rc.d/rc.sysdone
fi
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
if [[ ! _d /sys ]]; then
attn $"no /sys directory, you hoser"
/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
[[ _d /proc/bus/usb ]] && mount _n _o devmode=0666 _t usbfs usbfs /proc/bus/usb
k_enet=0 # enet
k_nofsck=0 # nofsck
k_nosshd=0 # nosshd
k_fqdn="" # host=<name>
k_hwclock="" # hwclock=local|utc
k_tz="" # tz=<timezone>
k_uuid="" # ttylinux_flash=<uuid>
LANG=C grep _q "\<enet\>" /proc/cmdline && k_enet=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 "\<tz=" /proc/cmdline; then
k_tz=$(sed 's/.*tz=\([^ ]*\).*/\1/' /proc/cmdline)
fi
if LANG=C grep _q "\<ttylinux_flash=" /proc/cmdline; then
k_uuid=$(sed 's/.*ttylinux_flash=\([^ ]*\).*/\1/' /proc/cmdline)
fi
mount _n _o remount,rw /
if [[ _n "${k_fqdn}" ]]; then
hostName="${k_fqdn%%.*}"
domain=${k_fqdn%.*}
[[ "${k_fqdn}" = "${hostName}" ]] && hostName=""
ipAddress=$(grep "# HOSTNAME$" /etc/hosts | awk '{ print $1; }')
hostline="${ipAddress} ${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 ipAddress
unset hostline
fi
[[ _r /etc/HOSTNAME ]] && HOSTNAME=$(</etc/HOSTNAME) || HOSTNAME=localhost
HOSTNAME=${HOSTNAME%%.*}
banner=$(
LANG=C fgrep "ttylinux" /etc/issue | LANG=C awk '{ print $3 }'
)
echo $""
echo _e $"${T_RED}ttylinux ${banner}${T_NORM}"
echo _e $"${T_BLUE} > ${T_CYAN}http://ttylinux.org/${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} is NOT found in /etc/hosts file."
fi
fi
[[ _w /proc/sys/kernel/printk ]] && echo "6 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
for sdev in $(
LANG=C egrep _v "^[[:space:]]*(#|$)" /etc/fstab | \
LANG=C awk '{ if ($3 == "swap") print $1 }'
); do
[[ ! _b "${sd}" ]] && failure $"${sdev} is not a block device"
action $"starting swap partition ${sdev}" swapon ${sdev}
done; unset sdev
if [[ _x /sbin/sysctl && _r /etc/sysctl.conf ]]; then
echo $"configuring kernel parameters..."
/sbin/sysctl _p /etc/sysctl.conf
echo $"...kernel parameters done."
fi
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
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 [[ "$(uname _m)" != armv5tej* ]]; 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 [[ _n "${dev}" ]]; then
waiting $"setting up new file system on /tmp"
mke2fs _j ${dev} >/dev/null 2>&1 && done_success || done_failure
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
action $"mounting local file systems" mount _a _t nonfs _v
chmod 1777 /tmp
PATH=/sbin:/usr/sbin:/bin:/usr/bin; export PATH
[[ _f /etc/sysconfig/clock ]] && source /etc/sysconfig/clock
[[ _n "${TZ}" ]] && export TZ
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 [[ "$(uname _m)" != armv5tej* ]]; then
action $"setting up system clock [${tz}] $(date)" hwclock ${HWCLOCKARGS}
fi
unset tz
if [[ _x /usr/sbin/loadfont && _r /etc/i18n/font ]]; then
/usr/sbin/loadfont </etc/i18n/font
fi
if [[ _x /sbin/loadkmap && _r /etc/i18n/kmap_$(uname _m) ]]; then
/sbin/loadkmap </etc/i18n/kmap_$(uname _m)
fi
if [[ _f /etc/sysconfig/console ]]; then
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
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
if [[ _x /sbin/depmod ]]; then
action $"updating module dependencies" /sbin/depmod _A
fi
wait
if [[ ${k_enet} _eq 1 ]]; then
if LANG=C grep _q "^ *eth0:" /proc/net/dev; then
/sbin/sysconfig __netconfig ifcfg_eth0.enable=yes
/sbin/sysconfig __netconfig ifcfg_eth0.dhcp=yes
fi
if LANG=C grep _q "^ *eth1:" /proc/net/dev; then
/sbin/sysconfig __netconfig ifcfg_eth1.enable=yes
/sbin/sysconfig __netconfig ifcfg_eth1.dhcp=yes
fi
if LANG=C grep _q "^ *eth2:" /proc/net/dev; then
/sbin/sysconfig __netconfig ifcfg_eth2.enable=yes
/sbin/sysconfig __netconfig ifcfg_eth2.dhcp=yes
fi
if LANG=C grep _q "^ *eth3:" /proc/net/dev; then
/sbin/sysconfig __netconfig ifcfg_eth3.enable=yes
/sbin/sysconfig __netconfig ifcfg_eth3.dhcp=yes
fi
fi
startSSH=yes
mhz=$(LANG=C grep "^cpu MHz" /proc/cpuinfo | awk '{print $4;}')
[[ "${mhz%%.*}" _lt 1000 ]] && startSSH=no || true
unset mhz
[[ ${k_nosshd} _eq 1 ]] && startSSH=no
if [[ "${startSSH}" = "no" ]]; 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
unset startSSH
[[ _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"proc" ]] && _nfs="yes"
done </etc/fstab
if [[ "${_nfs}" = "yes" ]]; then
sleep 1 # Give dhcp some time to complete.
mount _a _t nfs
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}"
action $"setting shared object cache [running ldconfig]" ldconfig
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/ttylinux ]]; then
umount ${BDEV}
else
/mnt/flash/config/ttylinux ${BDEV}
[[ $? _ne 2 ]] && umount ${BDEV}
fi
unset BDEV
fi
unset k_enet
unset k_nofsck
unset k_nosshd
unset k_fqdn
unset k_hwclock
unset k_tz
unset k_uuid
TZ=UTC UTC=yes
SYSFONT="lat9v_16" SYSKMAP=/lib/kbd/keymaps/i386/qwerty/us.map.gz
CROND=yes CROND_OPTIONS="_l 0 _c /"
INETD=yes NETWORKING=yes
SSHD=yes
SYSLOGD_OPTIONS="_s 128" KLOGD_OPTIONS="_c 2"
::sysinit:/etc/rc.d/rc.sysinit tty1::respawn:/sbin/getty 38400 tty1 tty2::respawn:/sbin/getty 38400 tty2 tty3::respawn:/sbin/getty 38400 tty3 tty4::respawn:/sbin/getty 38400 tty4 tty5::respawn:/sbin/getty 38400 tty5 tty6::respawn:/sbin/getty 38400 tty6 ::ctrlaltdel:/sbin/reboot ::shutdown:/etc/rc.d/rc.sysdone
LILO version 22.8, Copyright (C) 1992-1998 Werner Almesberger
Development beyond version 21 Copyright (C) 1999-2006 John Coffman
Released 19-Feb-2007, and compiled at 09:37:38 on Apr 24 2010
Reading boot sector from /dev/hda
Installed: Fri Jun 25 08:11:35 2010
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=301"
boot = /dev/hda
install = bmp
bitmap = /boot/ttylinux.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/hda1
auto BOOT_IMAGE=ttylinux root=301
processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 23 model name : Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz stepping : 6 cpu MHz : 2258.300 cache size : 3072 KB physical id : 0 siblings : 1 core id : 0 cpu cores : 1 apicid : 0 initial apicid : 0 fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 5 wp : yes flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 constant_tsc up pni monitor ssse3 bogomips : 4516.60 clflush size : 64 power management:
Character devices: 1 mem 4 /dev/vc/0 4 tty 4 ttyS 5 /dev/tty 5 /dev/console 5 /dev/ptmx 7 vcs 10 misc 13 input 108 ppp 128 ptm 136 pts 180 usb 189 usb_device 202 cpu/msr 203 cpu/cpuid 252 usb_endpoint 253 pcmcia 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
4: cascade
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.parport.default.spintime = 500 dev.parport.default.timeslice = 200 dev.scsi.logging_level = 0
model: VBOX HARDDISK driver: ide_gd version 1.18 geometry: physical 16383/16/63 geometry: logical 16644/16/63
model: VBOX CD_ROM driver: ide_cdrom version 5.00
ide_gd version 1.18 ide_cdrom version 5.00
0: XT-PIC-XT timer 1: XT-PIC-XT i8042 2: XT-PIC-XT cascade 8: XT-PIC-XT rtc0 9: XT-PIC-XT acpi 10: XT-PIC-XT ehci_hcd:usb1, 11: XT-PIC-XT ohci_hcd:usb2 12: XT-PIC-XT i8042 14: XT-PIC-XT ide0 15: XT-PIC-XT ide1 NMI: Non-maskable interrupts LOC: Local timer SPU: Spurious interrupts RES: Rescheduling interrupts CAL: Function call TLB: TLB shootdowns TRM: Thermal event ERR: MIS:
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_4003 : ACPI PM1a_EVT_BLK 4004_4005 : ACPI PM1a_CNT_BLK 4008_400b : ACPI PM_TMR 4020_4021 : ACPI GPE0_BLK d000_d00f : 0000:00:01.1 d000_d00f : piix d020_d03f : 0000:00:03.0 d020_d03f : pcnet32_probe_pci d040_d05f : 0000:00:04.0 d100_d1ff : 0000:00:05.0 d200_d23f : 0000:00:05.0
MemTotal: 251068 kB HighTotal: 0 kB LowTotal: 251068 kB SwapTotal: 0 kB VmallocTotal: 770104 kB
00000000-0009fbff : System RAM 0009fc00-0009ffff : reserved 000a0000-000bffff : Video RAM area 000c0000-000c8fff : Video ROM 000e2000-000e2fff : Adapter ROM 000f0000-000fffff : reserved 000f0000-000fffff : System ROM 00100000-0ffeffff : System RAM 00200000-007a77f2 : Kernel code 007a77f3-009b9a1b : Kernel data 00a2f000-00a8be13 : Kernel bss 0fff0000-0fffffff : ACPI Tables e0000000-e0ffffff : 0000:00:02.0 f0000000-f0000fff : 0000:00:03.0 f0080000-f00fffff : 0000:00:03.0 f0400000-f07fffff : 0000:00:04.0 f0800000-f0803fff : 0000:00:04.0 f0804000-f0804fff : 0000:00:06.0 f0804000-f0804fff : ohci_hcd f0805000-f0805fff : 0000:00:0b.0 f0805000-f0805fff : ehci_hcd fee00000-fee00fff : Local APIC 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
modprobe: not supported
kernel.auto_msgmni = 1 kernel.bootloader_type = 2 kernel.cad_pid = 1 kernel.core_pattern = core kernel.core_uses_pid = 0 kernel.ctrl-alt-del = 0 kernel.domainname = (none) kernel.hostname = ttylinux111 kernel.hotplug = /sbin/hotplug kernel.io_delay_type = 0 kernel.kstack_depth_to_print = 24 kernel.max_lock_depth = 1024 kernel.msgmax = 8192 kernel.msgmnb = 16384 kernel.msgmni = 489 kernel.ngroups_max = 65536 kernel.nmi_watchdog = 0 kernel.osrelease = 2.6.30.5 kernel.ostype = Linux kernel.overflowgid = 65534 kernel.overflowuid = 65534 kernel.panic = 0 kernel.panic_on_oops = 0 kernel.panic_on_unrecovered_nmi = 0 kernel.pid_max = 32768 kernel.poweroff_cmd = /sbin/poweroff kernel.print-fatal-signals = 0 kernel.pty.max = 4096 kernel.real-root-dev = 0 kernel.sched_compat_yield = 0 kernel.sched_rt_period_us = 1000000 kernel.sched_rt_runtime_us = 950000 kernel.sem = 250 32000 32 128 kernel.shmall = 2097152 kernel.shmmax = 33554432 kernel.shmmni = 4096 kernel.sysrq = 1 kernel.threads-max = 4095 kernel.unknown_nmi_panic = 0 kernel.version = #1 SMP PREEMPT Sat Apr 24 09:54:16 MST 2010
Filesystem 1K-blocks Used Available Use% Mounted on /dev/root 1968872 15572 1853284 1% / tmpfs 24 0 24 0% /dev/shm
/dev/root on / type ext2 (rw,relatime,errors=continue) devpts on /dev/pts type devpts (rw,relatime,gid=5,mode=620) 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=24k) usbfs on /proc/bus/usb type usbfs (rw,relatime,devmode=666)
[defaults]
base_features = sparse_super,filetype,resize_inode,dir_index,ext_attr
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
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
}
news = {
inode_ratio = 4096
}
largefile = {
inode_ratio = 1048576
blocksize = _1
}
largefile4 = {
inode_ratio = 4194304
blocksize = _1
}
hurd = {
blocksize = 4096
inode_size = 128
}
/dev/hda1 / 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 tmpfs noauto 0 0 tmpfs /dev/shm tmpfs rw,noexec,nosuid,size=24k 0 0
Filesystem 1K-blocks Used Available Use% Mounted on /dev/root 1968872 15580 1853276 1% /
Filesystem 1K-blocks Used Available Use% Mounted on tmpfs 24 0 24 0% /dev/shm
status: inactive
[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.1.20 ttylinux111 ttylinux111 # HOSTNAME
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 pcnfsd 150001 pcnfs amd 300019 amq sgi_fam 391002 fam bwnfsd 545580417 fypxfrd 600100069 freebsd_ypxfrd
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
ftp 21 ssh 22
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
domain: binding: is-master-server: 0 is-slave-server: 0 is-client: 0
status: inactive
0001: search fritz.box 0002: nameserver 192.168.178.1
ftp stream tcp nowait ftpd /usr/sbin/ftpd ftpd -w -S /home/ftpd/ tftp dgram udp nowait root /usr/bin/tftpd tftpd -c -u ftpd /home/tftpd/
eth0 Link encap:Ethernet HWaddr 08:00:27:18:D7:F4 inet addr:192.168.178.74 Bcast:192.168.178.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Interrupt:10 Base address:0xd020
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
sit0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
NOARP MTU:1480 Metric:1
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.optmem_max = 10240 net.core.rmem_default = 108544 net.core.rmem_max = 108544 net.core.somaxconn = 128 net.core.warnings = 1 net.core.wmem_default = 108544 net.core.wmem_max = 108544 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_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.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.tag = 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.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.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_msf = 10 net.ipv4.inet_peer_gc_maxtime = 120 net.ipv4.inet_peer_gc_mintime = 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_forward = 0 net.ipv4.ip_local_port_range = 32768 61000 net.ipv4.ip_no_pmtu_disc = 0 net.ipv4.ip_nonlocal_bind = 0 net.ipv4.ip_queue_maxlen = 1024 net.ipv4.ipfrag_high_thresh = 262144 net.ipv4.ipfrag_low_thresh = 196608 net.ipv4.ipfrag_max_dist = 64 net.ipv4.ipfrag_secret_interval = 600 net.ipv4.ipfrag_time = 30 net.ipv4.neigh.default.anycast_delay = 99 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 = 99 net.ipv4.neigh.default.mcast_solicit = 3 net.ipv4.neigh.default.proxy_delay = 79 net.ipv4.neigh.default.proxy_qlen = 64 net.ipv4.neigh.default.retrans_time = 99 net.ipv4.neigh.default.retrans_time_ms = 1000 net.ipv4.neigh.default.ucast_solicit = 3 net.ipv4.neigh.default.unres_qlen = 3 net.ipv4.netfilter.ip_conntrack_buckets = 4096 net.ipv4.netfilter.ip_conntrack_checksum = 1 net.ipv4.netfilter.ip_conntrack_generic_timeout = 600 net.ipv4.netfilter.ip_conntrack_icmp_timeout = 30 net.ipv4.netfilter.ip_conntrack_log_invalid = 0 net.ipv4.netfilter.ip_conntrack_max = 16380 net.ipv4.netfilter.ip_conntrack_sctp_timeout_closed = 10 net.ipv4.netfilter.ip_conntrack_sctp_timeout_cookie_echoed = 3 net.ipv4.netfilter.ip_conntrack_sctp_timeout_cookie_wait = 3 net.ipv4.netfilter.ip_conntrack_sctp_timeout_established = 432000 net.ipv4.netfilter.ip_conntrack_sctp_timeout_shutdown_ack_sent = 3 net.ipv4.netfilter.ip_conntrack_sctp_timeout_shutdown_recd = 0 net.ipv4.netfilter.ip_conntrack_sctp_timeout_shutdown_sent = 0 net.ipv4.netfilter.ip_conntrack_tcp_be_liberal = 0 net.ipv4.netfilter.ip_conntrack_tcp_loose = 1 net.ipv4.netfilter.ip_conntrack_tcp_max_retrans = 3 net.ipv4.netfilter.ip_conntrack_tcp_timeout_close = 10 net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait = 60 net.ipv4.netfilter.ip_conntrack_tcp_timeout_established = 432000 net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait = 120 net.ipv4.netfilter.ip_conntrack_tcp_timeout_last_ack = 30 net.ipv4.netfilter.ip_conntrack_tcp_timeout_max_retrans = 300 net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_recv = 60 net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_sent = 120 net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait = 120 net.ipv4.netfilter.ip_conntrack_udp_timeout = 30 net.ipv4.netfilter.ip_conntrack_udp_timeout_stream = 180 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 = 2048 net.ipv4.route.gc_timeout = 300 net.ipv4.route.max_size = 32768 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.route.secret_interval = 600 net.ipv4.rt_cache_rebuild_count = 4 net.ipv4.tcp_abc = 0 net.ipv4.tcp_abort_on_overflow = 0 net.ipv4.tcp_adv_win_scale = 2 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_congestion_control = cubic net.ipv4.tcp_dsack = 1 net.ipv4.tcp_ecn = 0 net.ipv4.tcp_fack = 1 net.ipv4.tcp_fin_timeout = 60 net.ipv4.tcp_frto = 2 net.ipv4.tcp_frto_response = 0 net.ipv4.tcp_keepalive_intvl = 75 net.ipv4.tcp_keepalive_probes = 9 net.ipv4.tcp_keepalive_time = 7200 net.ipv4.tcp_low_latency = 0 net.ipv4.tcp_max_orphans = 4096 net.ipv4.tcp_max_ssthresh = 0 net.ipv4.tcp_max_syn_backlog = 1024 net.ipv4.tcp_max_tw_buckets = 180000 net.ipv4.tcp_mem = 22326 29768 44652 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 952576 net.ipv4.tcp_sack = 1 net.ipv4.tcp_slow_start_after_idle = 1 net.ipv4.tcp_stdurg = 0 net.ipv4.tcp_syn_retries = 5 net.ipv4.tcp_synack_retries = 5 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 952576 net.ipv4.tcp_workaround_signed_windows = 0 net.ipv4.udp_mem = 22326 29768 44652 net.ipv4.udp_rmem_min = 4096 net.ipv4.udp_wmem_min = 4096 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_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.forwarding = 0 net.ipv6.conf.all.hop_limit = 64 net.ipv6.conf.all.max_addresses = 16 net.ipv6.conf.all.mtu = 1280 net.ipv6.conf.all.proxy_ndp = 0 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.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_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.forwarding = 0 net.ipv6.conf.default.hop_limit = 64 net.ipv6.conf.default.max_addresses = 16 net.ipv6.conf.default.mtu = 1280 net.ipv6.conf.default.proxy_ndp = 0 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.icmp.ratelimit = 1000 net.ipv6.ip6frag_high_thresh = 262144 net.ipv6.ip6frag_low_thresh = 196608 net.ipv6.ip6frag_secret_interval = 600 net.ipv6.ip6frag_time = 60 net.ipv6.mld_max_msf = 64 net.ipv6.neigh.default.anycast_delay = 99 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 = 79 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 = 3 net.ipv6.route.gc_elasticity = 0 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 = 1 net.ipv6.route.mtu_expires = 600 net.netfilter.nf_conntrack_acct = 1 net.netfilter.nf_conntrack_buckets = 4096 net.netfilter.nf_conntrack_checksum = 1 net.netfilter.nf_conntrack_dccp_loose = 1 net.netfilter.nf_conntrack_dccp_timeout_closereq = 64 net.netfilter.nf_conntrack_dccp_timeout_closing = 64 net.netfilter.nf_conntrack_dccp_timeout_open = 43200 net.netfilter.nf_conntrack_dccp_timeout_partopen = 480 net.netfilter.nf_conntrack_dccp_timeout_request = 240 net.netfilter.nf_conntrack_dccp_timeout_respond = 480 net.netfilter.nf_conntrack_dccp_timeout_timewait = 240 net.netfilter.nf_conntrack_expect_max = 64 net.netfilter.nf_conntrack_generic_timeout = 600 net.netfilter.nf_conntrack_icmp_timeout = 30 net.netfilter.nf_conntrack_log_invalid = 0 net.netfilter.nf_conntrack_max = 16380 net.netfilter.nf_conntrack_sctp_timeout_closed = 10 net.netfilter.nf_conntrack_sctp_timeout_cookie_echoed = 3 net.netfilter.nf_conntrack_sctp_timeout_cookie_wait = 3 net.netfilter.nf_conntrack_sctp_timeout_established = 432000 net.netfilter.nf_conntrack_sctp_timeout_shutdown_ack_sent = 3 net.netfilter.nf_conntrack_sctp_timeout_shutdown_recd = 0 net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent = 0 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_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 = NONE 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 = 16380 net.unix.max_dgram_qlen = 10
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_forward: 0 ip_local_port_range: 32768 61000 ip_no_pmtu_disc: 0 ip_nonlocal_bind: 0 ip_queue_maxlen: 1024 ipfrag_high_thresh: 262144 ipfrag_low_thresh: 196608 ipfrag_max_dist: 64 ipfrag_secret_interval: 600 ipfrag_time: 30
tcp_abc: 0 tcp_abort_on_overflow: 0 tcp_adv_win_scale: 2 tcp_allowed_congestion_control: cubic reno tcp_app_win: 31 tcp_available_congestion_control: cubic reno tcp_base_mss: 512 tcp_congestion_control: cubic tcp_dsack: 1 tcp_ecn: 0 tcp_fack: 1 tcp_fin_timeout: 60 tcp_frto: 2 tcp_frto_response: 0 tcp_keepalive_intvl: 75 tcp_keepalive_probes: 9 tcp_keepalive_time: 7200 tcp_low_latency: 0 tcp_max_orphans: 4096 tcp_max_ssthresh: 0 tcp_max_syn_backlog: 1024 tcp_max_tw_buckets: 180000 tcp_mem: 22326 29768 44652 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 952576 tcp_sack: 1 tcp_slow_start_after_idle: 1 tcp_stdurg: 0 tcp_syn_retries: 5 tcp_synack_retries: 5 tcp_timestamps: 1 tcp_tso_win_divisor: 3 tcp_tw_recycle: 0 tcp_tw_reuse: 0 tcp_window_scaling: 1 tcp_wmem: 4096 16384 952576 tcp_workaround_signed_windows: 0
kernel ip routing table destination:gateway:genmask:flags:irtt:iface 192.168.178.0:*:255.255.255.0:u:0:eth0 default:fritz.box:0.0.0.0:ug:0:eth0
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_general 1358 10104 scc_0100_s_boot 1246 10048 scc_0200_s_hardware 4566 37279 scc_0300_s_kernel 1073 9191 scc_0400_s_vol_mngt 5384 37398 scc_0500_s_network 4568 35921 scc_0500_u_named 269 2161 scc_0600_s_software 5628 52836 scc_0610_s_oracle_sapr3 306 3738 scc_0620_s_websphere 50 650 scc_0630_s_pkgmngt 2317 18992 scc_0700_s_hp_ov 1240 12388 scc_0700_u_hp_ovou_srv 8493 63795 scc_0800_s_oracle 901 9125 scc_0900_s_system 1637 14376 scc_1000_s_users 715 5548 scc_utils 2068 15741
basefs bash-3.2.48 busybox-1.16.1 dropbear-0.52 e2fsprogs-1.41.10 glibc-2.11 iptables-1.4.6 lilo-22.8.src ncurses-5.6 retawq-0.2.6c scc-1.13.12 thttpd-2.25b tlwstools-1.0
5Linux version 2.6.30.5 rootbatman gcc version 4.3.4 GCC 1 SMP PREEMPT Sat Apr 24 095416 MST 2010 6KERNEL supported cpus 6 Intel GenuineIntel 6 AMD AuthenticAMD 6 NSC Geode by NSC 6 Cyrix CyrixInstead 6 Centaur CentaurHauls 6 Transmeta GenuineTMx86 6 Transmeta TransmetaCPU 6 UMC UMC UMC UMC 6BIOS-provided physical RAM map 6 BIOS-e820 0000000000000000 - 000000000009fc00 usable 6 BIOS-e820 000000000009fc00 - 00000000000a0000 reserved 6 BIOS-e820 00000000000f0000 - 0000000000100000 reserved 6 BIOS-e820 0000000000100000 - 000000000fff0000 usable 6 BIOS-e820 000000000fff0000 - 0000000010000000 ACPI data 6 BIOS-e820 00000000fffc0000 - 0000000100000000 reserved 6DMI 2.5 present. 6last_pfn = 0xfff0 max_arch_pfn = 0x100000 7MTRR default type uncachable 7MTRR variable ranges disabled 6CPU MTRRs all blank - virtualized system. 6init_memory_mapping 0000000000000000-000000000fff0000 7 0000000000 - 0000400000 page 4k 7 0000400000 - 000fc00000 page 2M 7 000fc00000 - 000fff0000 page 4k 7kernel direct mapping tables up to fff0000 7000-c000 4ACPI RSDP 000e0000 00024 v02 VBOX 4ACPI XSDT 0fff0030 00034 v01 VBOX VBOXXSDT 00000001 ASL 00000061 4ACPI FACP 0fff00f0 000F4 v04 VBOX VBOXFACP 00000001 ASL 00000061 4ACPI DSDT 0fff0410 018FF v01 VBOX VBOXBIOS 00000002 INTL 20050309 4ACPI FACS 0fff0200 00040 4ACPI SSDT 0fff0240 001CC v01 VBOX VBOXCPUT 00000002 INTL 20050309 50MB HIGHMEM available. 5255MB LOWMEM available. 6 mapped low ram 0 - 0fff0000 6 low ram 0 - 0fff0000 6 node 0 low ram 00000000 - 0fff0000 6 node 0 bootmap 00002000 - 00004000 68 early reservations == bootmem [0000000000 - 000fff0000] 6 0 [0000000000 - 0000001000] BIOS data page == [0000000000 - 0000001000] 6 1 [0000001000 - 0000002000] EX TRAMPOLINE == [0000001000 - 0000002000] 6 2 [0000006000 - 0000007000] TRAMPOLINE == [0000006000 - 0000007000] 6 3 [0000200000 - 0000a8be14] TEXT DATA BSS == [0000200000 - 0000a8be14] 6 4 [000009fc00 - 0000100000] BIOS reserved == [000009fc00 - 0000100000] 6 5 [0000a8c000 - 0000a90071] BRK == [0000a8c000 - 0000a90071] 6 6 [0000007000 - 0000008000] PGTABLE == [0000007000 - 0000008000] 6 7 [0000002000 - 0000004000] BOOTMAP == [0000002000 - 0000004000] 4Zone PFN ranges 4 DMA 0x00000000 - 0x00001000 4 Normal 0x00001000 - 0x0000fff0 4 HighMem 0x0000fff0 - 0x0000fff0 4Movable zone start PFN for each node 4early_node_map[2] active PFN ranges 4 0 0x00000000 - 0x0000009f 4 0 0x00000100 - 0x0000fff0 7On node 0 totalpages 65423 7 DMA zone 32 pages used for memmap 7 DMA zone 0 pages reserved 7 DMA zone 3967 pages LIFO batch0 7 Normal zone 480 pages used for memmap 7 Normal zone 60944 pages LIFO batch15 6Using APIC driver default 6ACPI PM-Timer IO Port 0x4008 6SMP Allowing 1 CPUs 0 hotplug CPUs 6Found and enabled local APIC 7nr_irqs_gsi 16 6Allocating PCI resources starting at 20000000 gap 10000000effc0000 6NR_CPUS8 nr_cpumask_bits8 nr_cpu_ids1 nr_node_ids1 6PERCPU Embedded 8 pages at c1202000 static data 20412 bytes 4Built 1 zonelists in Zone order mobility grouping on. Total pages 64911 5Kernel command line auto BOOT_IMAGE=ttylinux root=301 6Enabling fast FPU save and restore... done. 6Enabling unmasked SIMD FPU exception support... done. 6Initializing CPU0 6NR_IRQS512 4PID hash table entries 1024 order 10 4096 bytes 4Fast TSC calibration failed 4TSC Unable to calibrate against PIT 6TSC using PMTIMER reference calibration 4Detected 2258.300 MHz processor. 4Console colour VGA 80x25 6console [tty0] enabled 6Dentry cache hash table entries 32768 order 5 131072 bytes 6Inode-cache hash table entries 16384 order 4 65536 bytes 6Initializing HighMem for node 0 0000000000000000 6Memory 250532k/262080k available 5789k kernel code 11080k reserved 2120k data 436k init 0k highmem 6virtual kernel memory layout 6 fixmap 0xfff4f000 - 0xfffff000 704 kB 6 pkmap 0xff800000 - 0xffc00000 4096 kB 6 vmalloc 0xd07f0000 - 0xff7fe000 752 MB 6 lowmem 0xc0000000 - 0xcfff0000 255 MB 6 .init 0xc09c2000 - 0xc0a2f000 436 kB 6 .data 0xc07a77f3 - 0xc09b9a1c 2120 kB 6 .text 0xc0200000 - 0xc07a77f3 5789 kB 6Checking if this processor honours the WP bit even in supervisor mode...Ok. 6Calibrating delay loop skipped value calculated using timer frequency.. 4516.60 BogoMIPS lpj=2258300 4Mount-cache hash table entries 512 6CPU L1 I cache 32K L1 D cache 32K 6CPU L2 cache 3072K 6Intel machine check architecture supported. 6Intel machine check reporting enabled on CPU0. 6using mwait in idle threads. 6Checking hlt instruction... OK. 6SMP alternatives switching to UP code 6Freeing SMP alternatives 21k freed 6ACPI Core revision 20090320 4ACPI setting ELCR to 0200 from 0e20 4weird boot CPU 0 not listed by the BIOS. 5SMP motherboard not detected. 6SMP disabled 6Brought up 1 CPUs 6Total of 1 processors activated 4516.60 BogoMIPS. 6net_namespace 948 bytes 6NET Registered protocol family 16 6EISA bus registered 6ACPI bus type pci registered 6PCI PCI BIOS revision 2.10 entry at 0xfc130 last bus=0 6PCI Using configuration type 1 for base access 4bio create slab bio-0 at 0 7ACPI EC Look up EC in DSDT 6ACPI Interpreter enabled 6ACPI supports S0 S5 6ACPI Using PIC for interrupt routing 6ACPI No dock devices found. 6ACPI PCI Root Bridge [PCI0] 000000 7pci 00000001.1 reg 20 io port [0xd000-0xd00f] 7pci 00000002.0 reg 10 32bit mmio [0xe0000000-0xe0ffffff] 7pci 00000003.0 reg 10 io port [0xd020-0xd03f] 7pci 00000003.0 reg 14 32bit mmio [0xf0000000-0xf0000fff] 7pci 00000003.0 reg 18 32bit mmio [0xf0080000-0xf00fffff] 7pci 00000004.0 reg 10 io port [0xd040-0xd05f] 7pci 00000004.0 reg 14 32bit mmio [0xf0400000-0xf07fffff] 7pci 00000004.0 reg 18 32bit mmio [0xf0800000-0xf0803fff] 7pci 00000005.0 reg 10 io port [0xd100-0xd1ff] 7pci 00000005.0 reg 14 io port [0xd200-0xd23f] 7pci 00000006.0 reg 10 32bit mmio [0xf0804000-0xf0804fff] 7pci 0000000b.0 reg 10 32bit mmio [0xf0805000-0xf0805fff] 7pci_bus 000000 on NUMA node 0 7ACPI PCI Interrupt Routing Table [\_SB_.PCI0._PRT] 6ACPI PCI Interrupt Link [LNKA] IRQs 5 9 10 11 6ACPI PCI Interrupt Link [LNKB] IRQs 5 9 10 11 6ACPI PCI Interrupt Link [LNKC] IRQs 5 9 10 11 6ACPI PCI Interrupt Link [LNKD] IRQs 5 9 10 11 5SCSI subsystem initialized 7libata version 3.00 loaded. 6usbcore registered new interface driver usbfs 6usbcore registered new interface driver hub 6usbcore registered new device driver usb 6PCI Using ACPI for IRQ routing 6pnp PnP ACPI init 6ACPI bus type pnp registered 6pnp PnP ACPI found 5 devices 6ACPI ACPI bus type pnp unregistered 7pci_bus 000000 resource 0 io [0x00-0xffff] 7pci_bus 000000 resource 1 mem [0x000000-0xffffffff] 6NET Registered protocol family 2 6IP route cache hash table entries 2048 order 1 8192 bytes 6TCP established hash table entries 8192 order 4 65536 bytes 6TCP bind hash table entries 8192 order 4 65536 bytes 6TCP Hash tables configured established 8192 bind 8192 6TCP reno registered 6NET Registered protocol family 1 6platform rtc_cmos registered platform RTC device no PNP device found 6Microcode Update Driver v2.00 tigranaivazian.fsnet.co.uk Peter Oruba 6Installing knfsd copyright C 1996 okirmonad.swb.de. 6fuse init API version 7.11 6msgmni has been set to 489 6alg No test for stdrng krng 6io scheduler noop registered 6io scheduler anticipatory registered 6io scheduler deadline registered default 6io scheduler cfq registered 6pci 00000000.0 Limiting direct PCI/PCI transfers 6pci 00000001.0 Activating ISA DMA hang workarounds 7pci 00000002.0 Boot video device 6input Power Button as /devices/LNXSYSTM00/LNXPWRBN00/input/input0 6ACPI Power Button [PWRF] 6input Sleep Button as /devices/LNXSYSTM00/LNXSLPBN00/input/input1 6ACPI Sleep Button [SLPF] 6Non-volatile memory driver v1.3 6Linux agpgart interface v0.103 6Serial 8250/16550 driver 4 ports IRQ sharing disabled 6parport_pc 0004 reported by Plug and Play ACPI 7Switched to high resolution mode on CPU 0 4floppy0 no floppy controllers found 6brd module loaded 6loop module loaded 6Uniform Multi-Platform E-IDE driver 6piix 00000001.1 IDE controller 0x80860x7111 rev 0x01 6piix 00000001.1 not 100 native mode will probe irqs later 6 ide0 BM-DMA at 0xd000-0xd007 6 ide1 BM-DMA at 0xd008-0xd00f 7Probing IDE interface ide0... 6hda VBOX HARDDISK ATA DISK drive 7hda host max PIO4 wanted PIO255auto-tune selected PIO4 6hda UDMA/33 mode selected 7Probing IDE interface ide1... 6hdc VBOX CD-ROM ATAPI CD/DVD-ROM drive 7hdc host max PIO4 wanted PIO255auto-tune selected PIO4 6hdc UDMA/33 mode selected 6ide0 at 0x1f0-0x1f70x3f6 on irq 14 6ide1 at 0x170-0x1770x376 on irq 15 6ide_generic please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports 6ide-gd driver 1.18 6hda max request size 128KiB 6hda 16777216 sectors 8589 MB w/256KiB Cache CHS=16644/16/63 6hda cache flushes supported 6 hda hda1 hda2 6ide-cd driver 5.00 6ide-cd hdc ATAPI 32X DVD-ROM drive 128kB Cache 6Uniform CD-ROM driver Revision 3.20 4Driver sd needs updating - please use bus_type methods 4Driver sr needs updating - please use bus_type methods 6IntelR PRO/1000 Network Driver - version 7.3.21-k3-NAPI 6Copyright c 1999-2006 Intel Corporation. 6e1000e IntelR PRO/1000 Network Driver - 0.3.3.4-k4 6e1000e Copyright c 1999-2008 Intel Corporation. 6IntelR Gigabit Ethernet Network Driver - version 1.3.16-k2 6Copyright c 2007-2009 Intel Corporation. 6IntelR Virtual Function Network Driver - version 1.0.0-k0 6Copyright c 2009 Intel Corporation. 6ixgbe IntelR 10 Gigabit PCI Express Network Driver - version 2.0.8-k2 6ixgbe Copyright c 1999-2009 Intel Corporation. 6IntelR PRO/10GbE Network Driver - version 1.0.135-k2-NAPI 6Copyright c 1999-2008 Intel Corporation. 6tehuti Tehuti NetworksR Network Driver 7.29.3 6tehuti Options hw_csum 6enic Cisco 10G Ethernet Driver ver 1.0.0.933 6jme JMicron JMC2XX ethernet driver version 1.0.4 6pcnet32.cv1.35 21.Apr.2008 tsbogendalpha.franken.de 4ACPI PCI Interrupt Link [LNKC] enabled at IRQ 10 7PCI setting IRQ 10 as level-triggered 6pcnet32 00000003.0 PCI INT A - Link[LNKC] - GSI 10 level low - IRQ 10 7pcnet32 00000003.0 setting latency timer to 64 6pcnet32 PCnet/FAST III 79C973 at 0xd020 08002718d7f4 assigned IRQ 10. 6pcnet32 Found PHY 0022561b at address 0. 6eth0 registered as PCnet/FAST III 79C973 6pcnet32 1 cards_found. 6e100 IntelR PRO/100 Network Driver 3.5.24-k2-NAPI 6e100 Copyrightc 1999-2006 Intel Corporation 6ThunderLAN driver v1.15a 6TLAN 0 devices installed PCI 0 EISA 0 6ns83820.c National Semiconductor DP83820 10/100/1000 driver. 6sky2 driver version 1.22 6PPP generic driver version 2.4.2 6PPP Deflate Compression module registered 6PPP BSD Compression module registered 2vxge Copyrightc 2002-2009 Neterion Inc 2vxge Driver version 2.0.1.17129-k 6myri10ge Version 1.4.4-1.401 6dmfe Davicom DM9xxx net driver version 1.36.4 2002-01-17 6winbond-840.cv1.01-e 2.4 port Sep-11-2006 Donald Becker beckerscyld.com 6 http//www.scyld.com/network/drivers.html 6uli526x ULi M5261/M5263 net driver version 0.9.3 2005-7-29 6NetXen Network Driver version 4.0.30 6Solarflare NET driver v2.3 6ehci_hcd USB 2.0 Enhanced Host Controller EHCI Driver 6ehci_hcd 0000000b.0 PCI INT A - Link[LNKC] - GSI 10 level low - IRQ 10 7ehci_hcd 0000000b.0 setting latency timer to 64 6ehci_hcd 0000000b.0 EHCI Host Controller 6ehci_hcd 0000000b.0 new USB bus registered assigned bus number 1 6ehci_hcd 0000000b.0 irq 10 io mem 0xf0805000 6ehci_hcd 0000000b.0 USB 2.0 started EHCI 1.00 6usb usb1 configuration 1 chosen from 1 choice 6hub 1-01.0 USB hub found 6hub 1-01.0 8 ports detected 6116x driver isp116x-hcd 03 Nov 2005 6ohci_hcd USB 1.1 Open Host Controller OHCI Driver 4ACPI PCI Interrupt Link [LNKB] enabled at IRQ 11 7PCI setting IRQ 11 as level-triggered 6ohci_hcd 00000006.0 PCI INT A - Link[LNKB] - GSI 11 level low - IRQ 11 7ohci_hcd 00000006.0 setting latency timer to 64 6ohci_hcd 00000006.0 OHCI Host Controller 6ohci_hcd 00000006.0 new USB bus registered assigned bus number 2 6ohci_hcd 00000006.0 irq 11 io mem 0xf0804000 6usb usb2 configuration 1 chosen from 1 choice 6hub 2-01.0 USB hub found 6hub 2-01.0 8 ports detected 6uhci_hcd USB Universal Host Controller Interface driver 6sl811 driver sl811-hcd 19 May 2005 6Initializing USB Mass Storage driver... 6usbcore registered new interface driver usb-storage 6USB Mass Storage support registered. 6PNP PS/2 Controller [PNP0303PS2KPNP0f03PS2M] at 0x600x64 irq 112 6serio i8042 KBD port at 0x600x64 irq 1 6serio i8042 AUX port at 0x600x64 irq 12 6mice PS/2 mouse device common for all mice 6input AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 6input PC Speaker as /devices/platform/pcspkr/input/input3 6input ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 6rtc_cmos rtc_cmos rtc core registered rtc_cmos as rtc0 6rtc0 alarms up to one day 114 bytes nvram 6EISA Probing bus 0 at eisa.0 4Cannot allocate resource for EISA slot 4 6EISA Detected 0 cards. 6cpuidle using governor ladder 6Driver for HIFN 795x crypto accelerator chip has been successfully registered. 6usbcore registered new interface driver usbhid 6usbhid v2.6USB HID core driver 4Netfilter messages via NETLINK v0.30. 4nf_conntrack version 0.5.0 4095 buckets 16380 max 4CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use 4nf_conntrack.acct=1 kernel paramater acct=1 nf_conntrack module option or 4sysctl net.netfilter.nf_conntrack_acct=1 to enable it. 4ctnetlink v0.93 registering with nfnetlink. 6NF_TPROXY Transparent proxy support initialized version 4.1.0 6NF_TPROXY Copyright c 2006-2007 BalaBit IT Ltd. 6xt_time kernel timezone is -0000 6ip_tables C 2000-2006 Netfilter Core Team 6arp_tables C 2002 David S. Miller 6TCP cubic registered 6NET Registered protocol family 10 6IPv6 over IPv4 tunneling driver 6NET Registered protocol family 17 6RPC Registered udp transport module. 6RPC Registered tcp transport module. 6Using IPI No-Shortcut mode 4register_blkdev cannot get major 3 for hd 4VFS Mounted root ext2 filesystem readonly on device 31. 6Freeing unused kernel memory 436k freed 6usb 2-1 new full speed USB device using ohci_hcd and address 2 6usb 2-1 configuration 1 chosen from 1 choice 6input VirtualBox USB Tablet as /devices/pci000000/00000006.0/usb2/2-1/2-11.0/input/input5 6generic-usb 000380EE0021.0001 input USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-00000006.0-1/input0 6eth0 link up 100Mbps full-duplex 6dropped IN=eth0 OUT= MAC=ffffffffffff0018f82cb5020800 SRC=192.168.178.22 DST=192.168.178.255 LEN=229 TOS=0x00 PREC=0x00 TTL=128 ID=17126 PROTO=UDP SPT=138 DPT=138 LEN=209 7eth0 no IPv6 routers present 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=128 ID=63693 PROTO=UDP SPT=68 DPT=67 LEN=308 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=128 ID=63850 PROTO=UDP SPT=68 DPT=67 LEN=308 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=64145 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=64153 PROTO=UDP SPT=137 DPT=137 LEN=58 4hrtimer interrupt too slow forcing clock min delta to 1794720 ns 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=2079 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=55488 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=37673 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=19629 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=255.255.255.255 LEN=352 TOS=0x00 PREC=0x00 TTL=128 ID=63590 PROTO=UDP SPT=68 DPT=67 LEN=332 6dropped IN=eth0 OUT= MAC=01005e0000010024fe34dfd20800 SRC=192.168.178.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=3775 DF PROTO=2 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=32047 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff00192105b8780800 SRC=192.168.178.21 DST=192.168.178.255 LEN=229 TOS=0x00 PREC=0x00 TTL=128 ID=51701 PROTO=UDP SPT=138 DPT=138 LEN=209 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=242 TOS=0x00 PREC=0x00 TTL=128 ID=59776 PROTO=UDP SPT=138 DPT=138 LEN=222 6dropped IN=eth0 OUT= MAC=ffffffffffff00215d985c600800 SRC=192.168.178.62 DST=192.168.178.255 LEN=78 TOS=0x00 PREC=0x00 TTL=128 ID=41724 PROTO=UDP SPT=137 DPT=137 LEN=58 6dropped IN=eth0 OUT= MAC=ffffffffffff0018f82cb5020800 SRC=192.168.178.22 DST=192.168.178.255 LEN=229 TOS=0x00 PREC=0x00 TTL=128 ID=21225 PROTO=UDP SPT=138 DPT=138 LEN=209
ttylinux ver 11.1 [aardvark] i686 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
Chop wood, carry water.
ttylinux ver 11.1 [aardvark] i686 class \s kernel \r (\l) The initial "root" and "user" password is "password".
ttylinux111
PID USER TIME COMMAND 1 root 0 0:00 init 2 root 0 0:00 [kthreadd] 3 root 2 0:00 [migration/0] 4 root 2 0:00 [ksoftirqd/0] 5 root 2 0:00 [events/0] 6 root 2 0:00 [khelper] 11 root 2 0:00 [async/mgr] 230 root 2 0:00 [kblockd/0] 231 root 2 0:00 [kacpid] 232 root 2 0:00 [kacpi_notify] 271 root 2 0:00 [ata/0] 272 root 2 0:00 [ata_aux] 277 root 2 0:00 [ksuspend_usbd] 282 root 2 0:00 [khubd] 285 root 2 0:00 [kseriod] 329 root 2 0:00 [pdflush] 330 root 2 0:00 [pdflush] 331 root 2 0:00 [kswapd0] 332 root 2 0:00 [aio/0] 333 root 2 0:00 [nfsiod] 335 root 2 0:00 [crypto/0] 596 root 2 0:00 [bnx2x] 621 root 2 0:00 [mlx4] 627 root 2 0:00 [netxen] 629 root 2 0:00 [sfc_refill/0] 630 root 2 0:00 [sfc_reset] 661 root 2 0:00 [kpsmoused] 695 root 2 0:00 [usbhid_resumer] 699 root 2 0:00 [rpciod/0] 810 root 1 0:00 /sbin/klogd -c 2 813 root 1 0:00 /sbin/syslogd -s 128 850 root 1 0:00 udhcpc -b -i eth0 -p /var/run/udhcpc.eth0.pid 864 root 1 0:00 /usr/sbin/dropbear 874 root 1 0:00 /usr/sbin/inetd 884 root 1 0:00 /usr/sbin/crond -l 0 -c / 888 root 1 0:00 -bash 889 root 1 0:00 /sbin/getty 38400 tty2 892 root 1 0:00 /sbin/getty 38400 tty3 895 root 1 0:00 /sbin/getty 38400 tty4 898 root 1 0:00 /sbin/getty 38400 tty5 901 root 1 0:00 /sbin/getty 38400 tty6 1237 root 864 0:01 /usr/sbin/dropbear 1238 root 1237 0:00 -bash 2522 root 864 0:00 /usr/sbin/dropbear 2523 root 2522 0:00 -bash 4897 root 864 0:00 /usr/sbin/dropbear 4898 root 4897 0:00 -bash 4900 root 864 0:01 /usr/sbin/dropbear 4901 root 4900 0:00 -bash 21332 root 4901 0:00 /bin/bash /usr/bin/pacman -i ./scc-1.13.12-i486.tbz 21341 root 21332 0:00 /bin/sh /share/ttylinux/install-scripts/scc-1.13.12.sh 21346 root 21341 0:00 /bin/sh /opt/scc/bin/scc-log -c install of SCC release 1.13.12 -r 21384 root 21346 0:00 /bin/sh /opt/scc/bin/scc-collect -e 21427 root 21384 0:00 /bin/sh /opt/scc/bin/scc-collect -e 21428 root 0:00 ps
console tty1 tty2 tty3 tty4 tty5 tty6
/lib /usr/lib
ld-linux.so.2 -> ld-2.11.so libc.so.6 -> libc-2.11.so libcrypt.so.1 -> libcrypt-2.11.so libdl.so.2 -> libdl-2.11.so libm.so.6 -> libm-2.11.so libnsl.so.1 -> libnsl-2.11.so libnss_dns.so.2 -> libnss_dns-2.11.so libnss_files.so.2 -> libnss_files-2.11.so libpthread.so.0 -> libpthread-2.11.so libresolv.so.2 -> libresolv-2.11.so librt.so.1 -> librt-2.11.so libthread_db.so.1 -> libthread_db-1.0.so libutil.so.1 -> libutil-2.11.so
adm:x:3:4:adm:/var/adm:/bin/false bin:x:1:1:bin:/bin:/bin/false daemon:x:2:2:daemon:/sbin:/bin/false dbus:x:81:81:System Message Bus:/:/sbin/false ftpd:x:42:42:FTP Daemon:/var/lib/ftpd:/bin/false halt:x:7:0:halt:/sbin:/sbin/halt httpd:x:41:41:HTTP Daemon:/var/lib/httpd:/bin/false lp:x:4:7:lp:/var/spool/lpd:/bin/false root:x:0:0:root:/root:/bin/bash shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown sshd:x:43:43:SSH PrivSep Daemon:/var/lib/sshd:/bin/false sync:x:5:0:sync:/sbin:/bin/sync vcsa:x:69:69:virtual console memory owner:/dev:/sbin/false nobody:x:65534:65534:nobody:/var/lib/nobody:/bin/false user:x:1000:1000:ttylinux user:/home/user:/bin/bash
adm:x:11609:0:99999:7::: bin:x:11609:0:99999:7::: daemon:x:11609:0:99999:7::: dbus:x:11609:0:99999:7::: ftpd:x:11609:0:99999:7::: halt:x:11609:0:99999:7::: httpd:x:11609:0:99999:7::: lp:x:11609:0:99999:7::: nobody:x:11609:0:99999:7::: root:ERASED:14785:0:99999:7::: shutdown:x:11609:0:99999:7::: sshd:x:11609:0:99999:7::: sync:x:11609:0:99999:7::: user:ERASED:14707:0:99999:7::: vcsa:x:11609:0:99999:7:::
root:0:root bin:1:root,bin,daemon daemon:2:root,bin,daemon sys:3:root,bin,adm adm:4:root,adm,daemon tty:5: disk:6:root lp:7:daemon,lp mem:8: kmem:9: wheel:10:root uucp:13:uucp audio:15: video:16: cdrom:17: dvdrom:18: floppy:19: usb:20: slocate:21: utmp:22: rpcuser:29: rpc:32: utempter:35: ppp:40: httpd:41: ftpd:42: sshd:43:sshd vcsa:69: dbus:81: user:1000:user nobody:65534:nobody
ssh known hosts: 192.168.178.45 ssh_rsa
Help-info is excluded from the statistics.
| Category | Count | Percentage |
|---|---|---|
| fix | 2916 | 86 |
| var | 489 | 14 |
| total | 3405 | 100 |
| Main class | Sub class | Main cnt | Main perc | Sub cnt | Sub perc |
|---|---|---|---|---|---|
| network | 2025 | 59 | |||
| file | 1614 | 80 | |||
| sysctl | 317 | 16 | |||
| tcp | 45 | 2 | |||
| lan | 12 | 1 | |||
| ip | 12 | 1 | |||
| ipcs | 6 | 0 | |||
| icmp | 6 | 0 | |||
| NIS | 5 | 0 | |||
| netstat-route | 4 | 0 | |||
| ports | 2 | 0 | |||
| named | 1 | 0 | |||
| gated | 1 | 0 | |||
| system | 467 | 14 | |||
| log | 344 | 74 | |||
| processes | 56 | 12 | |||
| login | 44 | 9 | |||
| ld | 15 | 3 | |||
| security | 7 | 1 | |||
| host | 1 | 0 | |||
| boot | 437 | 13 | |||
| config | 371 | 85 | |||
| lilo | 45 | 10 | |||
| sysconfig | 11 | 3 | |||
| file | 9 | 2 | |||
| kernel /proc/cmdline | 1 | 0 | |||
| hardware | 197 | 6 | |||
| /proc/devices | 44 | 22 | |||
| /proc/ioports | 33 | 17 | |||
| sysctl | 32 | 16 | |||
| cpu /proc/cpuinfo | 27 | 14 | |||
| memory /proc/iomem | 23 | 12 | |||
| /proc/interrupts | 19 | 10 | |||
| disk | 8 | 4 | |||
| serial hardware | 5 | 3 | |||
| memory /proc/meminfo | 5 | 3 | |||
| DMA /proc/dma | 1 | 1 | |||
| Volume Management | 63 | 2 | |||
| file systems | 63 | 100 | |||
| users | 62 | 2 | |||
| /etc/group | 31 | 50 | |||
| /etc/shadow | 15 | 24 | |||
| /etc/passwd | 15 | 24 | |||
| accounts | 1 | 2 | |||
| software | 52 | 2 | |||
| cron | 22 | 42 | |||
| scc | 17 | 33 | |||
| pacman packages | 13 | 25 | |||
| kernel | 41 | 1 | |||
| sysctl | 40 | 98 | |||
| modules | 1 | 2 | |||
| profiling | 36 | 1 | |||
| general | 25 | 1 |
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/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/devices Ignore blank lines and lines starting with character: #
Contents of file: /proc/dma Ignore blank lines and lines starting with character: #
model: Contents of file: /proc/ide/hda/model model: Ignore blank lines and lines starting with character: # driver: Contents of file: /proc/ide/hda/driver driver: Ignore blank lines and lines starting with character: # geometry: Contents of file: /proc/ide/hda/geometry geometry: 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/mke2fs.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/fstab Ignore blank lines and lines starting with character: #
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: /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: #
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 (© QNH) on Tue Dec 20 21:06:49 CET 2011
\n