I am wondering how to make a filesystem as a non-root user, using GNOME 3 (openSUSE Leap 42.3).
~> fallocate -l ### part.bin # Create a sparse file on disk
~> #sudo mkfs -t FSTYPE part.bin # Requires root; how can I do this without root privileges?
I am assuming this is possible because of the implications of an answer regarding accomplishing this formatting in the GUI.
Though sudo
can give root privileges to only certain executables, I am looking for a pure non-root solution, requiring no superuser privileges.
/sbin/mkfs
as non-root. – palswim Mar 12 '18 at 00:21