<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xml:lang="en">
  <title type="html">PixieLive</title>
  <subtitle type="html"></subtitle>
  <link href="https://pixielive.org/index.php?feed/atom" rel="self" type="application/atom+xml" />
  <link href="http://pixielive.org/index.php?" rel="alternate" type="text/html" title="" />
  <updated>2019-09-05T20:58:06+02:00</updated>
  <author>
    <name>Christian Lorandi</name>
  </author>
  <id>urn:md5:420041d3af3b66a087b22e9b14e3eb83</id>
  <generator uri="https://www.dotclear.org/">Dotclear</generator>
      <entry>
      <title>PixieLive4 to HDD as &quot;normal&quot; distro</title>
      <link href="http://pixielive.org/index.php?post/2013/12/19/PixieLive4-to-HDD-as-normal-distro" rel="alternate" type="text/html" title="PixieLive4 to HDD as &quot;normal&quot; distro" />
      <id>urn:md5:b10b9d402f04230f67c30513cb8af469</id>
      <published>2013-12-20T18:00:00+01:00</published>
                    <updated>2013-12-20T18:00:00+01:00</updated>
            <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>How-To</dc:subject>
                    <dc:subject>installation</dc:subject>
              <dc:subject>tutorial</dc:subject>
            <content type="html">&lt;p&gt;Dear PixieLive4 users, since some of you wanted to install PixieLive4 on their NetBooks HDD as &quot;normal&quot; (i.e. non live) distro, here is the quick and dirty guide.&lt;/p&gt;


&lt;p&gt;It's pretty straight forward, it can be summarized as:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;prepare an HDD partition&lt;/li&gt;
&lt;li&gt;extract the lzm modules&lt;/li&gt;
&lt;li&gt;remove 
pixielive scripts&lt;/li&gt;
&lt;li&gt;create missing directories&lt;/li&gt;
&lt;li&gt;copy /dev&lt;/li&gt;
&lt;li&gt;create an /etc/fstab&lt;/li&gt;
&lt;li&gt;install and configure grub (the bootloader)&lt;/li&gt;
&lt;li&gt;reboot and have fun!&lt;/li&gt;
&lt;/ul&gt; &lt;p&gt;This guide is not for newbies, i will not explain every command in the details, it would take too much time and you could damage your system if you don't know what you are doing.&lt;/p&gt;


&lt;p&gt;For the commands you don't know &quot;man&quot;, &quot;gentoo wiki&quot; and &quot;google&quot; are your friends.&lt;/p&gt;


&lt;p&gt;I cannot guarantee everything is done in the best way here, it worked on my computer so it should on your.&lt;/p&gt;

&lt;pre&gt;&lt;/pre&gt;

&lt;p&gt;Let's get started:&lt;/
p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;backup all of your documents&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;backup your windows partition if you think you will need it in future&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;make sure you have a backup of all your documents and software&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;double check you have a backup of all your documents and software (on a different disk)&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;boot PixieLive4 as usual&lt;/li&gt;
&lt;li&gt;Prepare an empty partition on your disk, at least 10GB (you can use fdisk or gparted)&lt;/li&gt;
&lt;li&gt;open a terminal window and become root
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;su&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;format the partition you created as ext3 (ext4 won't boot with grub-1)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;mkfs.ext3 /dev/sdaX #where X is the partition number&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;prepare the mount directory
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;mount the partition in the directory (&lt;strong&gt;replace the X with your partition number&lt;/strong&gt;)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;mount /dev/sdaX /gentoohdd&lt;/code&gt;&lt;/li&gt;
&lt;/
ul&gt;&lt;/li&gt;
&lt;li&gt;recursively copy the content of every module on the partition (notice the / after $i, it's important). It will take a looong time
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;for i in /mnt/live/memory/bundles/*; do rsync -a &quot;$i/&quot; /gentoohdd; done&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;copy the /dev directory
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;cp -a /dev /gentoohdd&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;create the some missing directories:
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd/sys&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd/proc&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd/run&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd/tmp&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd/mnt&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;mkdir /gentoohdd/media&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;create the fstab file (&lt;strong&gt;replace the X with your partition number&lt;/strong&gt;)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;echo &quot;/dev/sdaX / ext3 noatime 0 1&quot; &amp;gt; /gentoohdd/etc/fstab&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;install grub
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;grub-install --root-directory=/gentoohdd /dev/sda&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;copy the kernel in place
&lt;ul&gt;
n&lt;li&gt;&lt;code&gt;cp /mnt/live/memory/data/PixieLive4/boot/vmlinuz /gentoohdd/boot&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;create a grub menu configuration (&lt;strong&gt;replace the Y with your partition number in the grub way, usually Y=X-1&lt;/strong&gt;)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;nano /gentoohdd/boot/grub/menu.lst&lt;/code&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;##############################&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;default 0&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;timeout 5&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;title PixieLive4-HDD&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;root (hd0,Y) # usually Y = X-1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;kernel /boot/vmlinuz root=/dev/sdaX&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;# you don't need this part if you don't have Windows installed&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;title Windows&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;rootnoverify (hd0,0) # assuming windows is on the first partition of the first disk&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;makeactive&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;chainloader +1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;##############################&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;remove unneeded 
pixielive init scripts
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;rm /gentoohdd/etc/init.d/pixielive*&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;rm /gentoohdd/etc/conf.d/pixielive*&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;rm /gentoohdd/etc/runlevels/default/pixielive*&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;rm /gentoohdd/etc/runlevels/boot/pixielive*&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;rm /gentoohdd/etc/runlevels/shutdown/*&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;rebuild the shutdown runlevel
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;ln -s /etc/init.d/killprocs /gentoohdd/etc/runlevels/shutdown&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ln -s /etc/init.d/mount-ro /gentoohdd/etc/runlevels/shutdown&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ln -s /etc/init.d/savecache /gentoohdd/etc/runlevels/shutdown&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;copy the xorg.conf
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;cp -a /etc/X11/xorg.conf /gentoohdd/etc/X11&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;unmount the gentoohdd partition
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;umount /gentoohdd&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;reboot from the hdd&lt;/li&gt;
&lt;/ul&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive4 Released</title>
      <link href="http://pixielive.org/index.php?post/2013/10/21/PixieLive4-Released" rel="alternate" type="text/html" title="PixieLive4 Released" />
      <id>urn:md5:4a004cc748ed3a41a9cdc2d5a1c99c0c</id>
      <published>2013-11-08T01:25:00+01:00</published>
              <updated>2019-09-05T22:58:06+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                  <content type="html">&lt;p&gt;After a long time, PixieLive is back with a brand new release including a new Boot Menu, updated programs, and some new entries.&lt;/p&gt;


&lt;h4&gt;The software selection can be completely tuned by removing the unneeded packages, ranging from 500 MB to about 2000 MB as explained &lt;a href=&quot;http://pixielive.org/dotclear/index.php?post/2013/04/11/PixieLive3-RC1%2C-modules-cutomization&quot;&gt;Here&lt;/a&gt;&lt;/h4&gt; &lt;h3&gt;Download: &lt;a href=&quot;http://pixielive.org/PixieLive4.iso&quot;&gt;PixieLive4.iso&lt;/a&gt;&lt;/h3&gt;


&lt;h4&gt;&lt;/h4&gt;

&lt;p&gt;Highlights:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;del&gt; &lt;a href=&quot;https://copy.com?r=tEP9h1&quot;&gt;Copy.com&lt;/a&gt; replaced drobox (15 GB of free online storage, +5 GB if you register using this &lt;a href=&quot;https://copy.com?r=tEP9h1&quot;&gt;Link&lt;/a&gt;)&lt;/del&gt;&lt;/li&gt;
&lt;li&gt;As usual Pixielive supports&lt;strong&gt; GMA500&lt;/strong&gt; (a.k.a &lt;strong&gt;Poulsbo&lt;/strong&gt;) graphic cards with both EMGD 1.18 binary drivers and the free modesetting (gma500_gfx)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;nVidia Optimus&lt;/strong&gt; supported out of the box&lt;/li&gt;
&lt;li&gt;Claws-mail (lightweight email client which saves automatically on you pendrive)&lt;/li&gt;
&lt;li&gt;Multi-User live system&lt;/li&gt;
&lt;li&gt;Settings saved in several different ways (if the boot device is writable):
&lt;ul&gt;
&lt;li&gt;some directories in the $HOME are linked in the PixieLive4 directory on your pendrive (Desktop, Documents, Downloads, Music, Pictures, Templates, Videos)&lt;/li&gt;
&lt;li&gt;on demand save settings  (for normal settings, as usual in PixieLive)&lt;/li&gt;
&lt;li&gt;live changes, for data and settings which change frequently (email &lt;a href=&quot;http://pixielive.org/index.php?post/2013/10/21/thunderbird and claws-mail&quot; title=&quot;thunderbird and claws-mail&quot;&gt;thunderbird and claws-mail&lt;/a&gt;, copy.com &lt;a href=&quot;http://pixielive.org/index.php?post/2013/10/21/replacing dropbox, it syncs on your pendrive&quot; title=&quot;replacing dropbox, it syncs on your pendrive&quot;&gt;replacing dropbox, it syncs on your...&lt;/a&gt;, sticky notes, calibre, torrents, calendar &lt;a href=&quot;http://pixielive.org/index.php?post/2013/10/21/osmo&quot; title=&quot;osmo&quot;&gt;osmo&lt;/a&gt;, wifi networks)&lt;/li&gt;
&lt;li&gt;encrypted settings (for sensitive data &lt;a href=&quot;http://pixielive.org/index.php?post/2013/10/21/browsers, email, copy.com settings, pidgin, skype, filezilla, wifi passwords&quot; title=&quot;browsers, email, copy.com settings, pidgin, skype, filezilla, wifi passwords&quot;&gt;browsers, email, copy.com settings,...&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;encrypted storage (~/Private directory encrypted, so you can safely save your sensitive documents on you pendrive)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;h4&gt;Cheatcodes (to be specified on the bootloader &quot;blue&quot; screen):&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;noload=packages,list&lt;/strong&gt; --&amp;gt; do not load the specified .lzm modules (e.g. noload=emgd -&amp;gt; do not load emgd module)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Xres=1024x768&lt;/strong&gt; --&amp;gt; change the default X resolution (for EMGD drivers only)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;changes=DIRECTORY&lt;/strong&gt; --&amp;gt; save all the changes into a target directory instead of PixieLive4 (using multiple changes directories you can create a multi-user system)&lt;/li&gt;
&lt;/ul&gt;


&lt;h4&gt;As usual PixieLive comes with a big software selection:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Desktop environments:
&lt;ul&gt;
&lt;li&gt;Gnome-2.32 (default)&lt;/li&gt;
&lt;li&gt;Enlightenment-0.17&lt;/li&gt;
&lt;li&gt;Openbox&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Development:
&lt;ul&gt;
&lt;li&gt;arduino&lt;/li&gt;
&lt;li&gt;gcc&lt;/li&gt;
&lt;li&gt;qt-creator&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Games:
&lt;ul&gt;
&lt;li&gt;Crack-attack&lt;/li&gt;
&lt;li&gt;Battle for Wesnoth&lt;/li&gt;
&lt;li&gt;Hedgewars (Worms-like game)&lt;/li&gt;
&lt;li&gt;ZSnes (SNES emulator)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Graphics:
&lt;ul&gt;
&lt;li&gt;Darktable (RAW images editor)&lt;/li&gt;
&lt;li&gt;GIMP-2.8 (Image editor)&lt;/li&gt;
&lt;li&gt;Geeqie (Image Viewer)&lt;/li&gt;
&lt;li&gt;Gtkam (Download your images from the camera)&lt;/li&gt;
&lt;li&gt;Inkscape (Vector graphics editor)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Editors:
&lt;ul&gt;
&lt;li&gt;gVim&lt;/li&gt;
&lt;li&gt;Emacs&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Office:
&lt;ul&gt;
&lt;li&gt;Calibre (E-book library manager)&lt;/li&gt;
&lt;li&gt;Freemind (Mind-mapping software)&lt;/li&gt;
&lt;li&gt;LibreOffice-4 (Free office suite)&lt;/li&gt;
&lt;li&gt;LaTeX&lt;/li&gt;
&lt;li&gt;Lyx (Frontend for LaTeX)&lt;/li&gt;
&lt;li&gt;Osmo (Personal Organizer)&lt;/li&gt;
&lt;li&gt;Scribus (Professional Desktop Publishing, CMYK for offset printing)&lt;/li&gt;
&lt;li&gt;Texmaker (LaTeX development Environment)&lt;/li&gt;
&lt;li&gt;TeXstudio (LaTeX development Environment)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Internet:
&lt;ul&gt;
&lt;li&gt;Chromium (Open-source version of Google Chrome web browser)&lt;/li&gt;
&lt;li&gt;Claws-mail (Mail reader)&lt;/li&gt;
&lt;li&gt;Copy.com (Online files syncing)&lt;/li&gt;
&lt;li&gt;Deluge (BitTorrent client)&lt;/li&gt;
&lt;li&gt;FileZilla (FTP client)&lt;/li&gt;
&lt;li&gt;Firefox (Web broswer, for license problems called Aurora in PixieLive)&lt;/li&gt;
&lt;li&gt;Liferea (News, feed RSS reader)&lt;/li&gt;
&lt;li&gt;Opera (Web browser)&lt;/li&gt;
&lt;li&gt;Pidgin (Chat and istant messaging)&lt;/li&gt;
&lt;li&gt;Skype (Chat, instant&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;messaging and VoIP client)
&lt;br /&gt;**Thunderbird (Mail and news reader, for license problems called EarlyBird in PixieLive)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multimedia:
&lt;ul&gt;
&lt;li&gt;Audacity (Record and edit audio files)&lt;/li&gt;
&lt;li&gt;Cheese (Take photos and videos with the webcam)&lt;/li&gt;
&lt;li&gt;Mplayer (Media player)&lt;/li&gt;
&lt;li&gt;Rhythmbox (Audio player and organizer)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Network Analysis:
&lt;ul&gt;
&lt;li&gt;Aircrack-ng&lt;/li&gt;
&lt;li&gt;Ettercap&lt;/li&gt;
&lt;li&gt;Kismet&lt;/li&gt;
&lt;li&gt;Metasploit&lt;/li&gt;
&lt;li&gt;Nmap&lt;/li&gt;
&lt;li&gt;Reaver&lt;/li&gt;
&lt;li&gt;Zenmap&lt;/li&gt;
&lt;li&gt;Wireshark&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Academic/Statistic Analisys:
&lt;ul&gt;
&lt;li&gt;Gnuplot&lt;/li&gt;
&lt;li&gt;Octave&lt;/li&gt;
&lt;li&gt;R&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Various:
&lt;ul&gt;
&lt;li&gt;Docky (The finest dock no money can buy)&lt;/li&gt;
&lt;li&gt;Wine (For windows programs)&lt;/li&gt;
&lt;li&gt;GParted (Partition manager)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;h4&gt;Notes:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;To &lt;strong&gt;install it to an USB pendrive&lt;/strong&gt; follow &lt;a href=&quot;http://pixielive.org/dotclear/index.php?pages/How-To-install-on-a-USB-Pendrive&quot;&gt;this guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;You can change users passwords and save them with the &quot;Save System Settings (/etc)&quot; program
&lt;ul&gt;
&lt;li&gt;Default user:
&lt;ul&gt;
&lt;li&gt;Username: &lt;strong&gt;pixielive&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Password: &lt;strong&gt;pixielive&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Default root access:
&lt;ul&gt;
&lt;li&gt;Username: &lt;strong&gt;root&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Password: &lt;strong&gt;toor&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;h4&gt;Tanks:&lt;/h4&gt;

&lt;p&gt;&lt;del&gt;*If you want to tank me for my work, registering a free account at &lt;a href=&quot;https://copy.com/?r=tEP9h1&quot;&gt;https://copy.com/?r=tEP9h1&lt;/a&gt; you will obtain 20GB of free online storage and they will add 5GB to my account.&lt;/del&gt;
&lt;del&gt;*You should use the client once (the one provided with PixieLive4 is ok, or download and install it from the website) to obtain the 5GB bonus.&lt;/del&gt;&lt;/p&gt;


&lt;h3&gt;Download: &lt;a href=&quot;http://pixielive.org/PixieLive4.iso&quot;&gt;PixieLive4.iso&lt;/a&gt;&lt;/h3&gt;


&lt;h4&gt;Disclamer:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;I decline any liability for persons, property damage or especially direct, indirect, immediate or subsequent pecuniary loss which may result from the use of PixieLive4. Especially excluded is liability for hardware damage, loss of data, alteration of data, or downtime.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/bootloader.png&quot; title=&quot;bootloader.png&quot;&gt;&lt;img src=&quot;http://pixielive.org/dotclear/public/bootloader.png&quot; alt=&quot;bootloader.png&quot; title=&quot;bootloader.png, Nov 2013&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/Links.png&quot; title=&quot;Links.png&quot;&gt;&lt;img src=&quot;http://pixielive.org/dotclear/public/Links.png&quot; alt=&quot;Links.png&quot; title=&quot;Links.png, Nov 2013&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://pixielive.org/dotclear/public/SaveSettings.png&quot; title=&quot;SaveSettings.png&quot;&gt;&lt;img src=&quot;http://pixielive.org/dotclear/public/SaveSettings.png&quot; alt=&quot;SaveSettings.png&quot; style=&quot;float:right; margin: 0 0 1em 1em;&quot; title=&quot;SaveSettings.png, Nov 2013&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive4 almost ready</title>
      <link href="http://pixielive.org/index.php?post/2013/10/28/PixieLive4-almost-ready" rel="alternate" type="text/html" title="PixieLive4 almost ready" />
      <id>urn:md5:7abb5683e5457f399e5cbd55d6e8351f</id>
      <published>2013-10-28T14:53:00+01:00</published>
              <updated>2013-11-20T00:41:20+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
                  <content type="html">&lt;p&gt;Good evening PixieLive users, a new version is on the way!&lt;/p&gt; &lt;p&gt;I'm trying to fix an issue with fglrx Radeon HD drivers (ati-drivers) which causes X to crash when starting firefox (and other softwares) on a Radeon HD system with AMD processor and is probably related to the CFLAGS i used, so I'm re-compiling the system with generic (a.k.a. safer) CFLAGS, cross your fingers.&lt;/p&gt;


&lt;p&gt;You may ask &quot;why PixieLive4 if there were no PixieLive3?&quot;&lt;/p&gt;


&lt;p&gt;Well, because a lot of time passed since i released the latest stable release (PixieLive2) and the new version will bring LibreOffice-4, so --&amp;gt; PixieLive4&lt;/p&gt;


&lt;h3&gt;Sneaky Peek into PixieLive4 new features:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Encrypted data storage&lt;/li&gt;
&lt;li&gt;nVidia Optimus support&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://copy.com/?r=tEP9h1&quot;&gt;Copy.com&lt;/a&gt;  synced storage&lt;/li&gt;
n&lt;li&gt;Claws-mail (light email-client IMAP,POP3,SMTP, much lighter than thunderbird)&lt;/li&gt;
&lt;li&gt;Continuous file saving for email clients (you can use thunderbird or claws-mail on your live system)&lt;/li&gt;
&lt;li&gt;Save Settings for every program separately, On-Demand&lt;/li&gt;
&lt;li&gt;Academic and Development Software (R, octave, LaTeX, qt-creator, gnuplot, arduino)&lt;/li&gt;
&lt;li&gt;Support for every graphic card, not only for Netbooks (hopefully, i have to fix the AMD-Radeon issue)&lt;/li&gt;
&lt;li&gt;The whole software selection will be customizable by removing unneeded packages&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;&lt;strong&gt;Dropbox&lt;/strong&gt; will be replaced with Copy.com&lt;/h3&gt;

&lt;p&gt;due to an issue while syncing on the live system.&lt;/p&gt;


&lt;p&gt;&lt;a href=&quot;https://copy.com/?r=tEP9h1&quot;&gt;Copy.com&lt;/a&gt; comes with &lt;strong&gt;15GB of free space&lt;/strong&gt;, if you register using my &lt;strong&gt;referral link&lt;/strong&gt; &lt;a href=&quot;https://copy.com/?r=tEP9h1&quot; title=&quot;https://copy.com/?r=tEP9h1&quot;&gt;https://copy.com/?r=tEP9h1&lt;/a&gt; we will get both &lt;strong&gt;5GB&lt;/strong&gt; of free space (
&lt;strong&gt;15+5=20GB&lt;/strong&gt; of free online storage)&lt;/p&gt;


&lt;p&gt;Other important software updates:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Gimp-2.8 (brings the long waited &quot;Single Window Mode&quot;)&lt;/li&gt;
&lt;li&gt;Firefox-24&lt;/li&gt;
&lt;li&gt;LibreOffice-4&lt;/li&gt;
&lt;li&gt;Scribus (Desktop publishing with CMYK support)&lt;/li&gt;
&lt;li&gt;Arduino (program your arduino everywhere, you just need to bring your PixieLive4 pendrive system with you)&lt;/li&gt;
&lt;li&gt;Hedgewars (do you remember Worms? One of the best games ever, here we have a free clone)&lt;/li&gt;
&lt;/ul&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive3-RC1 direct download</title>
      <link href="http://pixielive.org/index.php?post/2013/05/08/PixieLive3-RC1-direct-download" rel="alternate" type="text/html" title="PixieLive3-RC1 direct download" />
      <id>urn:md5:fdb4ad45f749ce4696c85e0e32be3c42</id>
      <published>2013-05-08T09:34:00+02:00</published>
              <updated>2013-11-11T13:05:50+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                  <content type="html">&lt;p&gt;Since LinuxTracker is down, i provide a direct download link&lt;/p&gt; &lt;h4&gt;Direct Download Link: &lt;a href=&quot;http://www.pixielive.org/PixieLive3RC1.iso&quot;&gt;PixieLive3RC1.iso&lt;/a&gt;&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;md5sum&lt;/strong&gt;: f08288de176021572cdf929846647eca *PixieLive3RC1.iso&lt;/p&gt;


&lt;p&gt;Once downloaded remember to check the md5sum of the iso (md5sum -b PixieLive3RC1.iso) to make sure it is not corrupted&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive3RC1, modules cutomization</title>
      <link href="http://pixielive.org/index.php?post/2013/04/11/PixieLive3-RC1%2C-modules-cutomization" rel="alternate" type="text/html" title="PixieLive3RC1, modules cutomization" />
      <id>urn:md5:288788a5655fdc80fdfb6a31ab1d51a3</id>
      <published>2013-04-11T08:00:00+02:00</published>
              <updated>2013-04-11T11:39:05+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>How-To</dc:subject>
                  <content type="html">&lt;p&gt;A quick explanation on how to customize the modules in your Pendrive, removing unnecessary programs to earn some space.&lt;/p&gt; &lt;p&gt;Some of you may wonder why i included so many softwares in a live distro, the answer is:&lt;/p&gt;

&lt;h4&gt;Because you can select them by yourself!!!&lt;/h4&gt;

&lt;p&gt;If you peek into the PixieLive3RC1/modules directory you will notice a strange code on modules names.
They are numbered.  The numbering system is a code which tells you the modules dependencies.&lt;/p&gt;


&lt;h4&gt;There are 5 different modules categories (Identified by the starting letter).&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;B&lt;/strong&gt; - Basic modules
&lt;ul&gt;
&lt;li&gt;don't touch them, they are always needed by the system&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S&lt;/strong&gt; - Single modules
&lt;ul&gt;
&lt;li&gt;they doesn't require any other module&lt;/li&gt;
&lt;li&gt;they are not required by anyone else&lt;/li&gt;
&lt;li&gt;you can freely remove them&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;C&lt;/strong&gt; - 
Children modules
&lt;ul&gt;
&lt;li&gt;they are not required by anyone&lt;/li&gt;
&lt;li&gt;you can remove them if you don't need them&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;G&lt;/strong&gt; - Grandparent modules
&lt;ul&gt;
&lt;li&gt;they are required by some other modules (type C or P)&lt;/li&gt;
&lt;li&gt;they don't require any other module&lt;/li&gt;
&lt;li&gt;before removing them you should remove any other program which require them&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;P&lt;/strong&gt; - Parent Modules
&lt;ul&gt;
&lt;li&gt;they are required by some  other modules (type C or P)&lt;/li&gt;
&lt;li&gt;they require some other module&lt;/li&gt;
&lt;li&gt;before removing them you should remove any other program which require them (type C or P)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After the name there is an additional code which describe the dependencies&lt;/p&gt;


&lt;h4&gt;Dependencies code:&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;R&lt;/strong&gt; - requires
&lt;ul&gt;
&lt;li&gt;packages required by this package&lt;/li&gt;
&lt;li&gt;you can't remove them or this package will not work anymore&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;I&lt;/strong&gt; - Is required
&lt;ul&gt;
&lt;li&gt;packages which 
require this package&lt;/li&gt;
&lt;li&gt;if you remove this package, they will not work anymore&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it!&lt;/p&gt;


&lt;h4&gt;A practical example:&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;P35_imagemagick-6.7.8.7_RP34G47G61_IC04P40C26.lzm&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;parent module
&lt;ul&gt;
&lt;li&gt;it require other modules&lt;/li&gt;
&lt;li&gt;it is required by other modules&lt;/li&gt;
&lt;li&gt;you will have to work a bit before removing it&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;is required by
&lt;ul&gt;
&lt;li&gt;C04 - C04_calibre-0.9.20_RP39P38G54G58P35.lzm&lt;/li&gt;
&lt;li&gt;P40 - P40_inkscape-0.48.4_RG51G48P35G61G62G59_IC26.lzm&lt;/li&gt;
&lt;li&gt;C26 - C26_lyx-2.0.5.1_RP35G55G42P37G48P40G59.lzm (it's in the LaTeX directory)&lt;/li&gt;
&lt;li&gt;if you remove P35_imagemagick these programs will not work properly anymore&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;requires
&lt;ul&gt;
&lt;li&gt;P34 - P34_lensfun-0.2.5-r2_RG59_IC05P35.lzm&lt;/li&gt;
&lt;li&gt;G47 - G47_exiv2-0.23-r1_IC29C05P35C23.lzm&lt;/li&gt;
&lt;li&gt;G61 - G61_lcms-1.19_IP40P35.lzm&lt;/li&gt;
&lt;li&gt;you can't remove these packages or P35_imagemagick will stop working properly&lt;/li&gt;
&lt;/ul&gt;&lt;/
li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Paying attention to the dependencies indicated on the packages names you can easily customize you image.&lt;/p&gt;


&lt;h4&gt;Notes:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Some packages are grouped in the LaTeX subdirectory for convenience, you can create your own groups (subdirectories), they doesn't affect the module loading in any way.&lt;/li&gt;
&lt;li&gt;I created the LaTeX group so who doesn't need LaTeX can easily remove all the packages related to it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Open for discussion!&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive3RC1 Released</title>
      <link href="http://pixielive.org/index.php?post/2013/04/08/PixieLive3Rc1-Released" rel="alternate" type="text/html" title="PixieLive3RC1 Released" />
      <id>urn:md5:0c0344fb8ea8c4ecc0d94b31477f0ae9</id>
      <published>2013-04-08T22:56:00+02:00</published>
              <updated>2013-11-15T08:52:06+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                    <dc:subject>development</dc:subject>
              <dc:subject>EMGD</dc:subject>
              <dc:subject>GMA500</dc:subject>
              <dc:subject>Live</dc:subject>
              <dc:subject>netbook</dc:subject>
              <dc:subject>poulsbo</dc:subject>
              <dc:subject>psb</dc:subject>
              <dc:subject>update</dc:subject>
            <content type="html">&lt;p&gt;After a long time, PixieLive is back with a brand new release candidate.
Most of the requested features were added (Chinese websites support, docky, rhythmbox, calibre, various network drivers).
As usual the gma500 (a.k.a. poulsbo, psb) is supported (using the emgd-1.16 driver)&lt;/p&gt;

&lt;h3&gt;Highlights:&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Settings saved in several different ways (if the boot device is writable):
&lt;ul&gt;
&lt;li&gt;some directories in the $HOME are mounted in the PixieLive3RC1 directory on your pendrive (Desktop, Documents, Downloads, Music, Pictures, Templates, Videos)&lt;/li&gt;
&lt;li&gt;on demand save 
settings  (for normal settings, as usual in PixieLive)&lt;/li&gt;
&lt;li&gt;live changes, for data and settings which change frequently (email {yes we have thunderbird}, dropbox {yes, it saves on your pendrive}, sticky notes, calibre, torrents, calendar {osmo}, wifi networks)&lt;/li&gt;
&lt;li&gt;encrypted settings (for sensitive data {browsers, email, dropbox settings, pidgin, skype, filezilla, wifi passwords})&lt;/li&gt;
&lt;li&gt;encrypted storage (~/Private directory encrypted, so you can safely save your sensitive documents on you pendrive)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Dropbox (which saves automatically on you pendrive)&lt;/li&gt;
&lt;li&gt;Thunderbird (which saves automatically on you pendrive)&lt;/li&gt;
&lt;li&gt;Enlightenment (ultra light desktop environment)&lt;/li&gt;
&lt;/ul&gt; &lt;p&gt;[PixieLive3-RC1.torrent!!!Cheatcodes (to be specified on the bootloader &quot;blue&quot; screen):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;fulllive&lt;/strong&gt; -&amp;gt; disable every kind of persistent changes, nothing will be saved on your pendrive&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;nobind&lt;/strong&gt; -&amp;gt; doesn't bind mount the data directories from the Pendrive to the $HOME&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;nochanges&lt;/strong&gt; -&amp;gt; doesn't use the settings saved &quot;on-demand&quot;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;nolivechanges&lt;/strong&gt; -&amp;gt; doesn't use the live_changes (settings saved automatically, for email, sticky notes, calendar, dropbox and calibre)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;encfs&lt;/strong&gt; -&amp;gt; activate the encryption for sensitive data (changes, live_changes and directory Private), it will ask for a password&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;unsafepasswords&lt;/strong&gt; -&amp;gt; allow the save-settings script to save unencrypted sensitive data (i.e. even if encfs 
is not used)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;noload=packages,list&lt;/strong&gt; &amp;gt; do not load the specified .lzm modules (e.g. noload=emgd -&amp;gt; do not load emgd-1.16.lzm module, the gma500_gfx kernel module will be used instead, this coud work also for gma600)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;keepxorgconf&lt;/strong&gt; -&amp;gt; avoid the system to replace the xorg.conf (if you saved it) when you using the emgd driver&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;zram&lt;/strong&gt; -&amp;gt; enable zram (ram compression system) system&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;X=(no,e17,openbox,gnome,default)&lt;/strong&gt; -&amp;gt; select the default desktop manager (&quot;no&quot; means X will not be started)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Xemgd=1024x768&lt;/strong&gt; -&amp;gt; change the default resolution for the emgd driver&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;As usual PixieLive comes with a big software selection:&lt;/h3&gt;


&lt;h4&gt;Desktop environments:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Gnome-2.32.1 (default, with openbox as windows manager)&lt;/li&gt;
&lt;li&gt;Enlightenment-0.17.1&lt;/li&gt;
&lt;li&gt;Openbox&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Development:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;gcc&lt;/li&gt;
&lt;li&gt;qt-creator&lt;/li&gt;
&lt;/ul&gt;

n&lt;h4&gt;Games:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Crack-attack&lt;/li&gt;
&lt;li&gt;Battle for Wesnoth&lt;/li&gt;
&lt;li&gt;ZSnes (SNES emulator)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Graphics:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Darktable (RAW images editor)&lt;/li&gt;
&lt;li&gt;GIMP (Image editor)&lt;/li&gt;
&lt;li&gt;Geeqie (Image Viewer)&lt;/li&gt;
&lt;li&gt;Gtkam (Download your images from the camera)&lt;/li&gt;
&lt;li&gt;Inkscape (Vector graphics editor)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Editors:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;gVim&lt;/li&gt;
&lt;li&gt;Emacs&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Office:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Calibre (E-book library manager)&lt;/li&gt;
&lt;li&gt;Freemind (Mind-mapping software)&lt;/li&gt;
&lt;li&gt;LibreOffice (Free office suite)&lt;/li&gt;
&lt;li&gt;LaTeX&lt;/li&gt;
&lt;li&gt;Lyx (Frontend for LaTeX)&lt;/li&gt;
&lt;li&gt;Osmo (Personal Organizer)&lt;/li&gt;
&lt;li&gt;Texmaker (LaTeX development Environment)&lt;/li&gt;
&lt;li&gt;TeXstudio (LaTeX development Environment)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Internet:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Chromium (Open-source version of Google Chrome web browser)&lt;/li&gt;
&lt;li&gt;Deluge (BitTorrent client)&lt;/li&gt;
&lt;li&gt;Dropbox (Online files syncing)&lt;/li&gt;
&lt;li&gt;FileZilla (FTP client)&lt;/li&gt;
&lt;li&gt;Firefox (Web broswer, for license problems 
called Aurora in PixieLive)&lt;/li&gt;
&lt;li&gt;Liferea (News, feed RSS reader)&lt;/li&gt;
&lt;li&gt;Opera (Web browser)&lt;/li&gt;
&lt;li&gt;Pidgin (Chat and istant messaging)&lt;/li&gt;
&lt;li&gt;Skype (Chat, instant messaging and VoIP client)&lt;/li&gt;
&lt;li&gt;Thunderbird (Mail and news reader, for license problems called EarlyBird in PixieLive)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Multimedia:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Audacity (Record and edit audio files)&lt;/li&gt;
&lt;li&gt;Cheese (Take photos and videos with the webcam)&lt;/li&gt;
&lt;li&gt;Mplayer (Media player)&lt;/li&gt;
&lt;li&gt;Rhythmbox (Audio player and organizer)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Network Analysis:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Aircrack-ng&lt;/li&gt;
&lt;li&gt;Ettercap&lt;/li&gt;
&lt;li&gt;Kismet&lt;/li&gt;
&lt;li&gt;Metasploit&lt;/li&gt;
&lt;li&gt;Nmap&lt;/li&gt;
&lt;li&gt;Zenmap&lt;/li&gt;
&lt;li&gt;Wireshark&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Various:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Docky (The finest dock no money can buy)&lt;/li&gt;
&lt;li&gt;Wine (For windows programs)&lt;/li&gt;
&lt;li&gt;GParted (Partition manager)&lt;/li&gt;
&lt;li&gt;xvkbd (Virtual Keyboard for touchscreens)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Known bugs:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;RadeonHD cards are known to have some problems loading, if you 
can solve them, please let me know&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Notes:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;If you want to try enlightenment you will have to logout from gnome, select enlightenment as session type, and login or use the X=e17 cheatcode&lt;/li&gt;
&lt;li&gt;You can change users passwords and save them with the &quot;Save System Settings (/etc)&quot; program
&lt;ul&gt;
&lt;li&gt;Default Username: pixielive     Password: pixielive&lt;/li&gt;
&lt;li&gt;Default root Username: root          Password: toor&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;If you want to test it on a GMA600 try filtering the emgd package with the cheatcode noload=emgd&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Installation&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;To install on a USB pendrive just:
&lt;ul&gt;
&lt;li&gt;extract the content of the iso on the pendrive&lt;/li&gt;
&lt;li&gt;DO NOT RENAME the PixieLive3RC1 directory&lt;/li&gt;
&lt;li&gt;change directory to PixieLive3RC1/boot&lt;/li&gt;
&lt;li&gt;run the script ./bootinst.sh&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Disclamer:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;This is a Release Candidate, it's not supposed to be 100% stable... I decline any liability for persons, property 
damage or especially direct, indirect, immediate or subsequent pecuniary loss which may result from the use of PixieLive3RC1. Especially excluded is liability for hardware damage, loss of data, alteration of data, or downtime.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Download Torrent&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/PixieLive3-RC1.torrent&quot;&gt;PixieLive3-RC1.torrent&lt;/a&gt;&lt;/p&gt;


&lt;h3&gt;Donations&lt;/h3&gt;

&lt;p&gt;If this software helped you enough, feel free to donate.&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive3-beta2 incoming, tell me what you need</title>
      <link href="http://pixielive.org/index.php?post/2013/01/11/PixieLive-3-beta2-incoming%2C-tell-me-what-you-need" rel="alternate" type="text/html" title="PixieLive3-beta2 incoming, tell me what you need" />
      <id>urn:md5:56bf118776ad5fe768dc870e7b1a24a5</id>
      <published>2013-01-11T10:34:00+01:00</published>
              <updated>2013-11-11T13:05:44+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>News</dc:subject>
                  <content type="html">&lt;h4&gt;I'm preparing the new version of PixieLive, tell me the software you need, so i can include it from the beginning!&lt;/h4&gt; &lt;p&gt;The work focuses mostly on flexible packaging of modules, allowing everyone to remove all the unneeded software obtaining a smaller system, but allowing who want more features to have them.&lt;/p&gt;


&lt;p&gt;The default Desktop Manager will be probably the new enlightenment-0.17 (E17) since it's really efficient. Anyway gnome-2 will be included as usual.&lt;/p&gt;



&lt;h4&gt;I will include every driver you ask for, if it's included in the 3.6.11 kernel or if it's relatively easy to install, just ask for it!&lt;/h4&gt;


&lt;p&gt;(for example I have been asked to add the RTL8169 driver for the Fit-PC2...)&lt;/p&gt;


&lt;h4&gt;If you need some specific software please ask for it in the comments!&lt;/h4&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive-3-alpha</title>
      <link href="http://pixielive.org/index.php?post/2012/02/23/PixieLive-3-alpha" rel="alternate" type="text/html" title="PixieLive-3-alpha" />
      <id>urn:md5:7a697082928f2e445fe9b9975af6809e</id>
      <published>2012-02-23T09:15:00+01:00</published>
              <updated>2013-11-15T08:52:11+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                    <dc:subject>development</dc:subject>
              <dc:subject>EMGD</dc:subject>
              <dc:subject>GMA500</dc:subject>
              <dc:subject>Live</dc:subject>
              <dc:subject>update</dc:subject>
            <content type="html">&lt;p&gt;Since many of you asked for it, the alpha is here!&lt;/p&gt; &lt;h3&gt;Features:&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;EMGD-1.10&lt;/li&gt;
&lt;li&gt;kernel-3.2.5&lt;/li&gt;
&lt;li&gt;gPodder&lt;/li&gt;
&lt;li&gt;Rhythmbox&lt;/li&gt;
&lt;li&gt;every program updated&lt;/li&gt;
&lt;li&gt;most of the standard features of PixieLive-2&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Known bugs:&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Some warnings shown during boot and shutdown, had no time to correct them, most of them are due to the change to openrc&lt;/li&gt;
&lt;li&gt;No suspend to disk (hibernation) because tuxonice is not ready for kernel-3.2.5&lt;/li&gt;
&lt;li&gt;Some hardware support could be missing&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Help is welcome:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;If you know how to fix some problems, mainly boot and shutdown errors please let me know, i will have really few time for the next two 
months&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you have hardware which should be included in the kernel let me know, i will need the output of &quot;lspci; lspci -n; lsusb&quot;.
It would be even better if you can tell me what to enable in the kernel configuration.&lt;/p&gt;



&lt;h4&gt;Alpha means under development, let me know how stable it is :-D&lt;/h4&gt;


&lt;h2&gt;Download: &lt;a href=&quot;http://pixielive.org/PixieLive3-alpha.tar&quot;&gt;PixieLive3-alpha.tar&lt;/a&gt;&lt;/h2&gt;


&lt;p&gt;md5sum: e053cb8812b09190ccec5c1869c1051b *PixieLive-3-alpha.tar&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>Direct Download for PixieLive-2.0</title>
      <link href="http://pixielive.org/index.php?post/2012/01/30/Direct-Download-for-PixieLive-2.0" rel="alternate" type="text/html" title="Direct Download for PixieLive-2.0" />
      <id>urn:md5:50f75e8cfe0c0fdf878ea45f3bac45f2</id>
      <published>2012-01-30T16:12:00+01:00</published>
              <updated>2013-11-18T12:08:24+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Update</dc:subject>
                    <dc:subject>backup</dc:subject>
              <dc:subject>EMGD</dc:subject>
              <dc:subject>GMA500</dc:subject>
              <dc:subject>update</dc:subject>
            <content type="html"> &lt;p&gt;Since we had some problems with torrent, a direct download link for PixieLive-2.0 is available:
&lt;a href=&quot;http://pixielive.org/PixieLive-2.0.tar&quot;&gt;http://pixielive.org/PixieLive-2.0.tar&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>N64 Emulator for PixieLive</title>
      <link href="http://pixielive.org/index.php?post/2012/01/09/N64-Emulator-for-PixieLive" rel="alternate" type="text/html" title="N64 Emulator for PixieLive" />
      <id>urn:md5:d25e0f3b19e33ac6719a07354aaf282f</id>
      <published>2012-01-09T11:08:00+01:00</published>
              <updated>2013-04-02T09:31:29+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Games</dc:subject>
                  <content type="html"> &lt;p&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/Games/mupen64plus-1.5-r1.lzm&quot;&gt;mupen64plus-1.5-r1.lzm&lt;/a&gt; is now available for &lt;a href=&quot;http://pixielive.org/dotclear/public/Games/mupen64plus-1.5-r1.lzm&quot;&gt;download&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;quoting the &lt;a href=&quot;http://code.google.com/p/mupen64plus/&quot;&gt;Mupen64Plus site&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Mupen64Plus is a cross-platform plugin-based N64 emulator which is capable of accurately playing many games. Included are four MIPS R4300 CPU emulators, with dynamic recompilers for 32-bit x86 and 64-bit amd64 systems, and necessary plugins for audio, graphical rendering (RDP), signal co-processor (RSP), and input. There is 1 included OpenGL video plugin, called RiceVideo. There are 3 other excellent video plugins being maintained by wahrhaft, called Arachnoid, Glide64, and Z64&lt;/p&gt;&lt;/blockquote&gt;


&lt;p&gt;&lt;em&gt;It require deluge and ffmpeg to be installed on PixieLive (they are by default)&lt;/em&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>Qt-Creator-2.2.1 for PixieLive-2.0</title>
      <link href="http://pixielive.org/index.php?post/2011/12/05/Qt-Creator-2.2.1-for-PixieLive-2.0" rel="alternate" type="text/html" title="Qt-Creator-2.2.1 for PixieLive-2.0" />
      <id>urn:md5:53ab30b95a4efd5bc42a5574a90bc04a</id>
      <published>2011-12-05T12:16:00+01:00</published>
              <updated>2013-04-02T09:32:04+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Application</dc:subject>
                    <dc:subject>application</dc:subject>
              <dc:subject>development</dc:subject>
              <dc:subject>qt</dc:subject>
            <content type="html">&lt;h3&gt;Just in case someone need an IDE for PixieLive2 (i do), i prepared a module containing &lt;a href=&quot;http://qt.nokia.com/products/developer-tools/&quot;&gt;Qt Creator IDE&lt;/a&gt;.&lt;/h3&gt;


&lt;p&gt;quoting from the qt website:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Qt Creator is a cross-platform integrated development environment (IDE) tailored to the needs of Qt developers.&lt;/p&gt;&lt;/blockquote&gt; &lt;ul&gt;
&lt;li&gt;all the needed libraries are contained into the module, &lt;strong&gt;even qt-libs-4.7.2&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;the package include the usual Save Qt-Creator Settings menu entry&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;so if you want to include this module into your system:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;you have to &lt;strong&gt;shutdown&lt;/strong&gt; PixieLive2&lt;/li&gt;
&lt;li&gt;you &lt;strong&gt;have to REMOVE&lt;/strong&gt; the old &lt;strong&gt;qt-core-4.6.3-r1.lzm&lt;/strong&gt; 
from your modules directory &lt;strong&gt;before&lt;/strong&gt; installing qt-creator.2.2.1&lt;/li&gt;
&lt;li&gt;then put &lt;a href=&quot;http://pixielive.org/dotclear/public/Applications-2.0/qt-creator-2.2.1-qt-4.7.2-included.lzm&quot;&gt;qt-creator-2.2.1-qt-4.7.2-included.lzm&lt;/a&gt; into your modules directory as usual&lt;/li&gt;
&lt;li&gt;boot PixieLive2 and enjoy your new IDE&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;i remember you to remove the old &lt;strong&gt;qt-core-4.6.3-r1.lzm&lt;/strong&gt; while PixieLive2 is &lt;strong&gt;NOT running&lt;/strong&gt; to avoid filesystem corruption&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>gtkdialog for PixieLive-2.0</title>
      <link href="http://pixielive.org/index.php?post/2011/06/17/gtkdialog-for-PixieLive-2.0" rel="alternate" type="text/html" title="gtkdialog for PixieLive-2.0" />
      <id>urn:md5:14f1809c38738f0d56dbb0d1e1787c2b</id>
      <published>2011-06-17T11:10:00+02:00</published>
              <updated>2013-04-05T10:05:08+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Application</dc:subject>
                    <dc:subject>application</dc:subject>
              <dc:subject>module</dc:subject>
              <dc:subject>update</dc:subject>
            <content type="html">&lt;p&gt;needed for &lt;strong&gt;Save Custom Settings&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;it allow to easily write dialog windows, it's needed is you want to use the Save Custom Settings function since i forgot to include it into the release&lt;/p&gt;


&lt;p&gt;download --&amp;gt; &lt;a href=&quot;http://pixielive.org/dotclear/public/Applications-2.0/gtkdialog.lzm&quot;&gt;gtkdialog.lzm&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive-2.0 Released!!!</title>
      <link href="http://pixielive.org/index.php?post/2011/05/18/PixieLive-2.0-Released%21%21%21" rel="alternate" type="text/html" title="PixieLive-2.0 Released!!!" />
      <id>urn:md5:9197b97fdfc32a5d9f86dda42145cc9d</id>
      <published>2011-05-18T18:31:00+02:00</published>
              <updated>2013-12-02T10:31:57+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                    <dc:subject>GMA500</dc:subject>
              <dc:subject>Live</dc:subject>
              <dc:subject>netbook</dc:subject>
              <dc:subject>poulsbo</dc:subject>
              <dc:subject>psb</dc:subject>
            <content type="html">&lt;h5&gt;Finally it's out! Fell free to download it&lt;/h5&gt;


&lt;h2&gt;Gentoo Linux + linux-live.org based live ditribution for GMA500 (aka poulsbo, psb) equipped netbooks.&lt;/h2&gt;


&lt;p&gt;It works on other kinds of hardware anyway, most of kernel drivers are compiled in.&lt;/p&gt; &lt;h3&gt;Features:&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Most Programs as separated modules&lt;/li&gt;
&lt;li&gt;Network Manager with VPN support&lt;/li&gt;
n&lt;li&gt;Bradcom Wireless Drivers&lt;/li&gt;
&lt;li&gt;LibreOffice&lt;/li&gt;
&lt;li&gt;BlueTooth modem support&lt;/li&gt;
&lt;li&gt;USB 3G modem support&lt;/li&gt;
&lt;li&gt;TOR (optional)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;included programs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;adobe-flash-10.2.152.27&lt;/li&gt;
&lt;li&gt;audacity-1.3.12&lt;/li&gt;
&lt;li&gt;chromium-10.0.648.133&lt;/li&gt;
&lt;li&gt;deluge-1.3.1&lt;/li&gt;
&lt;li&gt;ffmpeg-0.6_p25767&lt;/li&gt;
&lt;li&gt;filezilla-3.3.4.1&lt;/li&gt;
&lt;li&gt;firefox-3.6.15&lt;/li&gt;
&lt;li&gt;gimp-2.6.11-r1&lt;/li&gt;
&lt;li&gt;gnome-mplayer-1.0.0&lt;/li&gt;
&lt;li&gt;gnome-utils-2.32.0-r1&lt;/li&gt;
&lt;li&gt;gparted-0.5.2&lt;/li&gt;
&lt;li&gt;gqview-2.1.5&lt;/li&gt;
&lt;li&gt;gtkam-0.1.16.1&lt;/li&gt;
&lt;li&gt;imagemagick-6.6.5.6&lt;/li&gt;
&lt;li&gt;inkscape-0.48.0&lt;/li&gt;
&lt;li&gt;libreoffice-3.3.1&lt;/li&gt;
&lt;li&gt;libva-0.31.1_p4&lt;/li&gt;
&lt;li&gt;liferea-1.6.5&lt;/li&gt;
&lt;li&gt;mplayer-vaapi&lt;/li&gt;
&lt;li&gt;openbox-3.4.11.2&lt;/li&gt;
&lt;li&gt;opera-11.01.1190&lt;/li&gt;
&lt;li&gt;osmo-0.2.10&lt;/li&gt;
&lt;li&gt;pidgin-2.7.11&lt;/li&gt;
&lt;li&gt;skype-2.1.0.81&lt;/li&gt;
&lt;li&gt;wine-1.2.1&lt;/li&gt;
&lt;li&gt;wireless-security-software&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;How-Tos:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/index.php?pages/How-To-install-on-a-USB-Pendrive&quot;&gt;How-To install on USB 
Pendrive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/index.php?pages/How-to-install-on-HDD&quot;&gt;How to install on HDD&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;root password: toor&lt;/p&gt;


&lt;p&gt;download: &lt;a href=&quot;http://pixielive.org/PixieLive-2.0.torrent&quot;&gt;PixieLive-2.0.torrent&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;&lt;a href=&quot;http://pixielive.org/dotclear/index.php?pages/Additional-Applications-2.0&quot;&gt;Additional Applications 2.0&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive-2.0 RC1</title>
      <link href="http://pixielive.org/index.php?post/2011/04/07/PixieLive-2.0-RC1" rel="alternate" type="text/html" title="PixieLive-2.0 RC1" />
      <id>urn:md5:0bba61f22d35a187ccfa07cb3c3c3c65</id>
      <published>2011-04-07T11:45:00+02:00</published>
              <updated>2013-04-05T10:05:42+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                  <content type="html">&lt;p&gt;First and hopefully Last release candidate for PixieLive-2.0, many new features, and some fixes included:&lt;/p&gt; &lt;ul&gt;
&lt;li&gt;Most Programs as separated modules&lt;/li&gt;
&lt;li&gt;Network Manager with VPN support&lt;/li&gt;
&lt;li&gt;Bradcom Wireless Drivers (&lt;a href=&quot;http://pixielive.org/dotclear/public/RC1/modem-and-broadcom.lzm&quot;&gt;additional module&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;LibreOffice&lt;/li&gt;
&lt;li&gt;BlueTooth modem support&lt;/li&gt;
&lt;li&gt;USB 3G modem support (&lt;a href=&quot;http://pixielive.org/dotclear/public/RC1/modem-and-broadcom.lzm&quot;&gt;additional module&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;TOR (optional)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;included programs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;adobe-flash-10.2.152.27&lt;/li&gt;
&lt;li&gt;audacity-1.3.12&lt;/li&gt;
&lt;li&gt;chromium-10.0.648.133&lt;/li&gt;
&lt;li&gt;cwiid-20110107-r1&lt;/li&gt;
&lt;li&gt;deluge-1.3.1&lt;/li&gt;
&lt;li&gt;emacs-23.2-r2&lt;/li&gt;
&lt;li&gt;ffmpeg-0.6_p25767&lt;/li&gt;
&lt;li&gt;filezilla-3.3.4.1&lt;/li&gt;
&lt;li&gt;firefox-3.6.15&lt;/li&gt;
&lt;li&gt;gimp-2.6.11-r1&lt;/li&gt;
&lt;li&gt;gnome-mplayer-1.0.0&lt;/li&gt;
&lt;li&gt;gnome-utils-2.32.0-r1&lt;/
li&gt;
&lt;li&gt;gparted-0.5.2&lt;/li&gt;
&lt;li&gt;gqview-2.1.5&lt;/li&gt;
&lt;li&gt;gtkam-0.1.16.1&lt;/li&gt;
&lt;li&gt;gtkperf-0.40&lt;/li&gt;
&lt;li&gt;gvim-7.3.50&lt;/li&gt;
&lt;li&gt;imagemagick-6.6.5.6&lt;/li&gt;
&lt;li&gt;inkscape-0.48.0&lt;/li&gt;
&lt;li&gt;libreoffice-3.3.1&lt;/li&gt;
&lt;li&gt;libva-0.31.1_p4&lt;/li&gt;
&lt;li&gt;liferea-1.6.5&lt;/li&gt;
&lt;li&gt;mesa-progs-8.0.1&lt;/li&gt;
&lt;li&gt;mplayer-vaapi&lt;/li&gt;
&lt;li&gt;openbox-3.4.11.2&lt;/li&gt;
&lt;li&gt;opera-11.01.1190&lt;/li&gt;
&lt;li&gt;osmo-0.2.10&lt;/li&gt;
&lt;li&gt;pidgin-2.7.11&lt;/li&gt;
&lt;li&gt;skype-2.1.0.81&lt;/li&gt;
&lt;li&gt;wine-1.2.1&lt;/li&gt;
&lt;li&gt;wireless-security-software&lt;/li&gt;
&lt;li&gt;zsnes-1.51-r2&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Additional Modules:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/RC1/modem-and-broadcom.lzm&quot;&gt;USB Modem and Broadcom Wireless Drivers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/RC1/wxGTK-2.8.10.1-r5.lzm&quot;&gt;wxGTK-2.8.10.1-r5&lt;/a&gt; needed to make audacity and filezilla to work, i forgot to include it into the release&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;How-Tos:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/index.php?pages/How-To-install-on-a-USB-Pendrive&quot;&gt;How-To install on USB Pendrive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/index.php?pages/
How-to-install-on-HDD&quot;&gt;How to install on HDD&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;fell free to test it and comment, more bug report ==&amp;gt; more bug fixes :-D&lt;/p&gt;


&lt;p&gt;md5sum: 530a3859a2641124a7f9197e4ff36d4a *PixieLive2-RC1.tar&lt;/p&gt;


&lt;p&gt;download --&amp;gt; &lt;a href=&quot;http://www.pixielive.org/PixieLive2-RC1.tar&quot;&gt;PixieLive2-RC1&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;alternative download link (on free file hosting site): &lt;a href=&quot;http://pdzq77.dl4free.com/en/&quot;&gt;PixieLive2-RC1.tar&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>DropBox for PixieLive-1.1beta2</title>
      <link href="http://pixielive.org/index.php?post/2011/02/16/DropBox-for-PixieLive-1.1beta2" rel="alternate" type="text/html" title="DropBox for PixieLive-1.1beta2" />
      <id>urn:md5:db30d14ee525bd9c3de94ea75af4dac3</id>
      <published>2011-02-16T14:59:00+01:00</published>
              <updated>2013-04-24T09:30:07+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Application</dc:subject>
                    <dc:subject>application</dc:subject>
              <dc:subject>backup</dc:subject>
              <dc:subject>module</dc:subject>
              <dc:subject>sync</dc:subject>
            <content type="html">&lt;p&gt;&lt;a href=&quot;http://db.tt/TPpZS7m&quot;&gt;DropBox&lt;/a&gt; is a free file hosting service able to sync your netbook, phone, tablet and desktop automatically.
2GB of free space to save your files, keep you devices synced, and share files with your friends (yes, you can share folders with your friends)&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/Applications/1.1/nautilus-dropbox-0.6.7-full.lzm&quot;&gt;Here&lt;/a&gt; you can find the module for PixieLive.&lt;/p&gt;


&lt;h3&gt;notes:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Since it sync your computer you should place your Dropbox folder into the Documents directory, which is saved on your pendrive and it will not be deleted at every reboot&lt;/li&gt;
&lt;li&gt;You can save your Dropbox settings as usual with the &lt;strong&gt;PixieLive--&amp;gt;Save Dropbox Settings&lt;/strong&gt; menu, to avoid to insert your username and password at every reboot&lt;/li&gt;
&lt;li&gt;If you use PixieLive with persistent changes you can place the Dropbox directory where you prefer and you don't need to use the Save Settings menu&lt;/li&gt;
&lt;li&gt;You start with 2GB, and you can get 250MB more registering with my &lt;a href=&quot;http://db.tt/TPpZS7m&quot;&gt;link&lt;/a&gt;, you can also get some more free space by completing &lt;a href=&quot;https://www.dropbox.com/free&quot;&gt;some more steps here&lt;/a&gt;, you can easily reach 3GB of free space.&lt;/li&gt;
&lt;li&gt;It could work also on 
PixieLive-1.0, not tested yet&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.dropbox.com/features&quot;&gt;Features&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you &lt;a href=&quot;http://db.tt/TPpZS7m&quot;&gt;register&lt;/a&gt; an account with this &lt;a href=&quot;http://db.tt/TPpZS7m&quot;&gt;link&lt;/a&gt;, you will get 250MB more to store your files, and &lt;strong&gt;you will give also 250MB more to me&lt;/strong&gt;.&lt;/p&gt;


&lt;p&gt;module download --&amp;gt; &lt;a href=&quot;http://pixielive.org/dotclear/public/Applications/1.1/nautilus-dropbox-0.6.7-full.lzm&quot;&gt;DropBox-1.0.20&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive-1.1beta2 is out</title>
      <link href="http://pixielive.org/index.php?post/2011/01/24/PixieLive-1.1beta2-is-out" rel="alternate" type="text/html" title="PixieLive-1.1beta2 is out" />
      <id>urn:md5:d9d87d433646fed8fa185ef60b9f1496</id>
      <published>2011-01-24T01:04:00+01:00</published>
              <updated>2013-04-02T09:32:08+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                    <dc:subject>EMGD</dc:subject>
              <dc:subject>GMA500</dc:subject>
              <dc:subject>update</dc:subject>
            <content type="html">&lt;p&gt;Waiting for the new EMGD driver (for xorg-1.9) i prepared this version, some new features inside:&lt;/p&gt; &lt;ul&gt;
&lt;li&gt;boot from iso: use &lt;strong&gt;iso=ISONAME.iso&lt;/strong&gt; cheatcode at boot&lt;/li&gt;
&lt;li&gt;boot from a specific device (with uuid) chatcode 
&lt;strong&gt;uuid=UUIDOFYOURDEVICE&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;chromium opera and firefox included&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;NetworkManager&lt;/strong&gt; with &lt;strong&gt;VPN&lt;/strong&gt; support&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;openbox&lt;/strong&gt; insted of metacity by default (60 fps more in glxgear on GMA500)&lt;/li&gt;
&lt;li&gt;Save Settings Integrated in every single package&lt;/li&gt;
&lt;li&gt;nvidia and ATI drivers included&lt;/li&gt;
&lt;li&gt;mplayer with vaapi works on some video formats (without vaapi should work always)&lt;/li&gt;
&lt;li&gt;a new cheatcode &lt;strong&gt;Xemgd=1024x768&lt;/strong&gt; allow you to set the resolution at boot on GMA500 cards&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;most of packages made for the 1.0 are already included, latex is not present at the moment, it's called beta just because there are some features i want to add, but it should be stable&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If you want to use an &lt;strong&gt;USB Stick modem&lt;/strong&gt;, add this module &lt;a href=&quot;http://pixielive.org/dotclear/public/Applications/1.1/usb_modeswitch.lzm&quot;&gt;usb_modeswitch.lzm&lt;/a&gt; in the modules directory&lt;/li&gt;
&lt;li&gt;OSMO personal organizer package: &lt;a href=&quot;http://pixielive.org/index.php?post/2011/01/24/
/dotclear/public/Applications/1.1/osmo-0.2.10.lzm&quot;&gt;OSMO-0.2.10&lt;/a&gt; (it saves changes automatically)&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;to enable libva on GMA500 you should add &lt;code&gt;libva-update&lt;/code&gt; to the boot parameter in boot/bootmenu.cfg after the &lt;code&gt;max_loop=256&lt;/code&gt; or just add it at boot pressing &lt;code&gt;TAB&lt;/code&gt; in the boot menu&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;download:&lt;a href=&quot;http://pixielive.org/Pixielive-1.1beta2.tar.gz&quot;&gt; Pixielive-1.1beta2.tar.gz&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;MD5: 72915a557abee392eece20585c1a163a *Pixielive-1.1beta2.tar.gz&lt;/p&gt;


&lt;p&gt;report bugs in comments please,&lt;/p&gt;


&lt;p&gt;Christian&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>KDE test: failed!</title>
      <link href="http://pixielive.org/index.php?post/2010/12/14/KDE-test%3A-failed%21" rel="alternate" type="text/html" title="KDE test: failed!" />
      <id>urn:md5:224492dc8bd190407aa3b51a5b93e1b9</id>
      <published>2010-12-14T08:43:00+01:00</published>
              <updated>2013-04-02T09:31:19+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>News</dc:subject>
                    <dc:subject>news</dc:subject>
            <content type="html">&lt;p&gt;I tried KDE-4.5.4 on PixieLive (with EMGD drivers) and...&lt;/p&gt; &lt;h2&gt;it failed!!!&lt;/h2&gt;


&lt;p&gt;Basically kwin failed, because on my EEEPC 1101HA (with GMA500), equipped with kernel 2.6.35 and EMGD-1.5 drivers with compositing enabled it wasn't able to show anything.
Without composition (a.k.a. Desktop Effects) it was 
working, but it was so slow to be unusable.&lt;/p&gt;


&lt;p&gt;So, the next release (coming soon) will stick to gnome-2.30, but it will include QT libs for programs which need them (e.g. skype)&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>Cups for PixieLive-1.0</title>
      <link href="http://pixielive.org/index.php?post/2010/10/31/Cups-for-PixieLive-1.0" rel="alternate" type="text/html" title="Cups for PixieLive-1.0" />
      <id>urn:md5:f31ada6ff65331d0c5773d5ad0a4d72a</id>
      <published>2010-10-31T14:56:00+01:00</published>
              <updated>2013-11-11T15:03:34+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Application</dc:subject>
                    <dc:subject>application</dc:subject>
              <dc:subject>module</dc:subject>
            <content type="html">&lt;p&gt;Common Unix Printing System, printing server&lt;/p&gt; &lt;p&gt;usage:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt; /etc/init.d/cupsd start&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;to start it once&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;rc-update add cupsd default&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;and then &quot;Save Runlevels Settings&quot; in the menu to run it automatically at every boot&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;http://localhost:631 to configure it after start (
username &quot;root&quot; password &quot;toor&quot;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/Applications/cups-1.3.11-r2.lzm&quot;&gt;cups-1.3.11-r2&lt;/a&gt;: Common Unix Printing System, printing server&lt;/p&gt;</content>
      
          </entry>
      <entry>
      <title>Audacity and Wine for PixieLive</title>
      <link href="http://pixielive.org/index.php?post/2010/10/26/Audacity-and-Wine-for-PixieLive" rel="alternate" type="text/html" title="Audacity and Wine for PixieLive" />
      <id>urn:md5:148edcad4d2349f85ebfd76e373bb0dd</id>
      <published>2010-10-26T11:59:00+02:00</published>
              <updated>2013-04-05T10:03:31+02:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Application</dc:subject>
                    <dc:subject>application</dc:subject>
              <dc:subject>module</dc:subject>
            <content type="html">&lt;p&gt;Two new programs for you, &lt;a href=&quot;http://www.winehq.org/&quot;&gt;wine&lt;/a&gt; (Wine Is Not an Emulator) is a software able to run windows programs under linux and &lt;a href=&quot;http://audacity.sourceforge.net&quot;&gt;audacity&lt;/a&gt; a Free Sound Editor and Recording Software&lt;/p&gt; &lt;p&gt;i remember you to put .lzm packages in the Pixielive/modules folder and reboot to get everything to work (&quot;Save Wine Settings&quot; and &quot;Save Audacity Settings&quot; included)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/Applications/audacity-1.3.8.lzm&quot;&gt;Audacity-1.3.8&lt;/a&gt;: Free Sound Editor and Recording&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://pixielive.org/dotclear/public/Applications/wine-1.1.44.lzm&quot;&gt;Wine-1.1.44&lt;/a&gt;: Run Windows applications on Linux&lt;/li&gt;
&lt;/ul&gt;</content>
      
          </entry>
      <entry>
      <title>PixieLive-1.1beta-1</title>
      <link href="http://pixielive.org/index.php?post/2010/10/16/PixieLive-1.1beta" rel="alternate" type="text/html" title="PixieLive-1.1beta-1" />
      <id>urn:md5:79900671fd65fda9dd8dc5477787b4d5</id>
      <published>2010-10-16T18:22:00+02:00</published>
              <updated>2013-11-13T18:58:33+01:00</updated>
                  <author>
        <name>Christian Lorandi</name>
      </author>
              <dc:subject>Release</dc:subject>
                    <dc:subject>EMGD</dc:subject>
            <content type="html">&lt;p&gt;The first beta release with EMGD-1.5 drivers is here!!!&lt;/p&gt; &lt;ul&gt;
&lt;li&gt;This is &lt;strong&gt;NOT&lt;/strong&gt; a stable release&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;no new features&lt;/strong&gt; added from ToDo list,&lt;/li&gt;
&lt;li&gt;Added &lt;strong&gt;tuxonice&lt;/strong&gt; for suspension + hibernation&lt;/li&gt;
&lt;li&gt;Added &lt;strong&gt;EMGD-1.5&lt;/strong&gt; drivers for Poulsbo&lt;/li&gt;
&lt;li&gt;Added other drivers (ATI (radeon and fglrx), NVIDIA (nv, nvidia, nouveau), INTEL (hopefully gmaXXXX wiill work))&lt;/li&gt;
&lt;li&gt;Added glxgears to test 3D performance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want to test it and give some feedback, download it and enjoy, if you want a stable release, stick to the 1.0&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;known bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;blueman is not working due to a dbus misconfiguration&lt;/li&gt;
&lt;li&gt;vlc is compiled without 
graphical interface&lt;/li&gt;
&lt;li&gt;mplayer is not present yet&lt;/li&gt;
&lt;li&gt;libva doesn't work with emgd at the moment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can change the emgd resolution by editing the PixieLive/rootcopy/etc/X11/xorg.conf.psb, if you computer is not 1366x768&lt;/p&gt;


&lt;h3&gt;This release is outdated, please try &lt;a href=&quot;http://pixielive.org/dotclear/index.php?post/2011/01/24/PixieLive-1.1beta2-is-out&quot;&gt;PixieLive-1.1beta2&lt;/a&gt;&lt;/h3&gt;


&lt;p&gt;&lt;strong&gt;Download&lt;/strong&gt;: &lt;a href=&quot;http://pixielive.org/pixielive-1.1beta.tar.gz&quot;&gt;pixielive-1.1beta.tar.gz&lt;/a&gt;&lt;/p&gt;</content>
      
          </entry>
  </feed>
