|
I would like to create a AnduinOS Live USB stick that has persistent storage. I've done some searching online, but most answers require running Windows software (like Rufus). I've looked at mkusb, but that program is not documented well and I find it a bit confusing. Is there an easy way, using Linux, to make an AnduinOS Live USB that has persistence ? |
Replies: 2 comments 7 replies
|
You don't need Rufus or mkusb — AnduinOS has persistence built in. It's called AnduinOS ToGo, and it's been in the ISO since 1.4, so 2.0.2 has it. Two steps:
Use 32GB or more if you plan to install toolchains — the persistent area shares the stick with the ISO itself. After first boot, Full docs: https://docs.anduinos.com/Install/Burn-AnduinOS-ToGo.html |
|
Now I'm seeing something else, which is confusing me... I made the USB on my desktop PC and booted it. I customized it and installed clamav. I rebooted the USB stick a few times and everything was fine. Then I plugged the USB stick into my Dell laptop and booted the USB. My Arcmenu is at the bottom CENTER of the desktop. The menu doesn't have my customization either. I tried booting a couple of times in case I mistyped on the grub menu, but there was no difference. When I plug the USB stick back into my desktop and booted the USB, my Acrmenu is at the bottom LEFT of the desktop., where I set it and my customizations are exactly how I expected them to be. I need to dig a bit more on my laptop to see what exactly is and isn't there. |
You don't need Rufus or mkusb — AnduinOS has persistence built in. It's called AnduinOS ToGo, and it's been in the ISO since 1.4, so 2.0.2 has it.
Two steps:
dd(e.g.sudo dd if=AnduinOS-2.0.2.iso of=/dev/sdX bs=4M status=progress oflag=sync— double-check/dev/sdXwithlsblkfirst). This is the part that matters: you must usedd. Copying the ISO contents as files, or using a tool in "ISO mode", won't create the partition layout the overlay needs.Use 32GB or more if …