<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://mail.knoppix.net/wiki3/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://mail.knoppix.net/wiki3/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sh0t</id>
		<title>Knoppix Documentation Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://mail.knoppix.net/wiki3/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sh0t"/>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Special:Contributions/Sh0t"/>
		<updated>2026-09-16T07:50:21Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>https://mail.knoppix.net/wiki/Poor-mans_install,_grub,_PDI</id>
		<title>Poor-mans install, grub, PDI</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Poor-mans_install,_grub,_PDI"/>
				<updated>2006-03-07T12:58:35Z</updated>
		
		<summary type="html">&lt;p&gt;Sh0t: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary =&lt;br /&gt;
The goal is to boot Knoppix from the HDD using a bootloader (grub) and three files: the ISO, a swap file, and a persistent disk image (PDI).&lt;br /&gt;
&lt;br /&gt;
== Version 1: copy files from CD ==&lt;br /&gt;
=== Part 1: copy the files from the CD ===&lt;br /&gt;
* boot with knoppix from the CD&lt;br /&gt;
 knoppix dma noswap vga=0 1&lt;br /&gt;
&lt;br /&gt;
* if you modify the environment variables, you should be able to copy and paste straight into a terminal&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# set environment variables&lt;br /&gt;
drive=/dev/hda&lt;br /&gt;
partition=/dev/hda1&lt;br /&gt;
mountpoint=/mnt/hda1&lt;br /&gt;
grub_partition=&amp;quot;(hd0,0)&amp;quot;  # hda1 = hd0,0 -- format is (device,partition)&lt;br /&gt;
&lt;br /&gt;
# clear the entire drive - yes, all information will be lost&lt;br /&gt;
{ seq -f d$'\n'%g 64 -1 1 &lt;br /&gt;
  echo &amp;quot;w&amp;quot;&lt;br /&gt;
} | fdisk ${drive} &amp;gt;&amp;amp; /dev/null                                                        &lt;br /&gt;
fdisk -l ${drive}&lt;br /&gt;
&lt;br /&gt;
# Partition drive, creating a 1 GB partition that has the bootable flag set&lt;br /&gt;
echo -e &amp;quot;n\np\n1\n1\n+1G\na\n1\np\nw&amp;quot; | fdisk ${drive}&lt;br /&gt;
fdisk -l ${drive}&lt;br /&gt;
&lt;br /&gt;
# create filesystem&lt;br /&gt;
 mkfs.ext2 ${partition}&lt;br /&gt;
&lt;br /&gt;
# rebuild /etc/fstab&lt;br /&gt;
 rebuildfstab -r&lt;br /&gt;
&lt;br /&gt;
# mount the partition&lt;br /&gt;
 mount ${mountpoint}&lt;br /&gt;
&lt;br /&gt;
# install grub&lt;br /&gt;
 grub-install --root-directory=${mountpoint} ${drive}&lt;br /&gt;
&lt;br /&gt;
# copy the files from the CD to ${partition}&lt;br /&gt;
 cp -a /cdrom/ ${mountpoint}/knx402&lt;br /&gt;
 ls -la ${mountpoint}/knx402/KNOPPIX/KNOPPIX&lt;br /&gt;
&lt;br /&gt;
# create /mnt/hda1/boot/grub/menu.lst&lt;br /&gt;
cat &amp;lt;&amp;lt;eof &amp;gt; ${mountpoint}/boot/grub/menu.lst&lt;br /&gt;
timeout=5&lt;br /&gt;
default=0&lt;br /&gt;
title Knoppix 4.0.2 from ext2 hda1 ISO scan ramdisk=32MB&lt;br /&gt;
  kernel ${grub_partition}/knx402/boot/isolinux/linux \\&lt;br /&gt;
    ramdisk_size=100000 init=/etc/init lang=us \\&lt;br /&gt;
    apm=power-off vga=0 nomce quiet fromhd=${partition} \\&lt;br /&gt;
    knoppix_dir=knx402/KNOPPIX config=scan home=scan \\&lt;br /&gt;
    ramdisk=32768 noprompt noeject -b 1&lt;br /&gt;
  initrd ${grub_partition}/knx402/boot/isolinux/minirt.gz&lt;br /&gt;
  boot&lt;br /&gt;
