Line 3:
Line 3:
== Synopsis ==
== Synopsis ==
<pre>
<pre>
−
'crtools' <command> -t <pid> [<options>]
+
criu <command> -t <pid> [<options>]
</pre>
</pre>
== Description ==
== Description ==
−
'crtools' is command line utility to steer checkpoint and restore procedure.
+
criu is command line utility to steer checkpoint and restore procedure.
== Options ==
== Options ==
Line 43:
Line 43:
-d::
-d::
−
Detach 'crtools' itself once restore is complete.
+
Detach criu itself once restore is complete.
-n <ns>::
-n <ns>::
Line 62:
Line 62:
<pre>
<pre>
−
# crtools dump -D checkpoint -t 1234
+
# criu dump -D checkpoint -t 1234
</pre>
</pre>
−
To restore this program detaching crtools itself, one should type
+
To restore this program detaching criu itself, one should type
<pre>
<pre>
−
crtools restore -d -D checkpoint -t 1234
+
criu restore -d -D checkpoint -t 1234
</pre>
</pre>
−
"Detaching" (the <code>-d</code> option) here means, that crtools will exit after restoring the processes
+
"Detaching" (the <code>-d</code> option) here means, that criu will exit after restoring the processes
and the latter will get re-parent-ed to the init task.
and the latter will get re-parent-ed to the init task.
Line 77:
Line 77:
<pre>
<pre>
−
crtools exec -t 1234 close 1
+
criu exec -t 1234 close 1
</pre>
</pre>
Line 83:
Line 83:
<pre>
<pre>
−
crtools exec -t 1234 open '&/foo/bar' 2
+
criu exec -t 1234 open '&/foo/bar' 2
</pre>
</pre>