How to make an already live Ubuntu pen-drive, a persistent one?
I have created a USB flash drive with the latest Ubuntu version, but it is not persistent.
How can I make it persistent without repeating the whole process?
live-usb system-installation persistent
add a comment |
I have created a USB flash drive with the latest Ubuntu version, but it is not persistent.
How can I make it persistent without repeating the whole process?
live-usb system-installation persistent
add a comment |
I have created a USB flash drive with the latest Ubuntu version, but it is not persistent.
How can I make it persistent without repeating the whole process?
live-usb system-installation persistent
I have created a USB flash drive with the latest Ubuntu version, but it is not persistent.
How can I make it persistent without repeating the whole process?
live-usb system-installation persistent
live-usb system-installation persistent
edited Apr 28 '14 at 8:46
terdon♦
66k12138221
66k12138221
asked May 6 '13 at 20:28
MrGMrG
5114
5114
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
As shown in this guide, you can reduce size of FAT32 partition on your flash drive then make ext4 partition labeled casper-rw
and it will be treaten as persistence file. If Gparted fails to reduce the size of FAT32 partition, you can do it in Windows program EaseUS Partition Master.
It seems to me that you can also create file named casper-rw
and create ext filesystem in it with mke2fs -t extX /path/to/casper-rw
so it will be persistence file too.
Also, you need to change isolinux/txt.cfg
adding word persistent
to boot options like this:
default live
label live
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label live-install
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label check
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append boot=casper integrity-check cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label memtest
menu label Test ^memory
kernel /install/mt86plus
label hd
menu label ^Boot from first hard disk
localboot 0x80
add a comment |
2017
Persistent partitions have not worked in syslinux Live Ubuntu systems since 14.04. This includes SDC, UNetbootin, Rufus etc.
If you really want to make an existing install persistent, you can build a casper-rw file in Windows and add it to the root of your flash drive, see https://www.pendrivelinux.com/casper-rw-creator-make-a-persistent-file-from-windows/
The casper-rw file will be limited to 4GB and only works on a FAT32 partition.
If you want the boot to be persistent press Shift, select language, press F6, hit Enter and type persistent
, (For UNetbootin press Tab then F6)
if you want every session to be persistent, modify isolinux/txt.cfg as Danatela shows above (or for UNetbootin install modify syslinux.cfg the same way).
Probably easier to re-make the persistent drive using mkusb, it makes persistent partitions automatically.
add a comment |
Changing Live Pendrive to Persistent Pendrive
That works with both BIOS and UEFI
Many people prefer a Persistent pendrive that will save changes.
Create a Live pendrive using Rufus or similar.
Boot the pendrive toram to make the drive editable, (press shift when booting, press Esc from language, press F6, press Esc, type {space}toram after "quiet splash ---", and press Enter.
Create a casper-rw file:
sudo dd if=/dev/zero of=casper-rw bs=1M count=512
sudo mkfs.ext3 -L casper-rw -F casper-rw
(where count=512 is persistence size, with max 4GB).
Move the new casper-rw file from home to the root of the Live Pendrive.
Edit /isolinux/txt.cfg, (for BIOS boot persistence) and /boot/grub/grub.cfg, (for UEFI boot persistence), add a space and the word "persistent" after "quiet splash ---".
Shut down and reboot the persistent drive.
add a comment |
I am not aware of any way to do this. You would have to just reformat the usb, and reinstall the os back on to it with persistence enabled. I use Pendrivelinux to install a live os onto a pendrive with persistence. It should be relatively easy to do. Hope that works.
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f291696%2fhow-to-make-an-already-live-ubuntu-pen-drive-a-persistent-one%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
As shown in this guide, you can reduce size of FAT32 partition on your flash drive then make ext4 partition labeled casper-rw
and it will be treaten as persistence file. If Gparted fails to reduce the size of FAT32 partition, you can do it in Windows program EaseUS Partition Master.
It seems to me that you can also create file named casper-rw
and create ext filesystem in it with mke2fs -t extX /path/to/casper-rw
so it will be persistence file too.
Also, you need to change isolinux/txt.cfg
adding word persistent
to boot options like this:
default live
label live
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label live-install
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label check
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append boot=casper integrity-check cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label memtest
menu label Test ^memory
kernel /install/mt86plus
label hd
menu label ^Boot from first hard disk
localboot 0x80
add a comment |
As shown in this guide, you can reduce size of FAT32 partition on your flash drive then make ext4 partition labeled casper-rw
and it will be treaten as persistence file. If Gparted fails to reduce the size of FAT32 partition, you can do it in Windows program EaseUS Partition Master.
It seems to me that you can also create file named casper-rw
and create ext filesystem in it with mke2fs -t extX /path/to/casper-rw
so it will be persistence file too.
Also, you need to change isolinux/txt.cfg
adding word persistent
to boot options like this:
default live
label live
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label live-install
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label check
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append boot=casper integrity-check cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label memtest
menu label Test ^memory
kernel /install/mt86plus
label hd
menu label ^Boot from first hard disk
localboot 0x80
add a comment |
As shown in this guide, you can reduce size of FAT32 partition on your flash drive then make ext4 partition labeled casper-rw
and it will be treaten as persistence file. If Gparted fails to reduce the size of FAT32 partition, you can do it in Windows program EaseUS Partition Master.
It seems to me that you can also create file named casper-rw
and create ext filesystem in it with mke2fs -t extX /path/to/casper-rw
so it will be persistence file too.
Also, you need to change isolinux/txt.cfg
adding word persistent
to boot options like this:
default live
label live
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label live-install
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label check
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append boot=casper integrity-check cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label memtest
menu label Test ^memory
kernel /install/mt86plus
label hd
menu label ^Boot from first hard disk
localboot 0x80
As shown in this guide, you can reduce size of FAT32 partition on your flash drive then make ext4 partition labeled casper-rw
and it will be treaten as persistence file. If Gparted fails to reduce the size of FAT32 partition, you can do it in Windows program EaseUS Partition Master.
It seems to me that you can also create file named casper-rw
and create ext filesystem in it with mke2fs -t extX /path/to/casper-rw
so it will be persistence file too.
Also, you need to change isolinux/txt.cfg
adding word persistent
to boot options like this:
default live
label live
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label live-install
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label check
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append boot=casper integrity-check cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash --
label memtest
menu label Test ^memory
kernel /install/mt86plus
label hd
menu label ^Boot from first hard disk
localboot 0x80
edited Apr 29 '14 at 7:37
answered Apr 29 '14 at 3:27
DanatelaDanatela
9,30493263
9,30493263
add a comment |
add a comment |
2017
Persistent partitions have not worked in syslinux Live Ubuntu systems since 14.04. This includes SDC, UNetbootin, Rufus etc.
If you really want to make an existing install persistent, you can build a casper-rw file in Windows and add it to the root of your flash drive, see https://www.pendrivelinux.com/casper-rw-creator-make-a-persistent-file-from-windows/
The casper-rw file will be limited to 4GB and only works on a FAT32 partition.
If you want the boot to be persistent press Shift, select language, press F6, hit Enter and type persistent
, (For UNetbootin press Tab then F6)
if you want every session to be persistent, modify isolinux/txt.cfg as Danatela shows above (or for UNetbootin install modify syslinux.cfg the same way).
Probably easier to re-make the persistent drive using mkusb, it makes persistent partitions automatically.
add a comment |
2017
Persistent partitions have not worked in syslinux Live Ubuntu systems since 14.04. This includes SDC, UNetbootin, Rufus etc.
If you really want to make an existing install persistent, you can build a casper-rw file in Windows and add it to the root of your flash drive, see https://www.pendrivelinux.com/casper-rw-creator-make-a-persistent-file-from-windows/
The casper-rw file will be limited to 4GB and only works on a FAT32 partition.
If you want the boot to be persistent press Shift, select language, press F6, hit Enter and type persistent
, (For UNetbootin press Tab then F6)
if you want every session to be persistent, modify isolinux/txt.cfg as Danatela shows above (or for UNetbootin install modify syslinux.cfg the same way).
Probably easier to re-make the persistent drive using mkusb, it makes persistent partitions automatically.
add a comment |
2017
Persistent partitions have not worked in syslinux Live Ubuntu systems since 14.04. This includes SDC, UNetbootin, Rufus etc.
If you really want to make an existing install persistent, you can build a casper-rw file in Windows and add it to the root of your flash drive, see https://www.pendrivelinux.com/casper-rw-creator-make-a-persistent-file-from-windows/
The casper-rw file will be limited to 4GB and only works on a FAT32 partition.
If you want the boot to be persistent press Shift, select language, press F6, hit Enter and type persistent
, (For UNetbootin press Tab then F6)
if you want every session to be persistent, modify isolinux/txt.cfg as Danatela shows above (or for UNetbootin install modify syslinux.cfg the same way).
Probably easier to re-make the persistent drive using mkusb, it makes persistent partitions automatically.
2017
Persistent partitions have not worked in syslinux Live Ubuntu systems since 14.04. This includes SDC, UNetbootin, Rufus etc.
If you really want to make an existing install persistent, you can build a casper-rw file in Windows and add it to the root of your flash drive, see https://www.pendrivelinux.com/casper-rw-creator-make-a-persistent-file-from-windows/
The casper-rw file will be limited to 4GB and only works on a FAT32 partition.
If you want the boot to be persistent press Shift, select language, press F6, hit Enter and type persistent
, (For UNetbootin press Tab then F6)
if you want every session to be persistent, modify isolinux/txt.cfg as Danatela shows above (or for UNetbootin install modify syslinux.cfg the same way).
Probably easier to re-make the persistent drive using mkusb, it makes persistent partitions automatically.
edited Feb 26 '17 at 2:59
answered Feb 24 '17 at 9:36
C.S.CameronC.S.Cameron
4,50911028
4,50911028
add a comment |
add a comment |
Changing Live Pendrive to Persistent Pendrive
That works with both BIOS and UEFI
Many people prefer a Persistent pendrive that will save changes.
Create a Live pendrive using Rufus or similar.
Boot the pendrive toram to make the drive editable, (press shift when booting, press Esc from language, press F6, press Esc, type {space}toram after "quiet splash ---", and press Enter.
Create a casper-rw file:
sudo dd if=/dev/zero of=casper-rw bs=1M count=512
sudo mkfs.ext3 -L casper-rw -F casper-rw
(where count=512 is persistence size, with max 4GB).
Move the new casper-rw file from home to the root of the Live Pendrive.
Edit /isolinux/txt.cfg, (for BIOS boot persistence) and /boot/grub/grub.cfg, (for UEFI boot persistence), add a space and the word "persistent" after "quiet splash ---".
Shut down and reboot the persistent drive.
add a comment |
Changing Live Pendrive to Persistent Pendrive
That works with both BIOS and UEFI
Many people prefer a Persistent pendrive that will save changes.
Create a Live pendrive using Rufus or similar.
Boot the pendrive toram to make the drive editable, (press shift when booting, press Esc from language, press F6, press Esc, type {space}toram after "quiet splash ---", and press Enter.
Create a casper-rw file:
sudo dd if=/dev/zero of=casper-rw bs=1M count=512
sudo mkfs.ext3 -L casper-rw -F casper-rw
(where count=512 is persistence size, with max 4GB).
Move the new casper-rw file from home to the root of the Live Pendrive.
Edit /isolinux/txt.cfg, (for BIOS boot persistence) and /boot/grub/grub.cfg, (for UEFI boot persistence), add a space and the word "persistent" after "quiet splash ---".
Shut down and reboot the persistent drive.
add a comment |
Changing Live Pendrive to Persistent Pendrive
That works with both BIOS and UEFI
Many people prefer a Persistent pendrive that will save changes.
Create a Live pendrive using Rufus or similar.
Boot the pendrive toram to make the drive editable, (press shift when booting, press Esc from language, press F6, press Esc, type {space}toram after "quiet splash ---", and press Enter.
Create a casper-rw file:
sudo dd if=/dev/zero of=casper-rw bs=1M count=512
sudo mkfs.ext3 -L casper-rw -F casper-rw
(where count=512 is persistence size, with max 4GB).
Move the new casper-rw file from home to the root of the Live Pendrive.
Edit /isolinux/txt.cfg, (for BIOS boot persistence) and /boot/grub/grub.cfg, (for UEFI boot persistence), add a space and the word "persistent" after "quiet splash ---".
Shut down and reboot the persistent drive.
Changing Live Pendrive to Persistent Pendrive
That works with both BIOS and UEFI
Many people prefer a Persistent pendrive that will save changes.
Create a Live pendrive using Rufus or similar.
Boot the pendrive toram to make the drive editable, (press shift when booting, press Esc from language, press F6, press Esc, type {space}toram after "quiet splash ---", and press Enter.
Create a casper-rw file:
sudo dd if=/dev/zero of=casper-rw bs=1M count=512
sudo mkfs.ext3 -L casper-rw -F casper-rw
(where count=512 is persistence size, with max 4GB).
Move the new casper-rw file from home to the root of the Live Pendrive.
Edit /isolinux/txt.cfg, (for BIOS boot persistence) and /boot/grub/grub.cfg, (for UEFI boot persistence), add a space and the word "persistent" after "quiet splash ---".
Shut down and reboot the persistent drive.
answered 10 mins ago
C.S.CameronC.S.Cameron
4,50911028
4,50911028
add a comment |
add a comment |
I am not aware of any way to do this. You would have to just reformat the usb, and reinstall the os back on to it with persistence enabled. I use Pendrivelinux to install a live os onto a pendrive with persistence. It should be relatively easy to do. Hope that works.
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
add a comment |
I am not aware of any way to do this. You would have to just reformat the usb, and reinstall the os back on to it with persistence enabled. I use Pendrivelinux to install a live os onto a pendrive with persistence. It should be relatively easy to do. Hope that works.
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
add a comment |
I am not aware of any way to do this. You would have to just reformat the usb, and reinstall the os back on to it with persistence enabled. I use Pendrivelinux to install a live os onto a pendrive with persistence. It should be relatively easy to do. Hope that works.
I am not aware of any way to do this. You would have to just reformat the usb, and reinstall the os back on to it with persistence enabled. I use Pendrivelinux to install a live os onto a pendrive with persistence. It should be relatively easy to do. Hope that works.
answered May 6 '13 at 21:11
HelpingHandHelpingHand
1023
1023
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
add a comment |
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
Yes I have used Pendrivelinux before but from PC, it does not seem to have an app for MAC OS... I am still looking for options.
– MrG
Jun 12 '13 at 0:38
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
The Pendrivelinux approach is only to be run from Windows not from MAC.
– MrG
Jun 12 '13 at 5:52
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I can make a bootable USB using the following approach: sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m. But this is not persistent. Is there a way to make it persistent with this method?
– MrG
Jun 12 '13 at 5:53
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
I am not really familiar with MAC since I do not own one (but might soon). I'm sorry, but you have reached the end of my knowledge about what you are trying to do. Note: YOU MAY WANT TO ATTEMPT TO PUT TAGS TO YOUR QUESTION THAT HAVE MORE FOLLOWERS. Tags such as 'persistent' have only one follower, and may not be noticed as quickly. Try doing that, and you should find the answer you are looking for. Good luck to ya.
– HelpingHand
Jun 12 '13 at 15:33
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f291696%2fhow-to-make-an-already-live-ubuntu-pen-drive-a-persistent-one%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