Explore Ubuntu 14.04 or Linux Mint 17

I'm starting to learn Assembly, and I'm focused on computer architecture.

(Due to the fact that I'm curious and want to learn more about the internal workings of computers and what is happening in the world of assembly :))

I am following the book: Build Language Step by Step: Programming with Linux by Jeff Dantmann (3rd Edition)

But after a brief flipping through the book. It shows that it heavily uses the insight debugger, which now seems non-existent for any recently released version of Linux.

In any case, to make the Insight debugger work (correctly) on new Linux systems, and in this case, how?

+5
source share
1 answer

I recently had this problem. After some research, I found that the authorโ€™s site has a post on this issue several years ago: http://www.contrapositivediary.com/?p=1396 .

In particular, there were comments related to this blog that worked for me: http://baptiste-wicht.com/posts/2012/01/install-insight-debugger-linux-mint-ubuntu.html

If any link decays, I did the following and can successfully debug files on Ubuntu 14.04.4 x86:

echo "deb http://ppa.launchpad.net/sevenmachines/dev/ubuntu natty main" | sudo tee -a /etc/apt/sources.list > /dev/null echo "deb-src http://ppa.launchpad.net/sevenmachines/dev/ubuntu natty main" | sudo tee -a /etc/apt/sources.list > /dev/null sudo apt-get update sudo apt-get install insight 
+4
source

Source: https://habr.com/ru/post/1203986/


All Articles