Solve the problem that the commonly used Linux command "ll" is invalid or the command is not found

Solve the problem that the commonly used Linux command "ll" is invalid or the command is not found

question:

The commonly used command "ll" is invalid or the command is not found

reason:

The "ll" command is not a basic Linux command.
It is an alias for "ls -l".
Some versions do not directly support the "ll" command output.

  1. Run "vi ~/.bashrc"
  2. Check whether there is data like "alias ll='ls -l'" in the file.
  3. If so, remove the "#" before the data.
  4. If not, add "alias ll='ls -l'" and save.
  5. Then run the "source ~/.bashrc" command and it will be successful.
vi ~/.bashrc
alias ll='ls -l'
source ~/.bashrc 

Environment variables apply to the current process

Enter the command to execute

bash

Summarize

This is the end of this article about how to solve the problem of invalid or not found Linux commonly used command "ll". For more related content about invalid linux ll command, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A complete list of commonly used Linux commands (super comprehensive)
  • Detailed explanation of the usage of grep command in Linux
  • A complete list of commonly used Linux commands (recommended collection)
  • Linux common commands chmod to modify file permissions 777 and 754
  • Introduction to Linux and the most commonly used commands (easy to learn, but can solve more than 95% of the problems)
  • Linux commonly used commands performance commands

<<:  Solution to the problem that synchronous replication errors cannot be skipped in MySQL5.6 GTID mode

>>:  JS function call, apply and bind super detailed method

Recommend

Analysis of Linux boot system methods

This article describes how to boot the Linux syst...

How to set a dotted border in html

Use CSS styles and HTML tag elements In order to ...

Detailed explanation of the usage of two types of temporary tables in MySQL

External temporary tables A temporary table creat...

MySQL query optimization: causes and solutions for slow queries

Friends who are doing development, especially tho...

How to solve the 10060 unknow error when Navicat remotely connects to MySQL

Preface: Today I want to remotely connect to MySQ...

How to use Javascript to generate smooth curves

Table of contents Preface Introduction to Bezier ...

Detailed explanation of HTML style tags and related CSS references

HTML style tag style tag - Use this tag when decl...

Vue+express+Socket realizes chat function

This article shares the specific code of Vue+expr...

Analysis of the Nesting Rules of XHTML Tags

In the XHTML language, we all know that the ul ta...

MySQL database must know sql statements (enhanced version)

This is an enhanced version. The questions and SQ...

Detailed explanation of how Vue components transfer values ​​to each other

Table of contents Overview 1. Parent component pa...

...