I try to create a bootable usb stick. (I have an updated Ubuntu 16.04 LTS) it seems simple enough to do this using Startup Disk Creator.
the usb stick is created and is working as bootable disk BUT now it has no write permissions!!
I had tried to remove the write protection - but nothing worked (chmod, dd, dosfsck, gparted, hdparm, fdisk, df ...)
- How can I create Ubuntu 16 bootable usb stick with write permissions?
- How can I remove the 'read only' from a usb stick?
sudo chown -R user:user path/to/usb
(but you might wanna wait for an answer because i'm not experienced enough in these matters ) and you can edit the question to clarify the situation with as much explanation as you can – Sumeet Deshmukh Apr 25 '17 at 13:03cp file /media/Ubuntu\ 18.04.1\ LTS\ amd64/
I getcp: cannot create regular file ... Read-only file system
andmount
says/dev/sdc1 on /media/Ubuntu 18.04.1 LTS amd64 type iso9660 (ro,nosuid,nodev,relatime,nojoliet,check=s,map=n,blocksize=2048,uid=1000,gid=1000,dmode=555,fmode=444,uhelper=udisks2)
. So I'd need to make the disk read-write - where is this addressed is the links? – sdaau Aug 23 '19 at 08:54