dd command in Linux with examples

dd command in Linux with examples

Linux considers anything stored on a file system as files, even block devices. This means commands such as the dd command in Linux can be very handy in many situations, as it can be used to convert and copy files in the terminal, backup disks, or wipe data. The dd command is just as fundamental as it is useful, as it’s ready to use even on the most basic installations of Linux distros.

Read more

du command in Linux with examples

du command in Linux with examples

On any operating system, the files on your hard disk take up a certain amount of space. In Linux specifically, you can view how much space that these files take up in the command line terminal by using the du command. The du command (the name is shortened from “disk usage”), as the name implies, will simply display, in its output, the amount of disk space being used by a specified file or directory.

Read more

export command in Linux with examples

export command in Linux with examples

The export command in Linux is used to set an environment variable. Environment variables are part of the Linux system shell that contain changing values. They help facilitate scripts and system programs, so that code can accommodate a variety of scenarios. Unlike regular shell variables, environment variables can be accessed system-wide, by any user or process.

Read more

fold command in Linux with examples

fold command in Linux with examples

The fold command in Linux is used to wrap the lines of a file at a predetermined length. Its original use was to facilitate the viewing of large files on a terminal screen, and having each line be wrapped at a certain length so everything could fit on the monitor. Back in the 1970s, before terminals and applications had word wrap functionality by default, this was very handy.

Read more

head command in Linux with examples

head command in Linux with examples

The head command in Linux is one of the most important commands you’ll need when viewing text files. If you’re new to Linux, the head command is a perfect place to start, since it has a simple syntax and straight forward purpose. The head command is the complementary command to the tail command. The head command is used to print the first 10 lines (by default) of one or multiple files.

Read more

logrotate command in Linux with examples

logrotate command in Linux with examples

In Linux, many applications and system services will store log files. These log files give a Linux administrator insight into how their system is performing, and are invaluable when troubleshooting issues. However, log files can get unwieldy very quickly. For example, if your web server software logs every visit to your website, and you get thousands of viewers per day, there will be way too much information to feasibly squeeze into one text file.

Read more

mkdir command in Linux with examples

mkdir command in Linux with examples

One of the most common and fundamental commands in Linux is the mkdir command. The most basic way to use this command is to create one or multiple directories. If you’re coming from Windows as a newcomer to Linux, you probably know directories as folders. The mkdir command can do a few other things with directories as well.

Read more