Skip to main content

Files and Folders Permissions In Linux|How to giveFiles permissions In Linux|Linux commandsforDevops

 Files and Folders Permissions In Linux|How to giveFiles permissions In Linux|Linux commandsforDevops


Files and Folder permissions:

-------------------------------------------------------------------------------------

Files and folders security is major part in any operating system including linux

Linux is an Multi-User operation system where various different users can parallely can use the machine

and underlying resources. this is the basic requirement of Linux to built-up some security features  

in handling and protecting files and folders when multiple users accessing the machine.

If one user is accessing Files and Folders in linux the owners or created user should have all rights to

protected to be accessed/modified by any other user of the Linux System. the whole process can be achieved by Using Files 

and Folder Permissions provided by Linux. 

The files/folders we create in linux by default we dont need to assign permissions.

Linux is granting permissions by default. 

General Permissions of files and Folders

--------------------------------------------------------------------

1.read

2.write

3.execute

Linux has below 3 levels of managing the File permissions:

-------------------------------------------------------------------------------------------

1. Owner is the Creator of the File/Folder

2. Group = The file belongs to particular group, and those user permissions.

3. Others = he is not a user and does belongs to the file group is called others.

File:

--------------------------------------------------------------------------------

  1. read = we are able to see the contents of the file,wc,cat,grep.

  2. write = we are able to modify the contents of the file or we can delete as well.

  3. execute = that particular file contains programming instructions then we can run it.

Folder:

----------------------------------------------------------------------------------------------

  1. read = we can list or see the contents of folder (ls). But we cannot modify the folder contents

  2. write = we are able to add/remove files and folders inside that folder

  3. execute = we are able to cd into that folder

ls -l kite.txt

-rwx-rwx-rwx

Comments

Popular posts from this blog

Linux cmp and diff commands|Linux commands for devops |difference between cmp and diff

Linux cmp and diff commands|Linux commands for devops |difference between cmp and diff CMP = command is used for comparing the byte by byte of text information of a file and outputs the first difference of the file. cat list1.txt green blue yellow white cat list2.txt green blue black white cmp list1.txt list2.txt output:- list1.txt list2.txt differ: byte 6, line 2 ------------------------------------------------------------------------------------------------------------------------------------- diff = it is used for comparting two text files and displays all the mis-matches in the files. In addition it displays special symbols helping us in understanding what we should do to make those two files identical. a = add c = change the text of the file d = delete line In addition to this it displays the mis-match lines with notation. = indicates the right side file = indicates suggestion should be applied to left side file 2,5c3 =in the left file from 2 - 5 lines should be replaced ...

Record script using bad boy tool 2020|Jmeter script recording using badboy tool and validate script|

Apache JMeter Script Recording with BadBoy|How to Record script using BadBoy tool|  Download tool :https://badboy1.software.informer.com/download/ Recordig using bad boy tool  using for mostly .net and java applications there are 3 steps to actually getting a load test running with Badboy: 1. Recording your script. 2.Parametrizing your script with a lot of users and their associated user information,  and setting think times in the script. 3.Running the script with all your users, and gathering and analyzing the results,  hopefully in a graph format.

Linux User Management Commands 2020|how to create user in Linux|switch user|add user|view user

  Linux User Management Commands 2020|how to create user in Linux|switch user|add user|view user User Management in Linux Two types of users in linux: --------------------------------------------------- 1.Root User 2.Normal User 1. Root User = There is only one root user for a Linux System and its created by default The root user has total control of the Linux System like 1. Managing all the system resources 2. File Management 3. User Management 4. Network Configurations 5. System Configurations &Software Installations 2. Normal User = Any other user added by the ROOT will becomes Normal User. They has access to his home directory only. To enter root ----------------------- sudo su - (or) sudo su root To add user --------------------- adduser username To view user ---------------------- id username switch user ----------------------- suso su username switch user via gui ----------------------- super user ------------------- sudo su - To see how many u...