similar to: VM install with DVD

Displaying 20 results from an estimated 1000 matches similar to: "VM install with DVD"

2011 Mar 14
2
XCP 1.0 Vm Install
Hi. I executed the following steps to instal a Debina Lenny Vm (as the manual describe): 1)- xe vm-install template="Debian Lenny 5.0 (32-bit)" new-name-label=vmlenny_1 UUID = dd29fd58-9ed2-0d53-5a71-dea5bf0d613b 2)- xe vm-param-set uuid=dd29fd58-9ed2-0d53-5a71-dea5bf0d613b other-config:install-repository=http://ftp.br.debian.org/debian 3)- xe vm-start
2011 Mar 24
1
XCP VM Disk Size
Hi. I have a problem when defining a VM under XCP and use templates: all VM get a same disk size when I define it. How can I define a VM disk size before it is installed using XCP templates? Thanks very much. JoseFormiga _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2010 Sep 02
5
Starting Ubuntu 10.04 on XCP
Hello, I’m having difficulty to starting Ubuntu 10.04 virtual machine with XCP 0.5.0. I put 3 files (vmlinuz, initrd.gz, xm-debian.cfg) in the same place under the unpacked ISO tree but when I start the VM, the following error is returned: # xe vm-install template="Ubuntu Lucid Lynx 10.04 (32-bit)" new-name-label=Teste other-config-install-repository=nfs:10.0.0.3:
2011 Sep 22
1
XCP 1.1 error: Error code: INVALID_SOURCE
Hello, When trying to start VM I am getting the following error: # --- [root@xcp-dev01 ~]# xe vm-start uuid=f535e5bd-6540-3745-d494-14f776da85e5 Error code: INVALID_SOURCE Error parameters: Unable to access a required file in the specified repository: file:///tmp/cdrom-repo--2OF-Z/install.amd/xen/vmlinuz., , # --- I have used last xen server documentation to prepare the VM installation from
2012 Jul 23
1
centos.org 5 Installation_Guide-en-US/ch02s04.html#s2-steps-make-cd
There seems to be several problems in this kickstart cd document. I guess this was copied from RedHat''s documentation. Can someone please direct me or my comments to the right person? http://www.centos.org/docs/5/html/Installation_Guide-en-US/ch02s04.html#s2-steps-make-cd this command (in the documentation) needs a space in it: cp -r
2018 Sep 24
4
Writing simple intrinsic in clang
I want to write a simple backend-specific instrinsic that will just call an instruction. How should I do that? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180924/7faeeb3d/attachment.html>
2017 Mar 14
2
Samba AD DC backup - again
В Вт, 14/03/2017 в 14:44 +0100, L.P.H. van Belle via samba пишет: > Hai,  > > I dont think its over functional, it includes everything you need for > a good AD DC backup. > > This is about the minimal you should backup for an AD DC.  > If you want to backup samba when turned off. You need at least:  > /etc/samba  > /var/lib/samba > /var/cache/samba > /etc/krb* 
2019 Jun 25
2
302 moved temporally callerid behavior
Thanks for trying, what asterisk version do you use? вт, 25 июн. 2019 г. в 17:50, Doug Lytle <support at drdos.info>: > We have Polycom phones (I'm using a VVX601, the destination is a VVX301). > We're also on Asterisk 13. > > I forwarded my call to the VVX301 and then dialed my phones DID. The > forwarded call showed my cell phone number, so I cannot reproduce.
2010 Aug 05
2
XCP vm install INVALID_SOURCE error
I have just run into the following error when trying to create a debian lenny vm in XCP 0.5.0 from the command line. This used to work in 0.1.1 as far as I can remember. Here is what I did: [root@xcp1 ~]# UUID=`xe vm-install template="Debian Lenny 5.0 (32-bit)" new-name-label=lenny-test-1` VIF=`xe vif-create network-uuid=0c94af8b-da04-5417-cdd6-f4c6236aea8b vm-uuid=$UUID device=0` xe
2018 Feb 20
2
SAMBA failed join domain DC
On Tue, 20 Feb 2018 17:34:00 +0500 "denis.shigapov" <denis.shigapov at stroylandiya.ru> wrote: > Not join(( > samba-tool domain join example.ru DC -Uvas.lah --password=password > --realm=EXAMPLE.RU --site=SITE2 -d 4 'example.ru' is your dns domain name, you should be using your netbios domain name 'EXAMPLE' Who is 'vas.lah' ? does the user have
2015 Sep 03
2
LiveInterval and Loop Info
Hello to all LLVM Developers. Given a object from a LiveInterval class, is there any way to know if this Live Interval is part or is inside a loop? Att -- Natanael Ramos Membro do corpo discente de Ciência da Computação pelo Instituto Federal de Minas Gerais - Campus Formiga -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 May 14
2
PowerPC big-endian tests breakage
Hi all, One of my commit broke the PowerPC builder, so I reverted it. The issue could be reproduced only for big-endian, little-endian ppc64 built ok. How can I fix it? I have no access to any PowerPC box to get to the bottom of issue. All the other tests are ok. Commit: https://github.com/llvm/llvm-project/commit/9c20156de39b377190d7a91783d61877b303fe35, svn revision: 359870. Reproduced
2015 Sep 04
2
LiveInterval and Loop Info
Thanks Matthias I can also use the method intervalIsInOneMBB() from LiveIntervals class to relate a LiveInterval to a MachineBasicBlock, right? Em 04/09/2015 2:26 PM, "Matthias Braun" <mbraun at apple.com> escreveu: > There is no direct support for this, but you can use > LiveIntervalAnalysis::getMBBStartIndex()/getMBBEndIndex()/getMBBFromIndex() > to relate the
2015 Sep 03
2
LLVM and strict SSA
Hello to all LLVM Developers. The LLVM IR is in strict SSA form (i.e. every variable is defined before it is used along every path from the entry to exit point)? According to the documentation, currently the LLVM IR is in the SSA form, but I don't see additional information about *strict* SSA form. The strict SSA form provide opportunities of optimization in register allocation, because is
2015 Jul 09
3
[LLVMdev] PHI Elimination in Register Allocation Pass
Good Afternoon. I am a Computer Science undergraduate student in Brazil and as completion of course work, I am developing an register allocator, using the infrastructure of the LLVM. To accomplish this task, I have based my implementation in allocators already implemented in LLVM. But a question came to me while I was researching in books and articles of compiler theory and own documentation of
2019 Jun 25
2
302 moved temporally callerid behavior
On Tuesday 25 June 2019 at 16:49:23, Doug Lytle wrote: > We have Polycom phones (I'm using a VVX601, the destination is a VVX301). > We're also on Asterisk 13. > > I forwarded my call to the VVX301 and then dialed my phones DID. Surely that is "call forwarding", which is quite different from either a blind or attended transfer? A transfer involves a call coming
2019 Feb 05
3
Samba 4.7 and Editposix/Trusted Ldapsam extension support.
Something like this. But this link has no info that I need. On the roadmap: https://wiki.samba.org/index.php/Roadmap There is information <https://wiki.samba.org/index.php/Samba4/LDAP_Backend#.28De.29motivation> about general purpose LDAP server as the backend (e.g. openLDAP). But that's not what i was looking for. I looking for status of `passdb backend = ldapsam` feature. This
2015 May 20
2
[LLVMdev] Implement a Register Allocator in LLVM
I'm working on my project for completion undergraduate courses, consisting of an experimental analysis of registers allocation algorithms. For this task, I am using the set of tools from the LLVM project. However, I have read the documentation of the LLVM project and not yet found a way to put the pieces of the puzzle together. So far I know: - As passes work as engage them to LLVM and
2019 Feb 05
3
Samba 4.7 and Editposix/Trusted Ldapsam extension support.
Is there a page with support status of this feature in current samba releases ? What is the current status and future? -- Best Regards, Vladimir Skubriev System Administrator CVisionLab +7.918.504.38.20 skubriev at cvisionlab.com http://cvisionlab.com
2015 Sep 01
2
Spilling Virtual Registers
Hello to all LLVM developers. I'm developing a register allocator using LLVM, my allocator has a local search phase: given a solution (assignment of virtual registers to physical registers or memory) generated in the first phase of the algorithm, some movements are applied to this solution in order to find a better solution. To apply such movements, I need to unassign a virtual register from