View the dependent libraries of so or executable programs under linux

View the dependent libraries of so or executable programs under linux

View the dependent libraries of so or executable programs under Linux

Executable programs under Linux include executable programs exe and so, both files start with ELF.

objdump -x libxxxxx.so | grep NEEDED

objdump -x executable program name | grep NEEDED

or

arm-hisiv300-linux-objdump -x executable program | grep NEEDED

arm-hisiv300-linux-readelf -a executable program | grep NEEDED

How to check which processes are using a certain so in linux

On our server side, how do we check which processes are using a certain so

Solution

lsof **.so 

Obviously, several processes of our apache httpd are using this socket.

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. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Play with the connect function with timeout in Linux
  • Detailed explanation of the solution to npm ls errors caused by fsevents module under Linux
  • Explanation of installation and configuration of building go environment under linux
  • Summary of Linux cut command usage
  • Detailed explanation of Linux system input and output management and common functions of vim
  • Linux shell - Example of how to test file system attributes by identification
  • Various judgments of if in linux shell
  • Linux shell pushd, popd and dirs usage explanation
  • How to print various color fonts and backgrounds in the Linux shell console
  • Example explanation of alarm function in Linux

<<:  Detailed tutorial on installing MySQL 5.7.20 on RedHat 6.5/CentOS 6.5

>>:  Summary of event handling in Vue.js front-end framework

Recommend

Solve the problem of Syn Flooding in MySQL database

Syn attack is the most common and most easily exp...

JS ES new features: Introduction to extension operators

1. Spread Operator The spread operator is three d...

Express implements login verification

This article example shares the specific code for...

Reflection and Proxy in Front-end JavaScript

Table of contents 1. What is reflection? 2. Refle...

Vue achieves seamless carousel effect (marquee)

This article example shares the specific code of ...

MySQL 8.0.24 version installation and configuration method graphic tutorial

This article records the installation and configu...

Analysis of MySQL general query log and slow query log

The logs in MySQL include: error log, binary log,...

HTML code text box limit input text box becomes gray limit text box input

Method 1: Set the readonly attribute to true. INPU...

How to optimize MySQL query speed

In the previous chapters, we introduced how to ch...

Several ways to change MySQL password

Preface: In the daily use of the database, it is ...

A summary of the reasons why Mysql does not use date field index

Table of contents background explore Summarize ba...

MySQL storage engine basics

In the previous article, we talked about MySQL tr...

Let you understand the deep copy of js

Table of contents js deep copy Data storage metho...