Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 517 Bytes

linux-setup.md

File metadata and controls

33 lines (21 loc) · 517 Bytes

NASM Setup for Linux

This guide will walk you through installing and setting up the Netwide Assembler (NASM) on a Linux system.


Step 1: Check if NASM is Already Installed

Before installing, you may want to check if NASM is already installed on your system. Open a terminal and run the following command:

nasm -v

Step 2: Install NASM

sudo apt update
sudo apt install nasm

check if nasm in installed

nasm -v

Step 3 : Install GDB

sudo apt install gdb