LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Goaster needs mpg123? (https://www.linuxquestions.org/questions/linux-newbie-8/goaster-needs-mpg123-83609/)

J_Bone 08-19-2003 04:28 PM

Goaster needs mpg123?
 
When I try to use gtoaster (included with red hat 9.0) to make an audio cd, it says:

"the filter program for the suffix 'mp3' could not be found on your system".

your current configuration is calling the following command to create the desired track:
mpg123 -r 44100 -s --stereo -q --"

I went to the mpg123 website to get the program, and download mpg123-0.59r.tar.gz to my home folder, now what?

Thanks

trickykid 08-19-2003 04:55 PM

Well, you'll need to extract and install..

tar -xzvf mpg123-0.59r.tar.gz

Creates a new directory and from there you will want to readthe README and or the INSTALL file for instructions to install properly. If you need help, try looking at this thread which kind of helps out explaining how to install tarballs: http://www.linuxquestions.org/questi...threadid=45094

beaucoup 08-19-2003 05:01 PM

Open a terminal in your home directory. Type:

tar -xzf mpg123-0.59r.tar.gz

That will uncompress the package. cd into the folder you just unzipped:

cd mpg123-0.59r

Read the README file inside, and follow the instructions in the INSTALL file, which will probably tell you to do this:

./configure
make
su
make install


...but you should read the directions, because that's not always the case :)

That will compile the code into a program, and then install it, and then you should be all set.

-Andrew

J_Bone 08-20-2003 06:29 AM

'K, after doing that and choosing "Linux (i386, Pentium or Unlisted Platform" I get this error:

make CC=gcc LDFLAGS= \
OBJECTS='decode_i386.o dct64_i386.o decode_i586.o \
audio_oss.o term.o' \
CFLAGS='-DI386_ASSEM -DPENTIUM_OPT -DREAL_IS_FLOAT -DLINUX \
-DREAD_MMAP -DOSS -DTERM_CONTROL\
-Wall -O2 -m486 \
-fomit-frame-pointer -funroll-all-loops \
-finline-functions -ffast-math' \
mpg123-make
make[1]: Entering directory `/home/john/mpg123-0.59r'
make[2]: Entering directory `/home/john/mpg123-0.59r'
gcc -DI386_ASSEM -DPENTIUM_OPT -DREAL_IS_FLOAT -DLINUX -DREAD_MMAP -DOS
S -DTERM_CONTROL -Wall -O2 -m486 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math -c -o m
pg123.o mpg123.c
make[2]: gcc: Command not found
make[2]: *** [mpg123.o] Error 127
make[2]: Leaving directory `/home/john/mpg123-0.59r'
make[1]: *** [mpg123-make] Error 2
make[1]: Leaving directory `/home/john/mpg123-0.59r'
make: *** [linux] Error 2


What did i do wrong? I have a pentium 4 processor with linux, obvously. Thanks,

J
:newbie:

trickykid 08-20-2003 10:05 AM

Your most likely missing gcc clearly what the error states, either that or its not in your current user's path, gcc is the compiler to install source based packages like this one.

You'll need to get it from your Redhat cd's or download it from www.gnu.org or the like.


All times are GMT -5. The time now is 09:53 AM.