{"id":6623,"date":"2026-05-13T06:07:27","date_gmt":"2026-05-13T10:07:27","guid":{"rendered":"https:\/\/www.globesign.com\/blog\/?p=6623"},"modified":"2026-05-13T06:40:56","modified_gmt":"2026-05-13T10:40:56","slug":"linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux","status":"publish","type":"post","link":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/","title":{"rendered":"Linux File Permissions Explained: Understanding drwxr-xr-x in Linux"},"content":{"rendered":"<h2><strong>Linux File Permissions Explained for Beginners<\/strong><\/h2>\n<p>Linux is one of the most powerful and secure operating systems used in servers, cloud infrastructure, DevOps, cybersecurity, and enterprise environments. One of the most important concepts every Linux user should understand is file permissions.<\/p>\n<p>When working in Linux, you will frequently use the <code>ls -l<\/code> command to display detailed information about files and directories.<\/p>\n<p>Example:<\/p>\n<pre><code class=\"language-bash\">drwxr-xr-x 2 root fighter 4096 Feb 9 14:03 conf.d\r\n<\/code><\/pre>\n<p>At first glance, this output may look confusing for beginners. However, every field contains important information about how Linux manages files and directories.<\/p>\n<p>In this guide, we will break down each section step by step.<\/p>\n<h2><strong>Everything in Linux is Either a File or a Directory<\/strong><\/h2>\n<p>One of the most fundamental concepts in Linux is:<\/p>\n<blockquote><p>Everything is treated as either a file or a directory.<\/p><\/blockquote>\n<p>This design philosophy makes Linux extremely organized, scalable, and secure.<\/p>\n<p>Examples include:<\/p>\n<ul>\n<li>Documents \u2192 Files<\/li>\n<li>Applications \u2192 Files<\/li>\n<li>Hardware devices \u2192 Files<\/li>\n<li>Configuration settings \u2192 Files<\/li>\n<li>Folders \u2192 Directories<\/li>\n<\/ul>\n<p>Linux manages access to these resources using permissions.<\/p>\n<h1><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone wp-image-6626\" src=\"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/File-Explanation-240x300.png\" alt=\"\" width=\"609\" height=\"762\" srcset=\"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/File-Explanation-240x300.png 240w, https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/File-Explanation-819x1024.png 819w, https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/File-Explanation-768x960.png 768w, https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/File-Explanation.png 1122w\" sizes=\"(max-width: 609px) 100vw, 609px\" \/><\/h1>\n<h2><strong>Understanding the Linux <code>ls -l<\/code> Output<\/strong><\/h2>\n<p>Let\u2019s analyze the following command output:<\/p>\n<pre><code class=\"language-bash\">drwxr-xr-x 2 root fighter 4096 Feb 9 14:03 conf.d\r\n<\/code><\/pre>\n<p>Each field has a specific purpose.<\/p>\n<h3><strong>1. File Type Indicator (<code>d<\/code>)<\/strong><\/h3>\n<p>The very first character indicates the type of file.<\/p>\n<pre><code class=\"language-bash\">d\r\n<\/code><\/pre>\n<p>In this example:<\/p>\n<ul>\n<li><code>d<\/code> = Directory<\/li>\n<\/ul>\n<p>Common file type indicators:<\/p>\n<table>\n<thead>\n<tr>\n<th>Symbol<\/th>\n<th>Meaning<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>d<\/td>\n<td>Directory<\/td>\n<\/tr>\n<tr>\n<td>&#8211;<\/td>\n<td>Regular file<\/td>\n<\/tr>\n<tr>\n<td>l<\/td>\n<td>Symbolic link<\/td>\n<\/tr>\n<tr>\n<td>c<\/td>\n<td>Character device<\/td>\n<\/tr>\n<tr>\n<td>b<\/td>\n<td>Block device<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Since the output starts with <code>d<\/code>, it means <code>conf.d<\/code> is a directory.<\/p>\n<h3><strong>2. Linux Permission Fields (<code>rwxr-xr-x<\/code>)<\/strong><\/h3>\n<p>The next section represents permissions.<\/p>\n<pre><code class=\"language-bash\">rwxr-xr-x\r\n<\/code><\/pre>\n<p>These permissions are divided into three groups:<\/p>\n<pre><code class=\"language-bash\">rwx   r-x   r-x\r\n<\/code><\/pre>\n<table>\n<thead>\n<tr>\n<th>Section<\/th>\n<th>Represents<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>rwx<\/td>\n<td>Owner\/User permissions<\/td>\n<\/tr>\n<tr>\n<td>r-x<\/td>\n<td>Group permissions<\/td>\n<\/tr>\n<tr>\n<td>r-x<\/td>\n<td>Others permissions<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Understanding Permission Characters<\/strong><\/p>\n<table>\n<thead>\n<tr>\n<th>Character<\/th>\n<th>Meaning<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>r<\/td>\n<td>Read<\/td>\n<\/tr>\n<tr>\n<td>w<\/td>\n<td>Write<\/td>\n<\/tr>\n<tr>\n<td>x<\/td>\n<td>Execute<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Owner Permissions (<code>rwx<\/code>)<\/strong><\/p>\n<p>The owner has:<\/p>\n<ul>\n<li>Read access<\/li>\n<li>Write access<\/li>\n<li>Execute access<\/li>\n<\/ul>\n<p>This means the owner can fully control the directory.<\/p>\n<p><strong>Group Permissions (<code>r-x<\/code>)<\/strong><\/p>\n<p>The group can:<\/p>\n<ul>\n<li>Read files<\/li>\n<li>Execute\/access directory<\/li>\n<\/ul>\n<p>But cannot modify files because write permission is missing.<\/p>\n<p><strong>Others Permissions (<code>r-x<\/code>)<\/strong><\/p>\n<p>Other users on the system can:<\/p>\n<ul>\n<li>Read<\/li>\n<li>Execute<\/li>\n<\/ul>\n<p>But cannot write or modify.<\/p>\n<h3><strong>3. Link Count (<code>2<\/code>)<\/strong><\/h3>\n<pre><code class=\"language-bash\">2\r\n<\/code><\/pre>\n<p>This number represents the link count.<\/p>\n<p>For directories, it usually indicates:<\/p>\n<ul>\n<li>The directory itself<\/li>\n<li>Its subdirectories<\/li>\n<\/ul>\n<p>This value changes as directories are added or removed.<\/p>\n<h3><strong>4. Owner of the File (<code>root<\/code>)<\/strong><\/h3>\n<pre><code class=\"language-bash\">root\r\n<\/code><\/pre>\n<p>This field shows the owner of the file or directory.<\/p>\n<p>In Linux:<\/p>\n<ul>\n<li>Every file has an owner<\/li>\n<li>The owner controls permissions<\/li>\n<li>Ownership helps enforce security<\/li>\n<\/ul>\n<p><code>root<\/code> is the superuser account in Linux with full administrative privileges.<\/p>\n<h3><strong>5. Group Ownership (<code>fighter<\/code>)<\/strong><\/h3>\n<pre><code class=\"language-bash\">fighter\r\n<\/code><\/pre>\n<p>This represents the group associated with the file.<\/p>\n<p>Linux uses groups to simplify permission management.<\/p>\n<p>For example:<\/p>\n<ul>\n<li>Developers group<\/li>\n<li>Admin group<\/li>\n<li>DevOps group<\/li>\n<\/ul>\n<p>Users inside the same group can share controlled access to resources.<\/p>\n<h3><strong>6. File or Directory Size (<code>4096<\/code>)<\/strong><\/h3>\n<pre><code class=\"language-bash\">4096\r\n<\/code><\/pre>\n<p>This field represents the size of the directory in bytes.<\/p>\n<p>For directories, Linux often shows:<\/p>\n<pre><code class=\"language-bash\">4096\r\n<\/code><\/pre>\n<p>because it stores metadata and references to contained files.<\/p>\n<h3><strong>7. Last Modified Date and Time<\/strong><\/h3>\n<pre><code class=\"language-bash\">Feb 9 14:03\r\n<\/code><\/pre>\n<p>This indicates when the file or directory was last modified.<\/p>\n<p>This information is useful for:<\/p>\n<ul>\n<li>Troubleshooting<\/li>\n<li>Auditing<\/li>\n<li>Monitoring configuration changes<\/li>\n<li>Tracking deployments<\/li>\n<\/ul>\n<h3><strong>8. File or Directory Name (<code>conf.d<\/code>)<\/strong><\/h3>\n<pre><code class=\"language-bash\">conf.d\r\n<\/code><\/pre>\n<p>This is the actual name of the directory.<\/p>\n<p>Directories like <code>conf.d<\/code> are commonly used in Linux configuration systems to organize modular configuration files.<\/p>\n<h2><strong>Why Linux File Permissions Matter<\/strong><\/h2>\n<p>Linux permissions are one of the biggest reasons Linux is considered secure and reliable.<\/p>\n<p>Proper permissions help:<\/p>\n<ul>\n<li>Prevent unauthorized access<\/li>\n<li>Protect sensitive data<\/li>\n<li>Secure servers<\/li>\n<li>Isolate users<\/li>\n<li>Manage enterprise environments safely<\/li>\n<\/ul>\n<p>This permission model is heavily used in:<\/p>\n<ul>\n<li>DevOps<\/li>\n<li>Cloud Computing<\/li>\n<li>Cybersecurity<\/li>\n<li>System Administration<\/li>\n<li>Kubernetes<\/li>\n<li>Docker<\/li>\n<li>Enterprise Infrastructure<\/li>\n<\/ul>\n<h2><strong>Common Linux Commands Related to Permissions<\/strong><\/h2>\n<h3><strong>Change Permissions<\/strong><\/h3>\n<pre><code class=\"language-bash\">chmod\r\n<\/code><\/pre>\n<p>Example:<\/p>\n<pre><code class=\"language-bash\">chmod 755 file.sh\r\n<\/code><\/pre>\n<h3><strong>Change Ownership<\/strong><\/h3>\n<pre><code class=\"language-bash\">chown\r\n<\/code><\/pre>\n<p>Example:<\/p>\n<pre><code class=\"language-bash\">chown root:developers file.txt\r\n<\/code><\/pre>\n<h3><strong>View Detailed File Information<\/strong><\/h3>\n<pre><code class=\"language-bash\">ls -l\r\n<\/code><\/pre>\n<h2><strong>Final Thoughts<\/strong><\/h2>\n<p>Understanding Linux file permissions is one of the first major steps toward becoming proficient in Linux administration.<\/p>\n<p>The <code>ls -l<\/code> command may look simple, but it reveals critical details about:<\/p>\n<ul>\n<li>Security<\/li>\n<li>Ownership<\/li>\n<li>Access control<\/li>\n<li>System organization<\/li>\n<\/ul>\n<p>Once you master file permissions, many advanced Linux concepts become easier to understand.<\/p>\n<p>Whether you are learning Linux for DevOps, cybersecurity, cloud engineering, or backend infrastructure, mastering permissions is essential.<\/p>\n<h2><strong>Frequently Asked Questions (FAQ)<\/strong><\/h2>\n<h3><strong>What does <code>drwxr-xr-x<\/code> mean in Linux?<\/strong><\/h3>\n<p>It represents:<\/p>\n<ul>\n<li>File type<\/li>\n<li>Owner permissions<\/li>\n<li>Group permissions<\/li>\n<li>Others permissions<\/li>\n<\/ul>\n<h3><strong>What does <code>d<\/code> mean in Linux permissions?<\/strong><\/h3>\n<p><code>d<\/code> indicates that the item is a directory.<\/p>\n<h3><strong>What is <code>rwx<\/code> in Linux?<\/strong><\/h3>\n<ul>\n<li><code>r<\/code> = read<\/li>\n<li><code>w<\/code> = write<\/li>\n<li><code>x<\/code> = execute<\/li>\n<\/ul>\n<h3><strong>Why are Linux permissions important?<\/strong><\/h3>\n<p>Permissions help secure systems by controlling who can access, modify, or execute files.<\/p>\n<h3><strong>Which command shows Linux file permissions?<\/strong><\/h3>\n<pre><code class=\"language-bash\">ls -l\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Linux File Permissions Explained for Beginners Linux is one of the most powerful and secure operating systems used in servers, cloud infrastructure, DevOps, cybersecurity, and enterprise environments. One of the most important concepts every Linux user should understand is file permissions. When working in Linux, you will frequently use the ls -l command to display [&hellip;]<\/p>\n","protected":false},"author":24,"featured_media":6625,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[250],"tags":[],"class_list":["post-6623","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Linux File Permissions Explained: Understanding drwxr-xr-x<\/title>\n<meta name=\"description\" content=\"Learn Linux File Permissions Explained with a simple guide to understanding drwxr-xr-x, chmod 755, read, write, and execute permissions in Linux.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux File Permissions Explained: Understanding drwxr-xr-x\" \/>\n<meta property=\"og:description\" content=\"Learn Linux File Permissions Explained with a simple guide to understanding drwxr-xr-x, chmod 755, read, write, and execute permissions in Linux.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"GlobeSign\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Globe-Sign-447604478609140\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-13T10:07:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-13T10:40:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/linux-file-Permission.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1806\" \/>\n\t<meta property=\"og:image:height\" content=\"871\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Muhammad Haris\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Globesign1\" \/>\n<meta name=\"twitter:site\" content=\"@Globesign1\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Muhammad Haris\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/\"},\"author\":{\"name\":\"Muhammad Haris\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/#\\\/schema\\\/person\\\/cda79d5096897b85472573c60ef2d6f8\"},\"headline\":\"Linux File Permissions Explained: Understanding drwxr-xr-x in Linux\",\"datePublished\":\"2026-05-13T10:07:27+00:00\",\"dateModified\":\"2026-05-13T10:40:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/\"},\"wordCount\":700,\"image\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/linux-file-Permission.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/\",\"url\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/\",\"name\":\"Linux File Permissions Explained: Understanding drwxr-xr-x\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/linux-file-Permission.png\",\"datePublished\":\"2026-05-13T10:07:27+00:00\",\"dateModified\":\"2026-05-13T10:40:56+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/#\\\/schema\\\/person\\\/cda79d5096897b85472573c60ef2d6f8\"},\"description\":\"Learn Linux File Permissions Explained with a simple guide to understanding drwxr-xr-x, chmod 755, read, write, and execute permissions in Linux.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/linux-file-Permission.png\",\"contentUrl\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/linux-file-Permission.png\",\"width\":1806,\"height\":871},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux File Permissions Explained: Understanding drwxr-xr-x in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/\",\"name\":\"GlobeSign\",\"description\":\"Website Design and Development Company in Canada\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/#\\\/schema\\\/person\\\/cda79d5096897b85472573c60ef2d6f8\",\"name\":\"Muhammad Haris\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-Profile-Picture-1-96x96.png\",\"url\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-Profile-Picture-1-96x96.png\",\"contentUrl\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-Profile-Picture-1-96x96.png\",\"caption\":\"Muhammad Haris\"},\"description\":\"Muhammad Haris is a DevOps and Cloud Engineer with a strong foundation in software engineering, specializing in architecting and automating the full lifecycle of modern, data-intensive applications. From AI\\\/ML model experimentation to production-grade cloud deployment, He designs resilient infrastructures that transform innovation into scalable, reliable systems.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/muhammad-haris-323268236\\\/\"],\"url\":\"https:\\\/\\\/www.globesign.com\\\/blog\\\/author\\\/harris\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux File Permissions Explained: Understanding drwxr-xr-x","description":"Learn Linux File Permissions Explained with a simple guide to understanding drwxr-xr-x, chmod 755, read, write, and execute permissions in Linux.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Linux File Permissions Explained: Understanding drwxr-xr-x","og_description":"Learn Linux File Permissions Explained with a simple guide to understanding drwxr-xr-x, chmod 755, read, write, and execute permissions in Linux.","og_url":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/","og_site_name":"GlobeSign","article_publisher":"https:\/\/www.facebook.com\/Globe-Sign-447604478609140","article_published_time":"2026-05-13T10:07:27+00:00","article_modified_time":"2026-05-13T10:40:56+00:00","og_image":[{"width":1806,"height":871,"url":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/linux-file-Permission.png","type":"image\/png"}],"author":"Muhammad Haris","twitter_card":"summary_large_image","twitter_creator":"@Globesign1","twitter_site":"@Globesign1","twitter_misc":{"Written by":"Muhammad Haris","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#article","isPartOf":{"@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/"},"author":{"name":"Muhammad Haris","@id":"https:\/\/www.globesign.com\/blog\/#\/schema\/person\/cda79d5096897b85472573c60ef2d6f8"},"headline":"Linux File Permissions Explained: Understanding drwxr-xr-x in Linux","datePublished":"2026-05-13T10:07:27+00:00","dateModified":"2026-05-13T10:40:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/"},"wordCount":700,"image":{"@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/linux-file-Permission.png","articleSection":["Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/","url":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/","name":"Linux File Permissions Explained: Understanding drwxr-xr-x","isPartOf":{"@id":"https:\/\/www.globesign.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/linux-file-Permission.png","datePublished":"2026-05-13T10:07:27+00:00","dateModified":"2026-05-13T10:40:56+00:00","author":{"@id":"https:\/\/www.globesign.com\/blog\/#\/schema\/person\/cda79d5096897b85472573c60ef2d6f8"},"description":"Learn Linux File Permissions Explained with a simple guide to understanding drwxr-xr-x, chmod 755, read, write, and execute permissions in Linux.","breadcrumb":{"@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#primaryimage","url":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/linux-file-Permission.png","contentUrl":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/05\/linux-file-Permission.png","width":1806,"height":871},{"@type":"BreadcrumbList","@id":"https:\/\/www.globesign.com\/blog\/linux-file-permissions-explained-understanding-drwxr-xr-x-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globesign.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Linux File Permissions Explained: Understanding drwxr-xr-x in Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.globesign.com\/blog\/#website","url":"https:\/\/www.globesign.com\/blog\/","name":"GlobeSign","description":"Website Design and Development Company in Canada","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globesign.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globesign.com\/blog\/#\/schema\/person\/cda79d5096897b85472573c60ef2d6f8","name":"Muhammad Haris","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/04\/cropped-Profile-Picture-1-96x96.png","url":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/04\/cropped-Profile-Picture-1-96x96.png","contentUrl":"https:\/\/www.globesign.com\/blog\/wp-content\/uploads\/2026\/04\/cropped-Profile-Picture-1-96x96.png","caption":"Muhammad Haris"},"description":"Muhammad Haris is a DevOps and Cloud Engineer with a strong foundation in software engineering, specializing in architecting and automating the full lifecycle of modern, data-intensive applications. From AI\/ML model experimentation to production-grade cloud deployment, He designs resilient infrastructures that transform innovation into scalable, reliable systems.","sameAs":["https:\/\/www.linkedin.com\/in\/muhammad-haris-323268236\/"],"url":"https:\/\/www.globesign.com\/blog\/author\/harris\/"}]}},"_links":{"self":[{"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/posts\/6623","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/comments?post=6623"}],"version-history":[{"count":6,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/posts\/6623\/revisions"}],"predecessor-version":[{"id":6631,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/posts\/6623\/revisions\/6631"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/media\/6625"}],"wp:attachment":[{"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/media?parent=6623"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/categories?post=6623"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globesign.com\/blog\/wp-json\/wp\/v2\/tags?post=6623"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}