Posted On April 1, 2019

Add or Remove a User / Users in CentOS / Redhat Linux

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Add or Remove a User / Users in CentOS / Redhat Linux
sudo adduser username

sudo passwd username

sudo gpasswd -a username wheel



#Check wheel group

sudo lid -g wheel

#Delete user:

userdel username
#Delete user and home folder

userdel -r username

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Installing IBM VPN Client

On a Linux Machine # Install VPN Client shellScript=https://support.arraynetworks.net/prx/001/http/supportportal.arraynetworks.net/downloads/pkg_9_4_0_385/MP_Linux_1.2.9/MotionPro_Linux_Ubuntu_x64_build-8.sh cd Desktop wget $shellScript sudo ./MotionPro_Linux_Ubuntu_x64_build-8.sh…

HAProxy with Multiple SSL Certs

Method 1: --------- defaults   log 127.0.0.1 local0   option tcplog   frontend ft_test   mode http   bind…

Ubuntu 18.04: Network Configuration Utility

Prior to version 18.04, network configurations have been via these commands: sudo vim /etc/network/interfaces sudo…