@jamesbond @JakeSFR @step
Thanks fellas, I see it now. Xargs is required because it is triggering sed to change the contents of each file in the list processed by xargs. Each of those files contains the name that surprised me and sed strips away the ending beginning with the equals sign. and prints them out into a list for further processing.
James,
It didn't seem like the same thing to me. I appreciate what you have done, and I feel bad if you are telling me that I have burdened you with apparent special needs.
The contents of test.sfs are:
Code: Select all
/dev
/dev/console
/dev/fd
/dev/full
/dev/lxc
/dev/lxc/console
/dev/lxc/tty1
/dev/lxc/tty2
/dev/lxc/tty3
/dev/lxc/tty4
/dev/ptmx
/dev/random
/dev/stderr
/dev/stdin
/dev/stdout
/dev/tty
/dev/tty1
/dev/tty2
/dev/tty3
/dev/tty4
/dev/urandom
/dev/zero
/etc
/etc/netparams
/etc/rc.d
/etc/rc.d/rc.network.lxc
/etc/rc.d/rc.shutdown.lxc
/sbin
/sbin/poweroff
/sbin/reboot
/tmp
/tmp/utmp
The files I wrote about in the other thread are:
Code: Select all
/usr/bin/xwin
/usr/bin/wmexit
/mnt/sb
/mnt/sb/sandbox
/mnt/sb/sandbox/usr
/mnt/sb/sandbox/usr/bin
/mnt/sb/sandbox/usr/bin/xwin
/mnt/sb/sandbox/usr/bin/wmexit
/mnt/sb/sandbox/mnt
/mnt/sb/sandbox/mnt/sb
/mnt/sb/sandbox/mnt/sb/sandbox
/mnt/sb/sandbox/etc
/mnt/sb/sandbox/etc/profile
/mnt/sb/sandbox/etc/shinit
/mnt/sb/sandbox/etc/BOOTSTATE
/mnt/sb/sandbox/.wh..wh.orph
/mnt/sb/sandbox/.wh..wh.plnk
/mnt/sb/sandbox/.wh..wh.aufs
/etc/shinit
neither of those lists contain /etc/hosts
My aim here is to understand what is going on and I have been reporting my discoveries and asking for help with the things that confuse me. I now suspect that those files mentioned in the other thread were still not an accurate description of the first layer. Perhaps the base layer is in initrd and it is incorporated into pup_init at boot? I don't know.
Examining your new script, I see that there are some similar files and some differences:
Code: Select all
clear_aufs() {
sed -ne '
# remove all the whiteout files
\_.wh._ d
p'
}
clear_std() {
clear_aufs | sed -ne '
# sandbox created stuff and bash history
\_/etc/\.XLOADED$_ d
\_/etc/BOOTSTATE$_ d
\_/etc/profile$_ d
\_/etc/shinit$_ d
\_/usr/bin/xwin$_ d
\_/usr/bin/wmexit$_ d
\_/root/\.Xauthority$_ d
\_/root/\.history$_ d
\_/root/\.bash\_history$_ d
p'
}
clear_lxc() {
clear_aufs | clear_std | sed -ne '
# and sandbox-lxc created stuff
\_/etc/rc\.d/rc\.sysinit\.lxc$_ d
\_/etc/rc\.d/rc\.shutdown\.lxc$_ d
\_/etc/rc\.d/rc\.network\.lxc$_ d
\_/etc/rc\.d/rc\.oneshot$_ d
\_/etc/X11/host-X11$_ d
\_/etc/hosts$_ d
\_/etc/hostname$_ d
\_/etc/inittab$_ d
\_/etc/netparams$_ d
\_/sbin/init$_ d
\_/sbin/poweroff$_ d
\_/sbin/reboot$_ d
\_/var/run/utmp$_ d
\_/var/run/wtmp$_ d
\_/dev/lxc/_ d; \_/dev/fd$_ d
\_/dev/console$_ d; \_/dev/stdin$_ d; \_/dev/stdout$_ d; \_/dev/stderr$_ d
\_/dev/full$_ d; \_/dev/null$_ d; \_/dev/zero$_ d
\_/dev/ptmx$_ d; \_/dev/random$_ d; \_/dev/urandom$_ d
\_/dev/tty$_ d; \_/dev/tty1$_ d; \_/dev/tty2$_ d; \_/dev/tty3$_ d; \_/dev/tty4$_ d;
p'
}
I'm impressed that you have a mental map of all the thousands of moving parts that make Linux work.