Vanshika Sharmavanshikasharmaa.hashnode.dev·Oct 5, 2024Advanced Linux Shell Scripting for DevOps Engineers with user management, file permissions, and access control lists.The script uses a loop to dynamically create directories with the given name prefix followed by numbers in the specified range. Script: createDirectories.sh #!/bin/bash # Check if the correct number of arguments are provided if [ $# -ne 3 ]; then ...Discussadvanced linux shell
Rhythm Mishrarhythmblogs-1708279784605.hashnode.dev·Oct 2, 2024📜Day 6: File Permissions🔒 and Access Control Lists📚📰Today is more on Reading, Learning and Implementing File permissions File Permissions and Ownership in Linux In the Linux operating system, understanding file permissions and ownership is crucial for managing and securing your files and directories. ...Discuss·1 likeDevops
Dinesh Kumar Kblog.dineshcloud.in·Sep 19, 2024Linux - File PermissionsLinux file permissions play a crucial role in maintaining the security and integrity of the operating system. Understanding how to manage file permissions allows you to control access to files and directories, ensuring only authorized users can read,...DiscussLinuxLinux
Prem Choudharyprem14choudhary.hashnode.dev·Sep 16, 2024How to transfer file from local system to AWS EC2...?We cannot able to connect local system to AWS EC2 instance just because our key is visible, we just have to change the permission mode of that key. Here the solution: Open your terminal. Connect your bastion server with local system by ssh command....Discussec2
Bilalbilalansari.hashnode.dev·Sep 8, 2024File PermissionUsing this file permission pcncept, you can do certain tasks:- a)chomd: Change the permission of the file Eg: Create a file with any name and type ls -l then you will see this permission drwxr-x--- Here r will be considered as "Read", w as "Write" an...Discussfile-permission
Tushar Panttusharpant.online·Aug 26, 2024Day 6 of 90 Days Of Devops Challenge: Exploring Linux File Permissions and OwnershipIn the world of Linux administration, mastering file permissions and ownership is crucial for maintaining system security and proper access control. This guide delves into the intricacies of Linux file permissions, ownership, and the advanced concept...Discuss·21 likes90 Days of DevOpsDevops
D3F3ND3Rbuildattackdefend.net·Aug 26, 2024User, Group, and File ManagementUser and Group Management <What> Groups simplify user management by allowing users with similar access rights to share a group ID. Alongside with user management, enabling specific users to have home directories while others don't, setting password ...Discuss·47 readsLinuxLinux
Tushar Panttusharpant.online·Aug 23, 2024Day 3 of the 90-Day DevOps Challenge: Navigating the Linux Filesystem and Understanding PermissionsWelcome to Day 3 of my 90-Day DevOps Challenge! Today’s focus was all about getting comfortable with navigating the Linux filesystem and understanding the intricacies of file permissions. These are foundational skills that every DevOps engineer must ...Discuss·33 likes·40 reads90 Days of DevOpsDevops
Raees Yaqoob Qaziraeesqazi.hashnode.dev·Jul 23, 2024User Management and File Permissions in LinuxManaging user accounts and ensuring appropriate file permissions are fundamental tasks for system administrators. Let's explore how these processes work in a Linux environment to maintain security and organize access effectively. Creating Users and G...DiscussLinux
Muzammil Jan90days.hashnode.dev·Jul 23, 2024File Permission and Access Control ListFile permissions are core to the security model used by Linux systems. They determine who can read, write and execute files. How to view Linux file permissions? To view file permissions, use the ls -ltr command. ls -ltr Here’s what each part repres...DiscussAcess control list