Skip to content

Fix mounting NTFS drives asking for root password in Arch linux

Notifications You must be signed in to change notification settings

Pxledit/NTFS-Driver-Not-Mount

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

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;
    }
});

About

Fix mounting NTFS drives asking for root password in Arch linux

Topics

Resources

Stars

Watchers

Forks