Displaying 8 results from an estimated 8 matches for "_eof_".
2009 Feb 04
6
Mixed dom0/domU usage?
Hi,
I'm wondering about the impact of using both dom0 and domU's on a server at
the same time. I'm worried about the performance impact of running a Mysql
server in a domU and now I'm thinking about moving the Mysql part of a LAMP
setup into dom0 and running a few Apache guests as domUs. Since the Apaches
will serve mostly from an NFS share they won't have much impact on
2015 Oct 20
2
Extlinux with guestfish
...t on
kpartx -av /dev/vm_volumes/vm_name
mkfs.ext4 /dev/mapper/loop0p1
mount /dev/mapper/loop0p1 /mnt/clone
tar -zxf /root/centos7_template.tar.gz -C /mnt/clone/
umount /mnt/clone
kpartx -dv /dev/vm_volumes/vm_name
/root/libguestfs-1.30.3/run guestfish -i -a /dev/vm_volumes/{vm_name}
<< _EOF_ \n\
#####mbr.bin and syslinux already existant in centos7_template.tar.gz####
copy-file-to-device /boot/mbr.bin /dev/sda size:440 \n\
extlinux /boot \n\
part-set-bootable /dev/sda 1 true \n\
_EOF_
*And this is the syslinux.cfg file:*
DEFAULT linux
LABEL linux
SAY Booting the ke...
2006 Nov 14
20
Shorewall performance
I have a couple of firewalls that are rather complicated - one has 21
interfaces, and the other has about 50 (there''s some heavy use of
802.1q, they only have half a dozen network cards). They work okay,
but - compiling the rules takes a long time even on the faster
servers, and restarting shorewall-lite takes between 5 and 10 minutes
(during which time, only the routestopped stuff will
2015 Oct 20
0
Re: Extlinux with guestfish
.../loop0p1 /mnt/clone
>
> tar -zxf /root/centos7_template.tar.gz -C /mnt/clone/
>
> umount /mnt/clone
> kpartx -dv /dev/vm_volumes/vm_name
Strange way to do this, as libguestfs can do all this.
> /root/libguestfs-1.30.3/run guestfish -i -a /dev/vm_volumes/{vm_name}
> << _EOF_ \n\
>
> #####mbr.bin and syslinux already existant in centos7_template.tar.gz####
> copy-file-to-device /boot/mbr.bin /dev/sda size:440 \n\
> extlinux /boot \n\
> part-set-bootable /dev/sda 1 true \n\
> _EOF_
>
> *And this is the syslinux.cfg file:*
>
> DEFAULT linu...
2007 Mar 19
1
Wine Babylone MS visio
Dear All
i have Knoppix Os on my laptop , i want to use Softwere Babylone
dictionary, Ms vision and MSOutlook, but when i want to install it for
exemple Babylone he dependency Internet explorer and when i try to
install ie6 he show me the erro connection. its immasing because i have
internet, its trus i connect to Internet Trough proxy , but when i
chnage my setting network for direct connect,
2012 Sep 04
1
virt-sparsify broken after recent changes
...;)
...
#!/bin/bash
set -x
img=disk.img
sprs=disk.sparse.img
kname=vda
test -f ${img} && exit 1
test -f ${sprs} && exit 1
find /usr/share/ -type f -print0 | xargs -0 cat | dd bs=$(( 1024 * 1024 )) count=$(( 42 )) iflag=fullblock of=${img}
ls -lhsS ${img}
time guestfish -v <<_EOF_
add ${img}
run
part-disk /dev/${kname} mbr
blockdev-rereadpt /dev/${kname}
mkfs ext2 /dev/${kname}1
blockdev-rereadpt /dev/${kname}
mount /dev/${kname}1 /
mkdir /y
ls /
ls /y
umount /
sync
_EOF_
time virt-sparsify -v ${img} ${sprs}
ls -lhsS ${img} ${sprs}
2006 Jun 13
8
MS Access2000 does not work fine
Dear All
I am using Wine 0.9.15 on Fedora Core 5 in connection with WineTools.
However, when I create a new database on MS Access (from MS
Office2000), I get the following error:
"The Dynamic Link Library msjet40.dll could not be located".
So, I cannot use MS Access under Wine.
Any ideas?
Thanks in advance,
Paul
2015 Jun 14
2
[PATCH] pod: Use F<> for filenames instead of C<>.
...4..8d6e0fa 100644
--- a/fish/guestfish.pod
+++ b/fish/guestfish.pod
@@ -64,7 +64,7 @@ L<virt-rescue(1)> command.
=head2 From shell scripts
-Create a new C</etc/motd> file in a guest or disk image:
+Create a new F</etc/motd> file in a guest or disk image:
guestfish <<_EOF_
add disk.img
@@ -89,13 +89,13 @@ List all the filesystems in a disk image:
=head2 On one command line
-Update C</etc/resolv.conf> in a guest:
+Update F</etc/resolv.conf> in a guest:
guestfish \
add disk.img : run : mount /dev/vg_guest/lv_root / : \
write /etc/resolv.c...