💾 Archived View for thebird.nl › gn-gemtext-threads › issues › genenetwork1 › gn1-slowness.gmi captured on 2023-05-24 at 18:16:21. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-04-28)

-=-=-=-=-=-=-

GN1 Slowness

Tags

Description

GN1 needs to clean up the following

GNRoot="/gnshare/gn"
find $GNRoot/web/tmp    -mmin +100 -exec rm -rfv {} \;
find $GNRoot/web/image  -mmin +100 -exec rm -rfv {} \;
mkdir -p $GNRoot/web/tmp
mkdir -p $GNRoot/web/image

Note that the -delete switch is much faster than -exec, so

find $GNRoot/web/image  -mmin +100 -delete