When running su on FreeBSD and you are getting su: Sorry that could mean that the user is not part of the wheel group. To fix this, do:
Reference:
https://graspingtech.com/freebsd-fix-su-sorry-message/
- Login as root, this can be rebooting the machine or open another TTY terminal (Alt+F2 might help).
- Re-mount root filesystem for read/write operation
- Add user to the wheel group. Assume below that u1 is the user that will be added to the group
- Remount root filesystem back to read-only
#: mount -u -w /
#: pw usermod u1 -G wheel
#: mount -u -r /
Reference:
https://graspingtech.com/freebsd-fix-su-sorry-message/
Comments