Home » Linux

The Best, Easiest Way to Check Linux Memory Usage

Linux Memory Usage

Here are the quickest and easiest methods to check memory usage on your Linux system. If you find your home Linux machine is a bit sluggish or your web server keeps hanging, it’s worth checking whether anything is hogging your memory. It may be that a poorly-coded page is using up a disproportionate amount of system resources, or it may be that your computer or server doesn’t have enough RAM for the task assigned to it. Either way, these useful tools will help you diagnose … Read more

Home » Linux

Creating and Writing Floppy Disk Images in Linux with dd

Linux dd read write floppy images

This article will show you how to read and write images to floppy disks in Linux – Perfect for vintage computing (MS-DOS, Macintosh, etc.) I dabble a bit in vintage computing – finding old computers, fixing them up, and getting them back into action – usually for playing games on era-appropriate hardware. Part of this usually involves re-installing the operating system and loading up software. This used to be pretty simple – when Windows computers came with floppy disk drives and included the required tools, it … Read more

Home » Linux

Bash/Shell Script to Send Email In Linux – Howto, Example

Sending Emails from Bash/Command Line

This article will show you several ways to send an email from the Linux command line/shell – as well as from Bash/Shell scripts. Why would you want to send an email from the command line? Probably not to communicate – most people use an email client with a nice user interface to send messages to each other day to day – but you may want to have your computer send an email notification when a task completes or when an event occurs. Such email alerts … Read more

Home » Linux

How to Format a USB Drive From the Linux Shell

Format USB Drive in Linux

This article will show you how to format a USB stick or external USB hard drive from the Linux command line/shell for FAT, NTFS, and EXT file systems. Plug In the Drive The first step – plug in your USB stick or external hard drive and give it a few moments to be detected. Find the Drive Next, find the drive you just plugged in using the fdisk command to list (-l) the attached storage devices: sudo fdisk -l We’ll be using the sudo command frequently – many of … Read more

Home » Linux

Mount a USB Stick/Drive in Linux [HowTo, Tutorial]

Mount a USB Drive in Linux

This tutorial will show you how to mount and access a USB stick or external USB hard drive on Linux. Most desktop Linux distributions will automatically mount USB drives show them in their file explorer, but lightweight and server distributions may not include this functionality – either because it’s considered unnecessary or because the typical user of said distribution wants to be able to do manage those tasks themselves. Modern Linux distributions should all include drivers for USB sticks and external drives, so it’s just … Read more

Home » Linux

Linux vs Windows – The Practical Differences in 2021

Linux vs Windows

Are you a Windows user looking for reasons to give Linux a go? This article explores why you might make Linux your operating system of choice over Windows. Or the opposite, if you’re into that sort of thing. First, let’s look at what makes Windows Windows and why people use it. Windows For better or worse, Windows is the most popular operating system for desktop computers – and has been for decades. Being the most popular operating system for so long, lots of software has been … Read more

Home » Linux

How to Get CPU Information on Linux, With Examples

Get CPU Info in Linux

Here’s how to display the CPU info for your computer on Linux from the Linux command line. The CPU (Central Processing Unit) in your computer does all of the number crunching and processing and logic that your computer needs to do to, well, compute. It’s the brains of the whole operation. The type of CPU, how old it is, and how fast it is determines how responsive your computer is and how quickly it can do things. CPU Info From /proc/cpuinfo One of the core … Read more

Home » Linux

List Running Processes in Linux with ps, top, or htop

Linux List Processes

This article will show you how to list running processes in Linux using several tools. This will allow you to see what is running and how your system resources are being consumed. It’s helpful to see what resources are in use by what process to diagnose slow systems. This information can be used to determine whether you need to purchase more memory (RAM), a faster processor, or whether an application or service on your computer is misconfigured and using more resources than it should. What … Read more

Home » Linux

tee Command in Linux – Split Shell Output [Examples]

Linux tee Command

The tee command in the Linux Shell/command line splits the output of an application – sending output to both a file and STDOUT (the console or another application). Here’s how to use it. The tee command is named for a T-splitter used in plumbing – a pipe that redirects water from a single source in two directions. tee Command Syntax tee is a command with a simple purpose and simple syntax: tee OPTIONS FILE Note that: OPTIONS is a list of options from the below table FILE is the path to … Read more

Home » Linux

The uniq Command In Linux – Tutorial and Examples

Linux uniq Command

This article will explain how to use the uniq command in Linux to find or filter repeated lines in files and provide some usage examples. The uniq command is a simple command which either outputs or omits repeated lines in the supplied input or file. uniq Command Syntax The syntax for the uniq command is as follows: uniq OPTIONS INPUT OUTPUT Note that: OPTIONS is a list of options from the below table INPUT should be the path to the file to be read *Standard input *can also be used OUTPUT should be … Read more