Re: I don't know how to use memcached image.

2017-12-04 Thread Nadav Har'El
On Thu, Nov 30, 2017 at 3:32 PM, wrote: > I started with > "scripts/run.py -e "memcached -u root -p 1121" --forward "tcp:1121::1121"" > which I add "-p 1121". > Then it worked. > Before I added "-p",it showed me > "Connection closed by foreign host" > Thanks very much. > > Whoever started this li

Re: Having some problems in running Cpp code on Osv

2017-12-04 Thread answerhua96
Thank all of you very much. I change all of '.o' to '.so' and it worked. I've learned a lot. Thanks again. -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to os

Re: Having some problems in running Cpp code on Osv

2017-12-04 Thread answerhua96
Thank you very much. I've leaned a lot. -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to osv-dev+unsubscr...@googlegroups.com. For more options, visit https://

Re: Having some problems in running Cpp code on Osv

2017-12-04 Thread answerhua96
在 2017年12月4日星期一 UTC+8下午6:50:25,Nadav Har'El写道: > On Sat, Dec 2, 2017 at 11:44 AM, wrote: > > I try to run my c++ code on Osv but there are some problems. > > > > This is my Hello.cpp: > > > > #include > > using namespace std; > > > > int main() > > { > >         cout<<"Hello world!!

Clone/fork into new VM, crossVM IPC obstacles

2017-12-04 Thread adni . online
I am currently considering the feasibility of a VM-based process sandbox for Linux. As such, I stumbled upon OSv and was attracted by its relative simplicity and low overhead compared to the Linux kernel. Since many normal applications require the syscalls that are (for good reason) not implemen

Re: Having some problems in running Cpp code on Osv

2017-12-04 Thread Nadav Har'El
On Sat, Dec 2, 2017 at 11:44 AM, wrote: > I try to run my c++ code on Osv but there are some problems. > > This is my Hello.cpp: > > #include > using namespace std; > > int main() > { > cout<<"Hello world!!!"< } > > > > This is my Makefile: > As Tomek already replied earlier, what the e

Re: Having some problems in running Cpp code on Osv

2017-12-04 Thread Tomasz Grabiec
See https://github.com/cloudius-systems/osv/wiki/OSv-modules#automatic-module-building : "If module contains Makefile it will be automatically built with make module command if it is required in the image." Try defining a rule named "module" in your Makefile. On Sat, Dec 2, 2017 at 10:44 AM, w