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
But by that all daemons are executed parallel (which can overload the CPU). Is it possible to wait until one lock command has been finished, before starting the next one?
The following solution works, but adds much more sleep time as it would be necessary:
Oh and by the way, you can background a process with "&" in your shell to avoid daemonizing. Daemonizing will actually put the daemon process into a separate session, which is often not what is desired:
The following command does not make sense, as the first execution leaves vmtouch open:
So instead I need to use the daemon mode:
But by that all daemons are executed parallel (which can overload the CPU). Is it possible to wait until one lock command has been finished, before starting the next one?
The following solution works, but adds much more sleep time as it would be necessary:
The text was updated successfully, but these errors were encountered: