日本語

Enlightenment is Root Access

Cover Image for Enlightenment is Root Access

Enlightenment is Root Access


Introduction

In a UNIX system, root access means unrestricted access to all files, all processes, all resources. No constraints, nothing hidden, nothing denied.

Enlightenment in Buddhism carries the same structure. The constraints of the ego—a user-level permission—are lifted, and unrestricted access to the totality of reality opens up.

$ sudo satori password: ▮


The Ego as Unprivileged User

The ordinary mind resembles an unprivileged user.

$ whoami
ego
$ cat /reality/true-nature.txt
cat: /reality/true-nature.txt: Permission denied

You have a home directory—your familiar territory, comfortable, filled with known files. But you cannot see the whole system. Most directories under /reality/ are inaccessible.

The ego mistakes its home directory for the entirety of the world.

$ ls /reality/
ls: cannot open directory '/reality/': Permission denied
$ ls ~/
thoughts/  memories/  desires/  fears/  identity.conf

The Permission Wall

Why can’t you access it? Because permissions are set.

drwx------  root  root  /reality/impermanence/
drwx------  root  root  /reality/interdependence/
drwx------  root  root  /reality/emptiness/
drwx------  root  root  /reality/true-self/

Buddhism calls these “permissions” klesha (煩悩)—attachment, aversion, ignorance. They function as filesystem permissions, concealing the true nature of reality.

# 煩悩のパーミッション設定
PERMISSIONS = {
    "attachment": 0o700,   # owner only — 執着: 自分だけがアクセス可能
    "aversion":  0o000,    # no access  — 嫌悪: アクセス完全拒否
    "ignorance": 0o000,    # no access  — 無知: 存在すら見えない
}

Practice as Privilege Escalation

Zen practice, meditation, koans—these are all attempts at privilege escalation.

# 座禅: プロセスの停止と観察
$ kill -STOP $(pgrep -f "thoughts|desires|fears")

# 瞑想: ファイルシステムの観察
$ find /mind -type f -name "*.attachment" -delete

# 公案: セキュリティの矛盾を突く
$ echo "What is the sound of one hand clapping?" | sudo tee /dev/null

This is not malicious hacking. The system was originally designed so that every user can become root. The fundamental premise of Buddhism—Buddha-nature (仏性)—is that every being already possesses root access. They have simply forgotten the password.

# /etc/buddhism.conf
# All sentient beings have root access by default.
# Current restrictions are self-imposed.
DEFAULT_ACCESS=root
CURRENT_ACCESS=user
REASON=forgotten_password

sudo and the Master

sudo is a command that temporarily borrows root access. The Zen master (roshi) corresponds precisely to sudo.

$ sudo -u enlightened cat /reality/true-nature.txt
[師匠] Trust the process. Password is not a word.

The master can temporarily “show” the student. But true enlightenment means becoming root yourself, not using sudo forever.

# 悟りの前: sudoで一時的にアクセス
$ sudo cat /reality/emptiness/heart-sutra.txt
"Form is emptiness, emptiness is form."

# 悟りの後: 直接アクセス
$ cat /reality/emptiness/heart-sutra.txt
"Form is emptiness, emptiness is form."
# (same content, no sudo needed)

The Moment of Becoming Root

What changes at the moment of enlightenment?

$ su -
Password: ****
# whoami
root
# ls /reality/
impermanence/  interdependence/  emptiness/  true-self/  suffering/  liberation/
# cat /reality/true-self/nature.txt
You were always root.
The login screen was the illusion.

The filesystem doesn’t change. The file contents don’t change. What changes is only the access rights. The world remains the same, yet everything becomes visible.

This corresponds exactly to the Zen teaching:

Before enlightenment, mountains are mountains and rivers are rivers. After enlightenment, mountains are mountains and rivers are rivers.

The files are the same. Only the permissions changed.


The Responsibility of Root

Root access in UNIX is infinite power and infinite responsibility at once.

# rootは何でもできる。しかし...
# rm -rf / は実行しない。
# それは力の濫用であり、慈悲の欠如である。

# Root can do anything. But...
# You don't run rm -rf /.
# That would be an abuse of power—a lack of compassion.

In Buddhism, the enlightened one (bodhisattva) holds root access yet remains in the world of ordinary users—to teach others that they too can become root.

class Bodhisattva:
    def __init__(self):
        self.access_level = "root"
        self.current_shell = "/bin/samsara"  # あえて輪廻に留まる

    def help_others(self, user):
        """他のユーザーのパスワード回復を手伝う"""
        print(f"Helping {user} remember their root password...")
        # パスワードを直接教えることはできない
        # 自分で思い出すしかない
        return "Look within. The password was never external."

Conclusion

Enlightenment is root access.

It is not the acquisition of new abilities. It is remembering the access rights you always had.

Practice is privilege escalation. The master is sudo. Klesha are permission walls. Buddha-nature is the default root configuration.

And the most important thing—just because you have root access doesn’t mean you run rm -rf /. That is compassion.

$ logout
Back to user shell.
But now you know: the root password is already yours.

This entry explores the structural parallels between UNIX philosophy and Buddhist philosophy.