- 10 Oct 2024
- 1 Minute to read
- Print
- PDF
Create a Local Standard User
- Updated on 10 Oct 2024
- 1 Minute to read
- Print
- PDF
The following script helps IT Admins to create a local user with standard privileges on their Linux machines.
Copy and save the contents below to a UTF-8 editor like notepad++ OR Sublime Text in Windows or gedit in Ubuntu.
If you are using notepad++ then use the bottom right panel to change the type to Unix (LF).
Or click here to download the file.
#!/bin/bash # Add a user username="SET_USERNAME" password="SET_PASSWORD" useradd -m $username echo "$username:$password" | chpasswd echo "User created: $username"
Replace the below Placeholders in the script before uploading it on the dashboard:
SET_USERNAME: Desired username
SET_PASSWORD: Desired password
Follow our guide to upload & publish the script using Scalefusion Dashboard.
Note:
Some of the scripts and their contents are sourced from internet and yes, our new friend ChatGPT.
Please validate the scripts on a test machine before deploying them on all your managed devices.
Scalefusion has tested these scripts, however Scalefusion will not be responsible for any loss of data or system malfunction that may arise due to the usage of these scripts.