From kebutler at gmail.com Tue Aug 13 13:12:27 2013 From: kebutler at gmail.com (KB) Date: Tue, 13 Aug 2013 16:12:27 -0400 Subject: [TM] Correction to time-machine git clone command on website Message-ID: <0B375501-FE76-4746-98E2-A7734D80DAFD@gmail.com> Hello, Thanks for a great experience at Bro exchange! I found a minor issue on the bro.org page for time-machine here: http://bro.org/community/time-machine.html The documentation states "to checkout TimeMachine's master:" git clone git://git.bro.org/time-machine This causes ./configure to fail because the cmake module is not downloaded, and the cmake directory is empty. Seems like adding "--recursive" corrects the issue. git clone --recursive git://git.bro.org/time-machine ################################################## # Failure ################################################## $ git clone git://git.bro.org/time-machine Cloning into 'time-machine'... remote: Counting objects: 415, done. remote: Compressing objects: 100% (341/341), done. remote: Total 415 (delta 155), reused 253 (delta 51) Receiving objects: 100% (415/415), 1.19 MiB | 349 KiB/s, done. Resolving deltas: 100% (155/155), done. $ cd time-machine $ ./configure --with-broccoli=/usr/local/bro Build Directory : build Source Directory: /usr/local/src/nsm/timemachine/time-machine -- The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check for working C compiler: /usr/bin/gcc -- Check for working C compiler: /usr/bin/gcc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done CMake Error at CMakeLists.txt:3 (include): include could not find load file: cmake/CommonCMakeConfig.cmake CMake Error at CMakeLists.txt:13 (include): include could not find load file: FindRequiredPackage CMake Error at CMakeLists.txt:15 (FindRequiredPackage): Unknown CMake command "FindRequiredPackage". -- Configuring incomplete, errors occurred! ################################################## # Success ################################################## $ git clone --recursive git://git.bro.org/time-machine Cloning into 'time-machine'... remote: Counting objects: 415, done. remote: Compressing objects: 100% (341/341), done. remote: Total 415 (delta 155), reused 253 (delta 51) Receiving objects: 100% (415/415), 1.19 MiB | 574 KiB/s, done. Resolving deltas: 100% (155/155), done. Submodule 'cmake' (git://git.bro-ids.org/cmake) registered for path 'cmake' Cloning into 'cmake'... remote: Counting objects: 271, done. remote: Compressing objects: 100% (270/270), done. remote: Total 271 (delta 140), reused 0 (delta 0) Receiving objects: 100% (271/271), 70.92 KiB, done. Resolving deltas: 100% (140/140), done. Submodule path 'cmake': checked out '599c3fa916a8d746a535666955ab4439bea20471' ? [success] ? -Keith From asharma at lbl.gov Tue Aug 13 13:24:11 2013 From: asharma at lbl.gov (Aashish Sharma) Date: Tue, 13 Aug 2013 13:24:11 -0700 Subject: [TM] Correction to time-machine git clone command on website In-Reply-To: <0B375501-FE76-4746-98E2-A7734D80DAFD@gmail.com> References: <0B375501-FE76-4746-98E2-A7734D80DAFD@gmail.com> Message-ID: <20130813202410.GN11951@yaksha.lbl.gov> Hello Keith, I think the documentation preceeds some of the code cleanup and improvements made by Seth. Please keep in mind that this is still only IPv4 code. Here is alpha version of TMv6 code (it runs very stable but still needs to be vetted by the Bro Team): https://github.com/initconf/time-machine-v6.git {TMv6 should work best if you disable indexing. With Indexing in IPv6 support, the CPU loadlevels are a bit high than desired. I continue to see if we can fix this issue} Let us know if you have questions/encounter problems. Aashish On Tue, Aug 13, 2013 at 04:12:27PM -0400, KB wrote: > Hello, > > Thanks for a great experience at Bro exchange! I found a minor issue on the bro.org page for time-machine here: > http://bro.org/community/time-machine.html > > The documentation states "to checkout TimeMachine's master:" > git clone git://git.bro.org/time-machine > > This causes ./configure to fail because the cmake module is not downloaded, and the cmake directory is empty. > Seems like adding "--recursive" corrects the issue. > git clone --recursive git://git.bro.org/time-machine > > ################################################## > # Failure > ################################################## > $ git clone git://git.bro.org/time-machine > Cloning into 'time-machine'... > remote: Counting objects: 415, done. > remote: Compressing objects: 100% (341/341), done. > remote: Total 415 (delta 155), reused 253 (delta 51) > Receiving objects: 100% (415/415), 1.19 MiB | 349 KiB/s, done. > Resolving deltas: 100% (155/155), done. > > $ cd time-machine > $ ./configure --with-broccoli=/usr/local/bro > Build Directory : build > Source Directory: /usr/local/src/nsm/timemachine/time-machine > -- The C compiler identification is GNU > -- The CXX compiler identification is GNU > -- Check for working C compiler: /usr/bin/gcc > -- Check for working C compiler: /usr/bin/gcc -- works > -- Detecting C compiler ABI info > -- Detecting C compiler ABI info - done > -- Check for working CXX compiler: /usr/bin/c++ > -- Check for working CXX compiler: /usr/bin/c++ -- works > -- Detecting CXX compiler ABI info > -- Detecting CXX compiler ABI info - done > CMake Error at CMakeLists.txt:3 (include): > include could not find load file: > > cmake/CommonCMakeConfig.cmake > > > CMake Error at CMakeLists.txt:13 (include): > include could not find load file: > > FindRequiredPackage > > > CMake Error at CMakeLists.txt:15 (FindRequiredPackage): > Unknown CMake command "FindRequiredPackage". > > > -- Configuring incomplete, errors occurred! > > ################################################## > # Success > ################################################## > $ git clone --recursive git://git.bro.org/time-machine > Cloning into 'time-machine'... > remote: Counting objects: 415, done. > remote: Compressing objects: 100% (341/341), done. > remote: Total 415 (delta 155), reused 253 (delta 51) > Receiving objects: 100% (415/415), 1.19 MiB | 574 KiB/s, done. > Resolving deltas: 100% (155/155), done. > Submodule 'cmake' (git://git.bro-ids.org/cmake) registered for path 'cmake' > Cloning into 'cmake'... > remote: Counting objects: 271, done. > remote: Compressing objects: 100% (270/270), done. > remote: Total 271 (delta 140), reused 0 (delta 0) > Receiving objects: 100% (271/271), 70.92 KiB, done. > Resolving deltas: 100% (140/140), done. > Submodule path 'cmake': checked out '599c3fa916a8d746a535666955ab4439bea20471' > > ? [success] ? > > -Keith > _______________________________________________ > Time-Machine mailing list > Time-Machine at mailman.ICSI.Berkeley.EDU > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/time-machine -- Aashish Sharma (asharma at lbl.gov) Cyber Security, Information Technology Division Lawrence Berkeley National Laboratory http://go.lbl.gov/pgp-aashish Office: (510)-495-2680 Cell: (510)-457-1525 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mailman.ICSI.Berkeley.EDU/pipermail/time-machine/attachments/20130813/c44517c8/attachment.bin From seth at icir.org Tue Aug 13 22:00:13 2013 From: seth at icir.org (Seth Hall) Date: Wed, 14 Aug 2013 01:00:13 -0400 Subject: [TM] Correction to time-machine git clone command on website In-Reply-To: <0B375501-FE76-4746-98E2-A7734D80DAFD@gmail.com> References: <0B375501-FE76-4746-98E2-A7734D80DAFD@gmail.com> Message-ID: <4D8EA5DC-024F-44A4-8227-0A0900C7A8CB@icir.org> On Aug 13, 2013, at 4:12 PM, KB wrote: > Thanks for a great experience at Bro exchange! I found a minor issue on the bro.org page for time-machine here: > http://bro.org/community/time-machine.html Fixed. Thanks, .Seth -- Seth Hall International Computer Science Institute (Bro) because everyone has a network http://www.bro.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 495 bytes Desc: Message signed with OpenPGP using GPGMail Url : http://mailman.ICSI.Berkeley.EDU/pipermail/time-machine/attachments/20130814/c4d3c35e/attachment.bin