歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu 10.04安裝IDA PRO

Ubuntu 10.04安裝IDA PRO

日期:2017/2/28 16:35:59   编辑:Linux教程

從昨天晚上開始折騰Ubuntu 10.04下的IDA。從網上找了相關的文章但是可能是自己太菜了。折騰了一晚上愣是沒搞定。話說今天看完《三國》,在朋友用自己的電腦偷菜完畢之後開始重新折騰IDA,終於有了突破性的進展。

安裝方法可以參考這裡的這篇文章~

1、download http://www.uushare.com/user/fireworld/file/225023
2、unzip it ,there is an readme in "IDA linux" directory.install follow it
3、 if there is an error saying no libstdc++5.so.o when you try to run it,just install it,you can install it by running apt-get install libstdc++5 in ubuntu.
4、create soft link, change to the /bin directory ,exec the command:
ln -s /usr/local/idapro/IDALinux/idastd/idal
ln -s /usr/local/idapro/IDALinux/idastd/ida.hlp (must modify the directory according yours)
ps:if your apt source don't have libstdc++5,you can change the apt source and try again.
my apt source :
deb http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse

但是有幾點說的不夠清楚,這裡系統的整理了一下:

1.從http://www.uushare.com/user/fireworld/file/225023下載ida pro,不過這個不適最新的5.5版的。

2.解壓文件到自己的目錄下。原文中說按照提供的Readme文件安裝操作即可,其實裡面沒什麼東西,就是把ida.key復制到ida文件目錄下即可。

3.默認文件是沒有執行權限的,切換到ida目錄下,執行sudo chmod 777 idal,修改idal的文件權限,否則會提示找不到命令。

4.即使執行了上面的命令仍舊可能不能正常運行,會提示:no libstdc++5.so.o,需要安裝上面提示的這個東西,執行sudo apt-get install libstdc++5。如果提示找不到源,可以sudo gedit /etc/apt/sources.list修改更新源為:

deb http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiversedeb http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiversedeb http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiversedeb http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiversedeb http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiversedeb-src http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiversedeb-src http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiversedeb-src http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiversedeb-src http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiversedeb-src http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse

5.現在可以使用ida了,相關readme中已經說明了使用方法。

That’s it, IDA is ready to use. To launch it, use

idal input-file

or

idal64 input-file (for 64-bit advanced version)

最後可以創建軟鏈接,切換到/bin目錄下執行:

sudo ln -s /home/obaby/IDALinux/idastd/idal

sudo ln -s /home/obaby/IDALinux/idastd/idal.hlp

需要注意修改文件路徑為自己的ida的絕對路徑。到此ida就可以使用了,最終效果如文章開始截圖所示。

轉載自:火星黑客研究院[http://www.h4ck.org.cn]
本文鏈接:
http://www.h4ck.org.cn/index.php/2010/05/ubuntu-10-04-install-ida-pro/

Copyright © Linux教程網 All Rights Reserved