Paresh Pardepardeparesh.hashnode.dev路May 21, 2024Linux File Permissions 馃攼Introduction 馃専 Have you ever wondered how your computer decides who can see or change your files? On a Linux system (a popular type of computer operating system), this is all managed by something called file permissions. It might sound a bit technic...3 likesDevops
Aryan Sharmaaryancodes.hashnode.dev路Feb 13, 2024Demystifying File Permissions: A ConversationHey there, fellow tech enthusiast! 馃憢 Today, let's dive into the intriguing realm of file permissions. You know, that mysterious territory where the owner, group, and others coexist in a delicate dance of access control. The Trio: Owner, Group, and O...Linux
Abdullah Bin Altafdevopswithabdullah.hashnode.dev路Feb 10, 2024Lecture # 21 - SUID, SGID, and Sticky BitSpecial Permissions: Linux offers some special permissions: SUID SGID Sticky Bit These permissions allow the non-owner user to perform different tasks on the files or directories that can only be accessed by the owner user. Once these permiss...Devops
Shubham Singhlearndevopsnow.hashnode.dev路Oct 28, 2023Basic Linux CommandsTo view what's written in a file. Cat: This is used to concatenate and display files on the terminal. It can also be used to modify existing ones. To change the access permissions of files. Chmod: This command is used to change the access permission...Basic linux commands
Gopal Gautamgopalgtm.hashnode.dev路Jul 21, 2023File Permissions and Access Control Lists馃敼Creating a Simple File and Viewing File Details: To create a simple file, you can use the touch command. For example: touch myfile.txt To view the details of the file, you can use the ls -ltr command, which displays the file details in long format...#90daysofdevopschallenge
Biswaraj Sahoobiswaraj333.hashnode.dev路Jun 12, 2023DevOps(Day-6)Permissions in LINUX When you do ls -ltr to list the files. You can see the permissions of the files. drwxrwxrwx 1 root pool 256 Dec 10 18:49 File.txt d or - :- Generally the permissions of any file or folder starts with d or -. d is for directory a...#permission in Linux