On Wed, Apr 6, 2016 at 9:08 PM, mathias arnaud nkeumo tsombeng <[email protected]> wrote: > Dear sir, > > Am student in master 2 in computer science department in the > university of yaoundé 1 and for my master thesis, i have to build an > anomaly detection algorithm for a network intrusion detection in > pharo.i have started reading about pharo. And i have the following > question in mine > - How can an application develop in pharo be deployed(web application > and stand alone application)?
To deploy a standalone application you would distribute your working IMAGE together with a VM. Depending on which platform you are on, you could rename the VM to your application name with an INI file defining which IMAGE to start, or use a command script. > - How can i capture frame and packet in a network using pharo? In Pharo 5 you probably want to use UFFI to interface to something like http://linux.die.net/man/3/pcap cheers -ben