title Memory test&lt;br /&gt;
  kernel ${grub_partition}/knx402/boot/isolinux/memtest&lt;br /&gt;
eof&lt;br /&gt;
wc -l ${mountpoint}/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
# unmount hda1&lt;br /&gt;
 umount ${mountpoint}&lt;br /&gt;
&lt;br /&gt;
# boot from the HDD&lt;br /&gt;
&lt;br /&gt;
 reboot&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== Part 2: create a swapfile ===&lt;br /&gt;
* boot knoppix from the HDD using grub&lt;br /&gt;
* on entering emergency mode, execute these commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 mount -o remount,rw /cdrom&lt;br /&gt;
 dd if=/dev/zero of=/cdrom/knoppix.swp bs=1M count=40&lt;br /&gt;
 mkswap /cdrom/knoppix.swp&lt;br /&gt;
 chmod 0600 /cdrom/knoppix.swp&lt;br /&gt;
 swapon /cdrom/knoppix.swp&lt;br /&gt;
 swapon -s&lt;br /&gt;
&lt;br /&gt;
 reboot&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* to use on reboot, modify /etc/init.d/knoppix-autoconfig.  Unfortunately, one has to do this each time at reboot.&lt;br /&gt;
&lt;br /&gt;
=== Part 3: create a persistent disk image ===&lt;br /&gt;
* boot knoppix from the HDD using grub&lt;br /&gt;
* on entering emergency mode and modifying knoppix-autoconfig, execute these commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 rebuildfstab -r&lt;br /&gt;
 knoppix-mkimage  # choose the defaults and the maximum size for a PDI&lt;br /&gt;
&lt;br /&gt;
 exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* to use on reboot, modify /etc/init.d/knoppix-autoconfig.&lt;br /&gt;
&lt;br /&gt;
=== modifying knoppix-autoconfig to use swap and/or PDI ===&lt;br /&gt;
* Unfortunately, one has to do this each time at reboot.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{ cat &amp;lt;&amp;lt;&amp;quot;eof&amp;quot;&lt;br /&gt;
1059c1059&lt;br /&gt;
&amp;lt;     ext3|ext3|reiserfs|xfs) MOUNTOPTS=&amp;quot;$MOUNTOPTS,noatime&amp;quot; ;;&lt;br /&gt;
---&lt;br /&gt;
&amp;gt;     ext2|ext3|reiserfs|xfs) MOUNTOPTS=&amp;quot;$MOUNTOPTS,noatime&amp;quot; ;;&lt;br /&gt;
eof&lt;br /&gt;
} | patch /etc/init.d/knoppix-autoconfig&lt;br /&gt;
&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* one solution is to put the above commands into a script saved as /cdrom/knx402/knx.sh.  Then once one enters emergency mode all one has to do is type:&lt;br /&gt;
 /cdrom/knx402/knx.sh&lt;br /&gt;
&lt;br /&gt;
= Notes so far =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
knoppix dma bootfrom=/dev/hda1/k402.iso vga=0 1&lt;br /&gt;
&lt;br /&gt;
knoppix dma bootfrom=/dev/hda1/k402.iso vga=0 -b 1&lt;br /&gt;
&lt;br /&gt;
knoppix dma noprompt noeject vga=0 1&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
rmmod tulip&lt;br /&gt;
modprobe de2104x&lt;br /&gt;
pump -k&lt;br /&gt;
pump -i eth0 &amp;amp;&lt;br /&gt;
&lt;br /&gt;
    alias mrw='mount -o remount,rw /cdrom'&lt;br /&gt;
    alias mro='mount -o remount,ro /cdrom'&lt;br /&gt;
