search

In Linux, you can use the find or locate command to find the file location. The syntax format is "find / -name file name" and "locate file name". The find command is used to find files in a specified directory, and the locate command is used to find documents that meet the conditions.

How to find file location in linux

#The operating environment of this tutorial: centos7 system, thinkpad t480 computer.

Because you want to install pl/sql, you need to look for the tnsnames.ora file. . Let’s see how to check which directory this file is in under Linux

find / -name tnsnames.ora

Find:

/opt/app/oracle/product/10.2 /network/admin/tnsnames.ora

/opt/app/oracle/product/10.2/network/admin/samples/tnsnames.ora

You can also use locate to find

locate tnsnames.ora

The result is: /opt/app/oracle/product/10.2/hs/admin/tnsnames.ora.sample

/opt/app/oracle/product/ 10.2/network/admin/tnsnames.ora

/opt/app/oracle/product/10.2/network/admin/samples/tnsnames.ora

1. Search by file name:

For example, if you forget which directory the httpd.conf file is in the system, or even don’t know where it is somewhere in the system, you can use the following command:

find / -name httpd.conf

This command syntax seems easy to understand. Just write -name directly after find, indicating that the system is required to search according to the file name, and finally write the target file httpd.conf Just name. After a while, the system will display a list of search results on the computer screen:

etc/httpd/conf/httpd.conf

This is the complete file httpd.conf in the Linux system path. The search was successful.

If the system does not display the results after entering the above search command, then do not think that the system has not executed the find / -name httpd.conf command, but it may be that the Apache server is not installed in your system. At this time, as long as you Install the Apache Web server, and then use find / -name httpd.conf to find this configuration file.

2. Error-free search techniques:

In the Linux system, the "find" command is a command that can be used by most system users and is not exclusive to ROOT system administrators. However, ordinary users may also encounter such a problem when using the "find" command, that is, the system administrator ROOT in the Linux system can set certain file directories to prohibited access mode. In this way, ordinary users do not have permission to use the "find" command to query these directories or files. When ordinary users use the "find" command to query these file directories, the words "Permissiondenied." (access prohibited) often appear. The system will not be able to query the file you want. In order to avoid such errors, we use the method of transferring error prompts to try to find files, for example, enter:

Find / -name access_log 2>/dev/null

3. According to some files Name search method:

For example, if we know that a file contains the three letters srm, then it is possible to find all the files in the system that contain these three letters. Enter:

Find /etc -name '*srm*'

This command indicates that the Linux system will search for all files containing the three letters srm in the entire /etc directory, such as absrmyz, tibc.srm, etc. All files that meet the conditions will be displayed. If you also know that this file starts with the three letters srm, then we can also omit the first asterisk, the command is as follows:

Find/etc -name 'srm*'

Only files like srmyz are found. Files like absrmyz or absrm do not meet the requirements and are not displayed. In this way, the efficiency and reliability of finding files are greatly enhanced.

4. Query method based on file characteristics:

If you only know the size, modification date and other characteristics of a certain file, you can also use the "find" command to find it out. This is the same as in the WINDOWS system. The "Search" function is basically the same. In Microsoft Search, Search Assistant makes it easier to search for files and folders, printers, users, and other computers on your network. It even makes searching on the Internet easier. Search Assistant also includes an indexing service that maintains an index of all the files on your computer, making searches faster. When using the Search Assistant, users can specify multiple search criteria. For example, users can search files and folders by name, type, and size. Users can even search for files containing specific text. If you are using Active Directory, you can also search for printers with a specific name or location.

For example, we know that the size of a Linux file is 1,500 bytes, then we can use the following command to query find /-size

1500c, the character c indicates that the size of the file to be searched is in bytes. If we don't even know the specific size of this file, we can also use fuzzy search in Linux to solve the problem. For example, if we enter the command find /-size 10000000c, it means that we specify that the system will find files larger than 10000000 bytes in the root directory and display them. The "+" in the command indicates that the system is required to list only files larger than the specified size, while using "-" indicates that the system is required to list files smaller than the specified size. The following list is the search action that the system will perform after using different "find" commands in Linux. From it, we can easily see that there are many ways to use the "find" command in Linux. As long as the "find" command is used flexibly to find files, It is no worse than the search ability in WINDOWS.

Find / -amin -10 # Find files accessed in the last 10 minutes in the system

Find / -atime -2 # Find files accessed in the last 48 hours in the system

Find / -empty # Find empty files or folders in the system

find / -group cat # Find files belonging to groupcat in the system

find / -mmin -5 #Find files modified in the last 5 minutes in the system

Find / -mtime -1 #Find files modified in the last 24 hours in the system

Find / -nouser #Find Files belonging to invalid users in the system

Find / -user fred #Find files belonging to the user FRED in the system

The following list is a list of the characteristics of the files that can be specified by the find command. Some conditions to search for. Not all search conditions are listed here. You can know the search functions of all find commands by referring to relevant books on Linux.

  -amin n

Find the files accessed in the system in the last N minutes

-atime n

Find the files accessed in the system in the last n*24 hours

 -cmin n

Find the files whose status was changed in the last N minutes in the system

 -ctime n

Find the files whose status was changed in the last n*24 hours in the system Files that change status

 -empty

Find blank files in the system, or blank file directories, or folders without subdirectories in the directory

 -false

Find files that are always wrong in the system

-fstype type

Find files that exist in the specified file system in the system, for example: ext2.

n

Find the files in the system whose file number group ID is n

-group gname

Find the files in the system that belong to the gnam file group and specify the group and ID

(Recommended learning: linux tutorial)

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

Statement
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
什么是linux设备节点什么是linux设备节点Apr 18, 2022 pm 08:10 PM

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

Linux中open和fopen的区别有哪些Linux中open和fopen的区别有哪些Apr 29, 2022 pm 06:57 PM

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

linux中什么叫端口映射linux中什么叫端口映射May 09, 2022 pm 01:49 PM

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

linux中eof是什么linux中eof是什么May 07, 2022 pm 04:26 PM

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

linux怎么判断pcre是否安装linux怎么判断pcre是否安装May 09, 2022 pm 04:14 PM

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux怎么查询mac地址linux怎么查询mac地址Apr 24, 2022 pm 08:01 PM

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

linux中rpc是什么意思linux中rpc是什么意思May 07, 2022 pm 04:48 PM

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

手机远程linux工具有哪些手机远程linux工具有哪些Apr 29, 2022 pm 05:30 PM

手机远程linux工具有:1、JuiceSSH,是一款功能强大的安卓SSH客户端应用,可直接对linux服务进行管理;2、Termius,可以利用手机来连接Linux服务器;3、Termux,一个强大的远程终端工具;4、向日葵远程控制等等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft