Skip to main content

Posts

Showing posts from 2020

Linux

Linux-(Files and IPC) 1) Explain chmod and umask commands Ans:         a)  CHMOD: To change the existing file permission,we can change file permission to new permission or can change one permission alone.                            eg:                                  chmod 0664 file_name                                     rwx   rwx     rxx                                       user group  others        b)  UMASK: When you create a file or directory, the default file permissions assigned to the file or directory are controlled by the  user mask. ...