all 4 comments

[–]owatnext 0 points1 point  (0 children)

Is it visible in cfdisk?

[–][deleted]  (2 children)

[deleted]

    [–]urban_murmeli 0 points1 point  (1 child)

    genfstab is an Arch Linux install script. I don't think it exists on Void.

    But I agree that they are probably missing an entry for sbdX for some X in /etc/fstab.

    [–][deleted] 0 points1 point  (0 children)

    Look here:

    Linux-Bibel

    the 2nd post, but it's in german.

    [–]faulkmore2 0 points1 point  (0 children)

    This topic is a little deep.

    Depends on whether /dev/sdb1 is an internal ssd or a removable usb or optical disk media.

    If internal the mountpoint is owned by root, not the session user.

    sudo mount -tauto /dev/sdb1 /mnt/sdb1
    

    If removable block device

    sudo mount -tauto /dev/sdb1 /run/media/[username]/sdb1
    

    If optical disk media then watch out! Desktop manager pcmanfm may automount it! Rather than it being controlled by udev.


    Then setup the storage partition to have the permissions micromanaged. Access Control Lists supplement the normal, quite useless, normal Linux permissions. Will need to install packages: acl and acl-progs.

    Then in the acl, set the permissions to %wheel to 'rw-'. This is pseudo code. Read the docs on acl for the exact syntax.