2
shubbh@Tuxedo:/media/shubbh/New Volume$ sudo rm resume.pdf abc.pdf
rm: cannot remove 'resume.pdf': Read-only file system
rm: cannot remove 'abc.pdf': No such file or directory
shubbh@Tuxedo:/media/shubbh/New Volume$ sudo mv resume.pdf Songs
mv: cannot move 'resume.pdf' to 'Songs/resume.pdf': Read-only file system
shubbh@Tuxedo:/media/shubbh/New Volume$ sudo mkdir a
mkdir: cannot create directory ‘a’: Read-only file system
Zanna
  • 72,312
Shrey
  • 21

1 Answers1

1

Try this:

Open a terminal,

Press Ctrl+Alt+T

Run it:

exec sudo -i
fdisk -l

fdisk report as they are called partitions mounted in the system.

Suppose /media/shubbh/New Volume is /dev/sdc1

Continue running

umount /media/shubbh/New\ Volume
fsck -y /dev/sdc1
mkdir /media/shubbh/New\ Volume
chmod -Rf 777 /media/shubbh/New\ Volume
mount /dev/sdc1 /media/shubbh/New\ Volume
exit

And try to rename a file, delete, create a new folder, cut, paste in a volume neither by terminal

kyodake
  • 17,808