Unable to delete *.fs file in Mac OS Catalina

Viewed 1137

I installed Tuxera ntfs a while back and now i am unable to delete one of its files, i wanted to completely uninstall tuxera ntfs so i decided to search tuxera on finder and deleted whatever came along however one file isnt deleting. tuxera_ntfs.fs located at /Library/StagedExtensions/Library/Filesystems/tuxera_ntfs.fs in my mac, i also tried running

rm -rf /Library/StagedExtensions/Library/Filesystems/tuxera_ntfs.fs 

in terminal it also doesnt work Terminal error picture it shows operation not permitted please help, as i encounter such things very often

2 Answers

Although it has been awhile from your question, I faced the same problem today and found this answer to be working: What is /Library/StagedExtensions for and how to remove extensions

Outline: the kernel provides a new way to clear staged extensions with the following command:

sudo kextcache --clear-staging

That will wipe the entire "StagedExtensions" directory and any subdirectories.

Use sudo:

sudo rm -rf /Library/StagedExtensions/Library/Filesystems/tuxera_ntfs.fs
Related