Displaying 5 results from an estimated 5 matches for "oldimage".
2004 Feb 14
0
Memdisk/floppy image question
...run this as root. May be some version of this
should be included with syslinux?
Basically given an existing floppy image, it creates a larger image and
copies its contents over and sets up the bootsector of the newimage
appropriately.
---- SCRIPT STARTS -----
#!/bin/bash
NEWIMAGE=dosimage.img
OLDIMAGE=oldimage.img # Name of an existing dos image
SIZEMB=8
MKDOSFS=mkdosfs # binary for mkdosfs
SIZEKB=`echo "$SIZEMB 1024 * p" | dc`
NUMSECT=`echo "$SIZEKB 2 * p" | dc`
MNTNEW=`mktemp -d /tmp/mntptnew.XXXXXX` # Create a mountpoint
MNTOLD=`mktemp -d /tmp/mntptold.XXXXXX` # Name of...
2011 Apr 23
2
Confused by "qemu-img convert"
Hi All,
Okay. Now I am confused.
I have a bunch of virtual machines running under Virtual Box 3.2.12.
I want to run them under KVM and drop Virtual Box from these
systems.
Supposedly "qemu-img convert" now supports direct conversion
from vdi to whatever KVM uses. So I fired up the man page and
got really confused. Then I fired up Google and got worse
confused.
Might I impose on
2002 Dec 16
1
Changing the name of a server?
...is an NT4 Server, rackimages is a RH8 Linux box
running Samba 2.2.7.
I want rackimages to become images. I have it all set and ready to
go. My shares work and users are authenticated properly. So here's
what I did:
- I created a new Domain account for the old images server called
"oldimages". I changed its name and rebooted it.
- I modified rackimage's smb.conf to reflect the new netbios name
"images". I stopped and restarted smbd/nmbd.
- I changed entries in our DNS server such that the name "images"
points to the new server and not the old one.
N...
2007 Oct 09
1
DOS/Freedos: Can't use mkfloppyimg.sh or mkdiskimage for +8M images ( Murali (????? ?????) )
...versamenu to select one
of them. If my DOS image is smaller than 8megs, everything is working
fine as expected.
To create my dos image, I did use Murali
script and pick the freedos floppy image from
http://www.fdos.org/bootdisks/autogen/FDSTD.144.gz
I modify cwhosthe script, put FDSTD.144 as the OLDIMAGE
I set NEWIMAGE to dexter1.img
I set the SIZEMB to 10
The script return the following information
Your floppy image is in dexter1.img. When using it in iso/pxelinux, dont forget to add
"floppy c=10 s=32 h=64" to the argument of memdisk
I modify syslinux.cfg/isolinux.cfg and create a menu...
2007 Oct 10
1
DOS/Freedos: Can't use mkfloppyimg.sh or mkdiskimage for +8M images ( Solved)
...If my DOS image is smaller than 8megs, everything is working
> fine as expected.
>
> To create my dos image, I did use Murali
> script and pick the freedos floppy image from
> http://www.fdos.org/bootdisks/autogen/FDSTD.144.gz
>
> I modify cwhosthe script, put FDSTD.144 as the OLDIMAGE
> I set NEWIMAGE to dexter1.img
> I set the SIZEMB to 10
>
> The script return the following information
> Your floppy image is in dexter1.img. When using it in iso/pxelinux, dont forget to add
> "floppy c=10 s=32 h=64" to the argument of memdisk
>
> I modify sysli...