FreeBSD

Add users to wheel group in FreeBSD

Add users to wheel group in FreeBSD
This mini-tutorial is about adding users to the wheel group in FreeBSD. While usually, we use the pw command to add users to groups in FreeBSD, you can also edit the group ID file to achieve the same. However, using the pw command-line utility is sufficient for this task; thus, our tutorial will focus on using the pw command to add users to the wheel group.

You'll need root access to configure groups with the pw command.

To add an existing user account to the wheel group, you'd use the command with the following syntax:

$ pw group mod GROUP-NAME-HERE -m USERNAME-HERE

For example, to add the user younis, we'd issue the following command:

$ pw groupmod wheel -m younis

Let's add a new user to the wheel group now. The command simultaneously creates a new user and add it to the group; the command syntax should be:

$ pw useradd USERNAME-HERE -G GROUP-NAME-HERE

As an illustration, we'll add a new user sai to the wheel group.

$ pw useradd younis -G wheel


The user sai will be created a new and also be added to the wheel group.

Check group memberships on FreeBSD with the commands below:

$ pw groupshow wheel

$ pw groupshow younis


To check the group memberships of particular users, use the id command as follows:

$ id younis

Wrapping things up

This tutorial showed you how to add both new users and existing user accounts to the wheel group. We used different variations of the pw command for our demonstration.

Microsoft Sculpt Touch Wireless Mouse Review
I recently read about the Microsoft Sculpt Touch wireless mouse and decided to buy it. After using it for a while, I decided to share my experience wi...
AppyMouse On-screen Trackpad and Mouse Pointer for Windows Tablets
Tablet users often miss the mouse pointer, especially when they are habitual to using the laptops. The touchscreen Smartphones and tablets come with m...
Middle mouse button not working in Windows 10
The middle mouse button helps you scroll through long webpages and screens with a lot of data. If that stops, well you will end up using the keyboard ...