using the sandbox script I used these commands to list the files in the layers of fatdog. It would be cool if the layers could be specified from the command line.
Code: Select all
sandbox.sh
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print | less
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print > /tmp/filelist00.txt
exit
sandbox.sh
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print | grep -Fxvf /tmp/filelist00.txt > /tmp/filelist01.txt
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print > /tmp/filelist00-01.txt
exit
sandbox.sh
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print | grep -Fxvf /tmp/filelist00-01.txt > /tmp/filelist02.txt
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print > /tmp/filelist00-02.txt
exit
sandbox.sh
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print | grep -Fxvf /tmp/filelist00-02.txt > /tmp/filelist03.txt
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print > /tmp/filelist00-03.txt
exit
sandbox.sh
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print | grep -Fxvf /tmp/filelist00-03.txt > /tmp/filelist04.txt
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print > /tmp/filelist00-04.txt
exit
sandbox.sh
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print | grep -Fxvf /tmp/filelist00-04.txt > /tmp/filelist05.txt
find / \( -path "/dev" -o -path "/sys" -o -path "/proc" -o -path "/tmp" \) -prune -o -name "*" -print > /tmp/filelist00-05.txt
exit
The resulting files are attached, and here is a summary:
filelist00-pup_init = 589 files - unix
filelist01-kernel-moules = 6732 files - drivers
filelist02-pup_ro = 31781 files - X11, flash player, gimp, gtk, jack, lxc, pidgin, ripperX, ADMplugins, libreOffice, seamonkey, vlc, Rox, lxqt,
games, glade3, qt5, slsh, openbox, init.d, and more
filelist03-pup_multi = 21323 files - firefoxESR, wingrid, virtualbox, cache,
filelist04-pup_save = 961 files - new cache
filelist05-pup_rw = 3 files - newest cache
Is there a script that is used to automatically install everything in the pup_ro layer?