From bidu111 at gmail.com Mon Jan 21 11:18:54 2008 From: bidu111 at gmail.com (BIDYUT KUMAR) Date: Mon, 21 Jan 2008 16:48:54 +0530 Subject: [dsc] complier Error Solaris 10 Fatal error: Command failed for target `ParseConfig.o' Message-ID: <12ff6eaa0801210318x2f5ba4e3v730c48bfcb2bbe38@mail.gmail.com> Hi, I am getting the following error while compling the collector on Solaris10 Spark. ..... ..... Making all in doc Making all in tests CC -g -Wall -DUSE_IPV6=1 -I ../TmfBase/Hapy/src/include -c ParseConfig.cc sh: CC: not found *** Error code 1 make: Fatal error: Command failed for target `ParseConfig.o' Please help me if any way out from this. From wessels at measurement-factory.com Wed Jan 23 17:27:05 2008 From: wessels at measurement-factory.com (Duane Wessels) Date: Wed, 23 Jan 2008 10:27:05 -0700 (MST) Subject: [dsc] complier Error Solaris 10 Fatal error: Command failed for target `ParseConfig.o' In-Reply-To: <12ff6eaa0801210318x2f5ba4e3v730c48bfcb2bbe38@mail.gmail.com> References: <12ff6eaa0801210318x2f5ba4e3v730c48bfcb2bbe38@mail.gmail.com> Message-ID: <20080123102519.F88455@measurement-factory.com> On Mon, 21 Jan 2008, BIDYUT KUMAR wrote: > Hi, > I am getting the following error while compling the collector on > Solaris10 Spark. > ..... > ..... > Making all in doc > Making all in tests > CC -g -Wall -DUSE_IPV6=1 -I ../TmfBase/Hapy/src/include -c ParseConfig.cc > sh: CC: not found > *** Error code 1 > make: Fatal error: Command failed for target `ParseConfig.o' Looks like your Solaris system does not have a C++ compiler installed. If you do have the Gnu C++ compiler (g++) installed then you can try adding this line to the top of collector/dsc/Makefile: CXX = g++ Duane W. From fw at deneb.enyo.de Wed Jan 23 17:28:02 2008 From: fw at deneb.enyo.de (Florian Weimer) Date: Wed, 23 Jan 2008 18:28:02 +0100 Subject: [dsc] complier Error Solaris 10 Fatal error: Command failed for target `ParseConfig.o' In-Reply-To: <12ff6eaa0801210318x2f5ba4e3v730c48bfcb2bbe38@mail.gmail.com> (BIDYUT KUMAR's message of "Mon, 21 Jan 2008 16:48:54 +0530") References: <12ff6eaa0801210318x2f5ba4e3v730c48bfcb2bbe38@mail.gmail.com> Message-ID: <87y7agzc2l.fsf@mid.deneb.enyo.de> * BIDYUT KUMAR: > CC -g -Wall -DUSE_IPV6=1 -I ../TmfBase/Hapy/src/include -c ParseConfig.cc > sh: CC: not found > *** Error code 1 > make: Fatal error: Command failed for target `ParseConfig.o' > > Please help me if any way out from this. The CC variable is not set correctly, or your system lacks a C compiler. From ben512 at gmail.com Fri Jan 25 23:13:54 2008 From: ben512 at gmail.com (Bin Zhang) Date: Fri, 25 Jan 2008 16:13:54 -0700 Subject: [dsc] manual questions Message-ID: <82b714dc0801251513k404b8692h75ff3499a1043ef6@mail.gmail.com> Hi, While reading the manual, I found that "qname" indexer is listed in section 7.3.3 but not in table 7.2. Also, what are the labels for indexer "qclass" and "qname"? Thanks, Bin From wessels at measurement-factory.com Fri Jan 25 23:37:32 2008 From: wessels at measurement-factory.com (Duane Wessels) Date: Fri, 25 Jan 2008 16:37:32 -0700 (MST) Subject: [dsc] manual questions In-Reply-To: <82b714dc0801251513k404b8692h75ff3499a1043ef6@mail.gmail.com> References: <82b714dc0801251513k404b8692h75ff3499a1043ef6@mail.gmail.com> Message-ID: <20080125163237.O88455@measurement-factory.com> On Fri, 25 Jan 2008, Bin Zhang wrote: > While reading the manual, I found that "qname" indexer is listed in > section 7.3.3 but not in table 7.2. Ah, thanks for letting me know. > Also, what are the labels for indexer "qclass" and "qname"? For indexer "qname" I'm using the label "Qname". The sample dsc.conf file does not use the "qclass" indexer anywhere, which means there are no pre-defined datasets that use it and the presenter does would not know how to extract or display a dataset that uses qclass. At this point there is no standard label for it. So if you want to make your own custom dataset with qclass, you can certainly do that and you can choose your own label for it. You would have to modify the presenter perl libraries to extract and display that new dataset as well. Duane W. From ben512 at gmail.com Fri Jan 25 23:45:48 2008 From: ben512 at gmail.com (Bin Zhang) Date: Fri, 25 Jan 2008 16:45:48 -0700 Subject: [dsc] manual questions In-Reply-To: <20080125163237.O88455@measurement-factory.com> References: <82b714dc0801251513k404b8692h75ff3499a1043ef6@mail.gmail.com> <20080125163237.O88455@measurement-factory.com> Message-ID: <82b714dc0801251545m512d3b06uba7df3627917a3e4@mail.gmail.com> Hi Duane, Thanks for the quick reply! Bin On Jan 25, 2008 4:37 PM, Duane Wessels wrote: > > > On Fri, 25 Jan 2008, Bin Zhang wrote: > > > While reading the manual, I found that "qname" indexer is listed in > > section 7.3.3 but not in table 7.2. > > Ah, thanks for letting me know. > > > Also, what are the labels for indexer "qclass" and "qname"? > > For indexer "qname" I'm using the label "Qname". > > The sample dsc.conf file does not use the "qclass" indexer anywhere, > which means there are no pre-defined datasets that use it and the > presenter does would not know how to extract or display a dataset > that uses qclass. At this point there is no standard label for it. > > So if you want to make your own custom dataset with qclass, you can > certainly do that and you can choose your own label for it. You > would have to modify the presenter perl libraries to extract and > display that new dataset as well. > > Duane W. > From wessels at measurement-factory.com Thu Jan 31 01:29:04 2008 From: wessels at measurement-factory.com (Duane Wessels) Date: Wed, 30 Jan 2008 18:29:04 -0700 (MST) Subject: [dsc] new release 200801301758 Message-ID: <20080130182512.L46605@measurement-factory.com> I've made a new release of DSC, which you can find at http://dns.measurement-factory.com/tools/dsc/source.html One of the main features of this release is that DSC tries to be friendlier to your filesystem. That means fewer files and subdirectories. Note that when upgrading to this version you will have to manually make some changes. I've documented those steps at http://dns.measurement-factory.com/tools/dsc/200801301758-upgrade.html http://dns.measurement-factory.com/tools/dsc/download/CHANGES describes the significant changes. Duane W.