Solution to the "No such file or directory" prompt when executing executable files in Linux

Solution to the "No such file or directory" prompt when executing executable files in Linux

Recently, when I was using the Linux operating system to execute an executable file, a prompt "No such file or directory" appeared, which made me very confused.

./tshrf

bash: ./tshref: No such file or directory

Check the file information and you can see that the file exists and is executable.

-rwxr-xr-x 1 yuan yuan 20581 April 29 2004 tshref

After consulting the information, the reason is that the system bitness does not match the lib library bitness required by the executable file.

Use the uname command to print system information and find that the system is a 64-bit system

uname -a

Linux yuan-vm 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

Use the file command to view the file information and find that it is a 32-bit executable file.

file ./tshref

./tshref: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), 
dynamically linked (uses shared libs), for GNU/Linux 2.2.5, not stripped

To run 32-bit programs on a 64-bit system, you need to install the 32-bit lib library.

For Ubuntu users, you can use the following command to install it.

sudo apt-get install ia32-libs

Reading package lists... Done
Building dependency tree    
Reading state information... Done
Package ia32-libs is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
 lib32z1 lib32ncurses5 lib32bz2-1.0

The required library may not be found during the process, but there will be several alternative packages. Choose to install one of them.

sudo apt-get install lib32bz2-1.0
lib32bz2-1.0

Then you can run the previous executable file normally.

There may be other reasons for this problem, such as text encoding format problems. This article only proposes a solution. Readers who encounter the same problem should analyze the specific problem.

This is the end of this article about how to solve the problem "No such file or directory" when executing executable files in Linux. For more information about Linux No such file or directory, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • There is no make command in Linux (make: *** No target specified and no makefile or make command installation method found)
  • Definition and use of makefile command packages in Linux
  • One shell command a day Linux text series - file command usage
  • Summary of Linux environment variable configuration methods (differences between .bash_profile and .bashrc)
  • Example analysis of the conversion between file descriptor fd and file pointer FILE* in Linux
  • Detailed explanation of Linux makefile and shell file calling each other
  • Use of Linux file command

<<:  How webpack implements static resource caching

>>:  Mysql8.0 uses window functions to solve sorting problems

Recommend

10 bad habits to avoid in Docker container applications

There is no doubt that containers have become an ...

Let's talk about destructuring in JS ES6

Overview es6 adds a new way to get specified elem...

MySQL 5.7 Common Data Types

——Notes from "MySQL in Simple Terms (Second ...

Summary of Linux user groups and permissions

User Groups In Linux, every user must belong to a...

20 Signposts on the Road to Becoming an Excellent UI (User Interface) Designer

Introduction: Interface designer Joshua Porter pub...

Vue custom component implements two-way binding

Scenario: The interaction methods between parent ...

Detailed tutorial on installing phpMyAdmin on Ubuntu 18.04

We will install phpMyAdmin to work with Apache on...

HTML elements (tags) and their usage

a : Indicates the starting or destination positio...

Where is the project location deployed by IntelliJ IDEA using Tomcat?

After IntelliJ IDEA deploys a Javaweb project usi...

A practical record of troubleshooting a surge in Redis connections in Docker

On Saturday, the redis server on the production s...

Simple encapsulation of axios and example code for use

Preface Recently, when I was building a project, ...

How to use Linux locate command

01. Command Overview The locate command is actual...

Essential Handbook for Web Design 216 Web Safe Colors

The color presentation on a web page will be affec...

The use of MySQL triggers and what to pay attention to

Table of contents About Triggers Use of triggers ...

Detailed graphic explanation of mysql query control statements

mysql query control statements Field deduplicatio...