Your issue relates to permissions.
You will need to change owner by doing
sudo chown youruser -R /path/to/files
@asifMojtoba
EDIT October 12, 2018 8:16 AM
The next command gives you and everyone else full access to the complete path - everyone includes IRS, NSA, FBI, KGB, GRU and a couple of other services I don't know. I should mention that China and North Korea are very active ATM
chmod 0777 -R /path/to/files
@asifMojtoba
What filesystem in use on the disk?
sudo fdisk -l /dev/sdX
Replace X with the the relevant letter eg. a for the first disk - b for the second
If your disk is used for dualboot - and you have not shutdown Windows properly or fastboot is enabled then you cannot modify files on an ntfs filesystem
@asifMojtoba
sudo fdisk -l /dev/sda
@asifMojtoba
If a disk whether internal nor external is not mounted via fstab the disk is mounted on /run/media/user/disknameorid.
@asifMojtoba
What is the output of
sudo fdisk -l /dev/sda
@asifMojtoba
Try mounting the device on a folder in your home.
mkdir -p ~/hd-movies
mkdir -p ~/hd-series
sudo mount /dev/sda1 ~/hd-series
sudo mount /dev/sda2 ~/hd-movies
This also answers what filesystem is used - NTFS.
Unmount with
sudo umount /dev/sda1
sudo umount /dev/sda2
Then try mounting again - but I fear the same result.
@asifMojtoba
https://wiki.archlinux.org/index.php/NTFS-3G#Troubleshooting
Troubleshooting
Damaged NTFS filesystems
If an NTFS filesystem has errors on it, NTFS-3G will mount it as read-only. To fix an NTFS filesystem, load Windows and run its disk checking program, chkdsk. Take in account that ntfsfix can only repair some errors. If it fails, chkdsk will probably succeed.
Since you probably dualboot - reboot into Windows and use windows tools to fix errors, disable fastboot and shutdown clean.
@asifMojtoba
If you cannot boot into Windows you can copy the files from sda1 to your other drive. Then use a partitioning tool to delete the partition and recreate it, format it and copy your files back.