Skip to content

Latest commit

 

History

History

os

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

#OS Utils

Note: The scripts in this folder are still under development and may change in the near future.

##Permit Root SSH Login It is highly recommended to disable root access to SSH logins. To do so run:

. permit_root_ssh_login.sh N

##Create User To create a new user run:

./create_user.sh <username> <password> <ssh_key (optional)>

#Ex:
./create_user.sh martin martin "ssh-rsa keyinformation..."
Name Description
username OS username
password Password
ssh_key Public SSH key on your system. Can be used for passwordless login (recommended). The following article explains how to generate your own SSH key: https://help.github.com/articles/generating-ssh-keys/. If using this variable put in quotes to escape any spaces.