How2 build a mini root system with busybox ------------------------------------------- March 2004, @Frank4DD Busybox provides a large selection of standard UNIX commands in one monolythic binary at a fraction of their normal size and complexity to build them. It was designed for embedded systems where space is a premium. It fits perfect into our design as it will keep the final OS image small. 1. get and compile busybox -------------------------- get the latest busybox source from www.busybox.net 'make menuconfig' and set a prefix for the new root, i.e. set PREFIX="net4-mount", run 'make' 'make install' will now install directly into the mounted ramdisk image 2. complete the mini-filesystem in ramdisk file ----------------------------------------------- With a Kernel and Busybox as a foundation, we need to build a bootable mini distro. If not already there, create the lib directory mkdir net4-mount/lib and copy the needed base libraries glibc, nss, resolv, ld: ~/cluster/doc> ls -l net4-mount/lib total 2607 -rwxr-xr-x 1 root root 112347 2004-05-08 17:43 ld-2.3.2.so lrwxrwxrwx 1 root root 11 2004-05-08 19:02 ld-linux.so.2 -> ld-2.3.2.so lrwxrwxrwx 1 root root 14 2004-05-08 17:48 libcap.so -> libcap.so.1.92 lrwxrwxrwx 1 root root 14 2004-05-08 17:47 libcap.so.1 -> libcap.so.1.92 -rwxr-xr-x 1 root root 31255 2004-05-08 17:47 libcap.so.1.92 -rwxr-xr-x 1 root root 43542 2004-05-08 17:43 libcrypt.so.1 -rwxr-xr-x 1 root root 1469811 2004-05-08 17:43 libc.so.6 -rwxr-xr-x 1 root root 40474 2004-05-09 16:47 libgcc_s.so.1 -rwxr-xr-x 1 root root 183008 2004-05-08 17:43 libm.so.6 -rwxr-xr-x 1 root root 319785 2004-05-09 16:43 libncurses.so.5 -rwxr-xr-x 1 root root 89220 2004-05-08 17:43 libnsl.so.1 -rwxr-xr-x 1 root root 17287 2004-05-08 17:43 libnss_dns.so.2 -rwxr-xr-x 1 root root 42162 2004-05-08 17:43 libnss_files.so.2 -rwxr-xr-x 1 root root 139837 2004-05-09 15:24 libpcap.so.0 -rwxr-xr-x 1 root root 74600 2004-05-08 17:43 libresolv.so.2 -rwxr-xr-x 1 root root 10772 2004-05-09 19:18 libutil.so.1 -rwxr-xr-x 1 root root 65927 2004-05-09 16:07 libz.so.1 drwxr-xr-x 2 root root 1024 2004-05-08 17:43 modules Then, make the other directories if they are not already there: mkdir net4-mount/proc mkdir net4-mount/tmp mkdir net4-mount/dev mkdir net4-mount/etc copy the local /etc files below to net4-mount/etc: fm@toshi:~/cluster/doc> ls -l net4-mount/etc total 321 -rw-r--r-- 1 root root 395 2004-05-11 19:23 fstab -rw-r--r-- 1 root root 186 2004-05-09 15:03 group -rw-r--r-- 1 root root 260 2004-05-09 15:03 hosts -rw-r--r-- 1 root root 115 2004-05-09 16:15 inetd.conf drwxr-xr-x 2 root root 1024 2004-07-01 20:57 init.d -rw-r--r-- 1 root root 634 2004-05-11 19:37 inittab -rw-r--r-- 1 root root 1017 2004-05-09 17:36 localtime -rw-r--r-- 1 root root 347 2004-05-09 17:38 manpath.config -rw-r--r-- 1 root root 0 2004-05-09 15:03 mtab -rw-r--r-- 1 root root 238 2004-05-09 15:03 nsswitch.conf -rw-r--r-- 1 root root 257 2004-05-09 15:03 ntp.conf -rw-r--r-- 1 root root 433 2004-05-09 15:03 passwd -rw-r--r-- 1 root root 545 2004-05-09 15:03 profile -rw-r--r-- 1 root root 6561 2004-05-09 15:03 protocols -rw-r--r-- 1 root root 0 2004-05-09 15:03 resolv.conf -rw-r--r-- 1 root root 304796 2004-05-09 15:03 services -rw-r--r-- 1 root root 259 2004-05-09 15:03 shadow mkdir net4-mount/var mkdir net4-mount/var/cache mkdir net4-mount/var/spool mkdir net4-mount/var/spool/cron mkdir net4-mount/var/log mkdir net4-mount/var/ntp mkdir net4-mount/var/run mkdir net4-mount/var/ftp mkdir net4-mount/var/www mkdir net4-mount/lib/modules If the kernel had been compiled with modules, go to the kernel package and do a 'make modules_install' and move the modules to the ramdisk: mv /lib/modules/ net4-mount/lib/modules mkdir net4-mount/etc/init.d Busybox comes with a linuxrc startup file that needs to be adjusted to start up the system by enabling hardware, mounting proc, etc but we use /etc/init.d/rcS instead. ---------------------- /etc/init.d/rcS script start --------------------- #! /bin/sh # /etc/init.d/rcS: initial boot script echo "Remount / read-write" mount -o remount,rw / echo "Mounting /proc filesystem" mount -t proc /proc /proc echo "Mounting devpts terminal devices" mount -n -t devpts -o mode=620 devpts /dev/pts echo "Initializing network loopback device" ifconfig lo 127.0.0.1 up #echo "Configuring eth0" #ifconfig eth0 172.20.1.33 broadcast 172.20.1.255 netmask 255.255.255.0 up echo "Start daemons dhcpdc syslogd crond telnetd xntpd portmap" /sbin/udhcpc -p /var/run/udhcpc.pid -s /sbin/udhcpc.script /sbin/syslogd -R 172.20.1.10 /usr/sbin/crond -c /var/spool/cron /usr/sbin/telnetd -l /bin/login /usr/local/sbin/xntpd -c /etc/ntp.conf /sbin/portmap # load DHCP parameter #. /etc/udhcpc-eth0.info IP=`ifconfig eth0 | grep "inet addr" | cut -d ":" -f 2 | cut -d " " -f 1` hname=`grep $IP /etc/hosts | cut -f 2` hostname $hname echo "Set system name to $hname." echo "172.20.1.10:/export/nfs/dnet/$hname /dnet/nfs nfs rsize=81 92,wsize=8192,timeo=14,intr" >> /etc/fstab echo "Mounting remote /dnet/buffer nfs filesystem" mount /dnet/nfs stty -nl -ixon ignbrk -brkint echo "Initial Boot complete." sleep 5 echo "Starting dnet client if NFS mount is available" if [ -s /dnet/nfs/dnetc.ini ]; then /dnet/bin/dnetc fi sleep 10 clear ---------------------- /etc/init.d/rcS script end --------------------- To be complete, below is a ls -lR of a working ramdisk image: (here mounted at ../image/mnt4) ../image/mnt4: total 11 drwxr-xr-x 2 root root 1024 2004-05-09 15:03 bin drwxr-xr-x 3 root root 1024 2004-05-11 19:23 dev drwxr-xr-x 6 root root 1024 2004-05-11 19:17 dnet drwxr-xr-x 3 root root 1024 2004-05-11 19:37 etc drwxr-xr-x 3 root root 1024 2004-05-09 19:18 lib drwxr-xr-x 2 root root 1024 2004-05-09 15:03 proc drwxr-xr-x 2 root root 1024 2004-05-09 15:03 root drwxr-xr-x 2 root root 1024 2004-05-09 19:18 sbin drwxr-xr-x 2 root root 1024 2004-05-09 15:03 tmp drwxr-xr-x 8 root root 1024 2004-05-09 17:14 usr drwxr-xr-x 9 root root 1024 2004-07-01 20:45 var ../image/mnt4/bin: total 467 lrwxrwxrwx 1 root root 7 2004-05-08 17:10 addgroup -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 adduser -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 ash -> busybox -rwxr-xr-x 1 root root 474444 2004-05-09 15:04 busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 cat -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 chgrp -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 chmod -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 chown -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 cp -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 cpio -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 date -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 dd -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 delgroup -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 deluser -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 df -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 dmesg -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 dumpkmap -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 echo -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 egrep -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 false -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 fgrep -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 getopt -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 grep -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 gunzip -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 gzip -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 hostname -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 ip -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 kill -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 ln -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 login -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 ls -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 mkdir -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 mknod -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 mktemp -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 more -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 mount -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 mv -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 netstat -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 pidof -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 ping -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 ps -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 pwd -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 rm -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 rmdir -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 rpm -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 sed -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 sh -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 sleep -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 stty -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 su -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 sync -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 tar -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 touch -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 true -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 umount -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 uname -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 uncompress -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 usleep -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 vi -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 watch -> busybox lrwxrwxrwx 1 root root 7 2004-05-08 17:10 zcat -> busybox ../image/mnt4/dev: total 1 crw-r--r-- 1 root root 10, 128 2004-05-09 15:03 beep lrwxrwxrwx 1 root root 5 2004-05-11 19:23 console -> ttyS0 crw-r--r-- 1 root root 5, 64 2004-05-09 15:03 cua0 crw-r--r-- 1 root root 5, 65 2004-05-09 15:03 cua1 crw-rw-rw- 1 root root 1, 3 2004-05-09 15:03 null crw-rw-rw- 1 root root 5, 2 2004-05-09 15:03 ptmx drwxr-xr-x 2 root root 1024 2004-05-09 15:03 pts crw-rw-rw- 1 root root 2, 0 2004-05-09 15:36 ptyp0 crw-rw-rw- 1 root root 2, 1 2004-05-09 15:36 ptyp1 crw-rw-rw- 1 root root 2, 2 2004-05-09 15:36 ptyp2 crw-rw-rw- 1 root root 2, 3 2004-05-09 15:36 ptyp3 crw-rw-rw- 1 root root 2, 4 2004-05-09 15:37 ptyp4 crw-rw-rw- 1 root root 2, 5 2004-05-09 15:37 ptyp5 crw-rw-rw- 1 root root 2, 6 2004-05-09 15:37 ptyp6 crw-rw-rw- 1 root root 2, 7 2004-05-09 15:37 ptyp7 lrwxrwxrwx 1 root root 4 2004-05-08 21:52 ram -> ram0 brw-r--r-- 1 root root 1, 0 2004-05-09 15:03 ram0 brw-r--r-- 1 root root 1, 1 2004-05-09 15:03 ram1 brw-r--r-- 1 root root 1, 2 2004-05-09 15:03 ram2 lrwxrwxrwx 1 root root 4 2004-05-08 21:52 ramdisk -> ram0 crw-r--r-- 1 root root 10, 135 2004-05-09 15:03 rtc crw-rw-rw- 1 root root 5, 0 2004-05-09 15:03 tty crw-rw-rw- 1 root root 4, 0 2004-05-09 15:03 tty0 crw-r--r-- 1 root root 4, 1 2004-05-09 15:03 tty1 crw-r--r-- 1 root root 4, 2 2004-05-09 15:03 tty2 crw-r--r-- 1 root root 4, 3 2004-05-09 15:03 tty3 crw-r--r-- 1 root root 4, 4 2004-05-09 15:03 tty4 crw-r--r-- 1 root root 4, 5 2004-05-09 15:03 tty5 crw-rw-rw- 1 root root 3, 0 2004-05-09 15:37 ttyp0 crw-rw-rw- 1 root root 3, 1 2004-05-09 15:37 ttyp1 crw-rw-rw- 1 root root 3, 2 2004-05-09 15:37 ttyp2 crw-rw-rw- 1 root root 3, 3 2004-05-09 15:38 ttyp3 crw-rw-rw- 1 root root 3, 4 2004-05-09 15:38 ttyp4 crw-rw-rw- 1 root root 3, 5 2004-05-09 15:38 ttyp5 crw-rw-rw- 1 root root 3, 6 2004-05-09 15:38 ttyp6 crw-rw-rw- 1 root root 3, 7 2004-05-09 15:38 ttyp7 crw-r--r-- 1 root root 4, 64 2004-05-09 15:03 ttyS0 crw-r--r-- 1 root root 4, 65 2004-05-09 15:03 ttyS1 crw-r--r-- 1 root root 1, 9 2004-05-09 15:03 urandom crw-r--r-- 1 root root 1, 5 2004-05-09 15:03 zero ../image/mnt4/dev/pts: total 0 ../image/mnt4/dnet: total 4 drwxr-xr-x 2 root root 1024 2004-05-11 19:18 bin drwxr-xr-x 2 root root 1024 2004-05-08 21:58 doc drwxr-xr-x 3 root root 1024 2004-05-08 21:57 man drwxr-xr-x 2 root root 1024 2004-05-11 19:17 nfs ../image/mnt4/dnet/bin: total 1019 -rwxr-xr-x 1 root root 1037936 2004-05-08 21:56 dnetc lrwxrwxrwx 1 root root 16 2004-05-11 19:18 dnetc.ini -> ../nfs/dnetc.ini ../image/mnt4/dnet/doc: total 77 -rw-r--r-- 1 root root 53095 2004-05-08 21:57 CHANGES.txt -rw-r--r-- 1 root root 15408 2004-05-08 21:57 dnetc.txt -rw-r--r-- 1 root root 1885 2004-05-08 21:57 readme.1st -rw-r--r-- 1 root root 4151 2004-05-08 21:57 readme.linux ../image/mnt4/dnet/man: total 1 drwxr-xr-x 2 root root 1024 2004-05-08 21:57 man1 ../image/mnt4/dnet/man/man1: total 9 -rw-r--r-- 1 root root 8729 2004-05-08 21:57 dnetc.1 ../image/mnt4/dnet/nfs: total 0 ../image/mnt4/etc: total 321 -rw-r--r-- 1 root root 0 2004-05-09 15:03 busybox.conf -rw-r--r-- 1 root root 395 2004-05-11 19:23 fstab -rw-r--r-- 1 root root 186 2004-05-09 15:03 group -rw-r--r-- 1 root root 260 2004-05-09 15:03 hosts -rw-r--r-- 1 root root 115 2004-05-09 16:15 inetd.conf drwxr-xr-x 2 root root 1024 2004-07-01 20:57 init.d -rw-r--r-- 1 root root 634 2004-05-11 19:37 inittab -rw-r--r-- 1 root root 1017 2004-05-09 17:36 localtime -rw-r--r-- 1 root root 347 2004-05-09 17:38 manpath.config -rw-r--r-- 1 root root 0 2004-05-09 15:03 mtab -rw-r--r-- 1 root root 238 2004-05-09 15:03 nsswitch.conf -rw-r--r-- 1 root root 257 2004-05-09 15:03 ntp.conf -rw-r--r-- 1 root root 433 2004-05-09 15:03 passwd -rw-r--r-- 1 root root 545 2004-05-09 15:03 profile -rw-r--r-- 1 root root 6561 2004-05-09 15:03 protocols -rw-r--r-- 1 root root 0 2004-05-09 15:03 resolv.conf -rw-r--r-- 1 root root 304796 2004-05-09 15:03 services -rw-r--r-- 1 root root 259 2004-05-09 15:03 shadow ../image/mnt4/etc/init.d: total 2 -rwxr-xr-x 1 root root 1279 2004-07-01 20:57 rcS ../image/mnt4/lib: total 2607 -rwxr-xr-x 1 root root 112347 2004-05-08 17:43 ld-2.3.2.so lrwxrwxrwx 1 root root 11 2004-05-08 19:02 ld-linux.so.2 -> ld-2.3.2.so lrwxrwxrwx 1 root root 14 2004-05-08 17:48 libcap.so -> libcap.so.1.92 lrwxrwxrwx 1 root root 14 2004-05-08 17:47 libcap.so.1 -> libcap.so.1.92 -rwxr-xr-x 1 root root 31255 2004-05-08 17:47 libcap.so.1.92 -rwxr-xr-x 1 root root 43542 2004-05-08 17:43 libcrypt.so.1 -rwxr-xr-x 1 root root 1469811 2004-05-08 17:43 libc.so.6 -rwxr-xr-x 1 root root 40474 2004-05-09 16:47 libgcc_s.so.1 -rwxr-xr-x 1 root root 183008 2004-05-08 17:43 libm.so.6 -rwxr-xr-x 1 root root 319785 2004-05-09 16:43 libncurses.so.5 -rwxr-xr-x 1 root root 89220 2004-05-08 17:43 libnsl.so.1 -rwxr-xr-x 1 root root 17287 2004-05-08 17:43 libnss_dns.so.2 -rwxr-xr-x 1 root root 42162 2004-05-08 17:43 libnss_files.so.2 -rwxr-xr-x 1 root root 139837 2004-05-09 15:24 libpcap.so.0 -rwxr-xr-x 1 root root 74600 2004-05-08 17:43 libresolv.so.2 -rwxr-xr-x 1 root root 10772 2004-05-09 19:18 libutil.so.1 -rwxr-xr-x 1 root root 65927 2004-05-09 16:07 libz.so.1 drwxr-xr-x 2 root root 1024 2004-05-08 17:43 modules ../image/mnt4/lib/modules: total 0 ../image/mnt4/proc: total 0 ../image/mnt4/root: total 0 ../image/mnt4/sbin: total 32 lrwxrwxrwx 1 root root 14 2004-05-08 17:10 adjtimex -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 freeramdisk -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 getty -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 halt -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 hwclock -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 ifconfig -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 init -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 insmod -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 klogd -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 loadkmap -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 logread -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 losetup -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 lsmod -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 makedevs -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 mkswap -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 modprobe -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 pivot_root -> ../bin/busybox -rwxr-xr-x 1 root root 29904 2004-05-09 19:18 portmap lrwxrwxrwx 1 root root 14 2004-05-08 17:10 poweroff -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 reboot -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 rmmod -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 route -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 sulogin -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 swapoff -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 swapon -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 sysctl -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 syslogd -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 udhcpc -> ../bin/busybox -rwxr-xr-x 1 root root 801 2004-05-09 15:04 udhcpc.script lrwxrwxrwx 1 root root 14 2004-05-08 17:10 vconfig -> ../bin/busybox lrwxrwxrwx 1 root root 14 2004-05-08 17:10 watchdog -> ../bin/busybox ../image/mnt4/tmp: total 0 ../image/mnt4/usr: total 7 drwxr-xr-x 2 root root 2048 2004-05-09 17:12 bin drwxr-xr-x 3 root root 1024 2004-05-09 17:18 lib drwxr-xr-x 3 root root 1024 2004-05-08 17:43 local drwxr-xr-x 3 root root 1024 2004-05-09 15:56 man drwxr-xr-x 2 root root 1024 2004-05-09 19:10 sbin drwxr-xr-x 3 root root 1024 2004-05-09 17:18 share ../image/mnt4/usr/bin: total 1070 lrwxrwxrwx 1 root root 17 2004-05-08 17:10 [ -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 ar -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 arping -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 awk -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 basename -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 bunzip2 -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 bzcat -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 chvt -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 clear -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 cmp -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 crontab -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 cut -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 dc -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 deallocvt -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 dirname -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 du -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 env -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 expr -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 find -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 free -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 ftpget -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 ftpput -> ../../bin/busybox -rwxr-xr-x 1 root root 57020 2004-05-09 16:44 groff -rwxr-xr-x 1 root root 102296 2004-05-09 17:12 grops -rwxr-xr-x 1 root root 54588 2004-05-09 16:57 grotty lrwxrwxrwx 1 root root 17 2004-05-08 17:10 head -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 hexdump -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 id -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 install -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 killall -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 last -> ../../bin/busybox -rwxr-xr-x 1 root root 168732 2004-05-09 16:38 less lrwxrwxrwx 1 root root 17 2004-05-08 17:10 loadfont -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 logger -> ../../bin/busybox -rwxr-xr-x 1 root root 99604 2004-05-09 16:00 lsof -rwsr-xr-x 1 root root 4572 2004-05-09 08:37 man -rwsr-xr-x 1 root root 4572 2004-05-09 15:32 mandb lrwxrwxrwx 1 root root 17 2004-05-08 17:10 md5sum -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 mesg -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 mkfifo -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 nc -> ../../bin/busybox -rwxr-xr-x 1 root root 3459 2004-05-09 16:37 nroff lrwxrwxrwx 1 root root 17 2004-05-08 17:10 nslookup -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 od -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 openvt -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 passwd -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 patch -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 printf -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 readlink -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 realpath -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 renice -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 reset -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 setkeycodes -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 sha1sum -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 sort -> ../../bin/busybox -rwxr-xr-x 1 root root 145964 2004-05-09 15:58 strace lrwxrwxrwx 1 root root 17 2004-05-08 17:10 strings -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 tail -> ../../bin/busybox -rwxr-xr-x 1 root root 95520 2004-05-09 16:37 tbl lrwxrwxrwx 1 root root 17 2004-05-08 17:10 tee -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 telnet -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 test -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 tftp -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 time -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 top -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 tr -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 traceroute -> ../../bin/busybox -rwxr-xr-x 1 root root 322840 2004-05-09 16:57 troff lrwxrwxrwx 1 root root 17 2004-05-08 17:10 tty -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 uniq -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 unzip -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 uptime -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 vlock -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 wc -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 wget -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 which -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 who -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 whoami -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 xargs -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 yes -> ../../bin/busybox -rwxr-xr-x 1 root root 18492 2004-05-09 16:37 zsoelim ../image/mnt4/usr/lib: total 993 -rwxr-xr-x 1 root root 23689 2004-05-09 16:24 libgdbm.so.3 -rwxr-xr-x 1 root root 984408 2004-05-09 16:42 libstdc++.so.5 drwxr-xr-x 2 root root 1024 2004-05-09 16:10 man-db ../image/mnt4/usr/lib/man-db: total 245 -rwx--x--x 1 root root 136364 2004-05-09 16:10 man -rwx--x--x 1 root root 111020 2004-05-09 16:10 mandb ../image/mnt4/usr/local: total 1 drwxr-xr-x 2 root root 1024 2004-05-09 08:22 sbin ../image/mnt4/usr/local/sbin: total 662 -rwxr-xr-x 1 root root 346344 2004-05-09 08:22 tcpdump -rwxr-xr-x 1 root root 324157 2004-05-09 07:41 xntpd ../image/mnt4/usr/man: total 1 drwxr-xr-x 2 root root 1024 2004-05-09 15:57 man1 ../image/mnt4/usr/man/man1: total 123 -rw-r--r-- 1 root root 124754 2004-05-09 15:57 busybox.1 ../image/mnt4/usr/sbin: total 359 lrwxrwxrwx 1 root root 17 2004-05-08 17:10 chroot -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 crond -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 fbset -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 httpd -> ../../bin/busybox lrwxrwxrwx 1 root root 17 2004-05-08 17:10 inetd -> ../../bin/busybox -rwsr-xr-x 1 root root 4572 2004-05-09 15:34 mandb -rwxr-xr-x 1 root root 22616 2004-05-09 15:33 manpath lrwxrwxrwx 1 root root 17 2004-05-08 17:10 rdate -> ../../bin/busybox -rwxr-xr-x 1 root root 10196 2004-05-09 19:10 showmount lrwxrwxrwx 1 root root 17 2004-05-08 17:10 telnetd -> ../../bin/busybox -rwxr-xr-x 1 root root 324157 2004-05-08 17:46 xntpd ../image/mnt4/usr/share: total 1 drwxr-xr-x 4 root root 1024 2004-05-09 17:18 groff ../image/mnt4/usr/share/groff: total 2 drwxr-xr-x 4 root root 1024 2004-05-09 17:19 1.17.2 drwxr-xr-x 2 root root 1024 2004-05-09 17:18 site-tmac ../image/mnt4/usr/share/groff/1.17.2: total 3 -rw-r--r-- 1 root root 620 2004-05-09 17:18 eign drwxr-xr-x 16 root root 1024 2004-05-09 17:19 font drwxr-xr-x 4 root root 1024 2004-05-09 17:19 tmac ../image/mnt4/usr/share/groff/1.17.2/font: total 14 drwxr-xr-x 2 root root 1024 2004-05-09 17:19 devascii drwxr-xr-x 2 root root 1024 2004-05-09 17:19 devascii8 drwxr-xr-x 3 root root 1024 2004-05-09 17:19 devdvi drwxr-xr-x 2 root root 1024 2004-05-09 17:18 devhtml drwxr-xr-x 2 root root 1024 2004-05-09 17:18 devlatin1 drwxr-xr-x 2 root root 1024 2004-05-09 17:19 devlbp drwxr-xr-x 3 root root 1024 2004-05-09 17:19 devlj4 drwxr-xr-x 2 root root 1024 2004-05-09 17:19 devnippon drwxr-xr-x 3 root root 1024 2004-05-09 17:19 devps drwxr-xr-x 2 root root 1024 2004-05-09 17:18 devutf8 drwxr-xr-x 2 root root 1024 2004-05-09 17:18 devX100 drwxr-xr-x 2 root root 1024 2004-05-09 17:18 devX100-12 drwxr-xr-x 2 root root 1024 2004-05-09 17:19 devX75 drwxr-xr-x 2 root root 1024 2004-05-09 17:19 devX75-12 ../image/mnt4/usr/share/groff/1.17.2/font/devascii: total 9 -rw-r--r-- 1 root root 1517 2004-05-09 17:19 B -rw-r--r-- 1 root root 1518 2004-05-09 17:19 BI -rw-r--r-- 1 root root 88 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 1517 2004-05-09 17:19 I -rw-r--r-- 1 root root 1502 2004-05-09 17:19 R ../image/mnt4/usr/share/groff/1.17.2/font/devascii8: total 17 -rw-r--r-- 1 root root 3228 2004-05-09 17:19 B -rw-r--r-- 1 root root 3229 2004-05-09 17:19 BI -rw-r--r-- 1 root root 88 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 3228 2004-05-09 17:19 I -rw-r--r-- 1 root root 3213 2004-05-09 17:19 R ../image/mnt4/usr/share/groff/1.17.2/font/devdvi: total 592 -rw-r--r-- 1 root root 6062 2004-05-09 17:19 B -rw-r--r-- 1 root root 7459 2004-05-09 17:19 BI -rw-r--r-- 1 root root 3449 2004-05-09 17:19 CW -rw-r--r-- 1 root root 4563 2004-05-09 17:19 CWI -rw-r--r-- 1 root root 254 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 4849 2004-05-09 17:19 EX -rw-r--r-- 1 root root 259133 2004-05-09 17:19 G drwxr-xr-x 2 root root 1024 2004-05-09 17:19 generate -rw-r--r-- 1 root root 5415 2004-05-09 17:19 H -rw-r--r-- 1 root root 5423 2004-05-09 17:19 HB -rw-r--r-- 1 root root 6370 2004-05-09 17:19 HI -rw-r--r-- 1 root root 7446 2004-05-09 17:19 I -rw-r--r-- 1 root root 259133 2004-05-09 17:19 M -rw-r--r-- 1 root root 4073 2004-05-09 17:19 MI -rw-r--r-- 1 root root 6889 2004-05-09 17:19 R -rw-r--r-- 1 root root 4060 2004-05-09 17:19 S -rw-r--r-- 1 root root 4813 2004-05-09 17:19 SA -rw-r--r-- 1 root root 4264 2004-05-09 17:19 SB ../image/mnt4/usr/share/groff/1.17.2/font/devdvi/generate: total 16 -rw-r--r-- 1 root root 416 2004-05-09 17:19 CompileFonts -rw-r--r-- 1 root root 2978 2004-05-09 17:19 Makefile -rw-r--r-- 1 root root 1916 2004-05-09 17:19 msam.map -rw-r--r-- 1 root root 1487 2004-05-09 17:19 msbm.map -rw-r--r-- 1 root root 826 2004-05-09 17:19 texb.map -rw-r--r-- 1 root root 1525 2004-05-09 17:19 texex.map -rw-r--r-- 1 root root 835 2004-05-09 17:19 texi.map -rw-r--r-- 1 root root 200 2004-05-09 17:19 texmi.map -rw-r--r-- 1 root root 871 2004-05-09 17:19 texr.map -rw-r--r-- 1 root root 682 2004-05-09 17:19 texsy.map -rw-r--r-- 1 root root 794 2004-05-09 17:19 textt.map ../image/mnt4/usr/share/groff/1.17.2/font/devhtml: total 309 -rw-r--r-- 1 root root 5440 2004-05-09 17:18 B -rw-r--r-- 1 root root 5441 2004-05-09 17:18 BI -rw-r--r-- 1 root root 5441 2004-05-09 17:18 CR -rw-r--r-- 1 root root 180 2004-05-09 17:18 DESC -rw-r--r-- 1 root root 137590 2004-05-09 17:18 G -rw-r--r-- 1 root root 5440 2004-05-09 17:18 I -rw-r--r-- 1 root root 137590 2004-05-09 17:18 M -rw-r--r-- 1 root root 5425 2004-05-09 17:18 R -rw-r--r-- 1 root root 5425 2004-05-09 17:18 S ../image/mnt4/usr/share/groff/1.17.2/font/devlatin1: total 17 -rw-r--r-- 1 root root 3703 2004-05-09 17:18 B -rw-r--r-- 1 root root 3704 2004-05-09 17:18 BI -rw-r--r-- 1 root root 88 2004-05-09 17:18 DESC -rw-r--r-- 1 root root 3703 2004-05-09 17:18 I -rw-r--r-- 1 root root 3688 2004-05-09 17:18 R ../image/mnt4/usr/share/groff/1.17.2/font/devlbp: total 153 -rw-r--r-- 1 root root 192 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 17502 2004-05-09 17:19 HB -rw-r--r-- 1 root root 17522 2004-05-09 17:19 HBI -rw-r--r-- 1 root root 17505 2004-05-09 17:19 HI -rw-r--r-- 1 root root 17485 2004-05-09 17:19 HR -rw-r--r-- 1 root root 17734 2004-05-09 17:19 TB -rw-r--r-- 1 root root 17578 2004-05-09 17:19 TBI -rw-r--r-- 1 root root 17796 2004-05-09 17:19 TI -rw-r--r-- 1 root root 17741 2004-05-09 17:19 TR ../image/mnt4/usr/share/groff/1.17.2/font/devlj4: total 426 -rw-r--r-- 1 root root 10963 2004-05-09 17:19 ALBB -rw-r--r-- 1 root root 11127 2004-05-09 17:19 ALBR -rw-r--r-- 1 root root 10459 2004-05-09 17:19 AOB -rw-r--r-- 1 root root 14123 2004-05-09 17:19 AOI -rw-r--r-- 1 root root 10393 2004-05-09 17:19 AOR -rw-r--r-- 1 root root 6749 2004-05-09 17:19 CB -rw-r--r-- 1 root root 9360 2004-05-09 17:19 CBI -rw-r--r-- 1 root root 9982 2004-05-09 17:19 CI -rw-r--r-- 1 root root 6697 2004-05-09 17:19 CLARENDON -rw-r--r-- 1 root root 6741 2004-05-09 17:19 CORONET -rw-r--r-- 1 root root 6732 2004-05-09 17:19 CR -rw-r--r-- 1 root root 168 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 10891 2004-05-09 17:19 GB -rw-r--r-- 1 root root 14021 2004-05-09 17:19 GBI drwxr-xr-x 2 root root 1024 2004-05-09 17:19 generate -rw-r--r-- 1 root root 13380 2004-05-09 17:19 GI -rw-r--r-- 1 root root 12092 2004-05-09 17:19 GR -rw-r--r-- 1 root root 6721 2004-05-09 17:19 LGB -rw-r--r-- 1 root root 9771 2004-05-09 17:19 LGI -rw-r--r-- 1 root root 6720 2004-05-09 17:19 LGR -rw-r--r-- 1 root root 6891 2004-05-09 17:19 MARIGOLD -rw-r--r-- 1 root root 11483 2004-05-09 17:19 OB -rw-r--r-- 1 root root 14443 2004-05-09 17:19 OBI -rw-r--r-- 1 root root 15310 2004-05-09 17:19 OI -rw-r--r-- 1 root root 12276 2004-05-09 17:19 OR -rw-r--r-- 1 root root 4291 2004-05-09 17:19 S -rw-r--r-- 1 root root 12909 2004-05-09 17:19 TB -rw-r--r-- 1 root root 16690 2004-05-09 17:19 TBI -rw-r--r-- 1 root root 17454 2004-05-09 17:19 TI -rw-r--r-- 1 root root 11920 2004-05-09 17:19 TR -rw-r--r-- 1 root root 11332 2004-05-09 17:19 UB -rw-r--r-- 1 root root 14198 2004-05-09 17:19 UBI -rw-r--r-- 1 root root 10920 2004-05-09 17:19 UCB -rw-r--r-- 1 root root 13360 2004-05-09 17:19 UCBI -rw-r--r-- 1 root root 14664 2004-05-09 17:19 UCI -rw-r--r-- 1 root root 10581 2004-05-09 17:19 UCR -rw-r--r-- 1 root root 16031 2004-05-09 17:19 UI -rw-r--r-- 1 root root 11835 2004-05-09 17:19 UR ../image/mnt4/usr/share/groff/1.17.2/font/devlj4/generate: total 11 -rw-r--r-- 1 root root 5142 2004-05-09 17:19 Makefile -rw-r--r-- 1 root root 1568 2004-05-09 17:19 special.map -rw-r--r-- 1 root root 2736 2004-05-09 17:19 text.map ../image/mnt4/usr/share/groff/1.17.2/font/devnippon: total 213 -rw-r--r-- 1 root root 1517 2004-05-09 17:18 B -rw-r--r-- 1 root root 1518 2004-05-09 17:19 BI -rw-r--r-- 1 root root 105 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 103215 2004-05-09 17:18 G -rw-r--r-- 1 root root 1517 2004-05-09 17:19 I -rw-r--r-- 1 root root 103215 2004-05-09 17:19 M -rw-r--r-- 1 root root 1502 2004-05-09 17:19 R ../image/mnt4/usr/share/groff/1.17.2/font/devps: total 734 -rw-r--r-- 1 root root 9618 2004-05-09 17:19 AB -rw-r--r-- 1 root root 12174 2004-05-09 17:19 ABI -rw-r--r-- 1 root root 12188 2004-05-09 17:19 AI -rw-r--r-- 1 root root 9641 2004-05-09 17:19 AR -rw-r--r-- 1 root root 8491 2004-05-09 17:19 BMB -rw-r--r-- 1 root root 10996 2004-05-09 17:19 BMBI -rw-r--r-- 1 root root 10942 2004-05-09 17:19 BMI -rw-r--r-- 1 root root 8379 2004-05-09 17:19 BMR -rw-r--r-- 1 root root 7692 2004-05-09 17:19 CB -rw-r--r-- 1 root root 10082 2004-05-09 17:19 CBI -rw-r--r-- 1 root root 10057 2004-05-09 17:19 CI -rw-r--r-- 1 root root 7700 2004-05-09 17:19 CR -rw-r--r-- 1 root root 244 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 118 2004-05-09 17:19 download -rw-r--r-- 1 root root 172018 2004-05-09 17:19 G drwxr-xr-x 2 root root 1024 2004-05-09 17:19 generate -rw-r--r-- 1 root root 9541 2004-05-09 17:19 HB -rw-r--r-- 1 root root 12116 2004-05-09 17:19 HBI -rw-r--r-- 1 root root 12860 2004-05-09 17:19 HI -rw-r--r-- 1 root root 9499 2004-05-09 17:19 HNB -rw-r--r-- 1 root root 12035 2004-05-09 17:19 HNBI -rw-r--r-- 1 root root 12796 2004-05-09 17:19 HNI -rw-r--r-- 1 root root 10256 2004-05-09 17:19 HNR -rw-r--r-- 1 root root 10288 2004-05-09 17:19 HR -rw-r--r-- 1 root root 172014 2004-05-09 17:19 M -rw-r--r-- 1 root root 8889 2004-05-09 17:19 NB -rw-r--r-- 1 root root 11827 2004-05-09 17:19 NBI -rw-r--r-- 1 root root 11378 2004-05-09 17:19 NI -rw-r--r-- 1 root root 9302 2004-05-09 17:19 NR -rw-r--r-- 1 root root 8878 2004-05-09 17:19 PB -rw-r--r-- 1 root root 10913 2004-05-09 17:19 PBI -rw-r--r-- 1 root root 10873 2004-05-09 17:19 PI -rw-r--r-- 1 root root 8901 2004-05-09 17:19 PR -rw-r--r-- 1 root root 2774 2004-05-09 17:19 prologue -rw-r--r-- 1 root root 6466 2004-05-09 17:19 S -rw-r--r-- 1 root root 8257 2004-05-09 17:19 SS -rw-r--r-- 1 root root 592 2004-05-09 17:19 symbolsl.pfa -rw-r--r-- 1 root root 9475 2004-05-09 17:19 TB -rw-r--r-- 1 root root 11407 2004-05-09 17:19 TBI -rw-r--r-- 1 root root 2438 2004-05-09 17:19 text.enc -rw-r--r-- 1 root root 11638 2004-05-09 17:19 TI -rw-r--r-- 1 root root 9384 2004-05-09 17:19 TR -rw-r--r-- 1 root root 4320 2004-05-09 17:19 zapfdr.pfa -rw-r--r-- 1 root root 11621 2004-05-09 17:19 ZCMI -rw-r--r-- 1 root root 5338 2004-05-09 17:19 ZD -rw-r--r-- 1 root root 5348 2004-05-09 17:19 ZDR ../image/mnt4/usr/share/groff/1.17.2/font/devps/generate: total 29 -rw-r--r-- 1 root root 1577 2004-05-09 17:19 afmname -rw-r--r-- 1 root root 14 2004-05-09 17:19 dingbats.map -rw-r--r-- 1 root root 7 2004-05-09 17:19 dingbats.rmap -rw-r--r-- 1 root root 234 2004-05-09 17:19 lgreekmap -rw-r--r-- 1 root root 5873 2004-05-09 17:19 Makefile -rw-r--r-- 1 root root 534 2004-05-09 17:19 symbolchars -rw-r--r-- 1 root root 982 2004-05-09 17:19 symbol.sed -rw-r--r-- 1 root root 9407 2004-05-09 17:19 symbolsl.afm -rw-r--r-- 1 root root 5756 2004-05-09 17:19 textmap ../image/mnt4/usr/share/groff/1.17.2/font/devutf8: total 29 -rw-r--r-- 1 root root 6242 2004-05-09 17:18 B -rw-r--r-- 1 root root 6243 2004-05-09 17:18 BI -rw-r--r-- 1 root root 88 2004-05-09 17:18 DESC -rw-r--r-- 1 root root 6242 2004-05-09 17:18 I -rw-r--r-- 1 root root 6227 2004-05-09 17:18 R ../image/mnt4/usr/share/groff/1.17.2/font/devX100: total 341 -rw-r--r-- 1 root root 3198 2004-05-09 17:18 CB -rw-r--r-- 1 root root 3200 2004-05-09 17:18 CBI -rw-r--r-- 1 root root 3194 2004-05-09 17:18 CI -rw-r--r-- 1 root root 3195 2004-05-09 17:18 CR -rw-r--r-- 1 root root 134 2004-05-09 17:18 DESC -rw-r--r-- 1 root root 137590 2004-05-09 17:18 G -rw-r--r-- 1 root root 3299 2004-05-09 17:18 HB -rw-r--r-- 1 root root 3296 2004-05-09 17:18 HBI -rw-r--r-- 1 root root 3297 2004-05-09 17:18 HI -rw-r--r-- 1 root root 3284 2004-05-09 17:18 HR -rw-r--r-- 1 root root 137590 2004-05-09 17:18 M -rw-r--r-- 1 root root 3321 2004-05-09 17:18 NB -rw-r--r-- 1 root root 3329 2004-05-09 17:18 NBI -rw-r--r-- 1 root root 3302 2004-05-09 17:18 NI -rw-r--r-- 1 root root 3305 2004-05-09 17:18 NR -rw-r--r-- 1 root root 3324 2004-05-09 17:18 S -rw-r--r-- 1 root root 3302 2004-05-09 17:18 TB -rw-r--r-- 1 root root 3297 2004-05-09 17:18 TBI -rw-r--r-- 1 root root 3295 2004-05-09 17:18 TI -rw-r--r-- 1 root root 3294 2004-05-09 17:18 TR ../image/mnt4/usr/share/groff/1.17.2/font/devX100-12: total 341 -rw-r--r-- 1 root root 3448 2004-05-09 17:18 CB -rw-r--r-- 1 root root 3447 2004-05-09 17:18 CBI -rw-r--r-- 1 root root 3446 2004-05-09 17:18 CI -rw-r--r-- 1 root root 3445 2004-05-09 17:18 CR -rw-r--r-- 1 root root 134 2004-05-09 17:18 DESC -rw-r--r-- 1 root root 137590 2004-05-09 17:18 G -rw-r--r-- 1 root root 3350 2004-05-09 17:18 HB -rw-r--r-- 1 root root 3353 2004-05-09 17:18 HBI -rw-r--r-- 1 root root 3326 2004-05-09 17:18 HI -rw-r--r-- 1 root root 3329 2004-05-09 17:18 HR -rw-r--r-- 1 root root 137590 2004-05-09 17:18 M -rw-r--r-- 1 root root 3380 2004-05-09 17:18 NB -rw-r--r-- 1 root root 3370 2004-05-09 17:18 NBI -rw-r--r-- 1 root root 3350 2004-05-09 17:18 NI -rw-r--r-- 1 root root 3340 2004-05-09 17:18 NR -rw-r--r-- 1 root root 3373 2004-05-09 17:18 S -rw-r--r-- 1 root root 3317 2004-05-09 17:18 TB -rw-r--r-- 1 root root 3333 2004-05-09 17:18 TBI -rw-r--r-- 1 root root 3323 2004-05-09 17:18 TI -rw-r--r-- 1 root root 3312 2004-05-09 17:18 TR ../image/mnt4/usr/share/groff/1.17.2/font/devX75: total 327 -rw-r--r-- 1 root root 3120 2004-05-09 17:19 CB -rw-r--r-- 1 root root 3117 2004-05-09 17:19 CBI -rw-r--r-- 1 root root 3114 2004-05-09 17:19 CI -rw-r--r-- 1 root root 3116 2004-05-09 17:19 CR -rw-r--r-- 1 root root 133 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 130712 2004-05-09 17:19 G -rw-r--r-- 1 root root 3137 2004-05-09 17:19 HB -rw-r--r-- 1 root root 3136 2004-05-09 17:19 HBI -rw-r--r-- 1 root root 3142 2004-05-09 17:19 HI -rw-r--r-- 1 root root 3135 2004-05-09 17:19 HR -rw-r--r-- 1 root root 130712 2004-05-09 17:19 M -rw-r--r-- 1 root root 3133 2004-05-09 17:19 NB -rw-r--r-- 1 root root 3138 2004-05-09 17:19 NBI -rw-r--r-- 1 root root 3132 2004-05-09 17:19 NI -rw-r--r-- 1 root root 3134 2004-05-09 17:19 NR -rw-r--r-- 1 root root 3195 2004-05-09 17:19 S -rw-r--r-- 1 root root 3140 2004-05-09 17:19 TB -rw-r--r-- 1 root root 3139 2004-05-09 17:19 TBI -rw-r--r-- 1 root root 3135 2004-05-09 17:19 TI -rw-r--r-- 1 root root 3130 2004-05-09 17:19 TR ../image/mnt4/usr/share/groff/1.17.2/font/devX75-12: total 327 -rw-r--r-- 1 root root 3143 2004-05-09 17:19 CB -rw-r--r-- 1 root root 3141 2004-05-09 17:19 CBI -rw-r--r-- 1 root root 3144 2004-05-09 17:19 CI -rw-r--r-- 1 root root 3144 2004-05-09 17:19 CR -rw-r--r-- 1 root root 133 2004-05-09 17:19 DESC -rw-r--r-- 1 root root 130712 2004-05-09 17:19 G -rw-r--r-- 1 root root 3175 2004-05-09 17:19 HB -rw-r--r-- 1 root root 3169 2004-05-09 17:19 HBI -rw-r--r-- 1 root root 3166 2004-05-09 17:19 HI -rw-r--r-- 1 root root 3173 2004-05-09 17:19 HR -rw-r--r-- 1 root root 130712 2004-05-09 17:19 M -rw-r--r-- 1 root root 3171 2004-05-09 17:19 NB -rw-r--r-- 1 root root 3175 2004-05-09 17:19 NBI -rw-r--r-- 1 root root 3148 2004-05-09 17:19 NI -rw-r--r-- 1 root root 3157 2004-05-09 17:19 NR -rw-r--r-- 1 root root 3225 2004-05-09 17:19 S -rw-r--r-- 1 root root 3150 2004-05-09 17:19 TB -rw-r--r-- 1 root root 3156 2004-05-09 17:19 TBI -rw-r--r-- 1 root root 3148 2004-05-09 17:19 TI -rw-r--r-- 1 root root 3138 2004-05-09 17:19 TR ../image/mnt4/usr/share/groff/1.17.2/tmac: total 381 -rw-r--r-- 1 root root 323 2004-05-09 17:19 a4.tmac -rw-r--r-- 1 root root 166 2004-05-09 17:19 andocj.tmac -rw-r--r-- 1 root root 192 2004-05-09 17:19 andoc.tmac -rw-r--r-- 1 root root 9703 2004-05-09 17:19 an-old.tmac -rw-r--r-- 1 root root 35 2004-05-09 17:19 an.tmac -rw-r--r-- 1 root root 45108 2004-05-09 17:19 docj.tmac -rw-r--r-- 1 root root 36437 2004-05-09 17:19 doc-old.tmac -rw-r--r-- 1 root root 69305 2004-05-09 17:19 doc.tmac -rw-r--r-- 1 root root 4367 2004-05-09 17:19 dvi.tmac -rw-r--r-- 1 root root 1364 2004-05-09 17:19 eqnrc -rw-r--r-- 1 root root 19504 2004-05-09 17:19 e.tmac -rw-r--r-- 1 root root 168 2004-05-09 17:19 euc-jp.tmac -rw-r--r-- 1 root root 1011 2004-05-09 17:19 html.tmac -rw-r--r-- 1 root root 27414 2004-05-09 17:19 hyphen.us -rw-r--r-- 1 root root 2667 2004-05-09 17:19 latin1.tmac -rw-r--r-- 1 root root 451 2004-05-09 17:19 lj4.tmac -rw-r--r-- 1 root root 39 2004-05-09 17:19 mandoc.tmac -rw-r--r-- 1 root root 36 2004-05-09 17:19 man.tmac drwxr-xr-x 2 root root 1024 2004-05-09 17:19 mdoc -rw-r--r-- 1 root root 35 2004-05-09 17:19 mdoc.tmac -rw-r--r-- 1 root root 31 2004-05-09 17:19 me.tmac drwxr-xr-x 2 root root 1024 2004-05-09 17:19 mm -rw-r--r-- 1 root root 3538 2004-05-09 17:19 mse.tmac -rw-r--r-- 1 root root 31 2004-05-09 17:19 ms.tmac -rw-r--r-- 1 root root 76327 2004-05-09 17:19 m.tmac -rw-r--r-- 1 root root 35 2004-05-09 17:19 mwww.tmac -rw-r--r-- 1 root root 117 2004-05-09 17:19 pic.tmac -rw-r--r-- 1 root root 1080 2004-05-09 17:19 psatk.tmac -rw-r--r-- 1 root root 1806 2004-05-09 17:19 psold.tmac -rw-r--r-- 1 root root 1738 2004-05-09 17:19 pspic.tmac -rw-r--r-- 1 root root 1432 2004-05-09 17:19 ps.tmac -rw-r--r-- 1 root root 196 2004-05-09 17:19 safer.tmac -rw-r--r-- 1 root root 35482 2004-05-09 17:19 s.tmac -rw-r--r-- 1 root root 425 2004-05-09 17:19 trace.tmac -rw-r--r-- 1 root root 1157 2004-05-09 17:19 troffrc -rw-r--r-- 1 root root 704 2004-05-09 17:19 troffrc-end -rw-r--r-- 1 root root 4317 2004-05-09 17:19 tty-char.tmac -rw-r--r-- 1 root root 999 2004-05-09 17:19 tty.tmac -rw-r--r-- 1 root root 5085 2004-05-09 17:19 www.tmac -rw-r--r-- 1 root root 1289 2004-05-09 17:19 Xps.tmac -rw-r--r-- 1 root root 1546 2004-05-09 17:19 X.tmac ../image/mnt4/usr/share/groff/1.17.2/tmac/mdoc: total 61 -rw-r--r-- 1 root root 19776 2004-05-09 17:19 doc-common -rw-r--r-- 1 root root 5408 2004-05-09 17:19 doc-ditroff -rw-r--r-- 1 root root 6079 2004-05-09 17:19 docj-ditroff -rw-r--r-- 1 root root 5279 2004-05-09 17:19 docj-nroff -rw-r--r-- 1 root root 4284 2004-05-09 17:19 doc-nroff -rw-r--r-- 1 root root 15420 2004-05-09 17:19 doc-syms ../image/mnt4/usr/share/groff/1.17.2/tmac/mm: total 9 -rw-r--r-- 1 root root 2457 2004-05-09 17:19 0.MT -rw-r--r-- 1 root root 1229 2004-05-09 17:19 4.MT -rw-r--r-- 1 root root 599 2004-05-09 17:19 5.MT -rw-r--r-- 1 root root 0 2004-05-09 17:19 locale -rw-r--r-- 1 root root 1319 2004-05-09 17:19 ms.cov -rw-r--r-- 1 root root 0 2004-05-09 17:19 se_locale -rw-r--r-- 1 root root 97 2004-05-09 17:19 se_ms.cov ../image/mnt4/usr/share/groff/site-tmac: total 4 -rw-r--r-- 1 root root 96 2004-05-09 17:18 man.local -rw-r--r-- 1 root root 90 2004-05-09 17:18 mdoc.local -rw-r--r-- 1 root root 529 2004-05-09 17:18 tmac.andb -rw-r--r-- 1 root root 390 2004-05-09 17:18 tmac.andocdb ../image/mnt4/var: total 7 drwxr-xr-x 2 root root 1024 2004-05-08 17:43 cache drwxr-xr-x 2 root root 1024 2004-05-08 17:43 ftp drwxr-xr-x 2 root root 1024 2004-05-08 17:43 log drwxr-xr-x 2 root root 1024 2004-07-01 20:45 ntp drwxr-xr-x 2 root root 1024 2004-05-08 17:43 run drwxr-xr-x 3 root root 1024 2004-05-09 07:52 spool drwxr-xr-x 2 root root 1024 2004-05-08 17:43 www ../image/mnt4/var/cache: total 0 ../image/mnt4/var/ftp: total 0 ../image/mnt4/var/log: total 0 ../image/mnt4/var/ntp: total 0 ../image/mnt4/var/run: total 0 ../image/mnt4/var/spool: total 1 drwxr-xr-x 2 root root 1024 2004-05-09 07:52 cron ../image/mnt4/var/spool/cron: total 0 ../image/mnt4/var/www: total 0