UBUNTU (new)
What I did to get started on newest ubuntu is just install from universe
the
gnuradio packages
http://packages.ubuntulinux.org/breezy/comm/gnuradio-examples
This installs all the dependencies and then just uninstall gnuradio
packages and
compile from cvs and follow the walkthrough from earlier email.
FEDORA (new)
Here are my notes (less formal than walkthrough) for FC5 out of the box,
read
with care, mileage may vary
update distro!!
add to sudo user
add user to wheel group /etc/group
/etc/sudoers
/sbin/visudo
then edit sudoers to add users to wheel
Network,
host name needs to change among networks
not so obvious needed:
libusb (yum)
libusb-devel (yum)
kernel source for comedilib
(?) comedi-0.7.70.tar.gz (download)
comedilib-0.7.22.tar.gz
PortAudio (download daily check out (if fails get pa_previous_snapshot))
before jack
follow README in gr dir
(maybe)
in source tree make link to libtool
ln -s /usr/bin/libtool .
(maybe)
./configure
make
sudo make install
/sbin/ldconfig
jack >= 0.80 (download)
http://prdownloads.sourceforge.net/jackit/jack-audio-connection-kit-0.100.0.tar.gz
./configure
make sure it give something like
jack-audio-connection-kit 0.100.0 :
| Build with ALSA support… : true
| Build with OSS support… : true
| Build with CoreAudio support… : false
| Build with PortAudio support… : true
|
| Default driver backend… : “alsa”
| Shared memory interface… : “System V”
comedilib
need to be root to make
sudo make
sudo make install
Next you need to mess with pkg-config for portaudio so edit file
/usr/local/lib/pkgconfig/portaudio-2.0.pc
and change exec-prefix to just prefix
cvs checkout:
cvs -z3 -d:pserver:[email protected]:/sources/gnuradio co -P
gr-build
go into gr-build directory:
./checkout -x mc4020
./for-all-dirs …/buildit
Export python path to .bash_profile
export PYTHONPATH=/usr/local/lib/python2.4/site-packages
Quoting mjam01 [email protected]: