Welcome to docker.ru hosting provider linux mirror located at Moscow, Russian Federation.
Server configuration: Linux with OpenZFS, 2 x E5-2670v2, 128 GB ECC memory, 12 x 4 TB raidz2 + 1 TB SSD for L2ARC.
Network: 20 gbps uplink, IPv4 (185.253.23.31), IPv6 (2a04:8580:ffff:fffe::2).
My hostname is mirror.docker.ru
Red Hat Enterprise Linux 4: Red Hat Enterprise Linux Step By Step Guide | ||
---|---|---|
Prev | Chapter 14. Frequently Asked Questions | Next |
Whenever I type ls I can barely see the output of the directory because it scrolls by too quickly. How can I actually read the output?
To prevent the output of ls from scrolling by too quickly, pipe the output to a utility such as less or more. You are then able to see the output one screen at at time.
To read the contents of /etc with less, type the following command at the shell prompt:
ls -al /etc | less |
To move forward a screen, press
You can achieve the same results with more, another paging utility.