-
-
Notifications
You must be signed in to change notification settings - Fork 2
Linux more Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to more on Linux, covering Arch Linux, CachyOS, and other distributions including file viewing, text paging, and basic file navigation.
more is basic file pager.
Uses:
- View files: Display file contents
- Page through: Navigate files
- Simple viewing: Basic file viewer
Note: less is more advanced, but more is simpler.
Open file:
# View file
more file.txt
# Or pipe
command | moreMove through:
- Space: Next page
- Enter: Next line
- q: Quit
Navigation:
- Space: Next page
- b: Previous page (if supported)
- Enter: Next line
- q: Quit
- /pattern: Search (if supported)
Use more when:
- Simple viewing: Basic file view
- Compatibility: Script compatibility
- Simple needs: Don't need advanced features
Use less when:
- Advanced features: Need search, etc.
- Better navigation: More control
- Modern tool: Recommended tool
Check installation:
# Check more
which more
# Usually in util-linux
# Install if missing
sudo pacman -S util-linuxThis guide covered more usage, file viewing, and basic navigation for Arch Linux, CachyOS, and other distributions.
- less Guide - Advanced pager
- head and tail Guide - File viewing
-
more Documentation:
man more
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.