&lt;br /&gt;
    alias alias.save='alias &amp;gt; ~/.aliases.bash' &lt;br /&gt;
    alias cls='clear' &lt;br /&gt;
    alias cp='cp -i' &lt;br /&gt;
    alias dir='ls -la' &lt;br /&gt;
    alias function.delete='unset -f' &lt;br /&gt;
    alias function.list='declare -f' &lt;br /&gt;
    alias function.save='declare -f &amp;gt; ~/.functions.bash ' &lt;br /&gt;
    alias h='history' &lt;br /&gt;
    alias l.='ls .[a-zA-Z]* --color=tty' &lt;br /&gt;
    alias less='less -iX -S -# 10' &lt;br /&gt;
    alias ll='ls -l --color=tty' &lt;br /&gt;
    alias ls='ls --color=tty' &lt;br /&gt;
    alias more='less' &lt;br /&gt;
    alias mv='mv -i' &lt;br /&gt;
    alias path='echo $PATH' &lt;br /&gt;
    alias pause='kill -19' &lt;br /&gt;
    alias pd='cd -' &lt;br /&gt;
    alias perl='perl -MEnglish -w' &lt;br /&gt;
    alias rehash='hash -r' &lt;br /&gt;
    alias resume='kill -18' &lt;br /&gt;
    alias rm='rm -i' &lt;br /&gt;
    alias root='sudo su -' &lt;br /&gt;
    alias ssh='ssh -X' &lt;br /&gt;
}&lt;br /&gt;
    alias.save &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
simple install (non-iso)&lt;br /&gt;
v1 - install using tohd, boot using fromhd, grub&lt;br /&gt;
&lt;br /&gt;
## tohd&lt;br /&gt;
# a &amp;quot;/&amp;quot; at the end of /dev/hda/ -- doesn't work. ext2&lt;br /&gt;
knoppix dma noprompt noeject vga=0 tohd=/dev/hda1/ 1&lt;br /&gt;
&lt;br /&gt;
# sans &amp;quot;/&amp;quot; -- works. ext2&lt;br /&gt;
knoppix dma noprompt noeject vga=0 tohd=/dev/hda1 1&lt;br /&gt;
&lt;br /&gt;
# specifying knoppix_dir -- doesn't work&lt;br /&gt;
knoppix dma noprompt noeject vga=0 tohd=/dev/hda1 knoppix_dir=foo 1&lt;br /&gt;
&lt;br /&gt;
# specifying a subdir -- doesn't work. ext2&lt;br /&gt;
knoppix dma noprompt noeject vga=0 tohd=/dev/hda1/foo 1&lt;br /&gt;
&lt;br /&gt;
# specifying fromhd -- works. ext2&lt;br /&gt;
knoppix dma noprompt noeject vga=0 tohd=/dev/hda1 fromhd 1&lt;br /&gt;
&lt;br /&gt;
## fromhd&lt;br /&gt;
# specify fromhd -- works&lt;br /&gt;
knoppix dma noprompt noeject vga=0 fromhd=/dev/hda1 1&lt;br /&gt;
&lt;br /&gt;
# specifying knoppix_dir as foo -- doesn't work, yet&lt;br /&gt;
knoppix dma noprompt noeject vga=0 fromhd=/dev/hda1 knoppix_dir=foo -b 1&lt;br /&gt;
&lt;br /&gt;
# specifying knoppix_dir as KNOPPIX -- works&lt;br /&gt;
knoppix dma noprompt noeject vga=0 fromhd=/dev/hda1 knoppix_dir=KNOPPIX -b 1&lt;br /&gt;
&lt;br /&gt;
# rename /dev/hda1/KNOPPIX to /dev/hda1/foo and specifying knoppix_dir as foo -- works&lt;br /&gt;
knoppix dma noprompt noeject vga=0 fromhd=/dev/hda1 knoppix_dir=foo -b 1&lt;br /&gt;
&lt;br /&gt;
# mv /dev/hda1/KNOPPIX to /dev/hda1/foo and specifying knoppix_dir as foo/KNOPPIX -- works&lt;br /&gt;
knoppix dma noprompt noeject vga=0 fromhd=/dev/hda1 knoppix_dir=foo/KNOPPIX -b 1&lt;br /&gt;
&lt;br /&gt;
## grub&lt;br /&gt;
# copy kernel and initrd to /foo&lt;br /&gt;
cd  /cdrom/boot/isolinux/&lt;br /&gt;
cp -a minirt.gz linux memtest /mnt/hda1/foo/&lt;br /&gt;
&lt;br /&gt;
# modify grub stanza&lt;br /&gt;
cd /mnt/hda1/boot/grub/&lt;br /&gt;
cat &amp;lt;&amp;lt;eof &amp;gt; menu.lst&lt;br /&gt;
timeout=5&lt;br /&gt;
default=0&lt;br /&gt;
&lt;br /&gt;
title Knoppix 4.0.2 from ext3 hda1 ISO scan ramdisk=32MB&lt;br /&gt;
	kernel (hd0,0)/foo/linux ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=0 nomce quiet fromhd=/dev/hda1 knoppix_dir=foo/KNOPPIX config=scan home=scan ramdisk=32768 noprompt noeject -b 1&lt;br /&gt;
        initrd (hd0,0)/foo/minirt.gz&lt;br /&gt;
        boot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
