ABHIONLINUX
Site useful for linux administration and web hosting

2011/04/19

How to install yasm

You can follow the steps given below to install yasm from source.


# wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.0.tar.gz
# tar zfvx yasm-0.7.0.tar.gz
# cd yasm-0.7.0
#  ./configure
# make 
# make install
You can check the yasm binary using the command
# which yasm
/usr/local/bin/yasm

How to install Yamdi

You can follow the steps given below to install Yamdi

cd /usr/local/src/
wget http://downloads.sourceforge.net/project/yamdi/yamdi/1.4/yamdi-1.4.tar.gz?use_mirror=ufpr
tar zxf yamdi-1.4.tar.gz
cd yamdi-1.4
gcc yamdi.c -o yamdi -O2 -Wall
mv yamdi /usr/bin/
yamdi -h



You can check the yamdi binary using "which yamdi'