Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 466 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 466 Bytes

NTFS-Driver-Not-Mount

Fix mounting NTFS drives asking for root password in Arch linux

Also install ntfs-3g if u haven't already using

sudo pacman -S ntfs-3g

open terminal and Create the following file as root: (editor vim/nano)

sudo  nvim /etc/polkit-1/rules.d/49-nopasswd_global.rules

$paste these in that file

polkit.addRule(function(action, subject) {
    if (subject.isInGroup("wheel")) {
        return polkit.Result.YES;
    }
});