15 Linux Command Aliases That Will Save You Time

15 Linux Command Aliases That Will Save You Time

Preface

In the process of managing and maintaining the Linux system, a large number of commands will be used. Some very long commands or usages are often used. It is not advisable to repeatedly and frequently enter a very long command or usage. At this time, you can use the command alias function to simplify this process.

Some aliases are included by default in your installed Linux distribution.

Linux command line aliases are great for helping you be more productive. Even better, some aliases are included by default in your installed Linux distribution.

Here is an example of a command alias in Fedora 27:


The alias command lists existing aliases. Setting up an alias is also very simple:

alias new_name="command"

Here are 15 command line aliases that will save you time:

1. Install any application utility/app:

alias install="sudo yum install -y"

Here, sudo and -y are optional, depending on each user's preference:


2. Update the system:

alias update="sudo yum update -y"

3. Upgrade system:

alias upgrade="sudo yum upgrade -y"

4. Switch to root user:

alias root="sudo su -"

5. Switch to the "user" user, where user is set to your username:

alias user="su user"

6. Display and list all available ports, status and IP:

alias myip="ip -br -ca"

7. ssh to your server myserver:

alias myserver="ssh user@my_server_ip"

8. List all processes in the system:

alias process="ps -aux"

9. Check the service status of the system:

alias sstatus="sudo systemctl status"

10. Restart system services:

alias srestart="sudo systemctl restart"

11. Kill process by name:

alias kill="sudo pkill" 

12. Display the total memory used and free memory of the system:

alias mem="free -h"

13. Display system CPU framework structure, CPU quantity, thread number, etc.:

alias cpu="lscpu"

14. Display the total disk size of the system:

alias disk="df -h"

15. Display the current system Linux distribution version (applicable to CentOS, Fedora and Red Hat):

alias os="cat /etc/redhat-release" 

via: https://opensource.com/article/18/8/time-saving-command-line-aliases

Author: Aarchit Modi Topic: lujun9972 Translator: MZqk Proofreader: wxy

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • How to configure aliases for commands in Linux system
  • Linux Learning CentOS (Twenty-nine) - Linux network card advanced commands, IP aliases and multi-network card binding methods
  • Summary of ten Linux command aliases that can improve efficiency

<<:  7 Best VSCode Extensions for Vue Developers

>>:  Ubuntu 16.04 mysql5.7.17 open remote port 3306

Recommend

MySQL 8.0.17 installation graphic tutorial

This article shares with you the MySQL 8.0.17 ins...

jQuery implements time selector

This article example shares the specific code of ...

Vue basic instructions example graphic explanation

Table of contents 1. v-on directive 1. Basic usag...

Share 10 of the latest web front-end frameworks (translation)

In the world of web development, frameworks are ve...

JavaScript Advanced Programming: Variables and Scope

Table of contents 1. Original value and reference...

The implementation process of extracting oracle data to mysql database

In the migration of Oracle database to MySQL data...

Detailed explanation of how to use $props, $attrs and $listeners in Vue

Table of contents background 1. Document Descript...

Uniapp implements DingTalk scan code login sample code

Since Uniapp does not have DingTalk authorization...

Detailed explanation of global parameter persistence in MySQL 8 new features

Table of contents Preface Global parameter persis...

Install MySQL 5.7.17 in win10 system

Operating system win10 MySQL is the 64-bit zip de...

Use CSS to create 3D photo wall effect

Use CSS to create a 3D photo wall. The specific c...

How to implement form validation in Vue

1. Installation and use First, install it in your...

Explanation of the precautions for Mysql master-slave replication

1. Error error connecting to master 'x@xxxx:x...