Like most of the modern operating systems, Linux is a multi-user OS hence extra layer of security is added to prevent users to access each other confidential files.
Linux divides authorization into two levels,
Each file and directory has three user based permission groups,
owner
group
all
Each file or directory has three basic permission types,
read
write
execute
Linux File Permissions is a vast topic but you need not have to master it to succeed in this eYRC Theme. The only thing you need to keep in mind that unlike Windows were programs with .exe
extension can be executed, in UNIX/Linux, files with execute permission can only be executed/run by the user.
To make a file executable in Linux following command can be used,
sudo chmod +x <file_name>