How to remount partition as read only
Here’s a tip on remounting partitions. Usually /boot is mounted as read-write linux filesystem by default installation. If you also feel that your /boot should not be changed, modified or upgraded, you can just remount them as read only partition without booting your linux system.As root:
Go to /boot partition
# cd /boot
Create a dummy file
# touch newfile
# mount -o remount,ro /boot
Try adding and deleting some files now
# touch newfile2
# rm newfile
Error: Read-only file system
Now, your /boot is mounted as read-only filesystem. Make it permanently using /etc/fstab.
Â
Done

How do I reverse this process?
I dont want a read-only file system..