Installation How to install NASM $ sudo apt install as31 nasm How to run $ nasm -f elf64 hello_world.asm $ ld -s -o hello_world hello_world.o $ ./hello_world How to Uninstall NASM $ sudo apt remove as31 nasm