Page 3 of 19 FirstFirst 1234513 ... LastLast
Results 21 to 30 of 186

Thread: Itrepid~snort error in terminal !

  1. #21
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    need help! please and thank you

  2. #22
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    Code:
    g -O2 -Wall -DDYNAMIC_PLUGIN -DDETECTION_OPTION_TREE -fno-strict-aliasing -c server_stats.c
    In function ‘open’,
        inlined from ‘server_stats_save’ at server_stats.c:349:
    /usr/include/bits/fcntl2.h:51: error: call to ‘__open_missing_mode’ declared with attribute error: open with O_CREAT in second argument needs 3 arguments
    make[5]: *** [server_stats.o] Error 1
    make[5]: Leaving directory `/usr/src/snort-2.8.3.2/src/preprocessors/flow/portscan'
    make[4]: *** [all-recursive] Error 1
    make[4]: Leaving directory `/usr/src/snort-2.8.3.2/src/preprocessors/flow'
    make[3]: *** [all-recursive] Error 1
    make[3]: Leaving directory `/usr/src/snort-2.8.3.2/src/preprocessors'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2'
    make: *** [all] Error 2
    tried a few things, i got nautilus to work this time and snort-2.8.3.2 is in usr/src now but i still get the same errors =/ for snort rules, im using /usr/src/snortrules-snapshot-CURRENT also. anyway need help =)

  3. #23
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    please help someone and thank you

  4. #24
    Join Date
    Apr 2006
    Location
    Montana
    Beans
    Hidden!
    Distro
    Kubuntu Development Release

    Re: Itrepid~snort error in terminal !

    There are two mistakes one can make along the road to truth...not going all the way, and not starting.
    --Prince Gautama Siddharta

    #ubuntuforums web interface

  5. #25
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    Quote Originally Posted by bodhi.zazen View Post
    didnt work =/
    Code:
    <path_to_snort_source>/src/preprocessors/flow/portscan/server_stats.c
    changed the code and only found one text line underneath the code text /* open this description, create it if necessary, always wait on
    * sync to disk w/ every write, only write */
    Code:
    fd = open(filename, O_CREAT|O_TRUNC|O_SYNC|O_WRONLY);
    anyway changed that to
    Code:
    fd = open(filename, O_CREAT, S_IRUSR|S_IWUSR|O_TRUNC|O_SYNC|O_WRONLY);
    here's the text document changed
    Code:
    /****************************************************************************
     *
     * Copyright (C) 2003-2008 Sourcefire, Inc.
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License Version 2 as
     * published by the Free Software Foundation.  You may not use, modify or
     * distribute this program under any other version of the GNU General
     * Public License.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     *
     ****************************************************************************/
     
    /**
     * @file   server_stats.c
     * @author Chris Green <cmg@sourcefire.com>
     * @date   Fri Jun 13 14:28:50 2003
     * 
     * @brief  "policy" learning portion of portscan detector
     * 
     * This keeps a table of (dip+dport+dprotocol) -> count to help
     * identify what is a normal looking portscan versus what is pretty
     * far outta whack.
     *
     */
    
    #include "server_stats.h"
    #include "flowps.h"
    #include "sfxhash.h"
    
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <unistd.h> 
    #include <string.h>
    
    static void server_stats_init_entry(void);
    
    typedef struct _SERVER_KEY
    {
        u_int32_t address;
        u_int32_t port;
        u_int32_t protocol;  
    } SERVER_KEY;
    
    static SERVER_KEY s_key; 
    static int s_debug = 0;
    
    /** 
     * Print out the entirety of the server cache.
     * 
     * @param ssp server stats pointer
     */
    void server_stats_dump(SERVER_STATS *ssp)
    {
        SFXHASH_NODE *nodep;
        
        if(ssp && ssp->ipv4_table)
        {
            for( nodep = sfxhash_ghead(ssp->ipv4_table);
                 nodep != NULL;
                 nodep = sfxhash_gnext(nodep) )
            {
                SERVER_KEY *kp = (SERVER_KEY *) nodep->key;
                u_int32_t count = *(u_int32_t *) nodep->data;
                
                flow_printf("hits: %u proto: %3u port: %5u ip: %s\n",
                            count,
                            kp->protocol,
                            kp->port,
                            inet_ntoa(*(struct in_addr *)&kp->address));
            }
        }
        else
        {
            flow_printf("nothing to dump!\n");
        }
    }
    
    void server_stats(SERVER_STATS *ssp, int dumpall)
    {
        unsigned total, fail, success, nodes, anr, overhead, memcap;
    
        memcap = overhead = nodes = anr = total = fail = success = 0;
        
        if(ssp && ssp->ipv4_table)
        {
            total    = sfxhash_find_total(ssp->ipv4_table);
            fail     = sfxhash_find_fail(ssp->ipv4_table);
            success  = sfxhash_find_success(ssp->ipv4_table);
            nodes    = sfxhash_count(ssp->ipv4_table);
            anr      = sfxhash_anr_count(ssp->ipv4_table);
            memcap   = server_stats_memcap(ssp);
            overhead = server_stats_overhead_bytes(ssp);
        }    
    
        flow_printf(",-----[SERVER STATS]------------\n");
        flow_printf("   Memcap: %u  Overhead Bytes: %u\n",
                    memcap, overhead);
        
        flow_printf("   Finds: %u (Sucessful: %u(%%%f) Unsucessful: %u(%%%f))\n",
                    total,
                    success, calc_percent(success,total),
                    fail, calc_percent(fail,total));
    
        flow_printf("   Nodes: %u\n", nodes);
        
        flow_printf("   Recovered Nodes: %u\n", anr);
        flow_printf("`-------------------------------\n");
    
        if(dumpall)
            server_stats_dump(ssp);
    }
    
    /** 
     * Initialize the server stats structure
     *
     * If we do not specify a watchnet, then we have no use for this
     * structure
     * 
     * @param ssp server stats structure to initialize
     * @param watchnet what network we're watching for information
     * @param rows how many rows the underlying table should use
     * @param memcap what our total memory limit is
     * 
     * @return FLOW_SUCCESS on success
     */
    int server_stats_init(SERVER_STATS *ssp, IPSET *watchnetv4,
                          unsigned int rows, int memcap)
    {
        if(!ssp || !watchnetv4)
            return FLOW_ENULL;
    
        server_stats_init_entry();
        
        memset(ssp, 0, sizeof(SERVER_STATS));
    
        
        if(ipset_family(watchnetv4) != IPV4_FAMILY)
        {
            return FLOW_EINVALID;
        }
    
        /* what size should we do? */
        ssp->ipv4_table = sfxhash_new(rows,               /* # of rows in HT*/
                                      sizeof(SERVER_KEY), /* size of the key  */
                                      sizeof(u_int32_t),   /* data size */
                                      memcap,            /* how much memory is alloted */
                                      1,                 /* auto recover nodes */
                                      NULL,              /* autorecovery function */
                                      NULL,              /* free function for the data */
                                      1);                /* recycle old nodes */
    
        if(ssp->ipv4_table == NULL)
        {
            return FLOW_ENOMEM;
        }
    
        ssp->ipv4_watch = ipset_copy(watchnetv4);
        
        if(!ssp->ipv4_watch)
        {
            sfxhash_delete(ssp->ipv4_table);        
            return FLOW_ENOMEM;
        }
    
        return FLOW_SUCCESS;
    }
    
    int server_stats_destroy(SERVER_STATS *ssp)
    {
        if(!ssp)
        {
            return FLOW_ENULL;
        }
        
        sfxhash_delete(ssp->ipv4_table);
        ipset_free(ssp->ipv4_watch);
    
        return FLOW_SUCCESS;
    }
    
    /** 
     * See if we are watching this particular IP 
     * 
     * @param ssp server stats pointer
     * @param address ipv4 address in NETWORK BYTE ORDER
     * 
     * @return 1 if this SERVER_STATS is watching this network
     */
    int server_stats_contains(SERVER_STATS *ssp, u_int32_t address)
    {
        if(ssp->ipv4_watch)
        {
            u_int32_t hostaddress = ntohl(address);
    
            if(ipset_contains(ssp->ipv4_watch, &hostaddress, NULL, IPV4_FAMILY))
            {
                return FLOW_SUCCESS;
            }
        }
        
        return FLOW_DISABLED;        
    }
    
    
    u_int32_t server_stats_hitcount_ipv4(SERVER_STATS *ssp, u_int8_t ip_proto, u_int32_t address, u_int16_t port)
    {
        SERVER_KEY *kp = &s_key;
        u_int32_t *hitcountp;
    #ifdef DEBUG
        u_int32_t hostaddress = ntohl(address);
    #endif /* DEBUG */
    
        /* OK, IPSETs are acting in HOST ORDER */
        FLOWASSERT(ipset_contains(ssp->ipv4_watch, &hostaddress, NULL, IPV4_FAMILY));
    
        /* make a key */
        kp->address = address;
        kp->port = port;
        kp->protocol = ip_proto;
        
        hitcountp = (u_int32_t *) sfxhash_find(ssp->ipv4_table, kp);
        
        if(hitcountp != NULL)
        {
            return *hitcountp;
        }
    
        return 0;    
    }
    
    int server_stats_add_ipv4(SERVER_STATS *ssp, u_int8_t ip_proto, u_int32_t address, u_int16_t port,
                              u_int32_t *retcount)
    {
        SERVER_KEY *kp = &s_key;
        u_int32_t one = 1;
        u_int32_t *hitcountp = NULL;
        int ret;
    #ifdef DEBUG
        u_int32_t hostaddress = ntohl(address);
    #endif /* DEBUG */
        
        if(ssp == NULL || retcount == NULL)
            return FLOW_ENULL;
    
        /* calls to this subsystem should only be made if we are really watching this. */
        FLOWASSERT(ipset_contains(ssp->ipv4_watch, &hostaddress, NULL, IPV4_FAMILY));
        
        /* make the key */
        kp->address  = address;
        kp->port     = port;
        kp->protocol = ip_proto;
        
        /* find the key, add 1 to it or add a new node to the table */
        ret = sfxhash_add(ssp->ipv4_table, kp, &one);
        
        switch(ret)
        {
        case SFXHASH_NOMEM:
            /* NOMEM means that we would add it if we could but we're
             *  hard-core out of space.  So, just assume we added it.
             */
        case SFXHASH_OK:
            *retcount = 1;        
            break;
        case SFXHASH_INTABLE:
            hitcountp = (u_int32_t *) sfxhash_mru(ssp->ipv4_table);
            
            /* never let us wrap around to less hits */
            if(!hitcountp)
            {
                /* this is an odd error! */
                return FLOW_BADJUJU;
            }
            else
            {
                if((*hitcountp) < SERVER_STATS_MAX_HITCOUNT)
                {
                    (*hitcountp)++;
                }            
            }
            break;
        }
        
        return FLOW_SUCCESS;
    }
    
    int server_stats_remove_ipv4(SERVER_STATS *ssp, u_int8_t ip_proto,
                                 u_int32_t address, u_int16_t port)
    {
        SERVER_KEY *kp = &s_key;
    
        if(!ssp)
            return FLOW_ENULL;
           
        kp->address = address;
        kp->port = port;
        kp->protocol = ip_proto;
    
        /* not like we can do anything if this failed */
        sfxhash_remove(ssp->ipv4_table, kp);
    
        return FLOW_SUCCESS;
    }
    
    
    /* start of parsing helpers */
    #define FAMILY_SIZE     1
    #define FAMILY_OFFSET   0
    
    #define IPV4_SIZE       4
    #define IPV4_OFFSET     (FAMILY_SIZE)
    
    #define PORT_SIZE       2
    #define PORT_OFFSET     (IPV4_OFFSET + IPV4_SIZE)
    
    #define IP_PROTO_SIZE   1
    #define IP_PROTO_OFFSET (PORT_OFFSET + PORT_SIZE)
    
    #define COUNT_SIZE      4
    #define COUNT_OFFSET    (IP_PROTO_OFFSET + IP_PROTO_SIZE)
    
    #define STATSREC_SIZE (FAMILY_SIZE + IPV4_SIZE + PORT_SIZE + IP_PROTO_SIZE + COUNT_SIZE)
    /* end parsing helpers */
    
    int server_stats_save(SERVER_STATS *ssp, char *filename)
    {
        SFXHASH_NODE *nodep;
        unsigned char buf[STATSREC_SIZE];
        int fd;
        
        if(!filename || !ssp)
            return FLOW_ENULL;
    #ifndef O_SYNC
    #define O_SYNC O_FSYNC
    #endif
    
        /* open this description, create it if necessary, always wait on
         * sync to disk w/ every write, only write */
        fd = open(filename, O_CREAT, S_IRUSR|S_IWUSR|O_TRUNC|O_SYNC|O_WRONLY);
    
        if(fd < 0)
        {
            if(s_debug)
            {
                flow_printf("%s was not found\n", filename);
            }
            return FLOW_NOTFOUND;
        }
    
        /* this is a crappy parser... that's par for the course */
        for( nodep = sfxhash_ghead(ssp->ipv4_table);
             nodep != NULL;
             nodep = sfxhash_gnext(nodep) )
        {
            SERVER_KEY *kp = (SERVER_KEY *) nodep->key;
            u_int32_t count = *(u_int32_t *) nodep->data;
            u_int8_t  family = '4';
            u_int32_t ipv4_address;
            u_int16_t port;
            u_int8_t  protocol;
            ssize_t  wbytes = 0;
            ssize_t wsize;
                
            
            count        = ntohl(count);       
            ipv4_address = htonl(kp->address);
            port         = htons((u_int16_t) kp->port);
            protocol     = (u_int8_t) kp->protocol;
    
            memcpy(buf + FAMILY_OFFSET,   &family,        FAMILY_SIZE);
            memcpy(buf + IPV4_OFFSET,     &ipv4_address,  IPV4_SIZE);       
            memcpy(buf + PORT_OFFSET,     &port,          PORT_SIZE);
            memcpy(buf + IP_PROTO_OFFSET, &protocol,      IP_PROTO_SIZE);
            memcpy(buf + COUNT_OFFSET,    &count,         COUNT_SIZE);
    
            /* now make sure we get a full record on disk */
            while(wbytes < STATSREC_SIZE)
            {
                /* write the number of bytes we already have - the #
                 * already written */
                wsize = write(fd, buf, (STATSREC_SIZE - wbytes));
    
                if(wsize < 0)
                {
                    /* this record was truncated */
                    flow_printf("Truncated Server Record!\n");
                    return FLOW_EINVALID;
                }
                else
                {
                    wbytes += wsize;
                }
            }
        }
        
        return FLOW_SUCCESS;
    }
    
    
    /** 
     * initialize the static s_init_key variable once and only once.This
     * is used to zero out the key so that if the compiler pads the
     * structure, we still have 0's in this keylookup.
     * 
     */
    static void server_stats_init_entry(void)
    {
        static int init_once = 1;
    
        if(init_once)
        {
            init_once = 0;
            memset(&s_key, 0, sizeof(SERVER_KEY));
        }
    }
    
    
    /** 
     * get the memcap
     * 
     * @param sbp server_stats ptr to return the memcap of
     * 
     * @return memcap or -1
     */
    int server_stats_memcap(SERVER_STATS *sbp)
    {
        if(sbp != NULL && sbp->ipv4_table != NULL)        
            return sbp->ipv4_table->mc.memcap;
    
        return -1;            
    }
    
    /** 
     * get the node count
     * 
     * @param sbp server_stats ptr to return the memcap of
     * 
     * @return nrows or -1
     */
    int server_stats_row_count(SERVER_STATS *sbp)
    {
        if(sbp != NULL && sbp->ipv4_table != NULL)        
            return sbp->ipv4_table->nrows;
    
        return -1;            
    }
    
    
    /** 
     * get the overhead # of bytes
     * 
     * @param sbp server_stats ptr to return the memcap of
     * 
     * @return nrows or -1
     */
    int server_stats_overhead_bytes(SERVER_STATS *sbp)
    {
        if(sbp != NULL && sbp->ipv4_table != NULL)
            return sfxhash_overhead_bytes(sbp->ipv4_table);
    
        return -1;            
    }
    and here's the errors again in terminal
    Code:
    make[6]: *** [install-libLTLIBRARIES] Error 1
    make[6]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[5]: *** [install-am] Error 2
    make[5]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[4]: *** [install-recursive] Error 1
    make[4]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[3]: *** [install] Error 2
    make[3]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[2]: *** [install-recursive] Error 1
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins'
    make[1]: *** [install-recursive] Error 1
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/src'
    make: *** [install-recursive] Error 1
    thanks but still stuck =( please help and thank you

  6. #26
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    gona try this code of text instead
    Code:
    fd = open(filename, O_CREAT, S_IRUSR|S_IWUSR|O_TRUNC|O_SYNC|O_WRONLY);

  7. #27
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    nope
    Code:
    /bin/mkdir: cannot create directory `/usr/local/lib/snort_dynamicengine': Permission denied
    make[6]: *** [install-libLTLIBRARIES] Error 1
    make[6]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[5]: *** [install-am] Error 2
    make[5]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[4]: *** [install-recursive] Error 1
    make[4]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[3]: *** [install] Error 2
    make[3]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins/sf_engine'
    make[2]: *** [install-recursive] Error 1
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/src/dynamic-plugins'
    make[1]: *** [install-recursive] Error 1
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/src'
    make: *** [install-recursive] Error 1
    ok so get permission denied so i need help again and thank you. so close =) write back soon --edit, i left the little top part of the error *where it seems to go wrong =/
    Last edited by KEE; March 9th, 2009 at 11:56 PM.

  8. #28
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    still need help please and thank you =)

  9. #29
    Join Date
    Apr 2006
    Location
    Montana
    Beans
    Hidden!
    Distro
    Kubuntu Development Release

    Re: Itrepid~snort error in terminal !

    Although you should not need to, try running make as root (looks like a permissions problem).

    sudo make
    sudo make install
    There are two mistakes one can make along the road to truth...not going all the way, and not starting.
    --Prince Gautama Siddharta

    #ubuntuforums web interface

  10. #30
    Join Date
    Feb 2008
    Beans
    821

    Re: Itrepid~snort error in terminal !

    Quote Originally Posted by bodhi.zazen View Post
    Although you should not need to, try running make as root (looks like a permissions problem).

    sudo make
    sudo make install
    oh ok thats doing more then it was before, however there alot "leaving" going on...im gona post it and could you let me no if it installed properly
    Code:
    test -z "/usr/local/share/doc/snort" || /bin/mkdir -p "/usr/local/share/doc/snort"
     /usr/bin/install -c -m 644 'AUTHORS' '/usr/local/share/doc/snort/AUTHORS'
     /usr/bin/install -c -m 644 'BUGS' '/usr/local/share/doc/snort/BUGS'
     /usr/bin/install -c -m 644 'CREDITS' '/usr/local/share/doc/snort/CREDITS'
     /usr/bin/install -c -m 644 'generators' '/usr/local/share/doc/snort/generators'
     /usr/bin/install -c -m 644 'INSTALL' '/usr/local/share/doc/snort/INSTALL'
     /usr/bin/install -c -m 644 'NEWS' '/usr/local/share/doc/snort/NEWS'
     /usr/bin/install -c -m 644 'PROBLEMS' '/usr/local/share/doc/snort/PROBLEMS'
     /usr/bin/install -c -m 644 'README' '/usr/local/share/doc/snort/README'
     /usr/bin/install -c -m 644 'README.alert_order' '/usr/local/share/doc/snort/README.alert_order'
     /usr/bin/install -c -m 644 'README.ARUBA' '/usr/local/share/doc/snort/README.ARUBA'
     /usr/bin/install -c -m 644 'README.asn1' '/usr/local/share/doc/snort/README.asn1'
     /usr/bin/install -c -m 644 'README.csv' '/usr/local/share/doc/snort/README.csv'
     /usr/bin/install -c -m 644 'README.database' '/usr/local/share/doc/snort/README.database'
     /usr/bin/install -c -m 644 'README.dcerpc' '/usr/local/share/doc/snort/README.dcerpc'
     /usr/bin/install -c -m 644 'README.decode' '/usr/local/share/doc/snort/README.decode'
     /usr/bin/install -c -m 644 'README.decoder_preproc_rules' '/usr/local/share/doc/snort/README.decoder_preproc_rules'
     /usr/bin/install -c -m 644 'README.dns' '/usr/local/share/doc/snort/README.dns'
     /usr/bin/install -c -m 644 'README.event_queue' '/usr/local/share/doc/snort/README.event_queue'
     /usr/bin/install -c -m 644 'README.FLEXRESP' '/usr/local/share/doc/snort/README.FLEXRESP'
     /usr/bin/install -c -m 644 'README.FLEXRESP2' '/usr/local/share/doc/snort/README.FLEXRESP2'
     /usr/bin/install -c -m 644 'README.flow' '/usr/local/share/doc/snort/README.flow'
     /usr/bin/install -c -m 644 'README.flowbits' '/usr/local/share/doc/snort/README.flowbits'
     /usr/bin/install -c -m 644 'README.flow-portscan' '/usr/local/share/doc/snort/README.flow-portscan'
     /usr/bin/install -c -m 644 'README.frag3' '/usr/local/share/doc/snort/README.frag3'
     /usr/bin/install -c -m 644 'README.ftptelnet' '/usr/local/share/doc/snort/README.ftptelnet'
     /usr/bin/install -c -m 644 'README.gre' '/usr/local/share/doc/snort/README.gre'
     /usr/bin/install -c -m 644 'README.http_inspect' '/usr/local/share/doc/snort/README.http_inspect'
     /usr/bin/install -c -m 644 'README.INLINE' '/usr/local/share/doc/snort/README.INLINE'
     /usr/bin/install -c -m 644 'README.ipip' '/usr/local/share/doc/snort/README.ipip'
     /usr/bin/install -c -m 644 'README.ipv6' '/usr/local/share/doc/snort/README.ipv6'
     /usr/bin/install -c -m 644 'README.pcap_readmode' '/usr/local/share/doc/snort/README.pcap_readmode'
     /usr/bin/install -c -m 644 'README.PerfProfiling' '/usr/local/share/doc/snort/README.PerfProfiling'
     /usr/bin/install -c -m 644 'README.PLUGINS' '/usr/local/share/doc/snort/README.PLUGINS'
     /usr/bin/install -c -m 644 'README.ppm' '/usr/local/share/doc/snort/README.ppm'
     /usr/bin/install -c -m 644 'README.sfportscan' '/usr/local/share/doc/snort/README.sfportscan'
     /usr/bin/install -c -m 644 'README.SMTP' '/usr/local/share/doc/snort/README.SMTP'
     /usr/bin/install -c -m 644 'README.ssh' '/usr/local/share/doc/snort/README.ssh'
     /usr/bin/install -c -m 644 'README.ssl' '/usr/local/share/doc/snort/README.ssl'
     /usr/bin/install -c -m 644 'README.stream4' '/usr/local/share/doc/snort/README.stream4'
     /usr/bin/install -c -m 644 'README.stream5' '/usr/local/share/doc/snort/README.stream5'
     /usr/bin/install -c -m 644 'README.tag' '/usr/local/share/doc/snort/README.tag'
     /usr/bin/install -c -m 644 'README.thresholding' '/usr/local/share/doc/snort/README.thresholding'
     /usr/bin/install -c -m 644 'README.UNSOCK' '/usr/local/share/doc/snort/README.UNSOCK'
     /usr/bin/install -c -m 644 'README.variables' '/usr/local/share/doc/snort/README.variables'
     /usr/bin/install -c -m 644 'README.WIN32' '/usr/local/share/doc/snort/README.WIN32'
     /usr/bin/install -c -m 644 'README.wireless' '/usr/local/share/doc/snort/README.wireless'
     /usr/bin/install -c -m 644 'TODO' '/usr/local/share/doc/snort/TODO'
     /usr/bin/install -c -m 644 'USAGE' '/usr/local/share/doc/snort/USAGE'
     /usr/bin/install -c -m 644 'WISHLIST' '/usr/local/share/doc/snort/WISHLIST'
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/doc'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/doc'
    Making install in etc
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/etc'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/etc'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/etc'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/etc'
    Making install in templates
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/templates'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/templates'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/templates'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/templates'
    Making install in contrib
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/contrib'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/contrib'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/contrib'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/contrib'
    Making install in schemas
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/schemas'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/schemas'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/schemas'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/schemas'
    Making install in rpm
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/rpm'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/rpm'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/rpm'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/rpm'
    Making install in m4
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/m4'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/m4'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/m4'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/m4'
    Making install in preproc_rules
    make[1]: Entering directory `/usr/src/snort-2.8.3.2/preproc_rules'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2/preproc_rules'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2/preproc_rules'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2/preproc_rules'
    make[1]: Entering directory `/usr/src/snort-2.8.3.2'
    make[2]: Entering directory `/usr/src/snort-2.8.3.2'
    make[2]: Nothing to be done for `install-exec-am'.
    test -z "/usr/local/share/man/man8" || /bin/mkdir -p "/usr/local/share/man/man8"
     /usr/bin/install -c -m 644 './snort.8' '/usr/local/share/man/man8/snort.8'
    make[2]: Leaving directory `/usr/src/snort-2.8.3.2'
    make[1]: Leaving directory `/usr/src/snort-2.8.3.2'
    ***@***-desktop:/usr/src/snort-2.8.3.2$

Page 3 of 19 FirstFirst 1234513 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •