diff --git a/HowtoWSJT-SuSE.html b/HowtoWSJT-SuSE.html new file mode 100644 index 000000000..f08a42438 --- /dev/null +++ b/HowtoWSJT-SuSE.html @@ -0,0 +1,185 @@ + + +
+ +HowTo for Linux SuSE 10.0 ( DL3LST) + +Use Yast to install the following packages from the Linux Distribution DVD + +Compiler + cpp + gcc + gcc-c++ + liggcc + +Tcl/tk + tcl-devel + tk-devel + alsa-devel + +Python + python + python-devel + python-imaging + python-numeric + python-tk + +-------------------------------------------------------------------------------------------------- + +// Fortran compiler +Page: http://www.g95.org/ +Downloadpage: http://ftp.g95.org/ +Page: http://ftp.g95.org/g95-x86-linux.tgz + +install: g95 + +follow instruction File: Install + +How to install g95: + +File Install: +1) Unpack the downloaded tarball (e.g. g95-x86-linux.tgz) in a directory +of your choice: + + tar -zxvf g95-x86-linux.tgz + +2) For your convenience, you can create another symbolic link from a +directory in your $PATH (e.g. ~/bin) to the executable + + ln -s $PWD/g95-install/bin/*g95* ~/bin/g95 + + +You should now be able to run g95 and create executables. +To get a list of environment variables that control the library, run a +compiled binary with the --help option, ie: + + ./a.out �help + +From console try the g95 command . +The system should answer +g95: no input files + + +I changed the SymLink to /usr/bin where i installed the g77 packages too +ln -s $PWD/g95-install/bin/*g95* /usr/bin/g95 + + + +gcc-g77 compiler +Page: http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=82721&release_id=15880 +Download: http://prdownloads.sourceforge.net/mingw/gcc-g77-3.4.2-20040916-1.tar.gz?download + +From gcc-g77-3.4.2-20040916-1.tar.gz we need the /libexec folder for l2g +copy from the archive the folder +/libexec to /usr/libexec + +------------------------------------------------------------------------------ +other packages +------------------------------------------------------------------------------ +Install: PortaudioV1.19 + +Page: http://www.portaudio.com/usingsvn.html +Download: http://www.portaudio.com/archives/pa_previous_snapshot_v19.tar.gz +./configure +make all +make install +------------------------------------------------------------------------------ +FFT3 +Page : http://www.fftw.org/ +Download : http://www.fftw.org/fftw-3.1.1.tar.gz +./configure +./make all +./ make install + +------------------------------------------------------------------------------ +libsamplerate +libsamplerate-0.1.2. +Download: http://www.mega-nerd.com/SRC/download.html +./configure +./make all +./ make install +------------------------------------------------------------------------------ +reed-solomon-4.0 +.Page: http://www.ka9q.net/code/fec/ +Download: http://www.ka9q.net/code/fec/reed-solomon-4.0.tar.gz +/configure +./make +./ make install + + +------------------------------------------------------------------------------ +F2PY ( Fortran to Python ) +Download: http://cens.ioc.ee/projects/f2py2e/2.x/F2PY-2-latest.tar.gz +python setup.py install + + +Scipy_Distutils +Page: http://cens.ioc.ee/projects/f2py2e/2.x/ +Download: http://cens.ioc.ee/projects/f2py2e/2.x/scipy_distutils-latest.tar.gz +python setup.py install + + +WSJT source code +K1JT Page: http://pulsar.princeton.edu/~joe/K1JT/ +Download page: http://developer.berlios.de/projects/wsjt/ + + +./configure +make +python wsjt.py + +that�s all - have fun + +------------------------------------------------------------------------------ +If you need the packages for other Linux distributions see linkpages below +------------------------------------------------------------------------------ + +Python: +Page. http://www.python.org/download/releases/2.4.3 +Download: http://www.python.org/ftp/python/2.4.3/Python-2.4.3.tgz +/configure +./make +./ make install +than run +python setup.py install + + +Numeric +Page: http://numeric.scipy.org/ +Download: http://prdownloads.sourceforge.net/numpy/Numeric-24.2.tar.gz?download +install + +Iimaging (be sure Tcl/Ck Lib was installed before) +Page: http://www.pythonware.com/products/pil/ +Download: http://effbot.org/downloads/Imaging-1.1.5.tar.gz +python setup.py install + +------------------------------------------------------------------------------ +other sites +------------------------------------------------------------------------------ +for gcc compiler try +http://gcc.gnu.org/mirrors.html + +Example German server +ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-4.1.0/ +ftp://ftp.gwdg.de/pub/misc/gcc/releases/gcc-4.1.1/ + +the full program ( !!! filesize is 21 MB ) +ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-4.1.0/gcc-core-4.1.0.tar.gz +./configure +make +make install ++ + \ No newline at end of file