search for: domname

Displaying 20 results from an estimated 96 matches for "domname".

2008 Aug 04
0
[PATCH] stubdom: rename the ioemu-dm domain config file to domainname-dm
...uot;hvmconfig", diff -r c9b516a77927 stubdom/stubdom-dm --- a/stubdom/stubdom-dm Mon Aug 04 11:29:45 2008 +0100 +++ b/stubdom/stubdom-dm Mon Aug 04 12:51:31 2008 +0100 @@ -55,7 +55,7 @@ term() { kill %1 ( [ -n "$vncpid" ] && kill -9 $vncpid - xm destroy stubdom-$domname + xm destroy $domname-dm xm destroy $domname ) & # We need to exit immediately so as to let xend do the commands above @@ -67,12 +67,12 @@ trap term SIGHUP ############ # stubdomain # Wait for any previous stubdom to terminate -while xm list | grep stubdom-$domname +while xm list...
2012 Sep 06
7
[PATCH] xl: Introduce shutdown xm compatibility option -a to shutdown all domains
..._cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Mon Sep 03 11:22:02 2012 +0100 +++ b/tools/libxl/xl_cmdimpl.c Thu Sep 06 12:04:12 2012 +0200 @@ -3670,14 +3670,20 @@ int main_destroy(int argc, char **argv) int main_shutdown(int argc, char **argv) { - int opt; + libxl_dominfo *dominfo; + char *domname; + int opt, i, nb_domain; + int all = 0; int wait = 0; int fallback_trigger = 0; - while ((opt = def_getopt(argc, argv, "wF", "shutdown", 1)) != -1) { + while ((opt = def_getopt(argc, argv, "awF", "shutdown", 0)) != -1) { swit...
2010 Jul 23
0
libvir: Domain error <domName>: invalid argument in virDomainGetXMLDesc
All, I just downloaded and installed libvirt-bin and this is my first email to the group, so I apologize in advance if my questions are too naive! So, I am trying to access VMs running on xen3.2 hypervisor (host with kernel 2.6.24-24-xen) using virt-manager installed on a machine running Ubuntu 9.04 (client machine). I got to the point where I can connect to my virtual machine and my domain-0
2010 May 07
1
[PATCH 1/2]xl: Add "xl domid" command
...(!strcmp(command, "domid")) { + printf("Usage: xl domid <DomainName>\n\n"); + printf("Convert a domain name to domain id.\n"); } } @@ -2945,3 +2948,36 @@ exit(0); } + +int main_domid(int argc, char **argv) +{ + int opt; + char *domname = NULL; + + while ((opt = getopt(argc, argv, "h")) != -1) { + switch (opt) { + case ''h'': + help("domid"); + exit(0); + default: + fprintf(stderr, "option `%c'' not supported.\n", opt); +...
2010 Apr 22
1
Samba as Domain Member Server Authentication Problem
...mba 3.4.0 box where the login *works*, but I think only because the user is actually logged into the domain: =================================================================== [2010/04/20 15:23:20, 3] auth/auth.c:222(check_ntlm_password) check_ntlm_password: Checking password for unmapped user [DOMNAME]\[client2]@[M AILMAN2] with the new password interface [2010/04/20 15:23:20, 3] auth/auth.c:225(check_ntlm_password) check_ntlm_password: mapped user is: [DOMNAME]\[client2]@[client2] [2010/04/20 15:23:20, 3] auth/auth.c:271(check_ntlm_password) check_ntlm_password: winbind authentication for user...
2003 Jul 07
1
Migrate NT PDC to SAMBA PDC
...a DC with netlogon share, profile share, etc. The Account Migration Process 1. Create a BDC account for the samba server using NT Server Manager a) Samba must NOT be running 2. rpcclient NT4PDC -U Administrator%passwd a) lsaquery b) Note the SID returned 3. net getsid -S NT4PDC -w DOMNAME -U Administrator%passwd a) Note the SID 4. net getlocalsid a) Note the SID, now check that all three SIDS reported are the same! 5. net rpc join -S NT4PDC -w DOMNAME -U Administrator%passwd 6. net rpc vampire -S NT4PDC -U administrator%passwd 7. pdbedit -L a) Note - did the users mi...
2023 Mar 19
1
virsh domifaddr --domain domname --source {lease, arp} not showing results with ipv6
hi, I have configured a routed network on my laptop with a ipv6 subnet and dnsmasq is handing out ipv6 addresses to my vms and it works really wel, but finding out which ips have been used is not as easy as with ipv4. [root at lenovo ~]# virsh domifaddr --domain wec --source lease Name MAC address Protocol Address
2018 Feb 13
1
[PATCH] inspector: fix help text (RHBZ#1544674)
...spector/inspector.c +++ b/inspector/inspector.c @@ -79,8 +79,8 @@ usage (int status) printf (_("%s: display information about a virtual machine\n" "Copyright (C) 2010 Red Hat Inc.\n" "Usage:\n" - " %s [--options] -d domname file [file ...]\n" - " %s [--options] -a disk.img [-a disk.img ...] file [file ...]\n" + " %s [--options] -d domname\n" + " %s [--options] -a disk.img [-a disk.img ...]\n" "Options:\n"...
2023 Mar 21
1
virsh domifaddr --domain domname --source {lease, arp} not showing results with ipv6
On 3/21/23 16:50, Natxo Asenjo wrote: > hi, > > On Tue, Mar 21, 2023 at 3:40?PM Michal Pr?vozn?k <mprivozn at redhat.com > <mailto:mprivozn at redhat.com>> wrote: > > On 3/19/23 20:21, Natxo Asenjo wrote: > > hi, > > > > I have configured a routed network on my laptop with a ipv6 subnet and > > dnsmasq is handing out ipv6
2010 Aug 13
3
[PATCH] xl: make libxl_uuid2string internal to libxenlight
...\ int chk_errno = (call); \ @@ -2169,10 +2173,8 @@ void list_domains(int verbose, const lib info[i].dying ? ''d'' : ''-'', ((float)info[i].cpu_time / 1e9)); free(domname); - if (verbose) { - char *uuid = libxl_uuid2string(&ctx, info[i].uuid); - printf(" %s", uuid); - } + if (verbose) + printf(" " UUID_FMT, UUID_BYTES(info[i].uuid)); putchar(''\n''); } } @@ -...
2023 Mar 21
1
virsh domifaddr --domain domname --source {lease, arp} not showing results with ipv6
On 3/19/23 20:21, Natxo Asenjo wrote: > hi, > > I have configured a routed network on my laptop with a ipv6 subnet and > dnsmasq is handing out ipv6 addresses to my vms and it works really wel, > but finding out which ips have been used is not as easy as with ipv4. > > [root at lenovo ~]# virsh domifaddr --domain wec --source lease > ?Name ? ? ? MAC address ? ? ? ?
2010 Jan 07
1
Trying to get Xen going with svn_130...
I''m trying to get linux domU going with opensolaris ''130. The CPU is a plain P4 3.2Ghz (no hardware Virt) but all I''m trying is --paravirt Here''s the command line I''m trying..... virt-install --paravirt --name=dom1 --ram=1024 --vnc \ --os-type=linux --os-variant=fedora8 \ --network bridge \ --file /dev/zvol/dsk/rpool/dom1 \ --location
2023 Mar 21
1
virsh domifaddr --domain domname --source {lease, arp} not showing results with ipv6
hi, On Tue, Mar 21, 2023 at 3:40?PM Michal Pr?vozn?k <mprivozn at redhat.com> wrote: > On 3/19/23 20:21, Natxo Asenjo wrote: > > hi, > > > > I have configured a routed network on my laptop with a ipv6 subnet and > > dnsmasq is handing out ipv6 addresses to my vms and it works really wel, > > but finding out which ips have been used is not as easy as with
2008 Feb 04
9
Mouse problems running windows xp as a virtual console in opensolaris B81
Hi all, The mouse is not really useful in the virtual machine. The actual mouse is like miles away and in order to click on the buttons it is very frustrating to push the buttons. Does anybody have a solution for this. thanks in advance Filip This message posted from opensolaris.org
2008 Feb 28
0
[PATCH] Fix error message of xm suspend for Domain-0
...Kan diff -r 2a8eaba24bf0 tools/python/xen/xend/XendDomain.py --- a/tools/python/xen/xend/XendDomain.py Tue Feb 26 15:11:51 2008 +0000 +++ b/tools/python/xen/xend/XendDomain.py Thu Feb 28 14:23:39 2008 +0900 @@ -865,7 +865,7 @@ class XendDomain: raise XendInvalidDomain(domname) if dominfo.getDomid() == DOM0_ID: - raise XendError("Cannot save privileged domain %s" % domname) + raise XendError("Cannot suspend privileged domain %s" % domname) if dominfo._stateGet() != DOM_STATE_RUNNING:...
2010 Mar 29
4
[PATCH 0/3] Export and merge into Windows Registry
As described here previously: https://www.redhat.com/archives/libguestfs/2010-March/msg00129.html Here is the three part patch to reimplement virt-win-reg to support exporting and merging Windows Registry entries in the 'regedit' format. Tested by me on a local Windows VM. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-top is 'top'
2006 May 24
2
winbind + consistent uid & gid
...n multiple machines. As you could guess, the UIDs and GIDs are not consistent across all of the machines. From what I have been reading on the internet, this seems to be common problem, but all the solutions that I have found don't seem to work for me. Putting "idmap backend = idmap_rid:DOMNAME=1000-1000000" in the smb.conf file seemed promising, but it didn't work for me. Do you have any recommendations to get this to work? It is kind of critical to have a distributed file system. It is not an option to modify out AD severs. Sam Adams General Dynamics - Network Systems...
2016 Jan 28
1
[PATCH] python: stop using parens-less print in tests
..." + print ("skipping test: libvirt-python doesn't support c_pointer()") exit (77) # Create a test disk. @@ -86,12 +86,12 @@ dom = conn.createXML (xml, libvirt.VIR_DOMAIN_START_AUTODESTROY) if dom == None: raise "could not create temporary domain (%s)" % domname -print "temporary domain %s is running" % domname +print ("temporary domain %s is running" % domname) # Libvirt should have labelled the disk. -print "before starting libguestfs" +print ("before starting libguestfs") before = check_output (["ls&quo...
2008 Dec 24
4
samba server in two lans
hello we have a samba server on centos 5.2 and 2 different lans. so we gave the server to ips eth0:172.16.93.217 and eth1: 192.168.89.3 but after this when we tried to join clients (windows xp) to the domain the error: "the specified domain either does not exist or could not be contacted." what is the solution?
2015 May 05
2
[PATCH 0/2] v2v: -o libvirt: Check if the domain exists on the target (RHBZ#889082).
https://bugzilla.redhat.com/show_bug.cgi?id=889082