<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: /boot in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569194#M18256</link>
    <description>Generally the reason for a '/boot' filesystem is to have the boot-files (kernel) in the first 1024 cylenders of a hard-disk.&lt;BR /&gt;&lt;BR /&gt;On newer systems, the need for this has gone away, as system BIOS' have the ability to access more of a disk during those early stages of boot-up (were the controller drivers aren't available).&lt;BR /&gt;&lt;BR /&gt;If you really want to put one in place, it'd be best to try to get that sort of thing in place.&lt;BR /&gt;&lt;BR /&gt;To do this, you'd need to re-partition the harddrive, and if possible, create a partition at the very beginning of the disk.  So you'll need a tool to move the contents of the disk around ('parted' can do this I believe) to free up that space.&lt;BR /&gt;&lt;BR /&gt;Once that's done, you create your filesystem in the free'd up space at the start of the disk.  You make sure you 'e2label' the filesystem as '/boot'.  Create the entry for the filesystem in '/etc/fstab', and then mount the filesystem somewhere temporary.&lt;BR /&gt;&lt;BR /&gt;Copy the content to the temporary mount point, then 'mv /boot /boot.old;mkdir /boot', and re-mount the new filesystem to '/boot'.&lt;BR /&gt;&lt;BR /&gt;Here you'll need to re-install the bootloader ('grub-install', or 'lilo'), hopefully without any errors.&lt;BR /&gt;&lt;BR /&gt;Moment of truth time.. Make sure you have a rescue disk (one of the RH CD's) handy, then reboot.</description>
    <pubDate>Thu, 23 Jun 2005 04:53:25 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2005-06-23T04:53:25Z</dc:date>
    <item>
      <title>/boot</title>
      <link>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569193#M18255</link>
      <description>Hi everyone&lt;BR /&gt;&lt;BR /&gt;During a number of builds, I overlooked the creation of a seperate filesystem for /boot. I know that this isn't a necessity but would like to rectify it.&lt;BR /&gt;&lt;BR /&gt;If I look at my partition table I can see the boot partition&lt;BR /&gt;&lt;BR /&gt;/dev/sda1   *         1        13    103981+  83  Linux&lt;BR /&gt;&lt;BR /&gt;In a normal situation I would consider tarring the contents of the dir, creating a new FS, with a new mount point, extracting the contents of the directory into the filesystem, remove the old files and rename the new mount point to the required etc&lt;BR /&gt;&lt;BR /&gt;Any ideas what would be the best thing to do. I haven't really got anywhere to test this at the moment&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Thu, 23 Jun 2005 04:39:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569193#M18255</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2005-06-23T04:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: /boot</title>
      <link>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569194#M18256</link>
      <description>Generally the reason for a '/boot' filesystem is to have the boot-files (kernel) in the first 1024 cylenders of a hard-disk.&lt;BR /&gt;&lt;BR /&gt;On newer systems, the need for this has gone away, as system BIOS' have the ability to access more of a disk during those early stages of boot-up (were the controller drivers aren't available).&lt;BR /&gt;&lt;BR /&gt;If you really want to put one in place, it'd be best to try to get that sort of thing in place.&lt;BR /&gt;&lt;BR /&gt;To do this, you'd need to re-partition the harddrive, and if possible, create a partition at the very beginning of the disk.  So you'll need a tool to move the contents of the disk around ('parted' can do this I believe) to free up that space.&lt;BR /&gt;&lt;BR /&gt;Once that's done, you create your filesystem in the free'd up space at the start of the disk.  You make sure you 'e2label' the filesystem as '/boot'.  Create the entry for the filesystem in '/etc/fstab', and then mount the filesystem somewhere temporary.&lt;BR /&gt;&lt;BR /&gt;Copy the content to the temporary mount point, then 'mv /boot /boot.old;mkdir /boot', and re-mount the new filesystem to '/boot'.&lt;BR /&gt;&lt;BR /&gt;Here you'll need to re-install the bootloader ('grub-install', or 'lilo'), hopefully without any errors.&lt;BR /&gt;&lt;BR /&gt;Moment of truth time.. Make sure you have a rescue disk (one of the RH CD's) handy, then reboot.</description>
      <pubDate>Thu, 23 Jun 2005 04:53:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569194#M18256</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-06-23T04:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: /boot</title>
      <link>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569195#M18257</link>
      <description>&lt;BR /&gt;if you are already having a small partition to have boot files then it is very easy.&lt;BR /&gt;&lt;BR /&gt;* just format the partition as ext3 or whatever the file system you want. &lt;BR /&gt;* mount this partition in some temporary mount point. &lt;BR /&gt;* copy the contents of /boot files to this mount point&lt;BR /&gt;* remove contents of /boot directory, make sure  the directory exists&lt;BR /&gt;* add the following entry in /etc/fstab&lt;BR /&gt;/dev/&lt;BOOT device=""&gt;    /boot   ext3 defaults 1 1&lt;BR /&gt;&lt;BR /&gt;* update grub.conf/lilo.conf file to reflect the partition where the boot files resides. field to update is root&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;reboot your system and it should come up. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if you dont have free partition then you have to follow stuart's suggestion. &lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Gopi&lt;BR /&gt;&lt;/BOOT&gt;</description>
      <pubDate>Thu, 23 Jun 2005 05:54:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569195#M18257</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-06-23T05:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: /boot</title>
      <link>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569196#M18258</link>
      <description>Hi Guys&lt;BR /&gt;&lt;BR /&gt;Thanks for the responses, will be working on this over the next couple of days&lt;BR /&gt;&lt;BR /&gt;will post the outcome&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 29 Jun 2005 05:41:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/boot/m-p/3569196#M18258</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2005-06-29T05:41:22Z</dc:date>
    </item>
  </channel>
</rss>

