How to modify file name in linux?

青灯夜游
Release: 2022-01-12 15:19:24
Original
182367 people have browsed it

How to change the file name in Linux: First open the terminal and enter the command line; then use the cd command to enter the directory of the file to be modified; finally use the "sudo mv test.txt new.txt" command to modify the file name. Can.

How to modify file name in linux?

In Linux, you can modify files by using the mv command on the command line (for example: sudo mv test.txt new.txt) name, or modify the file name directly through the graphical interface. The following article takes Ubuntu as an example to introduce how to modify the file name in Ubuntu. I hope it will be helpful to everyone.

Recommended tutorial: "linux course"

Method 1: Modify the file name through the command line

1. Open the terminal and enter the command line

How to modify file name in linux?

2. Use the cd command to enter the directory of the file to be modified.

Example: Use the cd ./myFolder command to enter the /home/cdh/myFolder directory. We can use the ls command to view the files in this directory:

How to modify file name in linux?

#It can be seen that there are two files in this directory.

3. Use the mv command to modify the file name

Use the following command to modify test.txt to new.txt

sudo mv test.txt new.txt
Copy after login

Run results :

How to modify file name in linux?

Method 2. Directly modify the file name through the graphical interface

Note:This method is only useful for Linux systems equipped with graphical interfaces.

1. Open the file directory whose file name needs to be modified through the graphical interface

How to modify file name in linux?

2. Select the file and right-click -->Select [Rename]

1) If [Rename] is gray, it means that there is no permission to modify the file

Select [Properties]-->[Permissions]. You can see that I do not have the right to modify permissions. This type of file requires the root user to have the permission to modify the file name. If an ordinary user wants to modify this type of file, they can only rename the file by using the terminal, which is the first method mentioned above.

How to modify file name in linux?

#2) If [Rename] is white, it means that the file can be renamed.

How to modify file name in linux?

How to modify file name in linux?

Recommended related video tutorials: "Linux Tutorial"

The above is this article The entire content, I hope it will be helpful to everyone's study. For more exciting content, you can pay attention to the relevant tutorial columns of the PHP Chinese website! ! !

The above is the detailed content of How to modify file name in linux?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!