In this Linux tip, learn how easy it is to install Apache on Fedora. The first thing you need to do is run a command to install the software. Then, you can run other commands to ensure it starts when your system reboots, to view Apache processes, to uninstall it and more.
In this Linux tip, learn how to ask a Linux command for help. You can type the command you want to know about and then add --help. What the command should send back is an explanation of the command's options, maybe a usage example and something about the exit status.
In this Linux tip, learn how to use the bzcat and zcat commands. They allow you to look at the contents of files compressed with the bzip2 and gzip commands without having to uncompress the files first. Instead, these commands uncompress the files and send the output to standard out while the compressed files are left intact.
In this Linux tip, learn how to use exiftool. It's an app that you can install on your Linux system to pull metadata from jpg and png files. That metadata provides information such as the date the image was created or last modified, the image size in pixels and the image resolution.
In this Linux tip, learn how to use the help command. It's a command that provides useful information on bash "builtins". Those are commands that are built into, in other words "part of" the bash shell, not executables on their own.
In this Linux tip, learn how to use the traceroute command. It reports on the route taken to reach a remote system and provides timing details for each "hop" along the way (the time between routers).
In this Linux tip, learn how to use the tool called speedtest. It allows you to check the speed of your connection to your Internet provider. The tool is not installed on Linux systems by default, but is easy to find and install.
In this Linux tip, learn how to use the cat command. It's one of the most basic Linux commands, though it's used for two very different operations and not everyone is likely familiar with the second.
In this Linux tip, learn how to use the blkid command. It gives you a very useful view of block devices on your Linux system. First, it shows the devices (e.g., /dev/sda1). It shows the UUIDs (the 128 bit long "universally unique identifiers") associated with each of them, the block sizes, the file system types and, when available, the PARTUUIDs.
In this Linux tip, learn how to use the ps command. It displays information on running processes. If you want to see only certain processes, you can pass the output of a ps command to grep and specify what you want to see – for example, by username or process name.
In this Linux tip, learn how to use the nmap command. It's generally used for security auditing, but provides interesting and useful information on systems connecting too your local network.
In this Linux tip, learn how to use the head and tail commands. They're basic commands that every Linux user should know. The head command is generally used to display the top lines in a text file, and the tail command shows the last lines in a file.
In this Linux tutorial, learn how to use the pi command. You probably won't need it very often, but, if you need to calculate pi to some arbitrary number of digits, you'll probably be surprised at how easy this can be.
In this Linux tip, learn how to use the rig command. It randomly generates name, address and phone number listings. It's useful when you're testing an application and need hundreds or thousands of addresses to make sure that it works correctly.
In this Linux tip, learn how to use the lslogins command. It provides some useful details on user accounts and logins. In its simplest form, you could just type lslogins, but without using sudo, some of the details you'll probably want to see won't be available because the files in which it's stored won't be readable.
In this Linux tip, learn how to use the autoexpect command. You can use it to build expect scripts that let you run scripts without having to provide answers interactively.