How do I force CentOS to do a graphical install without meeting the memory requirements?

5,148

You can define a custom Kickstart installation, which will allow you to specify various options used when initially booting into the kernel used to perform the OS installation. See Section 28.10 - Starting a Kickstart Installation from the CentOS documentation for further details.

Specifically, you need to force the kernel to start with the graphical option. See this article for details regarding deploying the kickstarter files.

Share:
5,148

Related videos on Youtube

Nick
Author by

Nick

Updated on September 18, 2022

Comments

  • Nick
    Nick almost 2 years

    The CentOS 6.2 installer drops to text mode if the system has less than 650 (or so) MB of RAM. I have 512MB and no way to change this as the RAM used is obsolete. I need to use the graphical installer so I can use the partition editor to select a special partition to install on. This is a server with no GUI and doesn't need more than 512MB to run, once installed.

    Is there a command I can use to force the installer to use graphical install mode even if it thinks there's not enough RAM?

    • Breakthrough
      Breakthrough about 12 years
      Doesn't the text-based installer offer an equivalent in-terminal partition editor which has the same functions?
    • Nick
      Nick about 12 years
      Also, to clarify, I'm not talking about the live CD that's not working. I'm installing from a minimal CD. It's the basic installer that won't run.
    • Breakthrough
      Breakthrough about 12 years
  • Nick
    Nick about 12 years
    I gave it the graphical argument on the loading screen, but it still went into text installer mode.
  • Sirex
    Sirex about 12 years
    you can do all the partitioning in the kickstart file though, and just go with the text based install. it'll skip the partition questions as it'll use the kickstart file for that.
  • Nick
    Nick about 12 years
    I'm still not clear on how that is done. I see that there's a -part option for creating a partition ie part / --size 500. But how do I say, "with the first disk, create a 100MB partition, a second partition that's 2GB, then and create a third partition that takes all of the remaining space. Then do the same to the second disk. Make all 6 partitions physical volumes for RAID. Pair up each set of partitions into a RAID array, for three RAID 1 arrays total.
  • Nick
    Nick about 12 years
    Make the 100MB RAID EXT3 and mount as /boot, make the 2nd 2GB RAID array into swap, make the third RAID array into a physical volume for LVM. On the LVM volume, create a volume group that uses the whole disk. In the newly created volume group, create a logical volume of 10GB, named "os". Use that as the root file system."?
  • Breakthrough
    Breakthrough about 12 years
    @NRahl another option you might want to consider is downloading a Linux distribution that can run directly from a USB key, and pre-partitioning the disk before installing CentOS.
  • Nick
    Nick about 12 years
    I thought about pre-partitioning (I could do it from the CentOS CD in rescue mode, probably) but the installer won't let me pick a partition to use- it just gives me the same auto-partition options. So even if I pre-partitioned, I couldn't select the partition to install to.
  • Breakthrough
    Breakthrough about 12 years
    @NRahl I believe you can specify which partition to install to using the kickstart file.
  • Nick
    Nick about 12 years
    Ah, ok. That still seems like a very complicated and time-consuming way to get a RAID array on an older box, though. What I'd like is a way to skip the memory check. If Windows XP can run on 512MB, I don't see what the installer needs that much memory for.