0

I have a new SSD and used Gparted to format it to the ext3 filesystem - that went smoothly but now I can't access it.

I right click on the drive icon in Nautilus under "Devices" and check the permissions - it says that the owner is root and I don't know how to change that.

Richard
  • 8,502
  • 11
  • 47
  • 72

2 Answers2

1

For doing it graphically, a simple way would be to use this in terminal:

gksudo nautilus

And then modify these to be Read & Write: permissions

Wilf
  • 30,194
  • 17
  • 108
  • 164
1

CLI solution:

sudo chown user:group mountpoint.

So, for example if your drive is mount to /media/foobar is my username is tux, and group is penguins.

sudo chown tux:penguins /media/foobar
csgeek
  • 1,659