Install Ida Pro Linux Ubuntu

broken image


commands.sh

Nov 05, 2018. $ sudo apt-get install ia32-libs-gtk ia32-lib OR # apt-get install ia32-libs-gtk Type the following command to set up the correct links for the shared binaries and rebuild the cache: # /sbin/ldconfig -v. A Note About Searching Missing Libraries On Debian and Ubuntu Linux. Use the apt-cache command as follows: $ apt-cache search lib-name-here.

# build wine Docker image
pushd wine; docker build -t wine .;popd
# build x11 Docker image for IDA
pushd ida; docker build -t wine/ida .;popd
# demonstrate x11 forwarding works
docker run -ti --rm -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix wine/ida xclock
# interactive shell in container
docker run -ti --rm -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix wine/ida /bin/bash
efadeadb5142>cd /home/user/
efadeadb5142> wine ida-installer.exe
# in another terminal, after you've installed IDA, but before you stop the container!
# get container ID, efadeadb5142 is the ID i'll use here
docker ps
# commit container as new image
docker commit efadeadb5142 wine/ida/6.8
# now you can stop the IDA container
efadeadb5142>exit
# bring up new IDA GUI instances
docker run -ti --rm -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix wine/ida/6.8 wine /home/user/.wine/drive_c/Program Files (x86)/IDA 6.8/idaq.exe
# or, more interestingly, run IDA headless
# to do so,
# start Xvfb: Xvfb :1 &
# set $DISPLAY: export $DISPLAY=:1
# run ida: wine /home/user/.wine/drive_c/Program Files (x86)/IDA 6.8/idaq.exe
# save the entire image to migrate to another host
docker save efadeadb5142 > 6.8.tar
Install
ida.Dockerfile
# via: http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/
FROM wine
# just to demonstrate x11 fowarding works
RUN apt-get install -y x11-apps
# Replace 1000 with your user / group id
RUN export uid=1000 gid=1000 &&
mkdir -p /home/user &&
echo 'user:x:${uid}:${gid}:user,:/home/user:/bin/bash' >> /etc/passwd &&
echo 'user:x:${uid}:' >> /etc/group &&
echo 'user ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/user &&
chmod 0440 /etc/sudoers.d/user &&
chown ${uid}:${gid} -R /home/user
# make sure to have this file handy in the same directory
ADD ida-installer.exe /home/user/ida-installer.exe
USER user
ENV HOME /home/user
CMD xclock
wine.Dockerfile

Install Ida Pro Linux Ubuntu 10

# via: https://github.com/monokrome/docker-wine
FROM ubuntu
MAINTAINER Brandon R. Stoner
RUN dpkg --add-architecture i386
RUN apt-get update -y
RUN apt-get install -y software-properties-common && add-apt-repository -y ppa:ubuntu-wine/ppa
RUN apt-get update -y
RUN apt-get install -y wine1.7 winetricks xvfb
RUN apt-get purge -y software-properties-common
RUN apt-get autoclean -y

commented Sep 13, 2018

what is awesome. but don't know how to use docker this GUI app on docker. any tutorial

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Outdated instructions on how to install an old version of IDA Pro on Ubuntu 16
IDA Pro on Ubuntu 16

Ubuntu Network Install

# Note: These instructions are outdated and no longer relevant
ln -s /tmp /usr/tmp
ln -s /lib64/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
dpkg --add-architecture i386
apt-get install libglib2.0-0:i386 gtk2-engines:i386 gtk2-engines-murrine:i386 gtk2-engines-pixbuf:i386

commented Apr 28, 2018

Install Ubuntu Linux Windows 10

commented Oct 15, 2018

Install from the run file given on their site by changing the file permissions using chmod +x and then executing the run file.
It'll generate an ideafree folder,navigate into that and run the ida64 file

commented Aug 24, 2020

Install from the run file given on their site by changing the file permissions using chmod +x and then executing the run file.
It'll generate an ideafree folder,navigate into that and run the ida64 file Free mazatrol software free programs.

can you link the run file?

commented Aug 24, 2020

You can download the free version from their website here: https://www.hex-rays.com/products/ida/support/download_freeware/
If you want the professional version you will have to buy a license. These instructions are completely outdated and irrelevant btw.

commented Aug 24, 2020

Install Ida Pro Linux Ubuntu 7

You can download the free version from their website here: https://www.hex-rays.com/products/ida/support/download_freeware/
If you want the professional version you will have to buy a license. These instructions are completely outdated and irrelevant btw.

ty

Install Ida Pro Linux Ubuntu Windows 10

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment




broken image