Skip to content

Linux more Guide

Mattscreative edited this page Dec 5, 2025 · 2 revisions

Linux more Guide

Complete beginner-friendly guide to more on Linux, covering Arch Linux, CachyOS, and other distributions including file viewing, text paging, and basic file navigation.


Table of Contents

  1. Understanding more
  2. more Basics
  3. more Navigation
  4. more vs less
  5. Troubleshooting

Understanding more

What is more?

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.


more Basics

View File

Open file:

# View file
more file.txt

# Or pipe
command | more

Navigation

Move through:

  • Space: Next page
  • Enter: Next line
  • q: Quit

more Navigation

Basic Commands

Navigation:

  • Space: Next page
  • b: Previous page (if supported)
  • Enter: Next line
  • q: Quit
  • /pattern: Search (if supported)

more vs less

When to Use more

Use more when:

  • Simple viewing: Basic file view
  • Compatibility: Script compatibility
  • Simple needs: Don't need advanced features

When to Use less

Use less when:

  • Advanced features: Need search, etc.
  • Better navigation: More control
  • Modern tool: Recommended tool

Troubleshooting

more Not Found

Check installation:

# Check more
which more

# Usually in util-linux
# Install if missing
sudo pacman -S util-linux

Summary

This guide covered more usage, file viewing, and basic navigation for Arch Linux, CachyOS, and other distributions.


Next Steps


This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.

Clone this wiki locally