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

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • VCS
  • Interview Questions
  • Database
    • 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. fprintd-delete Command Examples in Linux
  2. duc Command Examples in Linux
  3. nmap: command not found
  4. notify-send Command Examples in Linux
  5. “git add” Command Examples
  6. just Command Examples
  7. kpartx: command not found
  8. guake Command Examples in Linux
  9. Linux: No space left on device while df command shows a lot of free space
  10. killall: command not found

You May Also Like

Primary Sidebar

Recent Posts

  • Vanilla OS 2 Released: A New Era for Linux Enthusiasts
  • mk Command Examples
  • mixxx Command Examples
  • mix Command Examples

© 2025 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright