MUKESH KUMAR MAHTOmytrack.hashnode.dev·Nov 6, 2024🔰 Linux Training - Day 6-Linux User Management & Security 🌟🌟 Yesterday's Wow Moments in Linux User Management & Security 🌟 Diving deeper into Linux fundamentals with user management and security was an incredible experience! Some Wow Moments: 👥 User Management Mastery: Gained control over user creation ...linux usermanagement
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Oct 17, 2024Mastering DevOps: The Top 5 Shell Scripts for Everyday AutomationHere are five essential Linux shell scripts that DevOps engineers often use: Backup Script: Imagine you have many important files and directories you can’t afford to lose. This script helps you automate the backup process. You can set it up to run ...Top5script
Aditya Gadhaveadityag7678.hashnode.dev·Sep 29, 2024Essential Linux Commands for User and File ManagementLinux is a fantastic platform that allows multi-user access options. Different users can access the same Linux OS for working simultaneously. A user account allows multiple people to access directories, terminals, the Internet, etc. There are three t...Linux
Saurabh Namdeodevopswithsaurabh.hashnode.dev·Aug 17, 2024🖥️ Creating a New Linux User with Bash as Default Shell 🎯Here’s a blog post draft on how to create a user in Linux and ensure they are added to the Bash shell instead of the default sh: Welcome back! Today, we're tackling a common scenario you might encounter when adding new users to a Linux system. By de...Linux
Muhammad Irfanirfanmustafvi.hashnode.dev·Aug 5, 2024Mastering Linux User Management | DevOps Bootcamp1. Introduction of Session This session was part of the Linux & DevOps Bootcamp, a comprehensive training program designed to equip participants with essential skills in Linux and DevOps. The tutorial was delivered by @BabarZahoor, an expert in the f...linux-basics
Michael Udofiaudofiamichael.hashnode.dev·Jul 2, 2024How to Automate User Creation on a Linux Server Using Bash ScriptsThe role of a systems operation (SysOps) engineer can sometimes become intimidating and dificult to deal with. One of the common tasks you'll encounter is managing user accounts, groups, and passwords on Linux servers. This includes creating users, a...bash script
Raj Kumar Beherarajkumarbehera.hashnode.dev·Jun 17, 2024Simplified Linux User Management for Beginners :Managing users and groups in Linux is essential for maintaining system security and organization. In this blog, we'll explore three fundamental commands used in Linux user management: adduser, usermod, and groupadd. We'll explain each concept in simp...Linux Basics To AdvanceLinux
Faysal Ahammedfahammed.hashnode.dev·Mar 1, 2024Taming Your Linux Jungle: A Beginner's Guide to User Management, File Permissions, and Environment MasteryEnvironment Variables প্রোগ্রামিং ল্যাঙ্গুয়েজে আমরা ডেটা সংরক্ষণ এবং পুনায় ব্যবহার করা সহ আরো বিভিন্ন কাজের জন্য বিভিন্ন ধরনের ভ্যারিয়েবল ব্যবহার করা থাকি। ঠিক তেমনি কোনো অপারেটিং সিস্টেমের মধ্যে বিভিন্ন অ্যাপ্লিকেশনের কনফিগারেশন সেটিং সমূহকে সংরক্ষণ...29 readsLinuxlinux file permissions
Umesh Salunkheumeshsalunkhe.hashnode.dev·Feb 22, 2024#Day 4 A Practical Guide to User Management in LinuxBefore diving into practical exercises, it's essential to understand key concepts related to user management: Step 1: Understanding User Management Concepts Users and Groups: Users are individuals who interact with the system, while groups are colle...1 like·54 reads90 Days Of DevOpsTrainWithShubham
Amit Paradamitparad.hashnode.dev·Nov 21, 2023Linux User ManagementTo list out all the users in Linux, use the awk command with -F option. Here, we are accessing a file and printing only the first column with the help of print $1 and awk. awk -F':' '{ print $1}' /etc/passwd 2. Using id command, you can get the ID...linux usermanagement