Installing NASM and Writing Your First Assembly Program on Linux

Linux TLDR
Last Updated:
Reading time: 3 minutes

Assembly language is one of the most popular topics in the coding community as it offers you the ability to work at a low level that is closely tied to a computer’s architecture and hardware.

It provides a human-readable representation of machine code instructions, allowing coders to write code that can directly manipulate a computer’s hardware components, such as the CPU, memory, and I/O devices.

To start your journey in assembly programming, you’ll require a reliable assembler. Several options are available, such as MASM, TASM, and GAS, but today we’ll focus on the most widely used one: NASM assembler.

So, stay with this article to learn about NASM, installing it on your preferred Linux distribution, and running your first assembly program on Linux.

Tutorial Details

DescriptionNASM (Netwide Assembler)
Difficulty LevelHard
Root or Sudo PrivilegesYes (for installation)
OS CompatibilityUbuntu, Manjaro, Fedora, etc.
Prerequisites–
Internet RequiredYes (for installation)

A Quick Insight into NASM Assembler

NASM, short for β€œNetwide Assemblerβ€œ, is a widely used software tool in computer programming. It transforms assembly language code into executable machine code, or binary code, for a computer’s CPU.

It’s freely downloadable from multiple web sources. Interestingly, if you’ve installed β€œDevelopment Tools” on your Linux system, NASM might already be installed, and you can verify with β€œwhereis nasm” command.

The good thing about this assembler is that it’s well documented, you can get a lot of learning resources on the internet, and it can easily be used on both Linux and Windows.

So, you can follow the next section to learn how to install NASM on your favorite Linux distribution.

How to Install NASM on Linux

The installation is quite simple and straightforward; just launch your terminal and issue one of the following commands based on your Linux distribution to install it from your default package manager.

$ sudo apt install nasm                                                                          #For Debian, Ubuntu, Linux Mint
$ sudo dnf install nasm                                                                          #For RHEL, Fedora, AlmaLinux
$ sudo pacman -S nasm                                                                        #For Arch, Manjaro, EndeavourOS

However, it’s important to know that when using the APT package manager, it will install NASM older version 2.15.05, whereas DNF and Pacman will install the latest NASM version, which is 2.16.01 as of the time this article was written.

If you’re comfortable to compile and install it from source, which I believe won’t be a challenge for you since you’re about to learn the most complex programming language.

You can have the latest NASM assembler on your Debian or Ubuntu-based distributions by just taking a few additional steps. So, start by following the below steps:

1. Go to the official NASM website and choose your preferred source (for example, β€œStableβ€œ).

Choosing the stable version of NASM

2. You’ll be directed to the index page where you should select the NASM source archive nasm-XXX.tar.gz, with XXX representing the NASM version in the archive.

Downloading the latest NASM source

3. Once you’ve downloaded the NASM archive, open your terminal, go to the download directory, and run the following series of commands to compile and install NASM from source.

$ tar -xf nasm-*.tar.gz                                                                        #Extracting the archive content
$ cd nasm-*/                                                                                        #Moving into the extracted directory
$ ./configure                                                                                         #Setting up the Makefiles
$ make                                                                                                   #Building the nasm binaries
$ sudo make install                                                                              #Installing nasm

After the installation finishes, you can check the accessibility of the NASM assembler by checking its version using the following command:

$ nasm --version

Output:

Checking the NASM version

Now, let’s learn the process of assembling and executing a basic β€œHello World” program in assembly.

Write, Assemble, and Run a Simple Assembly Program

Let’s walk through a simple example of writing, assembling, and running an assembly program using NASM on a Linux system. In this example, we’ll create a program that prints β€œHello, Linux TLDR!” to the console. To begin, follow the below steps one-by-one.

1. Create a text file named β€œhello.asm” using your choice of text editor and paste the following assembly code for our program.

section .data
    hello db 'Hello, Linux TLDR!',0

section .text
    global _start

_start:
    mov eax, 4
    mov ebx, 1
    mov ecx, hello
    mov edx, 17
    int 0x80

    mov eax, 4
    mov ebx, 1
    mov ecx, newline
    mov edx, 1
    int 0x80

    mov eax, 1
    int 0x80

section .data
    newline db 10

Save and close the file.

2. Open a terminal and navigate to the directory where β€œhello.asm” is located and then assemble the code using NASM.

$ nasm -f elf64 hello.asm -o hello.o

The above command tells NASM to assemble β€œhello.asm” into an ELF object file named β€œhello.o” with x64 architecture.

3. Link the object file to create an executable:

$ ld hello.o -o hello

This command uses the GNU linker (ld) to create an executable named β€œhello” from β€œhello.oβ€œ.

4. Run the assembled program:

$ ./hello

You should be able to see the following output:

Running an simple assembly program using NASM in linux

That’s it! You’ve successfully assembled and run an assembly program using NASM on Linux.

This is a basic example, but it demonstrates the fundamental steps of writing, assembling, and executing an assembly program.

Final Word

Assembly programming can be quite low-level and requires a good understanding of the CPU architecture and system calls for more complex tasks.

The learning journey has a lot of curves, but you can find guidance and learning resources on the internet. To begin your journey, I would suggest you start with this tutorial.

If you are having difficulty, facing any issues, or even needing basic help, feel free to tell us via the comment section.

Till then, peace!

Join The Conversation

Users are always welcome to leave comments about the articles, whether they are questions, comments, constructive criticism, old information, or notices of typos. Please keep in mind that all comments are moderated according to our comment policy.