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
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
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.