I'm starting to learn more about the mac os x internals. Now i want to load and unload some kernel extensions.
I startet to load the MS-DOS file system via
sudo kextload /System/Library/Extensions/msdosfs.kext
I can check this by typing
kextstat | grep msdos
The command output shows the loaded kext-file. But when i want to unload the MS-DOS file system:
sudo kextunload com.apple.filesystems.msdosfs
I get only this message:
Can't create com.apple.filesystems.msdosfs.
What is wrong with the kextunload - line above?