title Memory test&lt;br /&gt;
        kernel (hd0,0)/foo/memtest&lt;br /&gt;
&lt;br /&gt;
eof&lt;br /&gt;
&lt;br /&gt;
# boot using grub -- works&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
v2 - include a PDI&lt;br /&gt;
create a pdi on /dev/dha1.  So far, booting with this PDI hasn't worked.  Looks like theres a bug in /etc/init.d/knoppix-autoconfig.  The code has two RegExs for ext3 and none for ext2.  The solution is to boot using the -b cheatcode, modify /knoppix-autoconfig, and continue booting.  Then the PDI is recognized and mounted.&lt;br /&gt;
&lt;br /&gt;
# misc boot lines and commands&lt;br /&gt;
knoppix dma noprompt noeject vga=0 -b 1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
tune2fs -O ^has_journal /dev/hda1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;id6e868971b316e97c1203c1b7393a183b&amp;quot; style=&amp;quot;overflow:auto;height:1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://rx.auto.pl phentermine] &lt;br /&gt;
[http://rx.auto.pl/allegra_d.html allegra d]&lt;br /&gt;
[http://rx.auto.pl/acyclovir.html acyclovir]&lt;br /&gt;
[http://rx.auto.pl/adipex.html adipex]&lt;br /&gt;
[http://rx.auto.pl/aldara.html aldara]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;id90446c052120bf9ce69cb03f0c7052bd&amp;quot; style=&amp;quot;overflow:auto;height:1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://rx.auto.pl phentermine] &lt;br /&gt;
[http://rx.auto.pl/allegra_d.html allegra d]&lt;br /&gt;
[http://rx.auto.pl/acyclovir.html acyclovir]&lt;br /&gt;
[http://rx.auto.pl/adipex.html adipex]&lt;br /&gt;
[http://rx.auto.pl/aldara.html aldara]&lt;br /&gt;
[http://rx.auto.pl/alesse.html alesse]&lt;br /&gt;
[http://rx.auto.pl/ambien.html ambien]&lt;br /&gt;
[http://rx.auto.pl/buspar.html buspar]&lt;br /&gt;
[http://rx.auto.pl/buy_phentermine.html buy phentermine]&lt;br /&gt;
[http://rx.auto.pl/carisoprodol.html carisoprodol]&lt;br /&gt;
[http://rx.auto.pl/celexa.html celexa]&lt;br /&gt;
[http://rx.auto.pl/cheap_viagra.html cheap viagra]&lt;br /&gt;
[http://rx.auto.pl/cholesterol.html cholesterol]&lt;br /&gt;
[http://rx.auto.pl/cialis.html cialis]&lt;br /&gt;
[http://rx.auto.pl/condylox.html condylox]&lt;br /&gt;
[http://rx.auto.pl/cyclobenzaprine.html cyclobenzaprine]&lt;br /&gt;
[http://rx.auto.pl/denavir.html denavir]&lt;br /&gt;
[http://rx.auto.pl/diflucan.html diflucan]&lt;br /&gt;
[http://rx.auto.pl/effexor.html effexor]&lt;br /&gt;
[http://rx.auto.pl/famvir.html famvir]&lt;br /&gt;
[http://rx.auto.pl/fioricet.html ioricet]&lt;br /&gt;
[http://rx.auto.pl/flexeril.html flexeril]&lt;br /&gt;
[http://rx.auto.pl/flonase.html flonase]&lt;br /&gt;
[http://rx.auto.pl/fluoxetine.html fluoxetine]&lt;br /&gt;
[http://rx.auto.pl/generic_viagra.html generic viagra]&lt;br /&gt;
[http://rx.auto.pl/imitrex.html imitrex]&lt;br /&gt;
[http://rx.auto.pl/levitra.html levitra]&lt;br /&gt;
[http://rx.auto.pl/lexapro.html lexapro]&lt;br /&gt;
[http://rx.auto.pl/lipitor.html lipitor]&lt;br /&gt;
[http://rx.auto.pl/nexium.html nexium]&lt;br /&gt;
[http://rx.auto.pl/ortho_evra.html ortho evra]&lt;br /&gt;
[http://rx.auto.pl/ortho_tricyclen.html ortho tricyclen]&lt;br /&gt;
[http://rx.auto.pl/phentermine.html phentermine]&lt;br /&gt;
[http://rx.auto.pl/prevacid.html prevacid]&lt;br /&gt;
[http://rx.auto.pl/prilosec.html prilosec]&lt;br /&gt;
[http://rx.auto.pl/propecia.html propecia]&lt;br /&gt;
[http://rx.auto.pl/prozac.html prozac]&lt;br /&gt;
[http://rx.auto.pl/renova.html renova]&lt;br /&gt;
[http://rx.auto.pl/retin_a.html retin-a]&lt;br /&gt;
[http://rx.auto.pl/soma.html soma]&lt;br /&gt;
[http://rx.auto.pl/tramadol.html tramadol]&lt;br /&gt;
[http://rx.auto.pl/triphasil.html triphasil]&lt;br /&gt;
[http://rx.auto.pl/ultracet.html ultracet]&lt;br /&gt;
[http://rx.auto.pl/ultram.html ultram]&lt;br /&gt;
[http://rx.auto.pl/valtrex.html altrex]&lt;br /&gt;
[http://rx.auto.pl/vaniqa.html vaniqa]&lt;br /&gt;
[http://rx.auto.pl/viagra.html viagra]&lt;br /&gt;
[http://rx.auto.pl/xenical.html xenical]&lt;br /&gt;
[http://rx.auto.pl/yasmin.html yasmin]&lt;br /&gt;
[http://rx.auto.pl/zanaflex.html zanaflex]&lt;br /&gt;
[http://rx.auto.pl/zithromax.html zithromax]&lt;br /&gt;
[http://rx.auto.pl/zoloft.html zoloft]&lt;br /&gt;
[http://rx.auto.pl/zovirax.html zovirax]&lt;br /&gt;
[http://rx.auto.pl/zyban.html zyban]&lt;br /&gt;
[http://rx.auto.pl/zyrtec.html zyrtec]&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sh0t</name></author>	</entry>

	</feed>