惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - 司徒正美
V
Visual Studio Blog
博客园 - 【当耐特】
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Jina AI
Jina AI
宝玉的分享
宝玉的分享
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Demystifying Linux File Permissions and chmod (Without th...
Qudus Olaniyi YUSUFF · 2026-05-31 · via DEV Community

Imagine deploying a fresh automation script or configuring a server pipeline on Linux. You run your script with confidence, only for the terminal to slap you with a classic, frustrating error message:

bash: ./deploy.sh: Permission denied

Enter fullscreen mode Exit fullscreen mode

The common, dangerous instinct is to panic-type sudo chmod 777 deploy.sh. While this instantly bypasses the error, it also creates a massive security vulnerability by opening your file up to unauthorized system manipulation—a move that makes senior systems administrators cringe.

Instead of guessing, this guide will teach you how to read the Linux permission matrix and fix access issues properly in under 60 seconds.

Prerequisites: Setting up Your Sandbox

To practice managing system flags safely, create an isolated directory and an empty script file to manipulate inside your terminal workspace:

mkdir chmod-blog-post && cd chmod-blog-post
touch deploy.sh

Enter fullscreen mode Exit fullscreen mode

Step 1: Read the Terminal Matrix (ls -l)

Before you can change permissions, you need to know how to audit the file's current structural state. Run the list command with the long-listing flag (-l):

ls -l deploy.sh

Enter fullscreen mode Exit fullscreen mode

Try executing the file right after to observe the default system restrictions:

./deploy.sh

Enter fullscreen mode Exit fullscreen mode

Terminal output displaying restrictive read-write permissions followed by a Permission Denied execution failure

Look closely at the 10 characters at the far left of the output (e.g., -rw-rw-r--). They form a specific security matrix broken down into four distinct structural pieces:

  • Character 1: Denotes the type of file. A hyphen (-) indicates a standard flat file, while a d represents a directory.
  • Characters 2–4 (rw-): Represents User/Owner permissions. The creator can read and write to this file, but cannot execute it.
  • Characters 5–7 (rw-): Represents Group permissions. Members of the owner's group can read and write.
  • Characters 8–10 (r--): Represents Others/World permissions. Anyone else on the network or machine can only read the file.

Step 2: Modifying via the Symbolic Method (u+x)

The command used to change file access constraints is chmod (short for Change Mode). The quickest, most human-readable way to fix our permission issue is by using math symbols and target letters.

To resolve our execution failure, we must add (+) the execute (x) flag exclusively to the owner/user (u):

chmod u+x deploy.sh
ls -l deploy.sh

Enter fullscreen mode Exit fullscreen mode

Terminal output confirming user execution permissions added, changing the file name color to green

Using this notation gives you highly descriptive control. For instance, if you wanted to revoke write access from the world, you would simply pass o-w. It functions like basic terminal arithmetic.

Step 3: Maximizing Security via Octal Notation (600)

While symbols are great for quick, isolated fixes, production-grade DevOps infrastructure usually relies on absolute numbers (Octal Notation). Each basic permission maps to an explicit numeric value:

  • Read (r): 4
  • Write (w): 2
  • Execute (x): 1
  • No Permission (-): 0

To compute a setting, simply sum the numbers for each role (User, Group, World) independently.

For example, when dealing with highly sensitive files like cloud server SSH private keys (id_rsa), industry compliance dictates that only the owner should access it. Let's create an example key file and give the owner Read (4) + Write (2) = 6, while wiping out group and world access to 0:

touch id_rsa
chmod 600 id_rsa
ls -l id_rsa

Enter fullscreen mode Exit fullscreen mode

Terminal output demonstrating complete file lockdown with absolute read-write access restricted entirely to the owner

The resulting -rw------- output stands as visual evidence that your private keys are completely safe from prying local eyes.

Step 4: Configuring Production Web Permissions (755)

What if you are configuring a public web server or system application where everyone needs to read and execute the engine file, but only you should modify it?

Let's calculate the values:

  • User (Full Access): Read (4) + Write (2) + Execute (1) = 7
  • Group (Read/Execute): Read (4) + Write (0) + Execute (1) = 5
  • World (Read/Execute): Read (4) + Write (0) + Execute (1) = 5

This gives us the classic industry-standard 755 configuration:

chmod 755 deploy.sh
ls -l deploy.sh

Enter fullscreen mode Exit fullscreen mode

Terminal output showing standard 755 public production permissions applied across user group and world flags

Now, your application file is safely prepared to operate reliably in a live production environment.

Practical DevOps Cheatsheet

Keep this quick reference guide bookmarked for your everyday deployment workflows:

Command Numeric Mode Operational Action Common Production Use Case
chmod u+x script.sh N/A Grants execution rights exclusively to the owner Making a local automation script runnable
chmod 600 id_rsa 600 Locks file entirely to owner read/write only Securing private SSH authentication keys
chmod 755 app.py 755 Full owner access; group/others can read/run Public deployment binaries or web hooks
chmod 700 private_dir/ 700 Restricts directories entirely to the owner Securing system configuration folders

Conclusion

Understanding chmod removes the guesswork from system debugging. By auditing permissions with ls -l and applying pinpoint modifications using symbolic or numeric modes, you can secure your environments efficiently without resorting to lazy security holes like 777.