I search and read the forum for "How to create SFS/squashfs file".
Which I summarize:
- Collect/identify all dependency
- Extract from .deb
- Merge the content (except DEBIAN folders)
Now, I have successfully created and tested that the squashfs file works - for Bookworm.
As I have to do this again for Bullseye...(The app is kernel dependent, so I have to use different app binary)
I just want to semi 'automate' what I did manually. Too many files to do manually.
Sort of, graduate from 'dumb dumb' class to 'semi dumb dumb' class...
But I still could not get the 'merging' part working.
Manually, I just drag and drop "usr" dir somewhere and merged them in any file-manager.
Code: Select all
#!/bin/bash
for file in *.deb
do
redeb ${file}
done
#Done extracting each deb - move it out of here.
! [ -e "../debs" ] && mkdir ../debs
mv *.deb ../debs
for file in *
do
mv -f ${file}/usr ../sfs-create
done
I'm getting this for every directory...
mv: cannot move 'qml-module-qtquick-window2_5.15.8+dfsg-3_amd64/usr' to '../sfs-create/usr': Directory not empty
I thought, asking here is faster than me trying all sort of mv parameters...