Day 7 Task: Understanding package manager and systemctl
#devops#linux
Apr 2, 20232 min read41

Search for a command to run...
Articles tagged with #linux-for-beginners
#devops#linux

#devops Three types of Linux Permission classes User group other Default permission is -rw-rw-r chmod 777 file.txt chmod 640 file.txt for the user can get access from the file called sudoers file cat /etc/sudoers root ALL = (ALL:ALL) ALL (ALL...

#devops To add a user to the Linux system: useradd devops setting user password: passwd devops If we want to add a user by making a directory use the -m flag sudo useradd devops -m -d dirSet the user’s home directory to be dir.-s shellSet the ...
