first commit

This commit is contained in:
2026-08-04 15:32:57 +06:30
commit be19f89c74
26 changed files with 3669 additions and 0 deletions

29
AccountMgr.md Executable file
View File

@@ -0,0 +1,29 @@
## Install sshd
In order to enable ssh on Ubuntu Linux, we first need to perform an SSH package installation. Open up terminal and enter command:
$ sudo apt install sshd
## Create a user using command line
Let's start by creating a new user. Open up terminal and enter:
$ sudo adduser --no-create-home username
## Create non-login/system user
Let's start by creating a new user. Open up terminal and enter:
$ sudo useradd -r username
## Change default shell
$ grep user /etc/passwd
$ usermod --shell /bin/bash user
$ grep user /etc/passwd
## Adding User to the sudo Group
$ usermod -aG sudo username