Ok so it's all up and running now and working as it should! So what i did was;
Install Ubuntu 10.4.4LTS Then after a clean and naked install installed the following dependencies sudo aptitude install libcdparanoia-dev libflac++-dev libflac-dev \ libsamplerate0-dev libid3tag0-dev libid3-3.8.3-dev \ libcurl4-gnutls-dev libsndfile1-dev libpam0g-dev \ libsoundtouch1-dev alsa-source libtwolame-dev libmp3lame-dev \ libmad0-dev libqt3-mt-mysql qt3-dev-tools qt3-dev-tools-compat \ qt4-dev-tools libjack-dev libjack0.100.0-dev jackd qjackctl \ jackeq jack-rack jack-capture libasound2-dev mysql-client \ polymer qt3-qtconfig patchage Also installed my-sqlserver I then added apt-sources from http://debian.tryphon.eu For lucid: deb http://debian.tryphon.eu lucid main contrib deb-src http://debian.tryphon.eu lucid main contrib Opened package manager, search for rivendell and installed all packages then did sudo adduser --system --no-create-home --disabled-login rivendell sudo addgroup rivendell sudo adduser rivendell rivendell sudo adduser `whoami` audio and sudo mkdir /var/snd sudo chown rivendell:rivendell -R /var/snd rdadmin Then, imported my RD database from the old system and up it all came :) Thanks again the assistance On Tue, Apr 3, 2012 at 10:36 AM, Lee Baker <[email protected]> wrote: > Creating /var/run/rivendell > mkdir: cannot create directory '/var/run/rivendell': File exists hmmff..... > > I then remove the line and run the command again, no errors show so I go > to Applications --> Sound & Video --> RDadmin and throws the error again > "Can't Start RD Daemons" > > When i first did the upgrade, I went to RDadmin and it said the music > Database needed to be updated so i hit yes, after that nothing. > > Is this something to do with the fact it's RRAbuntu? i assume that it > doesn't matter, again all i did was add the repositories in apt sources > then in package manager marked all the rivendell stuff for upgrade and > since then kaput! > > I am trying a clean install of Ubuntu 10.4LTS (not rrabuntu) and will see > what happens so I shall report back on that. > > Shame there's no pre made distro of RRAbuntu with the latest RD > > Any further suggestions? > > > On Tue, Apr 3, 2012 at 10:23 AM, Wayne Merricks < > [email protected]> wrote: > >> Interesting, the script has been updated from how it used to be in 1.7. >> It creates the /var/run directory already: >> >> # For Ubuntu, create run directory to store pid files. >> AUDIOGROUP=`sed -n 's/^AudioGroup=\([^ ]*\)$/\1/p' /etc/rd.conf` >> if [ ! -d $PIDDIR ]; then >> install --directory --mode 02775 --owner=root --group="$AUDIOGROUP" >> $PIDDIR >> fi >> >> If you run /etc/init.d/rivendell start what errors pop up? Or is it just >> unable to start? >> >> >> -----Original Message----- >> From: [email protected] on behalf of Lee >> Baker >> Sent: Mon 02/04/2012 21:27 >> To: User discussion about the Rivendell Radio Automation System >> Subject: Re: [RDD] Rivendell 2.1.3 on Ubuntu 10.04 LTS PPC - MP3 >> ImportIssues >> >> Hmm, that still didn't do anything just get the same error >> >> here is my rivendell script in /etc/rc.d >> >> #!/bin/bash -e >> >> ### BEGIN INIT INFO >> # Provides: rivendell caed ripcd rdcatchd >> # Required-Start: $remote_fs $syslog >> # Required-Stop: $remote_fs $syslog >> # Should-Start: mysql jackd gpio asihpi >> # Default-Start: 2 3 4 5 >> # Default-Stop: 0 1 6 >> # Short-Description: Start Rivendell daemons >> # Description: Provides caed rdcatchd and ripcd daemons >> ### END INIT INFO >> >> DAEMONS="caed ripcd rdcatchd" >> PIDDIR=/var/run/rivendell >> NAME=rivendell >> LABEL="Rivendell daemons" >> >> # Defaults >> RUN_MODE="none" >> >> # Read config file (will override defaults above) >> [ -r /etc/default/rivendell ] && . /etc/default/rivendell >> >> if [ ! -f "/etc/rd.conf" ]; then >> echo "No /etc/rd.conf found. See documentation and >> /usr/share/doc/rivendell/examples/." >&2 >> exit 0 >> fi >> >> # For Ubuntu, create run directory to store pid files. >> AUDIOGROUP=`sed -n 's/^AudioGroup=\([^ ]*\)$/\1/p' /etc/rd.conf` >> if [ ! -d $PIDDIR ]; then >> install --directory --mode 02775 --owner=root --group="$AUDIOGROUP" >> $PIDDIR >> fi >> >> DAEMON_USER=`sed -n 's/^AudioOwner=\([^ ]*\)$/\1/p' /etc/rd.conf` >> >> if [ -z "$DAEMON_USER" ]; then >> echo "No AudioOwner found into /etc/rd.conf. See documentation and >> /usr/share/doc/rivendell/examples/." >&2 >> exit 0 >> fi >> >> # Check if Rivendell daemons are started by init scripts or pam_rd. >> if [ "$RUN_MODE" != "init.d" ]; then >> exit 0 >> fi >> >> for daemon in $DAEMONS; do >> test -x /usr/bin/$daemon || exit 0 >> done >> >> echo "Creating /var/run/rivendell" >> mkdir /var/run/rivendell >> chown administrator:rivendell /var/run/rivendell >> >> function start() { >> echo -n "Starting $LABEL:" >> for daemon in $DAEMONS; do >> start-stop-daemon --start --oknodo --chuid $DAEMON_USER --exec >> "/usr/bin/$daemon" --quiet >> echo -n " $daemon" >> done >> echo "." >> } >> >> function stop() { >> echo -n "Stopping $LABEL:" >> for daemon in $DAEMONS; do >> start-stop-daemon --stop --pidfile "$PIDDIR/$daemon.pid" --oknodo >> --user $DAEMON_USER --exec "/usr/bin/$daemon" --quiet >> echo -n " $daemon" >> done >> echo "." >> >> # caed forgets sometimes the shared memory 0x5005 >> ipcrm -M 0x5005 2> /dev/null || true >> } >> >> case "$1" in >> start) >> if ! /usr/bin/rdadmin --check-db; then >> echo "No database available, check that MySQL is running" >&2; >> exit 0; >> fi >> >> start >> ;; >> stop) >> stop >> ;; >> restart) >> stop >> start >> ;; >> *) >> echo "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}" >> exit 1 >> ;; >> esac >> >> exit 0 >> >> I also read in >> >> http://www.talkunafraid.co.uk/2011/06/rivendell-2-0-2-on-ubuntu-10-04-2-ltsthat >> i need to disable pulseaudio which I did as per it's instructions >> still computer says no... >> >> Thanks, >> Lee >> >> On Mon, Apr 2, 2012 at 11:35 PM, Wayne Merricks < >> [email protected]> wrote: >> >> > If you run sudo /etc/init.d/rivendell start what does it tell you? My >> > hunch is that you're missing the /var/run/rivendell directory and you >> will >> > get errors saying something similar. Ubuntu likes to be different from >> > most debian distros. /var/run is some sort of temp directory >> > unfortunately, Ubu deletes everything in there (on shutdown or startup I >> > can't remember). >> > >> > What you'll have to do is amend the rivendell startup script to recreate >> > this directory first. >> > >> > So edit /etc/init.d/rivendell in whatever text editor you like and add >> the >> > following: >> > >> > echo "Creating /var/run/rivendell" >> > mkdir /var/run/rivendell >> > # CHANGE THE NEXT LINE to your own username e.g. chown fred:rivendell >> > /var/run/rivendell >> > chown rivendell2:rivendell /var/run/rivendell >> > >> > This will need to be the first thing that happens under the start part >> of >> > the script. >> > >> > >> > >> > On Mon, 02 Apr 2012 12:33:34 +0100, Lee Baker <[email protected]> >> > wrote: >> > >> > > I think I broke my system :( >> > > >> > > I am running RRAbuntu and have upgraded the to RD 2.1.2. I did this by >> > > adding the "lucid" repositories from http://debian.tryphon.eu/ and >> > > following some instructions on here >> > > >> > >> http://www.talkunafraid.co.uk/2011/06/rivendell-2-0-2-on-ubuntu-10-04-2-lts/ >> > > >> > > Now i keeping getting "can't start rivendell daemons" can anyone >> offer a >> > > suggestion? >> > > >> > > Think I have fixed up all permissions and stuff, not sure what I >> > > have/haven't done :( >> > > >> > > Cheers >> > > >> > > On Fri, Mar 30, 2012 at 12:00 PM, Jake Novak <[email protected]> >> > wrote: >> > > >> > >> Hi all, >> > >> >> > >> I am attempting to get Rivendell 2.1.3 working on an old PowerPC mac >> I >> > >> have >> > >> laying around the house (runninga virgin Ubuntu 10.04.3 install). RD >> > >> appears to have built successfully, however I cannot import any MP3 >> or >> > >> MP2 >> > >> files (FLAC and WAV work just fine) using RDLibrary. The error that >> is >> > >> displayed is always "RDXport service returned an error." To make >> things >> > >> even more complicated, even when enabling logging in rd.conf, syslog >> > >> still >> > >> doesn't register this as an error, so I'm not quite sure where to >> look >> > >> from >> > >> here. >> > >> >> > >> Any input would be appreciated. I saw an earlier thread about this >> in >> > >> January, but it was left unresolved. >> > >> >> > >> Thanks. >> > >> >> > >> _______________________________________________ >> > >> Rivendell-dev mailing list >> > >> [email protected] >> > >> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev >> > >> > ####################### >> > Scanned by MailMarshal >> > ####################### >> > >> > ############ >> > >> > Attention: >> > >> > The information contained in this message is confidential and intended >> > for the addressee(s) only. If you have received this message in error >> > or there are any problems, please notify the originator immediately. >> > The unauthorised use, disclosure, copying or alteration of this message >> > is strictly forbidden. Christian Vision or any of its subsidiaries will >> > not be liable for direct, special, indirect or consequential damages >> > arising from alteration of the contents of this message by a third party >> > or as a result of any virus being passed on. Please note that we reserve >> > the right to monitor and read any e-mails sent or received by the >> > company under the Telecommunications (Lawful Business Practice) >> > (Interception of Communications) Regulation 2000. Christian Vision is >> > registered in England as a limited company 2842414 and as a charity >> > 1031031 >> > >> > ############ >> > _______________________________________________ >> > Rivendell-dev mailing list >> > [email protected] >> > http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev >> > >> >> >> ####################### >> Scanned by MailMarshal >> ####################### >> >> ############ >> >> Attention: >> >> The information contained in this message is confidential and intended >> for the addressee(s) only. If you have received this message in error >> or there are any problems, please notify the originator immediately. >> The unauthorised use, disclosure, copying or alteration of this message >> is strictly forbidden. Christian Vision or any of its subsidiaries will >> not be liable for direct, special, indirect or consequential damages >> arising from alteration of the contents of this message by a third party >> or as a result of any virus being passed on. Please note that we reserve >> the right to monitor and read any e-mails sent or received by the >> company under the Telecommunications (Lawful Business Practice) >> (Interception of Communications) Regulation 2000. Christian Vision is >> registered in England as a limited company 2842414 and as a charity >> 1031031 >> >> ############ >> >> _______________________________________________ >> Rivendell-dev mailing list >> [email protected] >> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev >> >> >
_______________________________________________ Rivendell-dev mailing list [email protected] http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
