<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://www.stratosgear.com/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel>
        <title>stratosgear.com</title>
        <description></description>
        <link>http://www.stratosgear.com/</link>
        <lastBuildDate>Thu, 23 Feb 2012 02:56:10 +0200</lastBuildDate>
        <generator>FeedCreator 1.7.2-ppt DokuWiki</generator>
        <image>
            <url>http://www.stratosgear.com/lib/tpl/MrBertie-taratasy-1263040/images/favicon.ico</url>
            <title>stratosgear.com</title>
            <link>http://www.stratosgear.com/</link>
        </image>
        <item>
            <title>Ubuntu Snippets</title>
            <link>http://www.stratosgear.com/doku.php/computers/ubuntu/snippets</link>
            <description>This is my little Ubuntu recipe cookbook!

Changing the timezone


sudo dpkg-reconfigure tzdata


Create and mount xfs filesystem


$ sudo apt-get install xfsprogs
$ sudo mkfs.xfs /dev/sdf


Add to fstab:
/dev/sdf   /my/location   xfs  defaults,nobootwait,noatime    0    0
This was tested on Amazon EC2 with EBS volumes.</description>
            <author>stratos</author>
            <pubDate>Thu, 15 Dec 2011 02:41:43 +0200</pubDate>
        </item>
        <item>
            <title>Migrating greek table from mysql &lt; 4.1</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/migrate_mysql_4.1</link>
            <description>I do not remember how the tables were transferred from the old DB to the new (more likely through a mysqldump).

The end effect was that the tables in the 4.1 MySql Db had a collation of latin1_swedish_ci.



After backing up the affected tables, do:</description>
            <author>stratos</author>
            <pubDate>Thu, 15 Dec 2011 02:38:11 +0200</pubDate>
        </item>
        <item>
            <title>Mount Windows folder in VMware server - created</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/mount_windows_folder_in_vmware</link>
            <description>Ubuntu packages needed:
smbfs, samba
On the windows machine the folder must be shared. Let's assume the windows share name is sharedfolder

On the ubuntu side the mount command should be:
sudo mount -t smbfs -o username=WinDomain\\WinUsername //ip.add.re.ss/folder /mnt/mounthere
Obviously WinDomain, with the double slash that follows, would be used in case you are authenticating against a domain server</description>
            <author>stratos</author>
        <category>howto</category>
        <category>windows</category>
        <category>vmware</category>
            <pubDate>Thu, 15 Dec 2011 02:33:37 +0200</pubDate>
        </item>
        <item>
            <title>RAID/LVM2 Summary - created</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/raid-lvm2/summary</link>
            <description>So to sum up all the Raid and LVM2 operation that we did:



Create sandbox


cd ~
cd sandbox/
dd if=/dev/zero of=raid1 bs=10240 count=10240
cp raid1 raid2
cp raid1 raid3
sudo losetup /dev/loop1 raid1
sudo losetup /dev/loop2 raid2
sudo losetup /dev/loop3 raid3</description>
            <author>stratos</author>
        <category>howto</category>
        <category>lvm2</category>
        <category>raid</category>
        <category>ubuntu</category>
            <pubDate>Thu, 15 Dec 2011 02:30:55 +0200</pubDate>
        </item>
        <item>
            <title>RAID Setup</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/raid-lvm2/raid_setup</link>
            <description>Creating the RAID sandbox

The sandbox will consist of some loopback files that will simulate disk partitions. We will use these “fake” partitions to create our array. That way there will be no harm on your actual disks.



Let's imitate the creation of the RAID5 partition. First we will create three loopback files of 100MB each:</description>
            <author>stratos</author>
        <category>howto raid ubuntu</category>
            <pubDate>Thu, 15 Dec 2011 02:25:28 +0200</pubDate>
        </item>
        <item>
            <title>LVM2 Setup</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/raid-lvm2/lvm2_setup</link>
            <description>At this point we could format the /dev/md3 partition with some filesystem and start using it. But that's the old way of doing it. What we want to do is run LVM2 on top of the RAID5 partition so we can better utilize the space provided by the /dev/md3 partition, allowing us to dynamically create, resize and remove volumes in the space provided.</description>
            <author>stratos</author>
        <category>howto</category>
        <category>lvm2</category>
        <category>ubuntu</category>
            <pubDate>Thu, 15 Dec 2011 02:25:01 +0200</pubDate>
        </item>
        <item>
            <title>RAID Manipulation</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/raid-lvm2/raid_manipulation</link>
            <description>Playing with LVM2 is nice because you can manipulate and assign the available space you have any way you want. The actual unseen hero is the RAID5 volume that we have created because it provides a guarantee that even if one disk fails we will not lose our data. Let's play with the RAID disks now.</description>
            <author>stratos</author>
        <category>howto</category>
        <category>lvm2</category>
        <category>raid</category>
        <category>ubuntu</category>
            <pubDate>Thu, 15 Dec 2011 02:24:46 +0200</pubDate>
        </item>
        <item>
            <title>Creating and Maintaining a RAID/LVM2 array - created</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/raid-lvm2/intro</link>
            <description>I've been using a software created RAID in Ubuntu for a couple of years now, and I am very happy with it. The system has gone through many iterations of system updates (and even a complete OS reinstall) and it keeps working fine.

Recently, I was not happy with the way I had partitioned the array and I wanted to re-arrange it, so I thought it would be a nice idea to document the process I went through. At the same I took the opportunity to also document the initial array creation (in case I'll h…</description>
            <author>stratos</author>
            <pubDate>Thu, 15 Dec 2011 01:54:32 +0200</pubDate>
        </item>
        <item>
            <title>Installing Virtualbox on Ubuntu Server 10.04 - created</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/virtualbox_on_10.04_server</link>
            <description>Wanna install Virtualbox on a headless Ubuntu server?

First do a:
sudo aptitude install libcurl3 libgl1-mesa-glx libqt4-network /
libqt4-opengl libxcursor1 libxinerama1 libxmu6 libsdl1.2debian
Then download the appropriate .deb for your architecture from &lt;http://www.virtualbox.org/wiki/Linux_Downloads&gt;</description>
            <author>stratos</author>
        <category>howto</category>
        <category>ubuntu</category>
        <category>virtualbox</category>
            <pubDate>Thu, 15 Dec 2011 01:52:36 +0200</pubDate>
        </item>
        <item>
            <title>Convert an A4 sized .pdf file to A5 size</title>
            <link>http://www.stratosgear.com/doku.php/computers/howto/convert_an_a4_to_a5</link>
            <description>I was working on a LyX document based on the Tufte layout and unfortunately the page layout was available at A4 page sizes only (ok, US letter, too, but that doesn't count :)

I could try and learn Latex and create my own page size but the task looked monumental. I am sure the solution might be easy enough, but I just couldn't do it myself. Googling for A5 sized tufte layouts didn't help either.</description>
            <author>stratos</author>
        <category>howto</category>
        <category>pdf</category>
        <category>ubuntu</category>
            <pubDate>Thu, 15 Dec 2011 01:49:09 +0200</pubDate>
        </item>
        <item>
            <title>Change codepage on Windows console</title>
            <link>http://www.stratosgear.com/doku.php/computers/windows/greek_codepage</link>
            <description>If find this essential when administrating ORACLE databases from the command line and the locale of the database is set to Greek. I prefer to read the output in Greek rather in gibberish:
chcp 1253</description>
            <author>stratos</author>
            <pubDate>Thu, 15 Dec 2011 01:34:47 +0200</pubDate>
        </item>
        <item>
            <title>Change codepage on Windows console - created</title>
            <link>http://www.stratosgear.com/doku.php/?image=blog%3A2011%3Aseptember%3Aiss.jpg&amp;ns=blog%3A2011%3Aseptember&amp;do=media</link>
            <description>&lt;img src=&quot;/lib/exe/fetch.php/blog/2011/september/iss.jpg?w=300&amp;h=199t=1324041482&quot; alt=&quot;blog:2011:september:iss.jpg&quot; /&gt;</description>
            <author>stratos</author>
            <pubDate>Thu, 15 Dec 2011 00:58:15 +0200</pubDate>
        </item>
        <item>
            <title>Change codepage on Windows console - created</title>
            <link>http://www.stratosgear.com/doku.php/?image=blog%3A2011%3Amay%3Acosmote_more4us.jpg&amp;ns=blog%3A2011%3Amay&amp;do=media</link>
            <description>&lt;img src=&quot;/lib/exe/fetch.php/blog/2011/may/cosmote_more4us.jpg?w=216&amp;h=146t=1324041482&quot; alt=&quot;blog:2011:may:cosmote_more4us.jpg&quot; /&gt;</description>
            <author>stratos</author>
            <pubDate>Wed, 14 Dec 2011 16:40:07 +0200</pubDate>
        </item>
    </channel>
</rss>

