Linux file management command example analysis [display, view, statistics, etc.]

Linux file management command example analysis [display, view, statistics, etc.]

This article describes the Linux file management commands with examples. Share with you for your reference, the details are as follows:

1. Display file contents

cat : Display the contents of a file
tac : Display contents in reverse order

2. Change file permissions

chmod : Change file permissions
-R recursive changes
chown: Change the file owner
-R recursive changes
chgrp: Change the group to which a file belongs
-R recursive changes

>chmod 666 1.txt
 
> chown user1 1.txt
 
>chgrp user1 1.txt


3. Link files

1) Protect the source program

2) Easy access

ln [options] source file or directory target file or directory
-s soft link
Changing one file will affect another file. Deleting the source file will affect the use of the linked file.

-d hard link

Hard-linked files look the same as normal files. Changing one file will affect the other file. When the source file is deleted, the hard-linked file will not be affected.

4. Find files

find [directory list] [matching parameters] [matching criteria]
-name Search by file name
-group Query by the group to which the file belongs
-user query by user name

> find /home/user1 -name 1.txt


5. Other related commands

df View hard disk space
-l View local hard disk
-h Display in 1024-bit
-H Display in base 1000
-T Display partition type
-t Display the specified partition type
-x does not display the specified partition type

> df -lh
 
> df -lH


du View file size
-b In bytes
-k in kilobytes
-m is in megabytes
-h Display in 1024-bit
-H Display in base 1000
-s show statistics

du -s 123 Statistics folder size

mount command

mount /dev/cdrom /mnt/cdrom


umount uninstall command

umount /mnt/cdrom


eject Eject the CD-ROM drive

I hope this article will be helpful for everyone's Linux system maintenance.

You may also be interested in:
  • Use of Linux passwd command
  • Detailed explanation of the use of Linux time command
  • Use of Linux ln command
  • Detailed explanation of commands to read and write remote files using Vim in Linux system
  • Detailed explanation of the usage of grep command in Linux
  • A complete list of commonly used Linux commands (recommended collection)
  • Solve the problem that the commonly used Linux command "ll" is invalid or the command is not found
  • Baota Linux panel command list
  • Extract specific file paths in folders based on Linux commands
  • Linux nohup command principle and example analysis
  • Use of Linux usermod command

<<:  MySQL scheduled task implementation and usage examples

>>:  JavaScript to implement the function of changing avatar

Recommend

MySQL 5.7.18 installation tutorial and problem summary

MySQL 5.7.18 installation and problem summary. I ...

Node.js+express message board function implementation example

Table of contents Message Board Required librarie...

Solution to the failure of loading dynamic library when Linux program is running

Unable to load dynamic library under Linux When t...

Implementation of rewrite jump in nginx

1. New and old domain name jump Application scena...

XHTML 1.0 Reference

Arrange by functionNN : Indicates which earlier ve...

MySQL 8.0.16 installation and configuration tutorial under CentOS7

Uninstall the old version of MySQL (skip this ste...

How to set focus on HTML elements

Copy code The code is as follows: <body <fo...

mysql command line script execution example

This article uses an example to illustrate the ex...

GET POST Differences

1. Get is used to obtain data from the server, wh...

A brief discussion on whether CSS animation will be blocked by JS

The animation part of CSS will be blocked by JS, ...

WeChat applet calculator example

This article shares the specific code of the WeCh...

Detailed explanation of vue.js dynamic components

:is dynamic component Use v-bind:is="compone...

Remote development with VSCode and SSH

0. Why do we need remote development? When develo...

Analysis of two implementation methods for adding static routing in Linux

Command to add a route: 1.Route add route add -ne...