Displaying 8 results from an estimated 8 matches for "loop0p2".
Did you mean:
loop0p1
2004 Jan 26
0
[ANNOUCE] kpartx-0.0.2
...ap devmaps from here.
Example : here, /tmp/test is a dump of an USB key
root@zezette../kpartx-0.0.2$ ./kpartx -a -v /tmp/test
last_lba(): I don't know how to handle files with mode 81a4
gpt: 0 slices
dos: 6 slices
reduced size of partition #2 to 32
Added loop0p1 : 0 15968 /dev/loop0 32
Added loop0p2 : 0 32 /dev/loop0 16000
Added loop0p5 : 0 6432 /dev/loop0 16032
Added loop0p6 : 0 9504 /dev/loop0 22496
root@zezette../kpartx-0.0.2$ ./kpartx -d -v /tmp/test
last_lba(): I don't know how to handle files with mode 81a4
gpt: 0 slices
dos: 6 slices
loop found : /dev/loop0
Deleted device map : loo...
2008 Aug 12
3
Converting full virtualized Linux domUs to use paravirtualized drivers
Hi
Is there any docs, howtos, etc, if i am installed eg. CentOS 5 to as domU
as fully virtualized and now i am wanting to use it PV drivers.
Any help how migration can be done?
Terveisin/Regards,
Pekka Panula, Net Servant Oy - A Sofor company
pekka.panula@sofor.fi
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2008 Apr 07
6
img file to physical disk
Hi all.
I''ve got a domU that exists in a sparse file image, I''d like to now use
this on a physical partition (loopback performance issues).
Is there an a easy way to do this ?
Thanks
Stuart
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2015 Jun 09
0
Resize KVM NTFS file system[SOLVED]
...ars that the tools on Win7 Pro can not expand the
active system file system. I tried both the GUI version where you right
click on the file system and choose expand, and the command line
diskpart command.
I used:
kpartx -av my.img to mount my image file
ntfsresize -P --force --force /dev/mapper/loop0p2 to resize the file
system to fit the previously expanded partition.
Widows ran a file system check, booted up, and now reports a 50GB
partition. I'm happy, and Windows is happy. Now I can proceed to
install a bunch of software on the newly expanded file system.
--
_
?v?
/(_)\
^...
2006 Oct 09
0
"mount: unknown filesystem type ''LVM2_member''"
...en/boot/domUloader.py", line 397, in copyKernelAndInitrd
part.mount()
File "/usr/lib/xen/boot/domUloader.py", line 241, in mount
raise RuntimeError("domUloader: Error %i from mount %s %s on %s" % \
RuntimeError: domUloader: Error 8192 from mount -o ro /dev/mapper/loop0p2 on
/var/lib/xen/tmp/sda2.y8hPAK
Error: Boot loader didn''t return any data!
------------snip
Now, does that mean LVM is unavailable with XEN? I was also hoping a Dom0 LVM LV
could be used as disk in DomU (which would be managed by LVM there in turn). Did
anybody try somehting like that...
2006 Aug 23
2
question on mounting a partition that is in a disk image
How do I mount a partition that is in an image file?
I have a file called centos.img that has 3 partitions in the file.
I need to copy data to the third partition on that image file.
I have seen things about a loop back device (which is fine)
but then it talked about an offset parameter and I dont know what
that is or more importantly what number to use. I hope I'm on the
right track.
How
2015 Jun 09
3
Resize KVM NTFS file system
On 6/9/2015 12:33 PM, James A. Peltier wrote:
> Listen, it's far simpler than that. Call Microsoft and tell them that you resized a file system with a third party tool and now your file system is corrupt and you'd like them to support you. Await the click and awkward silence.
hey, I'd hang up, too. I don't trust in-place partition shrinking, no
matter WHAT the software.
2006 Jun 05
3
How to configure two NICs on a DomU?
...k -l -u /dev/loop0
Disk /dev/hda: 30.7 GB, 30738677760 bytes
255 heads, 63 sectors/track, 3737 cylinders, total 60036480 sectors
Units = sectors of 1 * 512 = 512 bytes
Device Boot Start End Blocks Id System
/dev/loop0p1 63 208844 104391 83 Linux
/dev/loop0p2 208845 60034904 29913030 83 Linux
3. Calculate the offset. offset = Start x Unit size
# offset=((63*512))
4. Mapping hda1 in /dev/loop0
# losetup -o $offset /dev/loop1 /dev/loop1
5. Mount /dev/loop1 to /mnt/vm1_hda1
# mkdir /mnt/vm1_hda1
# mount /dev/loop1 /mnt/vm1_hda1
That'...