0

I like burn my ubuntu iso on pendrive, and after that modifiy some folder or file but the file system is readonly. There is some tools like rufus for linux that not make filesystem read-only?

thanks

Cizu
  • 3
  • 1
  • Modify the ISO before you put it on the USB: https://help.ubuntu.com/community/InstallCDCustomization – Terrance Jan 22 '21 at 17:07
  • Does this answer your question? [How to customize the Ubuntu Live CD?](https://askubuntu.com/questions/48535/how-to-customize-the-ubuntu-live-cd). Specifically, [this answer](https://askubuntu.com/a/49679) – Nmath Jan 22 '21 at 17:53

1 Answers1

0

This is called a "persistence" file, since it allows filesystem changes to be 'persistent'. For details on setting it see this How-to Geek article, or the Ubuntu wiki here.

In short, the easiest way will be to use the mkusb software: currently, that is only found in a PPA, so you'll need to do the following commands:

# Ensure the Universe repository is availible
sudo add-apt-repository universe
# Add the PPA
sudo add-apt-repository ppa:mkusb/ppa
sudo apt update
# Install the software
sudo apt install mkusb

That should get you to where you need to be.

Calum McConnell
  • 429
  • 3
  • 6