Displaying 12 results from an estimated 12 matches for "grub_install".
2012 Feb 21
1
HowTo: Grub Installation for CentOS 5 and 6
Hello:
I've completed the HowTo "Grub Installation for CentOS 5 and 6",
currently at http://wiki.centos.org/YvesBellefeuille/Grub_Installation
I'd like to suggest that an appropriate location would be in the HowTos,
section 17, Misc. (It doesn't seem to fit neatly anywhere else.) I
couldn't figure out how to do the two internal links at the very bottom,
so please fix that.
I've taken into account Phil Schaffner...
2011 Sep 18
1
Grub Installation for CentOS 5 and 6
Hello:
I've written information on installing Grub:
http://wiki.centos.org/YvesBellefeuille/Grub_Installation
I wrote this in response to requests that I update the Hard Disk Upgrade
Mini How-To I wrote a zillion years ago to add information about Grub:
http://lists.centos.org/pipermail/centos/2011-August/115661.html
http://lists.centos.org/pipermail/centos/2011-August/115617.html
The most suitabl...
2010 Jun 10
1
md0 and moving to another system
Hi all,
I thought to have tested this a while ago but I guess not.
I have a Centos 5.3 system (call its SYSA) software raid 0, 2 disks.
I have an identical system (SYSB) else were, so I pull one of my
mirrors drives from SYSA and put it in SYSB as the only drive in SYSB.
Upon but I get grub error.
I boot in recuse mode (CD, linux rescue) and it attempts to mount the
disk, but claims no
2012 Mar 03
1
Grub Installation for CentOS 5 and 6 HowTo
Hello:
As I mentioned, I consider the Grub Installation for CentOS 5 and 6
HowTo to be ready. It's now at
http://wiki.centos.org/YvesBellefeuille/Grub_Installation ; I'd like to
suggest that an appropriate location would be in the HowTos, section 17,
Misc. (It doesn't seem to fit neatly anywhere else.)
I couldn't figure out how to do the two internal links at the very
bottom, so please fix that.
Thanks.
--
Yves Bellefeuille <yan at...
2013 Jun 14
3
[PATCH 0/2] Fix inspection of Fedora guests (RHBZ#974489).
Here is a preliminary fix for this bug.
I'm running the test suite on this now.
Rich.
2012 Jan 12
1
Libguestfs gobject bindings
I'm currently working on gobject bindings for libguestfs. I haven't got
as far as compiling anything yet, but I've attached the C header for
initial review.
Matt
--
Matthew Booth, RHCA, RHCSS
Red Hat Engineering, Virtualisation Team
GPG ID: D33C3490
GPG FPR: 3733 612D 2D05 5458 8A8A 1600 3441 EA19 D33C 3490
-------------- next part --------------
An embedded and
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change.
I'll get back to that series shortly ;-)
It turned into a factorization and constification exercise
during which I got a taste of ocaml. Thanks to Rich Jones
for help with a few snippets in generator.ml.
The overall result is that many previously-manually-maintained
bits from daemon/*.c functions are now hoisted into the automatically-
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in:
https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html
Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...0, 16);
- style = RErr, [Device "device"], [];
+ style = RErr, [String (Device, "device")], [];
progress = true;
tests = [
InitBasicFS, Always, TestRun (
@@ -3141,7 +3141,7 @@ C<guestfs_is_zero_device>" };
{ defaults with
name = "grub_install"; added = (1, 0, 17);
- style = RErr, [Pathname "root"; Device "device"], [];
+ style = RErr, [String (Pathname, "root"); String (Device, "device")], [];
optional = Some "grub";
(* See:
* https://bugzilla.redhat.com/show_b...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator.
Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files.
Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of
local disk.
Rich.