Clonezilla from single USB stick / penExtracting files from CloneZilla imagesLooking to replace Ghost with...
How can I practically buy stocks?
Is there any pythonic way to find average of specific tuple elements in array?
Israeli soda type drink
Find a stone which is not the lightest one
Is Electric Central Heating worth it if using Solar Panels?
How can I wire a 9-position switch so that each position turns on one more LED than the one before?
What is the best way to deal with NPC-NPC combat?
All ASCII characters with a given bit count
Could moose/elk survive in the Amazon forest?
How exactly does Hawking radiation decrease the mass of black holes?
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
Older movie/show about humans on derelict alien warship which refuels by passing through a star
Does a large simulator bay have standard public address announcements?
What is the unit of time_lock_delta in LND?
Is there metaphorical meaning of "aus der Haft entlassen"?
Why did C use the -> operator instead of reusing the . operator?
How to pronounce 'c++' in Spanish
How much of a wave function must reside inside event horizon for it to be consumed by the black hole?
A strange hotel
Unknown code in script
"The cow" OR "a cow" OR "cows" in this context
Combinatorics problem, right solution?
How to have a sharp product image?
Can someone publish a story that happened to you?
Clonezilla from single USB stick / pen
Extracting files from CloneZilla imagesLooking to replace Ghost with FSArchiver or Clonezilla, few questions about capabilitiesCloneZilla PXE Boot Without NFSClonezilla from Command LineWhy is Clonezilla faster than dd?Prepare a disk to be imaged by Clonezilla for use on smaller disks?Clonezilla from MBR to GPT partitionclonezilla: “`/home/partimage` is full”Restore GRUB2 after ClonezillaCreate single file on clonezilla?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am trying to create a custom clonezilla installer, as a tool to refresh our standard machines from memory stick.
I can customise the start menu fine from syslinux/syslinux.cfg just fine, but I want the large memory stick to also contain the image to be restored.
The image is in /lib/live/mount/medium/myImage and can be seen from the command line, but the installer seems to want to find it on /home/partimag
Is there a way to modify the ocs-live-run="ocs-sr ... " etc to point to the local path instead of having to mount /home/partimag ?
Thanks in advance - I am pulling my hair out.
script as per Michael below:
# mount the image where Clonezilla wants to find it
echo Mounting /lib/live/mount/medium/image on to /home/partimag/
mount --bind /lib/live/mount/medium/image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
echo Now doing restore (disk)
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk gen4image sda
#ocs-sr -g auto -e2 -c -r -j2 -k true restoreparts aks_user sda1
RET=$?
echo Returned $RET
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
disk-image clonezilla
add a comment |
I am trying to create a custom clonezilla installer, as a tool to refresh our standard machines from memory stick.
I can customise the start menu fine from syslinux/syslinux.cfg just fine, but I want the large memory stick to also contain the image to be restored.
The image is in /lib/live/mount/medium/myImage and can be seen from the command line, but the installer seems to want to find it on /home/partimag
Is there a way to modify the ocs-live-run="ocs-sr ... " etc to point to the local path instead of having to mount /home/partimag ?
Thanks in advance - I am pulling my hair out.
script as per Michael below:
# mount the image where Clonezilla wants to find it
echo Mounting /lib/live/mount/medium/image on to /home/partimag/
mount --bind /lib/live/mount/medium/image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
echo Now doing restore (disk)
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk gen4image sda
#ocs-sr -g auto -e2 -c -r -j2 -k true restoreparts aks_user sda1
RET=$?
echo Returned $RET
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
disk-image clonezilla
the only other advice I can give is to run the clonezilla restore manually (in beginner mode), and grab the command line that clonezilla stores for you just to be sure you don't have a wrong parameter.
– Michael Kohne
Dec 10 '18 at 16:32
Yeah, the problem there is that I cannot see how to run it manually while also seeing the bound mount on to /home/partimag. I suppose I could fudge it and the go to command prompt to adjust.
– David Shields
Dec 11 '18 at 7:56
add a comment |
I am trying to create a custom clonezilla installer, as a tool to refresh our standard machines from memory stick.
I can customise the start menu fine from syslinux/syslinux.cfg just fine, but I want the large memory stick to also contain the image to be restored.
The image is in /lib/live/mount/medium/myImage and can be seen from the command line, but the installer seems to want to find it on /home/partimag
Is there a way to modify the ocs-live-run="ocs-sr ... " etc to point to the local path instead of having to mount /home/partimag ?
Thanks in advance - I am pulling my hair out.
script as per Michael below:
# mount the image where Clonezilla wants to find it
echo Mounting /lib/live/mount/medium/image on to /home/partimag/
mount --bind /lib/live/mount/medium/image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
echo Now doing restore (disk)
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk gen4image sda
#ocs-sr -g auto -e2 -c -r -j2 -k true restoreparts aks_user sda1
RET=$?
echo Returned $RET
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
disk-image clonezilla
I am trying to create a custom clonezilla installer, as a tool to refresh our standard machines from memory stick.
I can customise the start menu fine from syslinux/syslinux.cfg just fine, but I want the large memory stick to also contain the image to be restored.
The image is in /lib/live/mount/medium/myImage and can be seen from the command line, but the installer seems to want to find it on /home/partimag
Is there a way to modify the ocs-live-run="ocs-sr ... " etc to point to the local path instead of having to mount /home/partimag ?
Thanks in advance - I am pulling my hair out.
script as per Michael below:
# mount the image where Clonezilla wants to find it
echo Mounting /lib/live/mount/medium/image on to /home/partimag/
mount --bind /lib/live/mount/medium/image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
echo Now doing restore (disk)
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk gen4image sda
#ocs-sr -g auto -e2 -c -r -j2 -k true restoreparts aks_user sda1
RET=$?
echo Returned $RET
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
disk-image clonezilla
disk-image clonezilla
edited 21 mins ago
Michael Hampton♦
176k27321651
176k27321651
asked Dec 10 '18 at 15:26
David ShieldsDavid Shields
146111
146111
the only other advice I can give is to run the clonezilla restore manually (in beginner mode), and grab the command line that clonezilla stores for you just to be sure you don't have a wrong parameter.
– Michael Kohne
Dec 10 '18 at 16:32
Yeah, the problem there is that I cannot see how to run it manually while also seeing the bound mount on to /home/partimag. I suppose I could fudge it and the go to command prompt to adjust.
– David Shields
Dec 11 '18 at 7:56
add a comment |
the only other advice I can give is to run the clonezilla restore manually (in beginner mode), and grab the command line that clonezilla stores for you just to be sure you don't have a wrong parameter.
– Michael Kohne
Dec 10 '18 at 16:32
Yeah, the problem there is that I cannot see how to run it manually while also seeing the bound mount on to /home/partimag. I suppose I could fudge it and the go to command prompt to adjust.
– David Shields
Dec 11 '18 at 7:56
the only other advice I can give is to run the clonezilla restore manually (in beginner mode), and grab the command line that clonezilla stores for you just to be sure you don't have a wrong parameter.
– Michael Kohne
Dec 10 '18 at 16:32
the only other advice I can give is to run the clonezilla restore manually (in beginner mode), and grab the command line that clonezilla stores for you just to be sure you don't have a wrong parameter.
– Michael Kohne
Dec 10 '18 at 16:32
Yeah, the problem there is that I cannot see how to run it manually while also seeing the bound mount on to /home/partimag. I suppose I could fudge it and the go to command prompt to adjust.
– David Shields
Dec 11 '18 at 7:56
Yeah, the problem there is that I cannot see how to run it manually while also seeing the bound mount on to /home/partimag. I suppose I could fudge it and the go to command prompt to adjust.
– David Shields
Dec 11 '18 at 7:56
add a comment |
1 Answer
1
active
oldest
votes
The way I do it for custom loaders is to setup ocs_live_run="/lib/live/mount/medium/MyScript.sh" in the syslinux/syslinux.cfg
Drop MyScript.sh onto the root of the flash drive.
Drop your image into a directory named Image on the root of the flash drive.
Your script should bind mount the image directory, and then run clonezilla (snippet from one of my auto-load scripts):
# mount the image where Clonezilla wants to find it
mount --bind /lib/live/mount/medium/Image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk L06_05-A.14.14-img sda
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f943666%2fclonezilla-from-single-usb-stick-pen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The way I do it for custom loaders is to setup ocs_live_run="/lib/live/mount/medium/MyScript.sh" in the syslinux/syslinux.cfg
Drop MyScript.sh onto the root of the flash drive.
Drop your image into a directory named Image on the root of the flash drive.
Your script should bind mount the image directory, and then run clonezilla (snippet from one of my auto-load scripts):
# mount the image where Clonezilla wants to find it
mount --bind /lib/live/mount/medium/Image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk L06_05-A.14.14-img sda
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
add a comment |
The way I do it for custom loaders is to setup ocs_live_run="/lib/live/mount/medium/MyScript.sh" in the syslinux/syslinux.cfg
Drop MyScript.sh onto the root of the flash drive.
Drop your image into a directory named Image on the root of the flash drive.
Your script should bind mount the image directory, and then run clonezilla (snippet from one of my auto-load scripts):
# mount the image where Clonezilla wants to find it
mount --bind /lib/live/mount/medium/Image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk L06_05-A.14.14-img sda
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
add a comment |
The way I do it for custom loaders is to setup ocs_live_run="/lib/live/mount/medium/MyScript.sh" in the syslinux/syslinux.cfg
Drop MyScript.sh onto the root of the flash drive.
Drop your image into a directory named Image on the root of the flash drive.
Your script should bind mount the image directory, and then run clonezilla (snippet from one of my auto-load scripts):
# mount the image where Clonezilla wants to find it
mount --bind /lib/live/mount/medium/Image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk L06_05-A.14.14-img sda
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
The way I do it for custom loaders is to setup ocs_live_run="/lib/live/mount/medium/MyScript.sh" in the syslinux/syslinux.cfg
Drop MyScript.sh onto the root of the flash drive.
Drop your image into a directory named Image on the root of the flash drive.
Your script should bind mount the image directory, and then run clonezilla (snippet from one of my auto-load scripts):
# mount the image where Clonezilla wants to find it
mount --bind /lib/live/mount/medium/Image /home/partimag/
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Mount failed! Image missing?"
exit 2
fi
# now actually do the restore.
# -p true - exit with success
# -g auto - grub install in the right place
# -e* <whatever> - geometry
# -r – resize when restore done
# -j2 – clone hidden data
# -c – wait for confirm
# -p true – just exit
# -src – skip image check on restore
ocs-sr -g auto -e1 auto -e2 -r -j2 -c -p true -scr restoredisk L06_05-A.14.14-img sda
RET=$?
if [ ${RET} -ne 0 ]
then
echo "FAILURE: Imaging failed! Bad image? Bad drive?"
exit 1
fi
answered Dec 10 '18 at 15:44
Michael KohneMichael Kohne
1,98111327
1,98111327
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
add a comment |
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
from command line mount --bind above works. Scripts added to my questions above taken from yours - all looks ok to me but saying there's a problem with the last fi - personally I cant see whats wrong, but it wouldn't install the disk image.
– David Shields
Dec 10 '18 at 16:22
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
Ok Michael, it's all pretty much working now. The only issue remaining is how to change some of the messaging while it is in progress: I would like to change "The jobs in /etc/ocs/ocs-live.d/ are finished" to "Please wait until reboot and don't press anything"! Any idea where such messages are kept? Or shall I unsquash the filesystem and find the script ?
– David Shields
Dec 11 '18 at 10:32
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
@DavidShields - That I don't know. I never changed any of the messages, I just added a 'success' message at the end of the script. Anyone using it knows to wait for the success.
– Michael Kohne
Dec 11 '18 at 12:39
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
Need to unsquash the filesystem on stick, and change usr/sbin/ocs-live-run-menu, then resquash and put on stick. Not too hard.
– David Shields
Dec 12 '18 at 10:48
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f943666%2fclonezilla-from-single-usb-stick-pen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
the only other advice I can give is to run the clonezilla restore manually (in beginner mode), and grab the command line that clonezilla stores for you just to be sure you don't have a wrong parameter.
– Michael Kohne
Dec 10 '18 at 16:32
Yeah, the problem there is that I cannot see how to run it manually while also seeing the bound mount on to /home/partimag. I suppose I could fudge it and the go to command prompt to adjust.
– David Shields
Dec 11 '18 at 7:56