Four Vista/Windows-7 installation DVDs in one flash drive


Results 1 to 5 of 5

Thread: Four Vista/Windows-7 installation DVDs in one flash drive

Threaded View

  1. #3
    Join Date
    Jun 2004
    Location
    Newcastle upon Tyne
    Posts
    2,978
    Tips for Linux Users

    Grub2 can equally be used to carry out the booting.

    Many Internet sites have advices on how to make a Grub2 floppy and I have listed one as Task K1 in Just booting tips under my signature. Similarly for making a Grub2 CD please see Task K2.

    To boot say second partition of the 4th disk and hide the first one with Grub2 commands at a Grub prompt is simply
    Code:
    parttool (hd3,1) hidden+
    parttool (hd3,2) hidden-
    set root=(hd3,2)
    chainloader +1
    boot
    Grub2 count the disk from zero same as Grub1 but for partition Grub1 now counts from 1. Therefore (hd3,1) to Grub1 is equivalent (hd3,2) to Grub2.

    In case of doubt use geometry in Grub1 to check the partitions
    Code:
    geometry (hd3)
    The equivalent in Grub2 is
    Code:
    ls (hd3,2)/
    which can be used to list the internal directory of / of (hd3,2)
    Last edited by saikee; 06-17-2010 at 03:21 PM.
    Linux user started Jun 2004 - No. 361921
    Using a Linux live CD to clone XP
    To install Linux and keep Windows MBR untouched
    Adding extra Linux & Doing it in a lazy way
    A Grub menu booting 100+ systems & A "Howto" to install and boot 145 systems
    Just cloning tips Just booting tips A collection of booting tips

    Judge asked Linux "You are being charged murdering Windoze by stabbing its heart with a weapon, what was it?" Replied Linux "A Live CD"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •