Exported on 23-Aug-2021 15:20:00
Parameters
1 - Execute Deletion Tasks
Deletes files and directories from following locations:
- Temporary storage
- Cache Storage
- Trash Storage
The connection details have changed from the last step.
Login as user {s1c} on node {s1}
#Remove all temporary files
sudo rm -vfr /tmp/*
#Remove cache files
rm -vfr ~/.cache/*
sudo rm -vfr /root/.cache/*
#Empty trash
rm -rf ~/.local/share/Trash/*
sudo rm -rf /root/.local/share/Trash/*
This blueprints removes redundant files from a Linux system.