Skip to player
Skip to main content
Skip to footer
Search
Connect
Watch fullscreen
Like
Bookmark
Share
More
Add to Playlist
Report
How to Create a New User with sudo Permission in Kali Linux?
TechTips
Follow
6 years ago
How to Create a New User with sudo Permission in Kali Linux?
First, Right click on the Desktop, and then click on 'Open in Terminal' to Open Terminal. After that, follow the steps below:-
Step 1: Create a New Normal User by command below:-
useradd -m testuser
#-m creates a home directory for the user.
Step 2: Set password for the user:-
passwd testuser
Step 3: Now, Add user to sudo group (This allows user to install software, use the printer etc.)
usermod -a -G sudo testuser
# -a means add
#-G sudo means to add the user to sudoers group
Step 4: Now, we have to specify the shell for our new user.
chsh -s /bin/bash testuser
# chsh means change login shell
# -s means, it is the name of the shell you want for the user, in this case /bin/bash
It's done
Thanks for watching, please like and subscribe
==============================================
https://www.facebook.com/HowtoTutorialsByAmit/
Category
🤖
Tech
Be the first to comment
Add your comment
Recommended
3:07
|
Up next
How to Change Root Password in Ubuntu 18.04 LTS?
TechTips
6 years ago
4:04
How to Check Ubuntu Version Using Terminal?
TechTips
6 years ago
5:42
How to Reset your Forgotten Password in Ubuntu 18.04 LTS - 2019?
TechTips
6 years ago
3:41
How to Uninstall VirtualBox Guest Additions on Linux Mint 19.1 Cinnamon?
TechTips
6 years ago
4:11
How to Extract a tar.xz File Using Terminal on Ubuntu 18.04 LTS?
TechTips
6 years ago
9:12
Linux Terminal 201: How to Configure Startup Files
Hak5
9 years ago
5:15
How to Create App Shortcut to the Desktop on Ubuntu 18.04 LTS?
TechTips
6 years ago
4:16
How to ATTACH a Video On The New Microsoft Outlook Using a Mac Computer - Basic Tutorial | New
ComputerScienceVideos
6 weeks ago
3:58
How to INSERT an Image Within Your Email on The New Outlook Using a Mac Computer - Basic Tutorial
ComputerScienceVideos
6 weeks ago
2:52
How to FILTER Your Unread Emails on Microsoft Outlook Using a Mac Computer - Basic Tutorial | New
ComputerScienceVideos
3 months ago
1:13
How to Clear Microsoft Edge Browsing History on Exit
Basic InfoTECH
3 years ago
1:21
How to Clear Activity History in Windows 11
Basic InfoTECH
3 years ago
1:28
How to Find your Windows Device ID or Machine ID in Registry Editor
Basic InfoTECH
3 years ago
1:50
How to Enable/Disable Turn Wi-Fi On/Off Automatically on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:08
How to Turn On/Off Wi-Fi Detect Suspicious Networks on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:37
How to Delete/Forget a Saved Wi-Fi Network on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
0:57
How to Enable/Disable Vibrate When Call Ends in Phone App on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:02
How to Turn On/Off Answer Using Speaker on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
0:53
How to Enable/Disable Block Calls From Unknown Numbers on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:16
How to Enable/Disable Call Waiting on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
2:42
Hot to Turn On RAM Plus on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:28
How to Set the Performance Profile to Standard/Light on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:35
How to Enable/Disable Show Charging Information on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:09
How to Turn On/Off Alert When Phone Picked Up on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
1:16
How to Disable/Enable Automatic Time Zone on Samsung Galaxy S24 Ultra?
TechTips
11 months ago
Be the first to comment