<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.fogproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rhmaddox</id>
		<title>FOG Project - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.fogproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rhmaddox"/>
		<link rel="alternate" type="text/html" href="https://wiki.fogproject.org/wiki/index.php?title=Special:Contributions/Rhmaddox"/>
		<updated>2026-05-07T19:40:16Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://wiki.fogproject.org/wiki/index.php?title=Include_Parted_Magic&amp;diff=5091</id>
		<title>Include Parted Magic</title>
		<link rel="alternate" type="text/html" href="https://wiki.fogproject.org/wiki/index.php?title=Include_Parted_Magic&amp;diff=5091"/>
				<updated>2011-12-14T00:22:15Z</updated>
		
		<summary type="html">&lt;p&gt;Rhmaddox: I had to add the /fog folder to my default file to get pmagic to work&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two methods of including the PartedMagic distro in the FOG PXE menu&lt;br /&gt;
&lt;br /&gt;
PartedMagic is a great little ISO to have at hand, includes Firefox , Gparted, Clonezilla and much more&lt;br /&gt;
&lt;br /&gt;
'''Method 1'''  -  '''Classic Way'''&lt;br /&gt;
&lt;br /&gt;
Download the pmagic-pxe-X.X.zip file and extract it. &lt;br /&gt;
&lt;br /&gt;
[http://partedmagic.com/doku.php?id=downloads]&lt;br /&gt;
its half way down the page&lt;br /&gt;
&lt;br /&gt;
Copy the “pmagic” folder from the extracted archive to /tftpboot/fog/ &lt;br /&gt;
browse to /tftpboot/pxelinux.cfg/ &lt;br /&gt;
*as 'root' edit the 'default' file in the above directory and add:&lt;br /&gt;
&amp;lt;pre&amp;gt;LABEL pmagic&lt;br /&gt;
LINUX pmagic/bzImage&lt;br /&gt;
INITRD pmagic/initramfs&lt;br /&gt;
APPEND edd=off load_ramdisk=1 prompt_ramdisk=0 rw vga=normal loglevel=9 max_loop=256&amp;lt;/pre&amp;gt;&lt;br /&gt;
now it should appear on the pxe menu and you can boot into it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
cited from [http://partedmagic.com/doku.php?id=pxe]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Method 1''' - '''Alternate Way'''&lt;br /&gt;
&lt;br /&gt;
If the ''Classic Way'' does not work, here is an alternate for Method 1 consists of the following changes to the above:&lt;br /&gt;
&lt;br /&gt;
Follow instructions for ''Classic Way'' until you come to the part of editing the 'default' file.&lt;br /&gt;
&lt;br /&gt;
When editing the 'default' file (as root), use this menu entry instead:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;LABEL pmagic&lt;br /&gt;
&lt;br /&gt;
        kernel fog/pmagic/bzImage&lt;br /&gt;
        append initrd=fog/pmagic/initramfs edd=off load_ramdisk=1 prompt_ramdisk=0 rw vga=normal loglevel=9 max_loop=256&lt;br /&gt;
        MENU LABEL Parted Magic&lt;br /&gt;
        TEXT HELP&lt;br /&gt;
        Parted Magic is a live disk operations tool&lt;br /&gt;
        that can be booted over PXE!&lt;br /&gt;
        ENDTEXT&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are variables that you can change to whatever you like:&lt;br /&gt;
*LABEL&lt;br /&gt;
*MENU LABEL&lt;br /&gt;
*TEXT HELP&lt;br /&gt;
can all be changed as-is without affecting the functionality of the example entry.&lt;br /&gt;
&lt;br /&gt;
You can also modify the other lines to allow for multiple PartedMagic entries, as in the following (tested/working) example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;LABEL pmagic-i686&lt;br /&gt;
&lt;br /&gt;
        kernel fog/pmagic/bzImage&lt;br /&gt;
        append initrd=fog/pmagic/initramfs edd=off load_ramdisk=1 prompt_ramdisk=0 rw vga=normal loglevel=9 max_loop=256&lt;br /&gt;
        MENU LABEL Parted Magic v6.6 [i686]&lt;br /&gt;
        TEXT HELP&lt;br /&gt;
        32-bit&lt;br /&gt;
        ENDTEXT&lt;br /&gt;
&lt;br /&gt;
LABEL pmagic-x64&lt;br /&gt;
&lt;br /&gt;
        kernel fog/pmagic-64/bzImage&lt;br /&gt;
        append initrd=fog/pmagic-64/initramfs edd=off load_ramdisk=1 prompt_ramdisk=0 rw vga=normal loglevel=9 max_loop=256&lt;br /&gt;
        MENU LABEL Parted Magic v6.6 [x86_64]&lt;br /&gt;
        TEXT HELP&lt;br /&gt;
        64-bit&lt;br /&gt;
        ENDTEXT&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That example uses 'pmagic/' and 'pmagic-64/' folders in the 'fog/' directory for a 32-bit and 64-bit copy of PartedMagic, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Method 2'''  -  '''PXE: the &amp;quot;memdisk - boot the standard PM ISO&amp;quot; way'''&lt;br /&gt;
&lt;br /&gt;
this boots the entire ISO over PXE.&lt;br /&gt;
&lt;br /&gt;
*download the latest ISO from [http://partedmagic.com/doku.php?id=downloads]&lt;br /&gt;
*create a folder in /tftpboot/fog/ called pmagic&lt;br /&gt;
*copy the ISO to this newly created pmagic folder&lt;br /&gt;
*copy and paste the memdisk file found in /tftpboot/fog/ to the pmagic folder&lt;br /&gt;
*as 'root' edit the 'default' file in the above directory and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;LABEL pmagic&lt;br /&gt;
LINUX /fog/pmagic/memdisk&lt;br /&gt;
INITRD /fog/pmagic/pmagic-X.X.iso&lt;br /&gt;
APPEND iso vmalloc=256M&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rhmaddox</name></author>	</entry>

	</feed>