-
-
Notifications
You must be signed in to change notification settings - Fork 1
Arch Linux File Managers
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to file managers on Arch Linux, including Nautilus, Dolphin, Thunar, ranger, and file manager configuration.
Install Nautilus:
# Install Nautilus
sudo pacman -S nautilus
# Launch
nautilusInstall Dolphin:
# Install Dolphin
sudo pacman -S dolphin
# Launch
dolphinInstall Thunar:
# Install Thunar
sudo pacman -S thunar
# Launch
thunarInstall PCManFM:
# Install PCManFM
sudo pacman -S pcmanfm
# Launch
pcmanfmInstall ranger:
# Install ranger
sudo pacman -S ranger
# Launch
rangerInstall vifm:
# Install vifm
sudo pacman -S vifm
# Launch
vifmInstall lf:
# Install lf
sudo pacman -S lf
# Launch
lfInstall nnn:
# Install nnn
sudo pacman -S nnn
# Launch
nnnConfigure Nautilus:
# Edit preferences
# Edit > Preferences
# Or via dconf
dconf-editorConfigure Dolphin:
# Settings > Configure DolphinConfigure ranger:
# Create config
mkdir -p ~/.config/ranger
cp /etc/ranger/rc.conf ~/.config/ranger/rc.conf
# Edit config
vim ~/.config/ranger/rc.confCheck permissions:
# Check permissions
ls -la ~/.config/
# Fix permissions
chmod 755 ~/.config/Check mounts:
# List mounts
lsblk
# Check fstab
cat /etc/fstabThis guide covered GUI and terminal file managers, configuration, and troubleshooting.
- Arch Linux Desktop Environments - Desktop setup
- Arch Linux System Configuration - System setup
- ArchWiki File Managers: https://wiki.archlinux.org/title/List_of_applications/Utilities#File_managers
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.