Using linux ubuntu with metasploit framework, i have a shell script which contains the following lines in the first begining of the file. At first glance i thought that i should install the the mingw32 package, so i uses the following line in terminal apt-get install mingw32-runtime mingw-w64 mingw gcc-mingw32 mingw32-binutils
but when i compile the below script, it still says that i must install mingw-w64n binutilis-mingw......etc
#Lets check for MinGW32
if builtin type -p i686-w64-mingw32-gcc > /dev/null ; then
echo "Here is a network device list available on yor machine"
else echo "Please install the mingw-w64, binutils-mingw-w64, gcc-mingw-w64, mingw- w64-dev, mingw-w64-tools"
echo "exiting....."; exit
Could some one help me what to write in the terminal in order to get the required packages installed with my linux ubuntu
apt-get install install mingw-w64n binutilis-mingw
? – Shiplu Mokaddim Jan 23 '12 at 11:51