Skip to content

FAQ Imaging

SPO edited this page Oct 23, 2018 · 6 revisions

Imaging


Disable checking the image before restoring?

To disable image check before restoring.

You can add an option "-scr" to skip the image checking before restoring.


Error saving large disks

If the following error happens:

image write ERROR:Broken pipe

split: output file suffixes exhausted

This means that Clonezilla has reached the maximum number of files it can generate. You need to change the file size of each file generated to 500 or 1000. The default setting is 100 MB. (-i 100)


Unlink an imaging server from an entity

Connect to the imaging database and show the imaging servers configured

root@pulse01:~# mysql imaging
MariaDB [imaging]> SELECT id,name,url,associated,fk_entity FROM ImagingServer;
+----+----------------------+---------------------------------------+------------+-----------+ | id | name | url | associated | fk_entity | +----+----------------------+---------------------------------------+------------+-----------+ | 1 | Local imaging server | https://192.168.56.2:9990/imaging_api | 1 | 1 | +----+----------------------+---------------------------------------+------------+-----------+

To unlink Local imaging server (id=1) from entity 1 (fk_entity=1):

MariaDB [imaging]> UPDATE ImagingServer SET associated=0 WHERE id=1;

MariaDB [imaging]> SELECT id,name,url,associated,fk_entity FROM ImagingServer;
+----+----------------------+---------------------------------------+------------+-----------+
| id | name                 | url                                   | associated | fk_entity |
+----+----------------------+---------------------------------------+------------+-----------+
|  1 | Local imaging server | https://192.168.56.2:9990/imaging_api |          0 |         1 |
+----+----------------------+---------------------------------------+------------+-----------+
Clone this wiki locally