Debian(jessie) : Permission Denied

-2

I have a NTFS partition and I installed Debian(Jessie) I added myself to the sudoer file but I can't perform any operation in NTFS partition. Please suggest me something I installed this debian third time assuming there something I was doing wrong. Please help me solve this issue. error even with root user.

ajaiveersandhu@cypherpunk:~$ sudo su
[sudo] password for ajaiveersandhu: 

root@cypherpunk:/home/ajaiveersandhu# cd /media/ajaiveersandhu/sherLOCKED/

root@cypherpunk:/media/ajaiveersandhu/sherLOCKED# mkdir folderTest
mkdir: cannot create directory ‘folderTest’: Operation not permitted

root@cypherpunk:/media/ajaiveersandhu/sherLOCKED#

AjaiVeer Singh Sandhu

Posted 2017-03-28T17:49:10.343

Reputation: 104

1Look at how your device is mounted (mount command), sounds like it is in read-only. – SYN – 2017-03-28T19:20:00.987

It is read write mounted – AjaiVeer Singh Sandhu – 2017-03-28T20:27:30.637

Answers

0

Just had to install "ntfs-3g" package. Everything is working fine now.

AjaiVeer Singh Sandhu

Posted 2017-03-28T17:49:10.343

Reputation: 104

0

Create a mount point:

mkdir /mnt/ntfs_mnt

Mount your partitions:

mount -t ntfs /dev/sdaX /mnt/ntfs_mnt 
cd /mnt/ntfs_mnt

Replace sdaX with your ntfs partition

GAD3R

Posted 2017-03-28T17:49:10.343

Reputation: 2 677