Displaying 20 results from an estimated 25 matches for "rdisk".
Did you mean:
disk
2002 Nov 16
3
Dynamic Menu based on what isolinux can read from your local filesystem
...hard disk (since that's
> the only possible storage medium) which seems at best
> inappropriate for
> a CD.
What he wants doesnt necessarily have to 'write' to the device at
all....
If I understood him correctly what he wants is basically this...
if exist multi(0)disk(0)rdisk(0)partition(1)\WINDOWS (label 2
kernel memdisk
append initrd=rescue.img)
if not exist multi(0)disk(0)rdisk(0)partition(1)\WINDOWS (label 2
kernel memdisk
append initrd=install.img)
If you structured the isolinux config correctly isolinux (syslinux,
pxelinux) could build dynamic menus bas...
2001 Nov 08
4
trying to create a WinNT rescue disk
...for the WinNT install (I'm no longer able to boot
NT, though I have no problem starting the NT bootloader - after I
choose Windows NT 4.0 and it starts to boot, I get a BSOD with
reference to being unable to access the bootloader (which was just
running...!?). So, I thought I might try and run rdisk.exe and create
a repair disk, using Wine. The only problem is, I can't get rdisk.exe
to access the floppy drive. Any suggestions?
2013 Jun 05
0
[PATCH 3/3] inspect: Partial support for non-standard windows system root
..._((destructor));
@@ -70,12 +72,16 @@ compile_regexps (void)
} while (0)
COMPILE (re_windows_version, "^(\\d+)\\.(\\d+)", 0);
+ COMPILE (re_boot_ini_os_header, "^\\[operating systems\\]\\s*$", 0);
+ COMPILE (re_boot_ini_os, "^(multi|scsi)\\((\\d+)\\)disk\\((\\d+)\\)rdisk\\((\\d+)\\)partition\\((\\d+)\\)([^=]+)=", 0);
}
static void
free_regexps (void)
{
pcre_free (re_windows_version);
+ pcre_free (re_boot_ini_os_header);
+ pcre_free (re_boot_ini_os);
}
static int check_windows_arch (guestfs_h *g, struct inspect_fs *fs);
@@ -143,6 +149,86 @@ guest...
2010 Oct 12
2
Memory limit problem
Dear List,
I am trying to?plot?bathymetry contours around the Hawaiian Islands using the
package rgdal and PBSmapping.? I have run into a memory limit when trying to
combine two fairly small objects using cbind().? I have increased the memory to
4GB, but am being told I can't allocate a vector of size 240 Kb.? I am running R
2.11.1 on a Dell Optiplex 760 with Windows XP.? I have pasted
2006 Apr 20
1
Unmodified 2003/2000/FC5 on XEN 3.0.2
I can see that Windows Loads in VM and when I run in safe mode it
reaches until loading
multi(0)\disk(0)\rdisk(0)\partition(1)\Windows\system32\drivers\Mup.sys
After this it hangs.Attached is the qemulog.
Note : These VM''s are running out of a complete disk (/dev/sdb), which
has working installation of Windows on it!
I am running FC5 along with Xen 3.0.2 (tried unstable too) on Intel XEON
VT...
2008 Jul 22
11
Windows 2000 DomU
Hello,
I am doing tests to convert old rotting servers into a big shiny new Xen
platform. I have been able to migrate a Windows 2003 server without a
scratch. I am trying to do the same thing with Windows 2000 Server but
things aren''t so great...
I made an image from the disk that worked in a machine. Then I boot on this
image using Xen. Windows 2000 starts to boot up then give me a
2013 Jun 05
3
[PATCH 1/3] inspection: Refactor windows systemroot detection to allow re-use
This change refactors guestfs___has_windows_systemroot to
guestfs___get_windows_systemroot. The new function returns a
dynamically allocated char * which must be freed.
The new function is no less efficient than before, as it returns the
result of guestfs___case_sensitive_path_silently, which is required
anyway. The new code is slightly more efficient than before, as it
re-uses the result of this
2005 Jun 24
5
Memory limits using read.table on Windows XP Pro
...500.geno.tab",header=TRUE,sep="\t",na.strings=".",quote="
",comment.char="",colClasses=c("factor"),nrows=2501)
I get, after hour(s) of work:
Error: cannot allocate vector of size 9 Kb
I have:
Rgui.exe --max-mem-size=3Gb
and
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP
Professional" /fastdetect /NoExecute=OptIn /PAE /3GB
in boot.ini
2500.geno.tab is a tab-delimited text table with 2500 x 125000 =
312,500,000 3-level (two alphabet characters) factors (x 4 bites =
1,250,000,000 (1.25GB). Even if we double it...
2017 Jul 31
0
[PATCH v11 09/10] daemon: Implement inspection of Windows.
...+(* Check a predefined list of common windows system root locations. *)
+let systemroot_paths =
+ [ "/windows"; "/winnt"; "/win32"; "/win"; "/reactos" ]
+
+let re_boot_ini_os =
+ Str.regexp "^\\(multi\\|scsi\\)(\\([0-9]+\\))disk(\\([0-9]+\\))rdisk(\\([0-9]+\\))partition(\\([0-9]+\\))\\([^=]+\\)="
+
+let rec check_windows_root data =
+ let systemroot =
+ match get_windows_systemroot () with
+ | None -> assert false (* Should never happen - see caller. *)
+ | Some systemroot -> systemroot in
+
+ data.os_type <- Some OS...
2005 Aug 30
0
No subject
...;Type" = "floppy"
"Label" = "Floppy"
"Serial" = "87654321"
"Device" = "/dev/fd0"
I'm not sure whether /mnt/floppy should be mounted or not when trying
to do this. I tried it both ways and got the same error message from
rdisk.exe:
"Repair Disk Utlity is unable to get configuration information for the
floppy drive"
and this spew of stuff in the controlling xterm:
fixme:ntdll:RtlDosPathNameToNtPathName_U
(L"A:\\",0x406160ac,00000000,00000000)
fixme:ntdll:NtOpenFile
(0x406160f0,0x00100003,0x406151cc,...
2009 Apr 16
8
Dual-boot with WinXP, CentOS already installed
Hi all,
I'd like to deploy a solution with dual-booting systems where CentOS 5.3 is
already installed and WinXP will be installed to a separate disk.
I found
http://apcmag.com/how_to_dual_boot_linux_and_windows_xp_linux_installed_first.htm?page=1
and it seems straight forward enough, although the description is for Ubuntu.
The problem as I see it, is that the how-to differs from how
2019 Apr 09
3
Question of syslinux chainloading
...x menu, which is
expected. And "localboot 0x80" fails too.
>
>>
>> label loadhd
>> menu label Boot from local ^NTLDR
>> com32 chain.c32 ntldr=/ntldr
>>
This ntldr is on the usb-hdd disk, with a boot.ini setting point to the
fixed hard disk:
multi(0)disk(0)rdisk(1)partition(1)\WINDOWS="Microsoft Windows XP
Professional" /noexecute=optin /fastdetect
and it can successfully boot the fixed hard disk. But I think "com32
chain.c32 hd1" should be more direct.
>> #This item fails
>> label dos
>> menu label MS-^DOS 7.1
>&g...
2010 Mar 29
4
[PATCH 0/3] Export and merge into Windows Registry
As described here previously:
https://www.redhat.com/archives/libguestfs/2010-March/msg00129.html
Here is the three part patch to reimplement virt-win-reg to support
exporting and merging Windows Registry entries in the 'regedit'
format.
Tested by me on a local Windows VM.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-top is 'top'
2019 Apr 09
0
Question of syslinux chainloading
...d before, the (MBR/VBR)
boot code of Windows.
> >> label loadhd
> >> menu label Boot from local ^NTLDR
> >> com32 chain.c32 ntldr=/ntldr
> >>
> This ntldr is on the usb-hdd disk, with a boot.ini setting point to the
> fixed hard disk:
> multi(0)disk(0)rdisk(1)partition(1)\WINDOWS="Microsoft Windows XP
> Professional" /noexecute=optin /fastdetect
> and it can successfully boot the fixed hard disk. But I think "com32
> chain.c32 hd1" should be more direct.
Perhaps the Windows' (MBR/VBR) boot code is having some probl...
2019 Apr 04
5
Question of syslinux chainloading
Greetings,
I encounter a problem that should be basic, but I can't get a clue. I
have 8G USB disk formatted as FAT32. I run (syslinux -i -s -r -m H:)
to make it bootable, and write syslinux.cfg according to the
documents, but it will not boot some items.
Syslinux is 6.03, bios files used. The whole syslinux.cfg file:
2017 Jul 31
16
[PATCH v11 00/10] Reimplement inspection in the daemon.
v10: https://www.redhat.com/archives/libguestfs/2017-July/msg00245.html
No actual change here, but I rebased and retested. Also this series
now does not depend on any other patch series since everything else
needed is upstream.
Rich.
2017 Jul 21
10
[PATCH v10 00/10] Reimplement inspection in the daemon.
v9 was here:
https://www.redhat.com/archives/libguestfs/2017-July/msg00139.html
This depends on these three series (the first two being single minor
patches):
https://www.redhat.com/archives/libguestfs/2017-July/msg00207.html
https://www.redhat.com/archives/libguestfs/2017-July/msg00209.html
https://www.redhat.com/archives/libguestfs/2017-July/msg00215.html
There is no substantive change. I
2017 Jul 17
12
[PATCH v9 00/11] Reimplement inspection in the daemon.
This depends on the patch series
"[PATCH 00/27] Reimplement many daemon APIs in OCaml."
(https://www.redhat.com/archives/libguestfs/2017-July/msg00098.html)
v8 was posted here:
https://www.redhat.com/archives/libguestfs/2017-June/msg00274.html
v9:
- I split up the mega-patch into a more reviewable series of
smaller, incremental patches.
There are some other changes vs v8, but
2017 Aug 09
16
[PATCH v12 00/11] Reimplement inspection in the daemon.
This fixes almost everything. Note that it adds an extra commit which
fixes the whole utf8/iconv business.
It's probably better to list what isn't fixed:
(1) I didn't leave the osinfo code around because I'm still haven't
looked too closely at virt-builder-repository. Can't we just fetch
this code from the git history when we need it?
(2) I didn't change the way
2017 Feb 18
11
[PATCH 0/8] Miscellaneous cleanups to Windows registry code.
A very miscellaneous set of cleanups to how we handle the Windows
registry in virt-v2v, firstboot, and inspection code. This should all
be straightforward non-controversial refactoring. Some highlights:
- Add a new mllib Registry module containing various utility
functions that are currently scattered all around.
- Only compute the software/system hive paths once during inspection,
and