Unix/Sysadmin: Difference between revisions
From charlesreid1
(Created page with "Useful sysadmin-related tasks.") |
No edit summary |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Useful sysadmin-related tasks. | Useful sysadmin-related tasks. | ||
See also [[Deployment/New Node Checklist]] for some useful scripts and steps. | |||
==Users and Groups== | |||
To add groups: | |||
<pre> | |||
groupadd ssl-certs | |||
</pre> | |||
To add users: | |||
<pre> | |||
useradd git | |||
</pre> | |||
To modify users and add them to a group: | |||
<pre> | |||
usermod -G ssl-certs git | |||
</pre> | |||
==Files and Permissions== | |||
Change group permissions of a file: | |||
<pre> | |||
chgrp GROUP FILE | |||
</pre> | |||
{{Unix}} | |||
[[Category:Deployment]] | |||
Latest revision as of 09:17, 28 October 2017
Useful sysadmin-related tasks.
See also Deployment/New Node Checklist for some useful scripts and steps.
Users and Groups
To add groups:
groupadd ssl-certs
To add users:
useradd git
To modify users and add them to a group:
usermod -G ssl-certs git
Files and Permissions
Change group permissions of a file:
chgrp GROUP FILE
| GNU/Linux/Unix the concrete that makes the foundations of the internet.
Compiling Software · Upgrading Software Category:Build Tools · Make · Cmake · Gdb Bash Bash · Bash/Quick (Quick Reference) · Bash Math Text Editors Text Manipulation Command Line Utilities Aptitude · Diff · Make · Patch · Subversion · Xargs Security SSH (Secure Shell) · Gpg (Gnu Privacy Guard) · Category:Security Networking Linux/SSH · Linux/Networking · Linux/File Server Web Servers
|