Displaying 14 results from an estimated 14 matches for "d04".
Did you mean:
04
2013 May 24
0
zpool resource fails with incorrect error
..., but the zpool
command is failing and Puppet''s returned stderr is not what I get if I
copy/paste the command given by the debug output.
# cat /etc/puppet/manifests/zpool_raidz2.pp
zpool { ''tank'':
ensure => present,
raidz => [ ''d01 d02 d03 d04'', ''d05 d06 d07 d08'' ],
raid_parity => ''raidz2'',
pool => ''tank'',
log_mirror => ''d09 d10'',
force => true,
}
I''ve put the full trace/debug in pastebin [1].
You''ll have...
2007 Aug 07
5
Extending RAIDZ.
...ock
U - unused
* - if offset in I/O request is less that this marker we use four
disks only, if greater - we use five disks
After adding ''NewDisk'' to RAIDZ vdev, we have something like this:
Disk0 Disk1 Disk2 Disk3 NewDisk
<<P00 D00 D01 D02 U
P01 D03 D04 D05 U
P02 D06>> <<P03 D07>> U
<<P04 D08>> <<P05 D09 U
P06 D10 D11 D12>> U
<<P07 D13 D14 D15>> U
Then we start moving data, but we need to beging from the start:
Disk0 Disk1 Disk2 Disk3 NewDisk
<&l...
2006 Mar 21
3
Rsync 4TB datafiles...?
...is lost.
rsync -vz /p02/oradata/OSID/redo01.log
destser:/d02/oradata/OSID/redo01.log
rsync -vz /p03/oradata/OSID/redo02.log
destser:/d03/oradata/OSID/redo02.log
rsync -vz /p04/oradata/OSID/redo03.log
destser:/d04/oradata/OSID/redo03.log
rsync -vz /p01/oradata/OSID/system01.dbf
destser:/d01/oradata/OSID/system01.dbf
rsync -vz /p04/oradata/OSID/undotbs01.dbf
destser:/d04/oradata/OSID/undotbs01.dbf
rsync -vz /p03/oradata/OSID/sysaux01.dbf...
2013 Mar 19
2
Errors while using blkiotune command
Hi all,
I want to limit the I/O bandwidth inside the container, so I used virsh
command blkiotune. But when I enter a command:
virsh # blkiotune lxcguest --weight 250
I get following errors:
error: Unable to change blkio parameters
error: Requested operation is not valid: blkio cgroup isn't mounted
I also have blkio cgroup mounted. What can be the problem?
Thanks in advance.
Regards,
2013 Aug 26
0
Re: The error for creating a new vm for kvm
...ems with 'svm' flag) are loaded in the system.
On Mon, Aug 26, 2013 at 9:40 AM, Qian Feng <qianfeng04161001@gmail.com>wrote:
> Thanks, but I checked it and It shows I have already installed qemu-kvm.
>
>
> On Mon, Aug 26, 2013 at 12:05 AM, Saurabh Deochake <saurabh.d04@gmail.com>wrote:
>
>> Hi Qian,
>>
>> I encountered exactly same problem. I found out that I didnot have qemu
>> installed. Please check that you have qemu-kvm installed by running
>> "apt-get install qemu-kvm" on debian!
>>
>> Thanks,
>&g...
2013 Jul 19
2
pinVcpu not working
Hi all,
I am working with libvirt and I am trying to set cpu affinity. Now I can always use
virsh vcpupin <domain_name> <vcpu> <pcpu>
to pin vcpus to pcpus. I want to do it using Python API. Now, there is function pinVcpu which is supposed to do that. But this is not working. For example I gave
dom.pinVcpu(0,1)
but still my vcpu affinity is for all the pcpus. The
2009 Apr 26
2
7.2-PRE amd64 panic when starting Xorg
...II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
CailReadPLL(8) = 3
CailReadATIRegister(54) = b000001
CailReadATIRegister(58) = ff00a002
CailReadATIRegister(d04) = 808
CailReadATIRegister(d04) = 808
CailWriteATIRegister(d04,808)
CailReadPLL(8) = 3
CailWritePLL(8,3)
CailReadATIRegister(54) = b000001
CailWriteATIRegister(54,b008001)
CailReadATIRegister(280) = 0
CailWriteATIRegister(280,1b600)
CailReadATIRegister(280) = 1b600
CailWriteATIRegister(280,1b6f0)
(...
2006 Jan 15
2
rsync of file list
Hi All,
I would to rsync data spread of many files from remote site. Each file
may exist in total different location - the path for each file may be
different.
My question is:
Can I do it one single rsync command, giving a file containing list of
paths as parameter, or do I need to run rsync for each file.
I did not find any option doing it in the man page. I tried to play with
2013 Aug 25
4
The error for creating a new vm for kvm
I checked the capabilities. I do not know why the guest is only for vbox.
<guest>
<os_type>hvm</os_type>
<arch name='i686'>
<wordsize>32</wordsize>
<domain type='vbox'>
</domain>
</arch>
</guest>
I want it run qemu-kvm. and when i run virsh define
/etc/libvirt/qemu/demo.xml. It shows error:
2013 Mar 12
1
Check memory inside a container
Hi all,
I'm new to LXC and libvirt. I have created a LXC container using libvirt.
In domain XML file I have mentioned "memory" and "current memory" as 256
MB.
Now I want to check the memory inside the container, but whenever I run top
command or try to cat /proc/meminfo, it shows host machine's memory which
is 3GB.
So is there any command by which I can check
2013 Jul 27
0
Re: pinVcpu not working
Hi Peeyush,
If we want to pin vcpu1 of a domain to CPUs 3 and 4, we need to pass:
dom.pinVcpu(1, (False, False, False, True, True, False....[and so on, til
number of logical CPUs of host]))
Can you please check this?
Regards,
Saurabh Deochake
[NTT DATA]
On Fri, Jul 19, 2013 at 11:45 AM, Peeyush Gupta <gpeeyush@ymail.com> wrote:
> Hi all,
>
> I am working with libvirt and I
2013 Nov 11
2
Re: User Namespace in LXC
Hi Gao,
I appreciate your quick reply.
>you can try create a file in container, and on host, the owner of this
file is uid=1000.
>and on the other side, if a file's owner is uid 1000 on host. in this
container, you will
>see the owner of this file is uid 0.
I tried creating a file inside the container with root user. When I checked
uid of the file on the host,
it still gives me uid
2013 Nov 11
2
User Namespace in LXC
Hi all,
I'm trying to restrict privileges of root user inside the container. I
searched about it and got to know about "idmap" element in domain XML.
I added "idmap" element in my container's XML file:
<idmap>
<uid start='0' target='1000' count='10'/>
<gid start='0' target='1000' count='10'/>
2013 Nov 13
2
Re: User Namespace in LXC
Hi Gao,
I checked the output of "lxc-checkconfig" command and it showed
--- Namespaces ---
Namespaces: enabled
Utsname namespace: enabled
Ipc namespace: enabled
Pid namespace: enabled
*User namespace: missing*
Network namespace: enabled
Multiple /dev/pts instances: enabled
Here it shows that User namespace support is missing. I tried to check for
Namespaces Support in kernel