search for: sharenet

Displaying 14 results from an estimated 14 matches for "sharenet".

2007 May 16
1
SAMBA: Share specific log files
.... We are trying to modify the file smbd/service.c::make_connection_snum() function by changing the log file full path. The code changes that is done are as follows: char logfilefullpath[70]; char sharename[256]; safe_strcpy_fn (__FILE__, __LINE__ ,logfilefullpath, "/log/sharenet/", sizeof ("/log/sharenet/")); safe_strcat_fn (__FILE__,__LINE__,logfilefullpath,lp_servicename(snum), sizeof("/log/sharenet/")+sizeof(lp_servicename(snum))); safe_strcat_fn (__FILE__,__LINE__,logfilefullpath,".log", sizeof("/log/sharenet/"...
2016 Nov 08
3
Sharing network namespace between containers
...> <source network='dpbr_0'/> <guest dev='eth0'/> </interface> --> <console type='pty'> <target type='lxc' port='0'/> </console> </devices> * <lxc:namespace>* * <lxc:sharenet type='netns' value='node'/>* * </lxc:namespace>* </domain> However, the virsh edit is unable to save this file: error: XML document failed to validate against schema: Unable to validate doc against /usr/share/libvirt/schemas/domain.rng Element domain has extra cont...
2010 Jan 22
1
apcupsd
...PC. They're just dumb batteries, no chips or whatever on them. If I hook it up using a serial cable, I can get info. If I hook it up the way I had it, with APC's weird USB cable - and this is the way it was working before - it fails. I run apctest, and it gives me: Attached to driver: usb sharenet.type = DISABLE cable.type = USB_CABLE You are using a USB cable type, so I'm entering USB test mode mode.type = USB_UPS Setting up the port ... Hello, this is the apcupsd Cable Test program. This part of apctest is for testing USB UPSes. Getting UPS capabilities...SUCCESS Then I tell it to d...
2010 Jan 08
2
Virtio ballooning support for Lguest
Hi, I am doing working on enabling Transcendent Memory(OLS '09) support on lguest. For the same, I need ballooning support for lguest. Is there an implmentation of Virtio Balloon driver, that I can use for my purpose? Could someone give me an insight, as to how to go about, for implementing this myself, incase I dont find this patch... Thankyou. -- Gaurav Kukreja +91 997 030 1257
2010 Jan 08
2
Virtio ballooning support for Lguest
Hi, I am doing working on enabling Transcendent Memory(OLS '09) support on lguest. For the same, I need ballooning support for lguest. Is there an implmentation of Virtio Balloon driver, that I can use for my purpose? Could someone give me an insight, as to how to go about, for implementing this myself, incase I dont find this patch... Thankyou. -- Gaurav Kukreja +91 997 030 1257
2010 Jan 08
3
USB problems on 8.0-STABLE
I am having problems with mouse, keyboard and APC UPS. When attempting to start apcupsd I get the following error: Jan 8 17:42:06 Ace apcupsd[1606]: apcupsd FATAL ERROR in generic-usb.c at line 636 Cannot find UPS device -- For a link to detailed USB trouble shooting information, please see <http://www.apcupsd.com/support.html>. Jan 8 17:42:06 Ace apcupsd[1606]: apcupsd error shutdown
2016 Nov 08
0
Re: Sharing network namespace between containers
...9;/> > <guest dev='eth0'/> > </interface> >--> > > <console type='pty'> > <target type='lxc' port='0'/> > </console> > </devices> > >* <lxc:namespace>* >* <lxc:sharenet type='netns' value='node'/>* >* </lxc:namespace>* ></domain> > >However, the virsh edit is unable to save this file: > >error: XML document failed to validate against schema: Unable to validate >doc against /usr/share/libvirt/schemas/domain.rng &...
2016 Nov 08
1
Re: Sharing network namespace between containers
...39;/> >> </interface> >> --> >> >> <console type='pty'> >> <target type='lxc' port='0'/> >> </console> >> </devices> >> >> * <lxc:namespace>* >> * <lxc:sharenet type='netns' value='node'/>* >> * </lxc:namespace>* >> </domain> >> >> However, the virsh edit is unable to save this file: >> >> error: XML document failed to validate against schema: Unable to validate >> doc against /usr/s...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...est_fd, reason, sizeof(reason)-1); + errx(1, "%s", reason); + } else if (errno != EINTR) + err(1, "Running guest failed"); + handle_input(lguest_fd, waker_fd, device_list); + } +} + +static struct option opts[] = { + { "verbose", 0, NULL, 'v' }, + { "sharenet", 1, NULL, 's' }, + { "tunnet", 1, NULL, 't' }, + { "block", 1, NULL, 'b' }, + { "initrd", 1, NULL, 'i' }, +}; +static void usage(void) +{ + errx(1, "Usage: lguest [--verbose] " + "[--sharenet=<filename>|--...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...est_fd, reason, sizeof(reason)-1); + errx(1, "%s", reason); + } else if (errno != EINTR) + err(1, "Running guest failed"); + handle_input(lguest_fd, waker_fd, device_list); + } +} + +static struct option opts[] = { + { "verbose", 0, NULL, 'v' }, + { "sharenet", 1, NULL, 's' }, + { "tunnet", 1, NULL, 't' }, + { "block", 1, NULL, 'b' }, + { "initrd", 1, NULL, 'i' }, +}; +static void usage(void) +{ + errx(1, "Usage: lguest [--verbose] " + "[--sharenet=<filename>|--...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...unsigned long *, const char *, unsigned long *, + unsigned long *); + + if (argv[1] && strcmp(argv[1], "--verbose") == 0) { + verbose = true; + argv++; + argc--; + } + + if (argc < 4) + errx(1, "Usage: lguest [--verbose] <mem> vmlinux " + "[--sharenet=<filename>|--tunnet=(<ipaddr>|bridge:<bridgename>)" + "|--block=<filename>|--initrd=<filename>]... [args...]"); + + zero_fd = open("/dev/zero", O_RDONLY, 0); + if (zero_fd < 0) + err(1, "Opening /dev/zero"); + + mem = memparse(a...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...unsigned long *, const char *, unsigned long *, + unsigned long *); + + if (argv[1] && strcmp(argv[1], "--verbose") == 0) { + verbose = true; + argv++; + argc--; + } + + if (argc < 4) + errx(1, "Usage: lguest [--verbose] <mem> vmlinux " + "[--sharenet=<filename>|--tunnet=(<ipaddr>|bridge:<bridgename>)" + "|--block=<filename>|--initrd=<filename>]... [args...]"); + + zero_fd = open("/dev/zero", O_RDONLY, 0); + if (zero_fd < 0) + err(1, "Opening /dev/zero"); + + mem = memparse(a...
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c