← All commands
Topic hub Terminal & Shell Scripting
Windows Linux Terminal & Shell Scripting Terminal

Windows cls equivalent in Linux

Clears all text from the terminal window.

Windows cls
Linux equivalents
Debian/Ubuntu same command
clear
Fedora same command
clear
Arch same command
clear

Overview

What this command does

Clears all text from the terminal window.

Migration tip: You can also press Ctrl+L — it's the keyboard shortcut that works in almost every Linux terminal and is often faster than typing clear.

Practical tasks

Common use cases

Clear the terminal screen

Clears all text from the terminal window.

clear

Clear the screen

Ctrl+L

Keyboard shortcut — same result

reset

Full terminal reset (fixes garbled output)

Ready to run

Copyable Linux commands

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

clear
reset

Walkthrough

Examples with explanations

# Windows: cls
clear           # clears the screen

# Or just press:
Ctrl + L        # same effect, much faster

# If the terminal looks garbled:
reset           # completely resets terminal state

Reference

Common options and variations

Command or optionUse
clearClear the screen
Ctrl+LKeyboard shortcut — same result
resetFull terminal reset (fixes garbled output)

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 clear Same command on this distribution.
Fedora same command clear Same command on this distribution.
Arch same command clear Same command on this distribution.

Keep learning

Related Terminal & Shell Scripting commands