linux更新nasm
时间: 2023-10-19 15:06:20 浏览: 92
As an AI language model, I don't have access to update software on your computer. However, here are some general steps to update NASM on Linux:
1. Open the terminal on your Linux system.
2. Check the current version of NASM installed on your system using the command `nasm -v`.
3. Visit the official NASM website and check the latest version available for download.
4. Download the latest version of NASM using the command `wget https://www.nasm.us/pub/nasm/releasebuilds/<version>/nasm-<version>.tar.gz`.
5. Extract the downloaded file using the command `tar -xvf nasm-<version>.tar.gz`.
6. Navigate to the extracted directory using the command `cd nasm-<version>`.
7. Configure the installation using the command `./configure`.
8. Build and install the updated NASM using the command `make && sudo make install`.
9. Verify the updated NASM version using the command `nasm -v`.
Note: The exact commands may differ depending on your Linux distribution and version. Please make sure to follow the instructions specific to your system.
阅读全文