From ico at vt.edu Tue Jul 1 11:00:10 2008 From: ico at vt.edu (Ivica Ico Bukvic) Date: Tue, 1 Jul 2008 11:00:10 -0400 Subject: [LAU] Host 128.173.232.121 is unreachable via http or smtp ports In-Reply-To: <1214917656.3182.13.camel@kolea.hosag.com> References: <1214917656.3182.13.camel@kolea.hosag.com> Message-ID: <399F45670E6046AB909FEB432D256FAE@icobadassmbp> Thanks Ron for the info, we are already aware of this issue and are working on it as fast as we can. As unlikely as it sounds, it appears we've had a major thunderstorm that has knocked out several buildings on campus, including the building hosting our server. Unfortunately, I've been out of the country and unaware of this occurrence until it was brought to my attention yesterday. Let me say that this is a very unusual and very much unexpected occurrence. That being said, based on this unfortunate development we will look to invest into better UPS asap to minimize any potential downtime in the future. As of 4:58PM the server should be back up and running. Best wishes, Ivica Ico Bukvic, D.M.A. Composition, Music Technology, CCTAD CHCI, CS, and Art (by courtesy) Director, DISIS Interactive Sound & Intermedia Studio Virginia Tech Dept. of Music - 0240 Blacksburg, VA 24061 (540) 231-6139 (540) 231-5034 (fax) ico at vt.edu http://www.music.vt.edu/faculty/bukvic/ > -----Original Message----- > From: Ron Fox [mailto:rfox at aloha.com] > Sent: Tuesday, July 01, 2008 9:08 AM > To: ico at vt.edu > Subject: Host 128.173.232.121 is unreachable via http or smtp ports > > Aloha Dr. Bukvic, > > I've been trying to reach the www.linuxaudio.org and > lists.linuxaudio.org websites for a few hours without success. I'm > sending this just in case you aren't aware of the situation. > > Mahalo, > Ron Fox From k.s.matheussen at notam02.no Tue Jul 1 11:02:19 2008 From: k.s.matheussen at notam02.no (Kjetil S. Matheussen) Date: Tue, 01 Jul 2008 17:02:19 +0200 (CEST) Subject: [LAU] Large live recrodings ? In-Reply-To: <1214923012.3809.6.camel@linux> References: <1214923012.3809.6.camel@linux> Message-ID: Great! Mind if I include something like " #!/bin/bash #script for using a graphical dialog to jack_capture. Written by Svend-Erik Kj?r Madsen while true do Xdialog --stdout --yesno "PRESS YES TO START REC" 10 40 case "$?" in 0) jack_capture $@ | Xdialog --stdout --msgbox " RECORDING IN PROGRESS\n PRESS OK TO STOP REC " 10 40 1) Xdialog --msgbox "Ok no recording started" 10 40 esac done " in jack_capture as jack_capture_gui? On Tue, 1 Jul 2008, Svend-Erik Kj?r Madsen wrote: > Hi and thanks for your help, it was more than useful > > I came up with this solution as it is a non Linux geek which shall start > and stop the record-process > >>> SCRIPT<< > #!/bin/sh > #script for using a graphical dialog to jack_capture > cd /home/sem/liverecording > while true > do > Xdialog --stdout --yesno "PRESS YES TO START REC" 10 40 > case "$?" in > 0) > jack_capture -c 16 -p system:capture* | Xdialog --stdout --msgbox " RECORDING IN PROGRESS\n PRESS OK TO STOP REC " 10 40 > ;; > 1) > Xdialog --msgbox "Ok no recording started" 10 40 > ;; > esac > done > > <