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