How do I change ownership for a hard disk?

Open a terminal in fullscreen. Run lsblk to find out where the partition is mounted in the filesystem.
Run: sudo chown $USER:$USER /path/to/mountpoint. Replace /path/to/mountpoint with the real one.

3 Likes