The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Does anyone know howto install GeeXbox with existing Linux Distro?

    Discussion in 'Linux Compatibility and Software' started by rockharder, Jan 11, 2007.

  1. rockharder

    rockharder Notebook Evangelist

    Reputations:
    26
    Messages:
    653
    Likes Received:
    0
    Trophy Points:
    30
    Anyone know tested steps to install GeeXbox into partition and can be booted from existing Grub with whatever existing Linux destro?

    I would like to use that to replace my QuickPlayer partition.
     
  2. Ditig

    Ditig Notebook Geek

    Reputations:
    5
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    Can't help much but I can recommend that you do all your testing in VMware so that you don't have to physically reboot your machine all the time. By the way, what's the problem with GeeXbox and installing it on a partition? According to http://www.geexbox.org/wiki/index.php/Installation it shouldn't be difficult. Once installed, adding a grub entry should be trivial
     
  3. rockharder

    rockharder Notebook Evangelist

    Reputations:
    26
    Messages:
    653
    Likes Received:
    0
    Trophy Points:
    30
    Problem is I want to stay with current GRUB and don't want to replace it with a new one.
     
  4. Ditig

    Ditig Notebook Geek

    Reputations:
    5
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    Is there an option to install grub at the beginning of the partition instead of at the beginning of the hard drive? If not, what you can do is make a backup of your current MBR and then recopy it after installing GeeXbox. For example, if you have the partition for GeeXbox created (but you still haven't installed), you can boot up using a live cd and then do the following (I'm assuming your hard drive is sda and that you've put in a USB flash and that it's accessible via sdb1):

    mkdir /mnt/sdb1
    mount /dev/sdb1 /mnt/sdb1
    dd if=/dev/sda of=/mnt/sdb1/mbr bs=512 count=1
    umount /mnt/sdb1
    Install GeeXbox
    GeeXbox takes over the MBR
    Reboot using a live cd and copy back the original mbr. It's the exact same as above but the dd command would be different:
    dd if=/mnt/sdb1/mbr of=/dev/sda bs=512 count=1

    Once you've done that, your old MBR should be back in place. You'd just have to add a GRUB entry for GeeXbox.

    PS. As I mentioned above, try this all out in VMware first and then try it on your machine.