• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

nm : Command to list the symbols in object files.

by admin

nm displays the name list (symbol table of nlist structures) of each object file in the argument list. If you want to peep into an object file and see what are the various symbols that are defines in it the command will come handy. It takes an object file as input and lists out all the symbols, their address and in which section, text,data,uninitialized etc, is the symbol present in as the output.

For example let us assume we have an object file “hello.o” for the simple hello world program hello.c.

#include<stdio.h>
main()
{
printf("Hello world");
}

Running “nm” on the hello.o will yield:

$ nm hello.o
00000000 T main
                U printf

T before “main” signifies it is in the text section and the “U” before printf means it is undefined in this code. The first column gives the value of the symbol.

For more information on the command, please check the man page:

# man nm

Filed Under: C, Linux

Some more articles you might also be interested in …

  1. elinks Command Examples in Linux
  2. How to add a Custom Script to systemd in CentOS/RHEL 7
  3. How to Configure an NFSv4-only Client using nfsconf in CentOS/RHEL 8
  4. qm migrate Command Examples in Linux
  5. CentOS / RHEL : Beginners guide to vsftpd (installation and configuration)
  6. pacman-mirrors Command Examples in Linux
  7. How to change the interface name in CentOS/RHEL 8 using prefixdevname
  8. awk: command not found
  9. UNIX / Linux : How to change the niceness (priority) of a process
  10. jarsigner: command not found

You May Also Like

Primary Sidebar

Recent Posts

  • qsub Command Examples in Linux
  • qsub: command not found
  • qrcp Command Examples in Linux
  • qmrestore Command Examples in Linux

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright