← All commands
Topic hub System & Storage
Windows Linux System & Storage System

Windows regedit (Windows Registry) equivalent in Linux

Linux stores all configuration in plain text files rather than a registry. System config is in /etc/, user config is in ~/.config/ and dotfiles.

Windows regedit (Windows Registry)
Linux equivalents
Debian/Ubuntu same command
/etc/ and ~/.config/
Fedora same command
/etc/ and ~/.config/
Arch same command
/etc/ and ~/.config/

Overview

What this command does

Linux stores all configuration in plain text files rather than a registry. System config is in /etc/, user config is in ~/.config/ and dotfiles.

Migration tip: There is no registry in Linux — this is widely considered an advantage. All config is human-readable plain text. Edit with any text editor, and version-control with git.

Practical tasks

Common use cases

System and application configuration storage

Linux stores all configuration in plain text files rather than a registry. System config is in /etc/, user config is in ~/.config/ and dotfiles.

/etc/

System-wide configuration files

~/.config/

Per-user application configuration

~/.bashrc

User shell config (PATH, aliases, etc.)

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

sudo nano /etc/hosts

Walkthrough

Examples with explanations

# Windows: regedit (registry editor)

# Key config file locations:
/etc/hosts            = hostname to IP mappings
/etc/fstab            = disk mount config
/etc/ssh/sshd_config  = SSH server settings
~/.bashrc              = your shell aliases and PATH
~/.config/             = GUI app preferences

# Edit system config:
sudo nano /etc/hosts

Reference

Common options and variations

Command or optionUse
/etc/System-wide configuration files
~/.config/Per-user application configuration
~/.bashrcUser shell config (PATH, aliases, etc.)
~/.profileUser login environment variables
dconf-editorGUI config editor (GNOME desktop settings)

Distro differences

Debian/Ubuntu vs Fedora vs Arch

This command is the same on Debian/Ubuntu, Fedora and Arch Linux when the relevant tool is installed.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command /etc/ and ~/.config/ Same command on this distribution.
Fedora same command /etc/ and ~/.config/ Same command on this distribution.
Arch same command /etc/ and ~/.config/ Same command on this distribution.

Keep learning

Related System & Storage commands