GDB:Missing separate debuginfos, use: debuginfo-install glib
修改/etc/yum.repos.d/CentOS-Debuginfo.repo里面的debuginfo目录中enable=1 2 命令:yuminstallnss-softokn-debuginfo --nogpgcheck 如果直接执行debuginfo-install命令的话会出现nss-softokn-debuginfoXXXXXXXnotsigned,就是没有签名,不能安装,所以采用-
修改/etc/yum.repos.d/CentOS-Debuginfo.repo里面的debuginfo目录中enable=1
2
命令:yum install nss-softokn-debuginfo --nogpgcheck
如果直接执行debuginfo-install命令的话会出现nss-softokn-debuginfoXXXXXXX not signed ,就是没有签名,不能安装,所以采用--nogpgcheck选项 忽略签名的检查
3
命令:debuginfo-install glibc-2.12-1.80.e16_3.5.i686
其他linux系统可参照以上步骤解决,如果是64位系统 需要修改最后一步:debuginfo-install glibc-2.12-1.132.el6.x86_64
如果没有debuginfo-install命令的话:
yum install yum-utils

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Common configuration techniques for using GDB to debug the Linux kernel Introduction: In Linux development, using GDB to debug the kernel is a very important skill. GDB is a powerful debugging tool that can help developers quickly locate and solve bugs in the kernel. This article will introduce some common GDB configuration techniques and how to use GDB to debug the Linux kernel. 1. Configure the GDB environment First, we need to configure the GDB environment on the Linux system. Please make sure your system has the GDB tool installed

Common configuration methods for using GDB to debug embedded ARM programs under Linux. As a special computer system, embedded systems are usually integrated in electronic devices and used to control and manage hardware resources. In order to debug and analyze the operation of embedded systems, we need to use specialized tools. Among them, GDB is a commonly used open source debugger that can run on embedded systems and communicate with programs. This article will introduce common configuration methods for using GDB to debug embedded ARM programs under Linux and give code examples.

bootmgr is the abbreviation of boot management program, which is one of the key components for Windows operating system startup. When you start the computer, if a "bootmgrismissing" error message appears, it means that the computer cannot find the files required for startup. This problem can be caused by a variety of reasons, such as hard drive failure, corrupted boot files, or setup issues. Below we will explore possible solutions to fix this issue. Solution 1: Check the boot device First, we need to make sure

The steps to use GDB to debug Go functions are as follows: Install GDB and Go debugging package. Compile the program with debug information enabled. Use GDB to launch the program. Set breakpoints. Use the run command to start the program. Use debug commands to debug.

How to solve the problem of lost bootmgr file in Windows. With the rapid development of modern technology, computers play an important role in people's daily lives. However, you may encounter various problems when using your computer, one of the common problems is the "bootmgrismissing" error message. This error message means that the computer cannot find the boot manager file bootmgr and cannot start the system correctly. When encountering this problem, we don’t need to panic. Here are several solutions:

Common configuration methods for using GDB to debug multi-threaded programs under Linux Introduction: In multi-threaded programming, debugging is an essential task. GDB is a powerful debugger that can help us locate and solve errors in multi-threaded programs. This article will introduce common configuration methods for using GDB to debug multi-threaded programs under Linux, and provide code examples, hoping to help readers better understand and use GDB. 1. Install GDB First, we need to install GDB in the Linux system. Enter in the terminal

In Linux systems, debugging is a crucial part of the program development and maintenance process. In order to assist developers in debugging more effectively, Linux provides a variety of powerful debugging tools and technologies. This article will briefly introduce some commonly used Linux debugging tools and techniques to help developers debug better. 1. Debugging Tools 1.gdb In Linux systems, gdb is widely used as one of the debugging tools. It helps developers track the cause of program crashes and provides a series of commands to check program status, modify variables, and execute code. operate. To start debugging, you can use the following command. $gdb./program where `./program` represents the executable file to be debugged. Once gdb starts,

Basic configuration guide for debugging using GDB under Linux Introduction: Code debugging is an indispensable step in the software development process. It can help developers locate and solve problems. In the Linux environment, GDB (GNU Debugger) is a powerful debugging tool that can be used to debug programming languages such as C and C++. This article will introduce how to configure and use GDB for code debugging in a Linux environment, and provide some common instructions and examples. 1. Install GDB Enter the following command in the terminal to install GDB:
