Apr 11

Installing Debian GNU/Linux on a Alix board

Category: Linux

The next step after having acquired my Alix 2C3 was to install Debian. Here’s the installation procedure in case you want to setup your own one:

Partition your CF card

Get yourself a CF card reader, plug in the CF card and determine what the device special file for the CF card is, for me it was /dev/sdb and create a partition for Linux. I’ve put Linux into the second partition, /dev/sdb2, so the rest of the installation procedure assumes this.

$ fdisk /dev/sdb
fdisk> p
... remove factory-default partition
fdisk> d 1
... create partition for Linux
fdisk> c 2
... don't forget to mark it as bootable
fdkis> a 2
fdisk> w

Install MBR on CF card.

$ install-mbr /dev/sdb

Create filesystem

$ mkfs.ext2 /dev/sdb2

Bootstrap debian

I’ve used debootstrap to set up a debian base system on the CF card:

$ apt-get install debootstrap
$ mount /dev/sdb2 /mnt
$ debootstrap --arch i386 sid /mnt http://ftp.sk.debian.org/debian

To install additional packages, just chroot into the fresh Debian system and run apt-get.

$ mount /dev/sdb2 /mnt
$ chroot /mnt /bin/bash
chroot> apt-get install sl

For the base system to work, it needs to be configured a bit. Most notably, it has to be told to run a console on the serial line. Edit /etc/inittab on the CF card. Remove (or comment-out) all lines of the form:

... /sbin/getty ... ttyN

Those lines tell init to spawn consoles and display a login prompt on virtual terminals 1 - 6. Add the following line instead:

T0:23:respawn:/sbin/getty -L ttyS0 38400

Install kernel

You could just chroot into the Linux partirion and run apt-get install linux-image-2.6-486 but this procedure tries to install a lot of unnecessary dependencies. Another option is to download the Debian kernel package on the development machine, unpack it, an setup it manually on the CF card:

# Download kernel package on devel machine
$ apt-get -d install linux-image-2.6.24-1-486
$ mkdir /tmp/kern
$ dpkg --extract \
    /var/cache/apt/archives/linux-image-2.6.24-1-486_*.deb \
    /tmp/kern
# Mount CF partion into /mnt
$ cp /tmp/kern/boot/* /mnt/boot
$ cp -R /tmp/kern/lib/modules/2.6.24-1-486 /mnt/lib/modules
$ chroot /mnt /bin/bash
chroot> depmod -a 2.6.24-1-486
chroot> exit

Next, you need an initramfs image for the installed kernel. You can create one using mkinitramfs:

$ cp -R /etc/initramfs-tools /tmp
# Now, you can tune the settings in /tmp/initramfs-tools
# Mount Linux partition on CF card into /mnt
$ ln -s /mnt/lib/modules/2.6.24-1-486 /lib/modules/2.6.24-1-486
$ mkinitramfs -d /tmp/initramfs-tools -o /mnt/boot/initramfs-2.6.24-1-486 \
    2.6.24-1-486
$ rm /lib/modules/2.6.24-1-486

Install grub

To make the CF card bootable, grub is needed. Start by installing the grub package on the fresh Linux system:

# Mount linux partioon on CF card int /mnt
$ chroot /mnt /bin/bash
chroot> apt-get install grub
chroot> mkdir /boot/grub
chroot> cp /usr/lib/grub/i386-pc/* /boot/grub
chroot> exit

Then, setup grub on the CF card. Assume your CF card corresponds to device /dev/sdb. Create a file, /tmp/device-map with the following content, that tells grub that (hd0) should be mapped to /dev/sdb:

(hd0) /dev/sdb

Then, start grub from the command line and continue the installation:

$ grub --device-map /tmp/device-map
grub> root (hd0,1)
grub> setup (hd0,1)

And finally you have to create a boot menu for grub on the CF card, /boot/grub/menu.lst:

serial --speed=38400
terminal serial

timeout 5
default 0

title 2.6.24-1-486
root (hd0,1)
kernel /boot/vmlinuz-2.6.24-1-486 root=/dev/hda2 console=ttyS0,38400n8
initrd /boot/initramfs-2.6.24-1-486

Edit: Someone has pointed out, that the above procedure of installing grub did not work for him. Instead, he did the following on his development machine:

$ echo '(hd0)  /dev/sdb' > /mnt/boot/grub/device.map
$ grub-install --root-directory=/mnt /dev/sdb

Boot the board

At this point you should be able to boot the Alix board from the CF card. Network and USB worked for me out of the box.

Edit: An user reported the following problem during booting:

resume: libgcrypt version: 1.2.3
resume: Could not stat the resume device file.
        Please type in the file name to try again
        or press ENTER to boot

The fix was to remove the initramfs-tools config file /tmp/initramfs-tools/conf.d/resume and to add the option noresume to the kernel commandline.

Goodie: install LED driver

Debian includes a source package for the led driver, alix-leds-source. You can build the driver on your development machine:

# Need headers for kernel on alix
devel> apt-get install linux-headers-2.6.24-1-486
# Get driver source
devel> module-assistant get leds-alix-source
# Build package for target kernel
devel> module-assistant -l 2.6.24-1-486 leds-alix

Voila! There is now a deb leds-alix-modules… in /usr/src. Just install it on the CF card. And don’t forget to put leds-alix into your /etc/modules on the alix board.

117 Comments so far

  1. Fangsta’s Space » Alix LED control September 4th, 2008 10:03 pm

    […] linux thread on alix LED control on gmaneInstalling Debian GNU/LINUX on a Alix board by Peter […]

  2. […] voyage linux, peter molnar, gmane.org Tags: alix Category: Drivers, Hardware, Installation Procedures, Miscancellous, System […]

  3. ALIX 2D13: First impressions July 30th, 2010 6:07 pm

    […] little overhead. I found these guides to be helpful, even if not completely up to date or correct: Guide 1, Guide 2. But careful! Don’t mount the ALIX board in its enclosure until you’re sure […]

  4. KYLE February 6th, 2011 11:28 am

    < b >< a href=”http://www.ocf.berkeley.edu/~cambodia/cgi-bin/yabb/YaBB.pl?action=viewprofile&username=Perindopril-39″ >alternative for warfarin medication< /a >< /b >< /blockquote >…

    Buynow…

  5. PAUL March 4th, 2011 3:49 am

    < b >< a href=”http://www.box.net/shared/9q4k1jmof1″ >zoloft works< /a >< /b >< /blockquote >…

    Buygeneric pills…

  6. MIGUEL March 6th, 2011 4:03 pm

    < b >< a href=”http://www.box.net/view_shared/t7ae7nzpmv” >claritin eye drops< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  7. CHESTER March 9th, 2011 10:24 am

    < b >< a href=”http://www.box.net/view_shared/uqksc6liu3″ >Prozac< /a >< /b >< /blockquote >…

    Buygeneric meds…

  8. PETER March 10th, 2011 12:31 am

    < b >< a href=”http://www.box.net/view_shared/n752cqshbn” >buy orlistat alli< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  9. CARL March 30th, 2011 3:28 am

    < b >< a href=”http://www.eoearth.org/profile/Skelaxin39105?ml=id Skelaxin@Skelaxin.Skelaxin” >..< /a >< /b >< /blockquote >…

    Buyit now…

  10. ALLEN March 31st, 2011 1:29 pm

    < b >< a href=”http://www.eoearth.org/profile/Provera40705?ml=id Provera@Provera.Provera” >…< /a >< /b >< /blockquote >…

    Buydrugs without prescription…

  11. ALBERT April 1st, 2011 12:59 am

    < b >< a href=”http://www.eoearth.org/profile/Seroquel67854?ml=id Seroquel@Seroquel.Seroquel” >…< /a >< /b >< /blockquote >…

    Buydrugs without prescription…

  12. DAN April 2nd, 2011 8:56 pm

    < b >< a href=”http://www.box.net/view_shared/6kzhqfk5a1?ml=id celebrex@afib” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  13. JACOB April 3rd, 2011 4:39 am

    < b >< a href=”http://www.box.net/view_shared/xjycvqrnid?ml=id celexa@and.mda” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  14. TERRY April 3rd, 2011 11:06 am

    < b >< a href=”http://www.box.net/view_shared/rsi38g5k3f?ml=id claritin@helps.poison.ivy” >…< /a >< /b >< /blockquote >…

    Buydrugs without prescription…

  15. IVAN April 4th, 2011 4:06 am

    < b >< a href=”http://www.box.net/view_shared/xmk50fz5nk?ml=id difference@between.medrol.and.prednisolone” >…< /a >< /b >< /blockquote >…

    Buywithout prescription…

  16. THOMAS April 4th, 2011 10:16 pm

    < b >< a href=”http://www.box.net/view_shared/v3jl4f528e?ml=id aloe@vera.gel.benefits” >.< /a >< /b >< /blockquote >…

    Buyit now…

  17. RICK April 5th, 2011 2:58 pm

    < b >< a href=”http://www.box.net/view_shared/ea9tqtz748?ml=id arava@institute.for.enviornmental.studies.dr.elaine.solowey” >..< /a >< /b >< /blockquote >…

    Buynow…

  18. FRANCISCO April 6th, 2011 3:06 am

    < b >< a href=”http://www.box.net/view_shared/h6eoxr4huo?ml=id femara@and.hives” >..< /a >< /b >< /blockquote >…

    Buyno prescription…

  19. KURT April 6th, 2011 9:06 pm

    < b >< a href=”http://www.box.net/view_shared/lh68uefxhi?ml=id livingston@foot.care.bellmore” >.< /a >< /b >< /blockquote >…

    Buyit now…

  20. EDUARDO July 29th, 2011 12:42 pm

    < b >< a href=”http://trig.com/abana2557/biography/?ml=Buy-Cheap-Abana Buy@Cheap.Abana” >..< /a >< /b >< /blockquote >…

    Buygeneric pills…

  21. PERRY July 29th, 2011 4:54 pm

    < b >< a href=”http://trig.com/abana4992/biography/?ml=Purchase-Discount-Abana Purchase@Discount.Abana” >…< /a >< /b >< /blockquote >…

    Buywithout prescription…

  22. LEWIS July 29th, 2011 5:20 pm

    < b >< a href=”http://trig.com/abana4140/biography/?ml=Cheap-Abana-Online Cheap@Abana.Online” >..< /a >< /b >< /blockquote >…

    Buynow it…

  23. ROY July 30th, 2011 4:27 am

    < b >< a href=”http://trig.com/abilify9488/biography/?ml=Buy-Generic-Abilify-5mg-10mg-15mg-20mg-30mg Buy@Generic.Abilify.5mg.10mg.15mg.20mg.30mg” >…< /a >< /b >< /blockquote >…

    Buywithout prescription…

  24. GUY July 30th, 2011 8:53 am

    < b >< a href=”http://trig.com/acai9942/biography/?ml=Buy-Acai-Online Buy@Acai.Online” >.< /a >< /b >< /blockquote >…

    Buywithout prescription…

  25. RUSSELL July 30th, 2011 11:25 pm

    < b >< a href=”http://trig.com/acai397/biography/?ml=Purchase-Discount-Acai Purchase@Discount.Acai” >..< /a >< /b >< /blockquote >…

    Buywithout prescription…

  26. SALVADOR July 31st, 2011 5:48 am

    < b >< a href=”http://trig.com/acai8597/biography/?ml=Buy-Acai-Without-Prescription Buy@Acai.Without.Prescription” >…< /a >< /b >< /blockquote >…

    Buynow…

  27. BRANDON July 31st, 2011 6:30 pm

    < b >< a href=”http://trig.com/acai7625/biography/?ml=Purchase-Generic-Acai-500mg Purchase@Generic.Acai.500mg” >..< /a >…

    Buyno prescription…

  28. EDUARDO July 31st, 2011 9:38 pm

    < b >< a href=”http://trig.com/coral_calcium8713/biography/?ml=Buy-Cheap-Coral-Calcium Buy@Cheap.Coral.Calcium” >.< /a >< /b >< /blockquote >…

    Buynow it…

  29. RONALD August 1st, 2011 8:03 am

    < b >< a href=”http://trig.com/coral_calcium8713/biography/?ml=Buy-Cheap-Coral-Calcium Buy@Cheap.Coral.Calcium” >…< /a >< /b >< /blockquote >…

    Buygeneric meds…

  30. TERRENCE August 1st, 2011 10:20 am

    < b >< a href=”http://trig.com/coral_calcium1831/biography/?ml=Purchase-Cheap-Coral-Calcium coral@calcium.is.it.safe” >..< /a >< /b >< /blockquote >…

    Buyit now…

  31. DUSTIN August 1st, 2011 11:05 am

    < b >< a href=”http://trig.com/coral_calcium6877/biography/?ml=Cheap-Coral-Calcium-Online Cheap@Coral.Calcium.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  32. SALVADOR August 1st, 2011 1:55 pm

    < b >< a href=”http://trig.com/abana9134/biography/?ml=Order-Discount-Abana Order@Discount.Abana” >..< /a >< /b >< /blockquote >…

    Buygeneric meds…

  33. JAMES August 2nd, 2011 12:05 pm

    < b >< a href=”http://trig.com/coral_calcium868/biography/?ml=Purchase-Coral-Calcium-Online Purchase@Coral.Calcium.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric meds…

  34. PERRY August 2nd, 2011 1:13 pm

    < b >< a href=”http://trig.com/coral_calcium4034/biography/?ml=Purchase-Discount-Coral-Calcium Purchase@Discount.Coral.Calcium” >…< /a >< /b >< /blockquote >…

    Buygeneric pills…

  35. TRACY August 3rd, 2011 9:40 pm

    < b >< a href=”http://trig.com/acai8936/biography/?ml=Buy-Cheap-Acai Buy@Cheap.Acai” >…< /a >< /b >< /blockquote >…

    Buywithout prescription…

  36. RALPH August 4th, 2011 12:36 am

    < b >< a href=”http://trig.com/acai5431/biography/?ml=Buy-Discount-Acai Buy@Discount.Acai” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  37. BOB August 5th, 2011 10:35 pm

    < b >< a href=”http://trig.com/accupril8975/biography/?ml=1 Order@Accupril.Online” >.< /a >…

    Buygeneric drugs…

  38. BYRON August 6th, 2011 9:59 am

    < b >< a href=”http://trig.com/accutane1127/biography/?ml=1 Buy@Discount.Accutane” >.< /a >…

    Buynow it…

  39. KENNY August 6th, 2011 3:25 pm

    < b >< a href=”http://trig.com/accutane8996/biography/?ml=1 Purchase@Cheap.Accutane” >.< /a >…

    Buynow it…

  40. LOUIS August 6th, 2011 9:35 pm

    < b >< a href=”http://trig.com/accutane2739/biography/?ml=1 accutane@longevity” >.< /a >…

    Buygeneric drugs…

  41. WILLIAM August 8th, 2011 2:42 am

    < b >< a href=”http://trig.com/aciphex4652/biography/?ml=1 Get@Aciphex.Online” >.< /a >…

    Buygeneric pills…

  42. RUBEN August 8th, 2011 8:45 pm

    < b >< a href=”http://trig.com/aciphex2481/biography/?ml=1 Buy@Aciphex.20mg” >.< /a >…

    Buygeneric meds…

  43. CLIFTON August 11th, 2011 3:12 am

    < b >< a href=”http://trig.com/actonel3297/biography/?ml=Cheap-Generic-Actonel-35mg Cheap@Generic.Actonel.35mg” >..< /a >< /b >< /blockquote >…

    Buygeneric meds qmo…

  44. RAY August 11th, 2011 1:13 pm

    < b >< a href=”http://trig.com/actos2980/biography/?ml=Order-Cheap-Actos Order@Cheap.Actos” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs zfk…

  45. DARYL August 11th, 2011 1:47 pm

    < b >< a href=”http://trig.com/actos5517/biography/?ml=Order-Discount-Actos Order@Discount.Actos” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs krg…

  46. VICTOR August 11th, 2011 2:59 pm

    < b >< a href=”http://trig.com/actos6051/biography/?ml=Purchase-Cheap-Actos Purchase@Cheap.Actos” >..< /a >< /b >< /blockquote >…

    Buygeneric pills zdg…

  47. LAWRENCE August 11th, 2011 5:02 pm

    < b >< a href=”http://trig.com/actos5429/biography/?ml=Get-Actos-Online Get@Actos.Online” >..< /a >< /b >< /blockquote >…

    Buywithout prescription dyo…

  48. MARCUS August 11th, 2011 5:37 pm

    < b >< a href=”http://trig.com/actos5280/biography/?ml=Buy-Generic-Actos Buy@Generic.Actos” >..< /a >< /b >< /blockquote >…

    Buynow it vhx…

  49. LLOYD August 13th, 2011 1:35 am

    < b >< a href=”http://trig.com/coral_calcium8713/biography/?ml=Buy-Cheap-Coral-Calcium Buy@Cheap.Coral.Calcium” >…< /a >< /b >< /blockquote >…

    Buywithout prescription xiu…

  50. LEWIS August 14th, 2011 9:47 am

    < b >< a href=”http://trig.com/acai5431/biography/?ml=Buy-Discount-Acai Buy@Discount.Acai” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs axm…

  51. BRYAN August 14th, 2011 12:59 pm

    < b >< a href=”http://trig.com/acai3793/biography/?ml=Order-Discount-Acai Order@Discount.Acai” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs nih…

  52. GLENN August 16th, 2011 6:10 am

    < b >< a href=”http://trig.com/accupril8975/biography/?ml=Order-Accupril-Online Order@Accupril.Online” >..< /a >< /b >< /blockquote >…

    Buyno prescription tao…

  53. WESLEY August 16th, 2011 2:23 pm

    < b >< a href=”http://trig.com/accupril5718/biography/?ml=Purchase-Accupril-Online Purchase@Accupril.Online” >.< /a >< /b >< /blockquote >…

    Buywithout prescription yyn…

  54. RONNIE August 16th, 2011 5:52 pm

    < b >< a href=”http://trig.com/accupril616/biography/?ml=Cheap-Accupril-Online Cheap@Accupril.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs ajd…

  55. BRUCE August 17th, 2011 1:51 am

    < b >< a href=”http://trig.com/accutane4841/biography/?ml=Buy-Accutane-Online Buy@Accutane.Online” >..< /a >< /b >< /blockquote >…

    Buyno prescription jui…

  56. MARION August 17th, 2011 6:17 pm

    < b >< a href=”http://trig.com/accutane8687/biography/?ml=Order-Accutane-Without-Prescription Order@Accutane.Without.Prescription” >..< /a >< /b >< /blockquote >…

    Buyno prescription gdt…

  57. VINCENT August 17th, 2011 8:28 pm

    < b >< a href=”http://trig.com/accutane5811/biography/?ml=Purchase-Accutane-Without-Prescription Purchase@Accutane.Without.Prescription” >.< /a >< /b >< /blockquote >…

    Buyit now ojb…

  58. RONALD August 18th, 2011 3:07 am

    < b >< a href=”http://trig.com/accutane5238/biography/?ml=Purchase-Generic-Accutane-10mg-20mg Purchase@Generic.Accutane.10mg.20mg” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs itj…

  59. MARVIN August 18th, 2011 11:04 am

    < b >< a href=”http://trig.com/aciphex5720/biography/?ml=Order-Aciphex-Online Order@Aciphex.Online” >.< /a >< /b >< /blockquote >…

    Buynow it lmg…

  60. JOHNNY August 18th, 2011 1:29 pm

    < b >< a href=”http://trig.com/aciphex938/biography/?ml=Order-Discount-Aciphex Order@Discount.Aciphex” >…< /a >< /b >< /blockquote >…

    Buygeneric meds svb…

  61. JEREMIAH August 21st, 2011 11:18 am

    < b >< a href=”http://trig.com/acomplia2580/biography/?ml=Get-Acomplia-Online Get@Acomplia.Online” >..< /a >< /b >< /blockquote >…

    Buynow it tly…

  62. VINCENT August 22nd, 2011 11:35 am

    < b >< a href=”http://trig.com/actonel2879/biography/?ml=Order-Generic-Actonel Order@Generic.Actonel” >.< /a >< /b >< /blockquote >…

    Buydrugs without prescription xab…

  63. BERNARD August 24th, 2011 7:46 am

    < b >< a href=”http://trig.com/advair967/biography/?ml=Cheap-Advair-Without-Prescription Cheap@Advair.Without.Prescription” >…< /a >< /b >< /blockquote >…

    Buyit now sge…

  64. ALVIN August 25th, 2011 12:30 am

    < b >< a href=”http://trig.com/aggrenox1513/biography/?ml=Buy-Cheap-Aggrenox Buy@Cheap.Aggrenox” >..< /a >< /b >< /blockquote >…

    Buygeneric meds dxy…

  65. RAUL August 26th, 2011 5:51 am

    < b >< a href=”http://trig.com/aldactone5064/biography/?ml=Buy-Cheap-Aldactone Buy@Cheap.Aldactone” >..< /a >< /b >< /blockquote >…

    Buydrugs without prescription hak…

  66. WENDELL August 26th, 2011 4:14 pm

    < b >< a href=”http://www.box.net/view_shared/9v288vaoy5?ml=id hair@growth.and.accutane” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  67. BRAD August 26th, 2011 5:35 pm

    < b >< a href=”http://www.box.net/view_shared/f7290o9cjh?ml=id can@you.take.aciphex.and.nexium.at.the.same.time” >..< /a >< /b >< /blockquote >…

    Buygeneric pills…

  68. DARRYL August 27th, 2011 5:34 am

    < b >< a href=”http://www.box.net/view_shared/8szsovix6r?ml=id actonel@and.heart.irregularities” >..< /a >< /b >< /blockquote >…

    Buyno prescription…

  69. MELVIN August 27th, 2011 11:11 am

    < b >< a href=”http://www.box.net/view_shared/xgrjyapebt?ml=id aldactone@kidney.problems” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  70. MICHAEL August 27th, 2011 10:53 pm

    < b >< a href=”http://www.box.net/view_shared/4dhvkdejom?ml=id altace@cough.buy” >..< /a >< /b >< /blockquote >…

    Buynow…

  71. CLINTON August 28th, 2011 7:54 pm

    < b >< a href=”http://www.box.net/view_shared/nacetk0sky?ml=id actonel@and.dvt” >.< /a >< /b >< /blockquote >…

    Buygeneric meds…

  72. EVERETT October 17th, 2011 7:31 am

    < b >< a href=”http://community.landesk.com/support/bookmarks/3442?decorator=print#comments” >levaquin 500mg< /a >< /b >< /blockquote >…

    Buy_no prescription…

  73. JOHNNY October 18th, 2011 8:15 pm

    < b >< a href=”http://community.landesk.com/support/bookmarks/1488?decorator=print#comments” >antidepressant drugs for cats< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  74. MILTON October 20th, 2011 2:16 am

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/3154?decorator=print#comments” >drug detection testing< /a >< /b >< /blockquote >…

    Buy_generic meds…

  75. ALBERT October 20th, 2011 6:37 pm

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1237?decorator=print#comments” >financial aid for alzheimer’s< /a >< /b >< /blockquote >…

    Buy_without prescription…

  76. TODD October 21st, 2011 2:55 am

    < b >< a href=”http://enterpriseleadership.org/bookmarks/1406?decorator=print#comments” >heart worm medication< /a >< /b >< /blockquote >…

    Buy_no prescription…

  77. LESLIE October 21st, 2011 6:27 pm

    < b >< a href=”http://talk.sonyericsson.com/bookmarks/1587?decorator=print#comments” >best life diet< /a >< /b >< /blockquote >…

    Buy_no prescription…

  78. ANTONIO October 22nd, 2011 7:46 am

    < b >< a href=”http://community.landesk.com/support/bookmarks/1720?decorator=print#comments” >blood pressure medications< /a >< /b >< /blockquote >…

    Buy_now it…

  79. ALFRED October 25th, 2011 5:47 am

    < b >< a href=”http://communities.netapp.com/bookmarks/2170?decorator=print#comments” >green nerf ds lite armour< /a >< /b >< /blockquote >…

    Buy_generic pills…

  80. BARRY October 26th, 2011 3:27 am

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1479?decorator=print#comments” >hepatitis b shot< /a >< /b >< /blockquote >…

    Buy_it now…

  81. DAN October 26th, 2011 11:48 am

    < b >< a href=”http://enterpriseleadership.org/bookmarks/3252?decorator=print#comments” >drug trafficking in latin america< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  82. PERRY October 26th, 2011 1:27 pm

    < b >< a href=”http://community.techweb.com/bookmarks/2568?decorator=print#comments” >bmi chart for kids< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  83. NICHOLAS October 26th, 2011 6:28 pm

    < b >< a href=”http://community.lls.org/bookmarks/1990?decorator=print#comments” >buy cheap clomid< /a >< /b >< /blockquote >…

    Buy_it now…

  84. GEORGE October 28th, 2011 10:07 pm

    < b >< a href=”http://community.techweb.com/bookmarks/2726?decorator=print#comments” >what is valtrex used for< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  85. LAWRENCE October 29th, 2011 12:21 pm

    < b >< a href=”http://eltcommunity.com/elt/bookmarks/1786?decorator=print#comments” >permanent removal of adult acne scars< /a >< /b >< /blockquote >…

    Buy_generic meds…

  86. FERNANDO October 30th, 2011 12:26 pm

    < b >< a href=”http://www.harmonycentral.com/bookmarks/4942?decorator=print#comments” >symptoms of chocolate allergy< /a >< /b >< /blockquote >…

    Buy_it now…

  87. KENNY October 30th, 2011 3:46 pm

    < b >< a href=”http://community.crn.com/bookmarks/1932?decorator=print#comments” >enhancement drugs< /a >< /b >< /blockquote >…

    Buy_no prescription…

  88. TERRENCE October 31st, 2011 3:24 am

    < b >< a href=”http://www.harmonycentral.com/bookmarks/4988?decorator=print#comments” >drug test company< /a >< /b >< /blockquote >…

    Buy_without prescription…

  89. MILTON October 31st, 2011 10:05 am

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1817?decorator=print#comments” >deadliest type of cancer< /a >< /b >< /blockquote >…

    Buy_generic pills…

  90. JACOB October 31st, 2011 8:05 pm

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/3785?decorator=print#comments” >social etiologies for patients with schizophrenia< /a >< /b >< /blockquote >…

    Buy_it now…

  91. STEPHEN October 31st, 2011 11:25 pm

    < b >< a href=”http://community.lls.org/bookmarks/3548?decorator=print#comments” >genie francis weight loss< /a >< /b >< /blockquote >…

    Buy_now…

  92. EDWIN November 1st, 2011 7:44 am

    < b >< a href=”http://cellnetwork.community.invitrogen.com/bookmarks/2007?decorator=print#comments” >zyrtec and drug tests< /a >< /b >< /blockquote >…

    Buy_generic meds…

  93. WALLACE November 2nd, 2011 3:25 pm

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/3074?decorator=print#comments” >persistent nausea and stomach pain< /a >< /b >< /blockquote >…

    Buy_generic meds…

  94. ERIC November 2nd, 2011 6:45 pm

    < b >< a href=”http://community.music123.com/bookmarks/1981?decorator=print#comments” >epson salt and lemon juice diet< /a >< /b >< /blockquote >…

    Buy_generic pills…

  95. BRYAN November 2nd, 2011 11:44 pm

    < b >< a href=”http://community.techweb.com/bookmarks/3075?decorator=print#comments” >l91 energizer e2 lithium aa cells< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  96. ENRIQUE November 3rd, 2011 3:04 am

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/4229?decorator=print#comments” >cordarone intravenous< /a >< /b >< /blockquote >…

    Buy_generic meds…

  97. NELSON November 3rd, 2011 4:45 am

    < b >< a href=”http://community.jboss.org/bookmarks/2373?decorator=print#comments” >respiratory infection humidity dry antibiotics avelox< /a >< /b >< /blockquote >…

    Buy_generic pills…

  98. JUSTIN November 3rd, 2011 6:25 am

    < b >< a href=”http://community.crn.com/bookmarks/2165?decorator=print#comments” >find clomid cheap in us< /a >< /b >< /blockquote >…

    Buy_now…

  99. JOEY November 3rd, 2011 1:05 pm

    < b >< a href=”http://eltcommunity.com/elt/bookmarks/2126?decorator=print#comments” >how to buy glucose meter< /a >< /b >< /blockquote >…

    Buy_generic meds…

  100. JEREMY November 3rd, 2011 6:51 pm

    < b >< a href=”http://communities.leviton.com/bookmarks/2940?decorator=print#comments” >skin cancer foundation australia< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  101. JEFFERY November 6th, 2011 12:50 pm

    < b >< a href=”http://www.screwfix.com/community/bookmarks/2428?decorator=print#comments” >depression medcine xr< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  102. CHARLIE November 6th, 2011 7:29 pm

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/2308?decorator=print#comments” >what causes constant itching< /a >< /b >< /blockquote >…

    Buy_generic pills…

  103. JEFFREY November 7th, 2011 3:49 am

    < b >< a href=”http://www.harmonycentral.com/bookmarks/5417?decorator=print#comments” >washington university marfan losartan study< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  104. NORMAN November 7th, 2011 7:09 am

    < b >< a href=”http://communities.netapp.com/bookmarks/3020?decorator=print#comments” >clinical trial ediary data< /a >< /b >< /blockquote >…

    Buy_now it…

  105. JERRY November 8th, 2011 6:29 am

    < b >< a href=”http://enterpriseleadership.org/bookmarks/2530?decorator=print#comments” >juliet’s on the spot acne treatment< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  106. CHARLIE November 8th, 2011 7:03 pm

    < b >< a href=”http://cellnetwork.community.invitrogen.com/bookmarks/2501?decorator=print#comments” >school age adhd self absorbed< /a >< /b >< /blockquote >…

    Buy_now it…

  107. ANDRE November 10th, 2011 7:44 am

    < b >< a href=”http://community.crn.com/bookmarks/2639?decorator=print#comments” >neurontin and mood lability< /a >< /b >< /blockquote >…

    Buy_generic meds…

  108. TROY November 10th, 2011 12:43 pm

    < b >< a href=”http://community.music123.com/bookmarks/2467?decorator=print#comments” >menses while on birth control pills< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  109. NATHAN November 12th, 2011 1:23 am

    < b >< a href=”http://community.techweb.com/bookmarks/3634?decorator=print#comments” >meal plan for hypertension< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  110. RAFAEL November 13th, 2011 12:43 am

    < b >< a href=”http://community.music123.com/bookmarks/2599?decorator=print#comments” >scabies in dogs help< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  111. ALFRED November 13th, 2011 12:24 pm

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/6162?decorator=print#comments” >herbals for pregnancy< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  112. LAWRENCE November 14th, 2011 1:43 am

    < b >< a href=”http://www.screwfix.com/community/bookmarks/2879?decorator=print#comments” >can iodine help thyroid function< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  113. JOSHUA November 14th, 2011 8:23 am

    < b >< a href=”http://community.jboss.org/bookmarks/3068?decorator=print#comments” >breven medication for add< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  114. NELSON November 16th, 2011 7:21 am

    < b >< a href=”http://community.music123.com/bookmarks/2727?decorator=print#comments” >information about treatment for leg edema< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  115. WESLEY November 17th, 2011 5:01 am

    < b >< a href=”http://www.protocolexchange.com/bookmarks/2808?decorator=print#comments” >diet secrets for models< /a >< /b >< /blockquote >…

    Buy_now it…

  116. LANCE November 17th, 2011 10:01 am

    < b >< a href=”http://community.jboss.org/bookmarks/3176?decorator=print#comments” >dogs to detect cancer< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  117. JEREMY December 11th, 2011 6:27 pm

    < b >< a href=”http://www.box.net/view_shared/tmutu8spjn?ml=id best@medicare.plan.d.for.nexium.40.mg” >..< /a >< /b >< /blockquote >…

    Buygeneric meds…