Find them here: https://dev.haiku-os.org/wiki/R1/Beta2/StatusMeeting-2020-04-12
I was just 2 hours to early because of GMT confusion (in my head).
I missed to ask about Wonderbrush 64Bit then!
There is WB for 64 bit, what do you wanted to ask?
IIRC the recipe was disabled some time ago.
I think Wonderbrush 2 on 64bit crashes on saving documents? And Wonderbrush 3 is not quite ready yet, unfortunately.
Diver and PulkoMandyā¦
Thatās the answer I was looking for, thanks.
Will it be possible to resume downloads in HaikuDepot instead of always restarting from the beginning? Also, is there any plans for maintenance of the system/packages directory? I notice lots of disk space being consumed from older states and transactions.
To fix this, you can install FilWip (from HaikuDepot). It allow to clean previous states and clean WebPositive cache, amongs others.
Yes, thank you for this tip. Unfortunately, it wipes everything, not selective. You are left with no fallback in case of regressions. If FilWip or something like it allowed you to clean but keep some fallback (thinking of the way Linux Mint allows you to select kernels for deletion while keeping fallbacks).
You can selectively delete previous states and transactions. I have seen and followed guidelines on the site somewhere. Donāt remember where right now but I think itās easy to find through search.
Will it be possible to resume downloads in HaikuDepot instead of always restarting from the beginning?
Would you please check there isnāt already a ticket for that and if there isnāt one, add one in describing exactly what you think should happen.
that is a known bug #12414
Thanks, Iāll try to find that post.
Looks like a known request, thanks all.
It used to be an issue that accumulating āstatesā decreased boot times. AFAIK, this has been resolved some time back. Thereās still the issue of wasted disk space.
Back then I sometimes used this script:
#!/bin/sh
# Move states older than 14 days into the folder 'oldstates'
# if there are more than 20 states folders
cd /boot/system/packages/administrative
mkdir -p oldstates
statinfo=$(find ./state* -type d | wc -l)
if [ $statinfo -gt 20 ] ; then
find . -type d -mtime +14 -exec mv {} ./oldstates \;
fi
This moves old states into an āoldstatesā folder. To directly delete those states, replace the line in the if-block with:
find . -type d -mtime +14 -exec rm -rf {} \;
Of course, this sort of managing should be part of a new preference panel etc. I think thereās already a ticket for that. Alas, few devs, short on timeā¦
Should check that out, tons of wasted space here also
Just checked on my x86_64 virtual install, saved me 4.15 GiB
Windows have disk cleanup utility, Haiku should have something similar.
Maybe an idea to collect some of āusersā script in a separate thread, I think many of us could benefit from it
Haiku should not need something similar
We could probably delete automatically states older than a few months or something like that?
FilWip accomplishes this but nukes everything, perhaps it could be modified with a date or revision or number of states etc to leave behind.