Mon Mar 16, 2015 12:22 am
Tue Sep 06, 2016 11:08 pm
Wed Sep 07, 2016 4:18 am
dpkg -i refracta*.deb
apt-get -f install
refractainstaller-yad -d
or
refractainstaller -d
Wed Sep 07, 2016 8:36 pm
fsmithred wrote:An even easier way to deal with the missing dependencies is:Except for yad, they all come from the main repo. If you can't get yad, you can use the cli script.
- Code:
dpkg -i refracta*.deb
apt-get -f install
Sorry about the slim problem. If you happen to install it again, please run in debug mode, and let me see the error log.
- Code:
refractainstaller-yad -d
or
refractainstaller -d
Error log is /var/log/refractainstaller_error.log. Worth checking it even if you didn't run in debug.
Thu Sep 08, 2016 4:56 pm
APT::Install-Recommends "no";
APT::Install-Suggests "no";
aptitude -s install <some packages>
apt-get autoremove
aptitude search ~c # shows you removed packages that left behind config files.
aptitude purge ~c # removes those leftover configs
deborphan
aptitude why <package>
aptitude show <package>
apt-cache depends <package>
apt-cache rdepends <package>
Thu Sep 08, 2016 7:19 pm
mksq_opt="-comp xz -Xbcj x86"
fsmithred wrote:The sizes sound about right. I'm not really sure, because I always keep the copy of the file system in the work dir and a couple of snaphots. So my total used space is misleading. I don't think you can compress it any more than it is.
The thing that would probably make the most difference in size would be to install and run localepurge to get rid of any locales you won't be using. See this discussion -
refracta-8-jessie-based-on-devuan-t529-40.html#p5595
Also, too late if you didn't already do it, set apt so it does not install Recommends.
Create (/)etc/apt/apt.conf.d/00norecommends with the following content:
- Code:
APT::Install-Recommends "no";
APT::Install-Suggests "no";
Other commands that might help you:
- Code:
aptitude -s install <some packages>
apt-get autoremove
aptitude search ~c # shows you removed packages that left behind config files.
aptitude purge ~c # removes those leftover configs
deborphan
aptitude why <package>
aptitude show <package>
apt-cache depends <package>
apt-cache rdepends <package>
Sun Sep 11, 2016 11:54 am
- Code:
mksq_opt="-comp xz -Xbcj x86"
Tue Sep 13, 2016 11:16 pm
fsmithred wrote:
- Code:
mksq_opt="-comp xz -Xbcj x86"
Thanks for that! It knocked 14MB off an iso, and that's pretty significant when we're trying to fit on a CD.
Wed Sep 14, 2016 1:23 am
compression: mksq_opt="-comp xz"
size 639MB
real 60m28.951s
user 28m55.612s
sys 3m47.704s
compression: mksq_opt="-comp xz -Xbcj x86"
size 624MB
real 140m27.322s
user 56m52.100s
sys 6m7.188s
Wed Sep 14, 2016 4:57 pm