Hello Eric 2007/12/31, Erikr Le Rouge <[EMAIL PROTECTED]>: > ./configure, make and make install do not return error > messages. > > However, when I enter "transcode" in my shell prompt > nothing work (binary not found). ./configure --prefix > was /usr/local (default). I look for transcode binary > on my hard drive but do not find it.
That's strange. Try "ls -l /usr/local/bin/transcode", which is where it should be. If it is there, maybe you need to add /usr/local/bin to your search path: if you say echo $PATH and /usr/local/bin does not appear in it, you need to edit your ".profile" and add the lines PATH=$PATH:/usr/local/bin export PATH then log out and log back in again and it should find it. If /usr/local/transcode is not there, maybe you didn't run "make install" as root? M