Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

Linux User Management: Working with Secondary Groups

Often, Linux users require membership to multiple groups to gain the access required on the system. In this lab exercise, we will create two new groups, and create three users with access to both groups. We will then create two directories and files within them to ensure all users have read/write access to both directories.

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Beginner
Duration
Clock icon 30m
Published
Clock icon Jan 31, 2020

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Create the appadm Group with GID 30000 and the dba Group with GID 40000

    # groupadd -g 30000 appadm
    # groupadd -g 40000 dba
    
  2. Challenge

    Create Users user1, user2, and user3 with a Primary Group of appadm and a Secondary Group of dba

    # useradd -g appadm -G dba user1
    # useradd -g appadm -G dba user2
    # useradd -g appadm -G dba user3
    
  3. Challenge

    Create the /app Directory and Give the appadm Group Read/Write Access, Then Create the /db Directory and Give the dba Group Read/Write Access

    # mkdir /app
    # chgrp app/adm /app
    # chmod 760 /app
    # mkdir /db
    # chgrp dba /db
    # chmod 760 /db
    
  4. Challenge

    Create the File /app/adm/app1.conf Containing the Comment “This file is reserved for application configuration.” and Grant the appadm Group Read/Write Permission to the File

    # echo “This file is reserved for application configuration.” > /app/app1.conf
    # chgrp appadm /app/app1.conf
    # chmod 760 /app/app1.conf
    
  5. Challenge

    Create a File Named /db/db1.conf Containing the Comment, "This file is reserved for database configuration." Grant the dba Group Read/Write Access to the File

    # echo "This file is reserved for database configuration." > /db/db1.conf
    # chgrp dba /db/db1.conf
    # chmod 760 /db/db1.conf
    

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

What's a lab?

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Provided environment for hands-on practice

We will provide the credentials and environment necessary for you to practice right within your browser.

Guided walkthrough

Follow along with the author’s guided walkthrough and build something new in your provided environment!

Did you know?

On average, you retain 75% more of your learning if you get time for practice.

Start learning by doing today

View Plans