You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Forknet has files like that should be immutable. Suck files are snapshots used to revert to when a test is restarted. Getting in that state takes time to achieve and if one host gets corrupted, it may invalidate the whole forknet test.
To prevent accidental loss, those files can be marked as immutable with file attributes:
# set the immutable attribute
sudo chattr +i folder_name
# remove the immutable attribute
sudo chattr -i folder_name
The text was updated successfully, but these errors were encountered:
Forknet has files like that should be immutable. Suck files are snapshots used to revert to when a test is restarted. Getting in that state takes time to achieve and if one host gets corrupted, it may invalidate the whole forknet test.
To prevent accidental loss, those files can be marked as immutable with file attributes:
The text was updated successfully, but these errors were encountered: