<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>osscc &#187; Documentation</title>
	<atom:link href="http://www.osscc.org/category/documentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.osscc.org</link>
	<description>free open source software for cyber cafe</description>
	<lastBuildDate>Wed, 03 Aug 2011 18:06:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to Setup Transparent Squid Proxy Server in Ubuntu</title>
		<link>http://www.osscc.org/2010/07/how-to-setup-transparent-squid-proxy-server-in-ubuntu/</link>
		<comments>http://www.osscc.org/2010/07/how-to-setup-transparent-squid-proxy-server-in-ubuntu/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 19:30:08 +0000</pubDate>
		<dc:creator>cubiczero</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[proxy server]]></category>
		<category><![CDATA[squid]]></category>

		<guid isPermaLink="false">http://www.osscc.org/?p=161</guid>
		<description><![CDATA[How important proxy server for cyber cafe? For me as a cyber cafe entrepreneur, squid server is very important in keeping your customers internet access well performs. If you are new to open source cyber cafe concept, this article should be the best stater guide in helping you to setup a proxy server by using squid.]]></description>
			<content:encoded><![CDATA[<p>How important proxy server for cyber cafe? For me as a cyber cafe entrepreneur, squid server is very important in keeping your customers internet access well performs. If you are new to open source cyber cafe concept, this article should be the best stater guide in helping you to setup a proxy server by using squid.<span id="more-161"></span></p>
<hr /><a href="../wp-content/uploads/2010/07/squid-logo.gif"><img class="alignleft" title="squid-logo" src="../wp-content/uploads/2010/07/squid-logo.gif" alt="" width="183" height="210" /></a>Squid is a fully-featured HTTP/1.0 proxy which is almost (but not quite – we’re getting there!) HTTP/1.1 compliant. Squid offers a rich access control, authorization and logging environment to develop web proxy and content serving applications. This is a short guide on how to set up a transparent squid <a class="iAs" style="background-color: transparent ! important; background-image: none; border-bottom: medium none ! important; color: darkblue ! important; cursor: pointer ! important; font-weight: bold ! important; padding-bottom: 0px ! important; padding-left: 0pt; padding-right: 0pt; padding-top: 0pt; text-decoration: none ! important;" href="http://www.ubuntugeek.com/how-to-setup-transparent-squid-proxy-server-in-ubuntu.html#" target="_blank">proxy server<img style="border: 0pt none; margin: 0pt; padding: 0pt; display: inline ! important; float: none; height: 10px; left: 1px; position: relative; top: 1px; width: 10px;" src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a>. Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages. Squid has extensive access controls and makes a great server accelerator.</p>
<p><strong>Install Squid</strong><br />
Install squid and squid-common</p>
<blockquote><p><code>sudo aptitude install squid squid-common<br />
</code></p></blockquote>
<p>Edit the squid config file.</p>
<blockquote><p><code>sudo vi /etc/squid/squid.conf<br />
</code></p></blockquote>
<p>Set the allowed hosts.</p>
<blockquote><p><code>acl internal_network src 192.168.0.0/24 (</code>Where <code>192.168.0.0/24</code> is your IP range.)<code><br />
http_access allow internal_network</code></p></blockquote>
<p>Set the correct permissions.</p>
<blockquote><p><code>sudo chown -R proxy:proxy /var/log/squid/<br />
sudo chown proxy:proxy /etc/squid/squid.conf<br />
</code></p></blockquote>
<p>You will need to restart squid for the changes to take affect.</p>
<blockquote><p><code>sudo /etc/init.d/squid restart</code></p></blockquote>
<p>Now open up your browser and set your proxy to point to your new squid server on port 3128<br />
<strong> </strong></p>
<p><strong>Authentication</strong><br />
If you wish to use authentication with your proxy you will need to install apache2 utilities</p>
<blockquote><p><code>sudo aptitude install squid squid-common apache2-utils</code></p></blockquote>
<p>To add your first user you will need to specify -c</p>
<blockquote><p><code>sudo htpasswd -c /etc/squid.passwd first_user</code></p></blockquote>
<p>Thereafter you add new users with</p>
<blockquote><p><code>sudo htpasswd /etc/squid.passwd another_user</code></p></blockquote>
<p>Edit the squid config file</p>
<blockquote><p><code>sudo vi /etc/squid/squid.conf<br />
</code></p></blockquote>
<p>Set the the authentication parameters and the acl</p>
<blockquote><p><code>auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid.passwd<br />
auth_param basic children 5<br />
auth_param basic realm NFYE Squid proxy-caching web server<br />
auth_param basic credentialsttl 3 hours<br />
auth_param basic casesensitive off<br />
</code><br />
<code>acl users proxy_auth REQUIRED</code><br />
<code>acl sectionx proxy_auth REQUIRED</code><br />
<code>http_access allow users</code></p></blockquote>
<p>So this is what your squid.conf should look like.</p>
<blockquote><p><span style="font-family: monospace;">acl all src 0.0.0.0/0.0.0.0</span></p>
<p><code>acl </code><code>internal_network</code><code> src 192.168.0.0/24<br />
acl users proxy_auth REQUIRED<br />
acl manager proto cache_object<br />
acl localhost src 127.0.0.1/255.255.255.255<br />
acl to_localhost dst 127.0.0.0/8<br />
acl SSL_ports port 443 563      # https, snews<br />
acl SSL_ports port 873          # rsync<br />
acl Safe_ports port 80          # http<br />
acl Safe_ports port 21          # ftp<br />
acl Safe_ports port 443 563     # https, snews<br />
acl Safe_ports port 70          # gopher<br />
acl Safe_ports port 210         # wais<br />
acl Safe_ports port 1025-65535  # unregistered ports<br />
acl Safe_ports port 280         # http-mgmt<br />
acl Safe_ports port 488         # gss-http<br />
acl Safe_ports port 591         # filemaker<br />
acl Safe_ports port 777         # multiling http<br />
acl Safe_ports port 631         # cups<br />
acl Safe_ports port 873         # rsync<br />
acl Safe_ports port 901         # SWAT<br />
acl sectionx proxy_auth REQUIRED<br />
acl purge method PURGE<br />
acl CONNECT method CONNECT</code><br />
http_access allow manager localhost<br />
http_access allow users<br />
http_access allow <code>internal_network</code><code><br />
http_access deny manager<br />
http_access allow purge localhost<br />
http_access deny purge<br />
http_access deny !Safe_ports<br />
http_access deny CONNECT !SSL_ports<br />
http_access allow localhost<br />
http_access deny all<br />
http_reply_access allow all<br />
icp_access allow all</code><br />
<strong> </strong></p></blockquote>
<p><strong>Redirect the all HTTP traffic.</strong><br />
If you would like to redirect the all HTTP traffic through the proxy without needing to set up a proxy manually in all your applications you will need to add some rules</p>
<blockquote><p><code>iptables -t nat -A PREROUTING -i eth1 -p tcp -m tcp <code>--dport</code> 80 -j DNAT <code>--to-destination</code> 192.168.0.1:3128<br />
iptables -t nat -A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT <code>--to-ports</code> 3128<br />
</code></p></blockquote>
<p>Where eth1,eth0 are the LAN, WAN devices and 192.168.0.1 is the IP address of your LAN device.<br />
If you wish to monitor the performance of your proxy you can look as some log parser’s (sarg, calamaris, ect.)</p>
<p>After all, probably you feel the need to monitor the performance of your proxy. Unfortunately, most of the squid log parsers in the Ubuntu repository are configured for Squid 2.x. Nevertheless, squid 3 uses the same log format, so you can change the log file path in your parser config file (sarg, calamaris, etd.) or simply link the log directory of squid 3 to the correct path<br />
<code><br />
ln -s /var/log/squid3 /var/log/squid</code></p>
<p>Source : <a title="Kuscsik" href="http://kuscsik.blogspot.com/2008/01/transparent-proxy-with-squid-3-on.html" target="_blank">kuscsik</a></p>
<p><map name='google_ad_map_161_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/161?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_161_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=161&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F07%2Fhow-to-setup-transparent-squid-proxy-server-in-ubuntu%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/07/how-to-setup-transparent-squid-proxy-server-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What are the differences between DRBL and LTSP ?</title>
		<link>http://www.osscc.org/2010/06/what-are-the-differences-between-drbl-and-ltsp/</link>
		<comments>http://www.osscc.org/2010/06/what-are-the-differences-between-drbl-and-ltsp/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 12:46:30 +0000</pubDate>
		<dc:creator>cubiczero</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business Ideas]]></category>
		<category><![CDATA[Diskless Technology]]></category>
		<category><![CDATA[DRBL]]></category>
		<category><![CDATA[LTSP]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recovery System]]></category>
		<category><![CDATA[differences]]></category>
		<category><![CDATA[diskless client]]></category>

		<guid isPermaLink="false">http://www.osscc.org/?p=251</guid>
		<description><![CDATA[Graphics-intensive applications such as games will not perform well, as all the display information will have to be pushed over the network by the server. This is hundreds of times slower than driving a local graphics card. Playing action games, however, is not a goal of the Edubuntu lab project.]]></description>
			<content:encoded><![CDATA[<p id="Linux Terminal Server Project"><a href="http://www.osscc.org/2010/06/what-are-the-differences-between-drbl-and-ltsp/" target="_self"><img class="aligncenter size-full wp-image-253" title="drbl-vs-ltsp" src="http://www.osscc.org/wp-content/uploads/2010/06/drbl-vs-ltsp.jpg" alt="DRBL vs LTSP" width="640" height="266" /></a><span id="more-251"></span></p>
<p><strong>Linux Terminal Server Project </strong><strong>[1]</strong></p>
<p>The Linux Terminal Server Project ( LTSP) is a configuration of Linux  that allows you to connect lots of low-powered thin client terminals to  a Linux server. The LTSP provides a simple way to utilise low cost  workstations as either graphical or character-based terminals on a  GNU/Linux server.<strong> </strong></p>
<p>K12LTSP is based on <a href="/community/RedHat">RedHat</a> Fedora Linux and the LTSP terminal server packages (see Section 7.1.1 for more detail). It&#8217;s easy to install and configure. It&#8217;s distributed under the GNU General Public License. That means it&#8217;s free and it&#8217;s based on Open Source software.</p>
<p>Once installed, K12LTSP lets you boot diskless workstations from an application server.</p>
<p><strong>What is Thin Client Computing?</strong><br />
Thin client and fat client (also called &#8220;thick&#8221; or &#8220;rich&#8221; client) are mostly marketing terms for different configurations of computer. A thin client asks a central server to do most of its processing, and keeps as little hardware and software as possible on the workstation side. Ideally, the user of a thin client should have only a screen, keyboard, mouse and enough computing power to handle display and network communications &#8212; you don&#8217;t even need (or want) a hard drive. The less you have, the less there can go wrong.</p>
<p>A fat client does as much processing as possible itself and only passes data required for communications and storage on to the server. A standalone PC is the typical fat client with which everyone is familiar.</p>
<p>A thin client may be a software program executing on a generic PC, or it may be a hardware device, called a terminal, designed to provide only user input and display functions. Because old PCs (whether retired, written off, obsolete or just out of fashion) are easier to find than specialised thin client hardware, Edubuntu labs uses them as thin clients, with the appropriate software. Because they don&#8217;t do much work themselves, the hardware requirements for these &#8220;old&#8221; PCs are very basic. Since every client in a thin client network asks a central server to do its work, all the individual workstations look the same: they all share the same server, and they all behave exactly like the server would if you were using it directly.</p>
<p>In addition, although everyone who uses the lab can have their own computing environment stored on the server, with their own files, desktop, and so on, the individual workstations can&#8217;t get viruses or be misconfigured by curious learners &#8212; there simply isn&#8217;t anything to configure! The thin client doesn&#8217;t have enough brains to get confused.</p>
<p>This means that the lab computers are trivial to keep up and maintenance is restricted to the server in the back room.</p>
<p>Thin clients are cheaper and require less administration than fat clients. On the other hand, they tend to require far greater network bandwidth, as display data will probably need to be passed to the thin clients. They can&#8217;t do a single thing on their own &#8212; for each and every action, they need to talk to the server. This means that a server for a room full of thin clients must be much more capable than a server used by fat clients.</p>
<p>One of the advantages that this configuration entails, is that all the software resides on the server, and so you only have to upgrade it once. In a fat client configuration, every workstation has its own copies of the software, and so any upgrade needs to be rolled out to every workstation.</p>
<p><strong>Drawbacks</strong><br />
Graphics-intensive applications such as games will not perform well, as all the display information will have to be pushed over the network by the server. This is hundreds of times slower than driving a local graphics card. Playing action games, however, is not a goal of the Edubuntu lab project.</p>
<p><strong>Hardware</strong><br />
Minimum specifications for LTSP Client and Server</p>
<p><strong>Server</strong></p>
<ul>
<li>Memory The server should have <span style="text-decoration: underline;"><span style="color: #ff0000;"><strong>2GB RAM</strong></span></span> or more (512MB for the base system, and 50MB for each additional client). As long as you&#8217;re using it all up, more RAM means more speed (it doesn&#8217;t help to have RAM that you don&#8217;t use). Too little RAM will bring your server to a crawl as it starts swapping memory to the hard drive. If you run out of memory, performance will be unacceptable.</li>
<li>Hard drive SCSI is faster than IDE: We&#8217;ve seen LTSP servers slow to a crawl when more than 10 clients are running from IDE drives. SCSI drives are better equipped to handle the multiple read/write requests.</li>
<li> Network Your server will have at least one Ethernet card to create a private network ( 192.168.0.x). This card connects to a switch for terminals. If there is a school network to which you need to connect, or if the school has a internet connection via the server, it will have a second Ethernet card, which will get an IP address on the second network.</li>
</ul>
<p><strong>Clients</strong></p>
<ul>
<li>Memory Client workstations should have at least <span style="text-decoration: underline;"><strong><span style="color: #0000ff;">32MB of RAM</span></strong></span>. Clients aren&#8217;t that dependent on swap space for extra memory capacity, since memory usage on them is reasonably constant because they don&#8217;t execute applications: they only display them.</li>
<li>Hard drive Client workstations should not have hard drives.<br />
Network Each client workstation should have one network card with a boot ROM to enable booting from the network.</li>
</ul>
<p style="text-align: left;"><strong>DRBL (Diskless Remote Boot in Linux) [2]<br />
</strong></p>
<p style="text-align: left;">DRBL (Diskless Remote Boot in Linux) is a free software, open source solution to managing the deployment of the GNU/Linux operating system across many clients. Imagine the time required to install GNU/Linux on 40, 30, or even 10 client machines individually! DRBL allows for the configuration all of your client computers by installing just one server machine.</p>
<p>DRBL provides a diskless or systemless environment for client machines. It works on Debian, Ubuntu, Mandriva, Red Hat, Fedora, CentOS and SuSE. DRBL uses distributed hardware resources and makes it possible for clients to fully access local hardware. It also includes <a href="http://clonezilla.org/" target="_blank">Clonezilla</a>, a partitioning and disk cloning utility similar to Symantec Ghost®.</p>
<p><strong>Peacefully coexists with other OS</strong><br />
DRBL uses PXE or etherboot, which is similar to <a href="http://ltsp.sf.net/">Linux Terminal Server Project (LTSP)</a>, to boot the client machine. While LTSP is a centralized server, all the client machine users&#8217; access the LTSP server to run their applications on it. The client&#8217;s keyboard and mouse are used to input whereas the client&#8217;s monitor is used to display the results. This is great when useing a thin client.<strong>[1]</strong></p>
<p>The server requirements must be increased when more than 20 or 30 clients are being used. On the other hand, DRBL uses NFS and NIS to provide boot services to the client machines. In essence, the DRBL server is just a NFS and NIS server. All users from all client machines just access the DRBL server to request files or authentication.</p>
<p>Packages are loaded to the client machines and they use their own CPU and RAM for processing. A regular PC can be used as the DRBL server since it is only serving files and authenticating. The client machines, however, should be powerful enough to run the applications they need. Typical installations using DRBL to deploy the Linux classroom have around 30 to 40 clients.</p>
<p>///NOTE/// From LTSP 5.0, there is a fat client (diskless workstation, LowFat client) mode, it&#8217;s basically quite similar to DRBL</p>
<p><strong>Save on hardware, budget, and maintenance fees</strong></p>
<p>Hard drives are optional for a DRBL client. Actually, the hard drive is just another moving part that creates more noise and is susceptible to failure. If a hard drive is present, the client can be configured to use it as swap space while GNU/Linux is installed and configured on the centralized boot server.</p>
<p>A lot of time can be saved by configuring the client settings at the boot server when using the DRBL centralized boot environment. This gives the system administrator more control over what software configurations are running on each client.</p>
<p>Besides the diskless (fat/powerful) client mode provided by DRBL, DRBL provides other functions, such as:</p>
<p>(a) <a href="http://clonezilla.org/" target="_blank">Clonezilla</a>, the opensource clone system. It&#8217;s a server version of imaging tool, similar to Ghost server edition, True image or Rembo.By using Clonezilla, you can clone a 5.6 GBytes system image to 40 computers within 10 minutes via multicasting.</p>
<p>(b) Small Linux diskless soltion. DRBL provides Damn Small Linux (DSL), PuppyLinux&#8230; for clients. You can import those small Linux distributions and let client boot from PXE without hardisk, CD or USB flash drive.</p>
<p>(c) Diskless FreeDOS for clients.</p>
<p>(d) Diskless memtest for clients.</p>
<p>(e) Install GNU/Linux (Debian, Ubuntu, Fedora, CentOS, Mandriva, SuSE&#8230;) for clients from network.<br />
LTSP and DRBL each have their own benefits. Choose the one that is best suited to your needs.</p>
<p><strong>What kind of server and client should I buy if I want to use DRBL ?</strong></p>
<p><span style="font-family: Arial;">This depends on what kind of application and GNU/Linux distribution you want to run.<br />
For the education environment, we recommend the following, but faster and newer equipment will always be better, especially if you want to run &#8220;moden&#8221; GNU/Linux distribution, such as Fedora 7 or Ubuntu 7.04 with OpenOffice 2.x or Firefox 2.x&#8230;:<br />
</span></p>
<ul>
<li>Server:
<ul>
<li>
<ul>
<li>x86 CPU at least 450 MHz</li>
<li><span style="text-decoration: underline;"><strong><span style="color: #0000ff;">Memory at least 256 MB </span></strong></span></li>
<li>Two or more fast ethernet network interface cards (NICs)</li>
<li>At least 10 GB HD space</li>
</ul>
</li>
</ul>
</li>
<li>Client:
<ul>
<li>
<ul>
<li>x86 CPU at least 200 MHz</li>
</ul>
<ul>
<li><span style="color: #ff0000;"><span style="text-decoration: underline;"><strong>Memory at least 128 MB</strong></span></span></li>
<li>One fast ethernet network interface cards</li>
</ul>
</li>
</ul>
</li>
</ul>
<ul>
<li>Fast ethernet switch
<ul>
<li>
<ul>
<li>An ethernet hub is NOT acceptable. It&#8217;s too slow for network booting and NFS. A fast ethernet switch will reduce the collision domain and give you much smoother deployment. The fast ethernet switch should have enough ports for your clients and your server. You can find low cost 12 and 16-port fast ethernet switches just about anywhere. The 40+ port switches are nice but they typically cost more.</li>
</ul>
</li>
</ul>
</li>
</ul>
<p><span style="font-family: Arial;">Since DRBL will work with any Pentium class hardware, you can start your PC cluster with just about any machine you have laying around. You can expand your cluster as your budget allows. </span></p>
<p><strong>Where can I download the source codes ?</strong></p>
<p>You can find all the source codes about DRBL/Clonezilla in <a href="http://free.nchc.org.tw/drbl-core/src/" target="_blank">http://free.nchc.org.tw/drbl-core/src/</a></p>
<p><strong>Who is the developer of DRBL/Clonezilla?</strong></p>
<p>DRBL and Clonezilla was developed by NCHC <a href="http://www.nchc.org.tw/" target="_blank">http://www.nchc.org.tw</a></p>
<p><strong>What is NCHC ?</strong></p>
<p>The National Center for High-Performance Computing is located in Hsinchu, Taiwan. For more details, please visit the NCHC website at <a href="http://www.nchc.org.tw/" target="_blank">http://www.nchc.org.tw</a></p>
<p><strong>What is CloneZilla?</strong></p>
<p>Clonezilla, based on DRBL, Partition Image, ntfsclone, and udpcast, allows you to do bare metal backup and recovery. Two types of Clonezilla are available, Clonezilla live and Clonezilla server edition. Clonezilla live is suitable for single machine backup and restore. While Clonezilla server edition is for massive deployment, it can clone many (40 plus!) computers simultaneously. Clonezilla saves and restores only used blocks in the harddisk. This increases the clone efficiency. At the NCHC&#8217;s Classroom C, Clonezilla server edition was used to clone 41 computers simultaneously. It took only about 10 minutes to clone a 5.6 GBytes system image to all 41 computers via multicasting!</p>
<p><strong>Features of Clonezilla</strong>[3]</p>
<ul>
<li> Free (GPL) Software.</li>
<li> Filesystem supported: ext2, ext3, reiserfs, xfs, jfs of GNU/Linux, and FAT, NTFS of MS Windows. Therefore you can clone GNU/Linux or MS windows. For these file systems, only used blocks in partition are saved and restored. For unsupported file system, sector-to-sector copy is done by dd in Clonezilla.</li>
<li> LVM2 (LVM version 1 is not) under GNU/Linux is supported.</li>
<li> Multicast is supported in Clonezilla server edition, which is suitable for massively clone. You can also remotely use it to save or restore a bunch of computers if PXE and Wake-on-LAN are supported in your clients.</li>
<li> Based on Partimage, ntfsclone and dd to clone partition. However, clonezilla, containing some other programs, can save and restore not only partitions, but also a whole disk.</li>
<li> By using another free software drbl-winroll, which is also developed by us, the hostname, group, and SID of cloned MS windows machine can be automatically changed.</li>
</ul>
<p><strong>Editions</strong><br />
Clonezilla Live: Allows you to use CD/DVD or USB flash drive to boot and run clonezilla (Unicast only)<br />
Clonezilla server edition: A DRBL server must first be set up in order to use Clonezilla to do massively clone (Both unicast and multicast are supported)</p>
<p><strong>Which one is suitable for diskless gaming platform?</strong></p>
<p>So Which one are the perfect candidate for Diskless Linux Gaming Server and Client? My answer is DRBL, why? Because DRBL client is a fat client that doesn&#8217;t rely too much hardware dependencies on Server like LTSP Client.</p>
<p><strong>References :</strong></p>
<p>[1] : <a href="https://help.ubuntu.com/community/EdubuntuDocumentation/EdubuntuCookbook/ThinClient" target="_blank">https://help.ubuntu.com/community/EdubuntuDocumentation/EdubuntuCookbook/ThinClient</a></p>
<p>[2] : <a href="http://drbl.sourceforge.net/about/" target="_blank">http://drbl.sourceforge.net/about/</a></p>
<p>[3] : <a href="https://help.ubuntu.com/community/Clonezilla_Server_Edition">https://help.ubuntu.com/community/Clonezilla_Server_Edition</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 2088px; width: 1px; height: 1px;">
<p><span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span style="font-family: 'Helvetica Neue','Lucida Grande',Helvetica,Arial,Verdana,sans-serif; font-size: 21px;"> </span></span></p>
<h1 id="Features of Clonezilla" style="margin: 0px; padding: 2px 0px; font-weight: normal; color: #5a3320; line-height: 1.2em; font-size: 1.6em; border-bottom: 1px solid #6d4c07;">Features of Clonezilla</h1>
<p><span id="line-10" class="anchor"> </span></p>
<ul>
<li>Free (GPL) Software.</li>
<li>Filesystem supported: ext2, ext3, reiserfs, xfs, jfs of GNU/Linux, and FAT, NTFS of MS Windows. Therefore you can clone GNU/Linux or MS windows. For these file systems, only used blocks in partition are saved and restored. For unsupported file system, sector-to-sector copy is done by dd in Clonezilla.</li>
<li>LVM2 (LVM version 1 is not) under GNU/Linux is supported.</li>
<li>Multicast is supported in Clonezilla server edition, which is suitable for massively clone. You can also remotely use it to save or restore a bunch of computers if PXE and Wake-on-LAN are supported in your clients.</li>
<li>Based on Partimage, ntfsclone and dd to clone partition. However, clonezilla, containing some other programs, can save and restore not only partitions, but also a whole disk.</li>
<li>By using another free software drbl-winroll, which is also developed by us, the hostname, group, and SID of cloned MS windows machine can be automatically changed.</li>
</ul>
<p class="line867">
<h1 id="Editions" style="margin: 0px; padding: 2px 0px; font-weight: normal; color: #5a3320; line-height: 1.2em; font-size: 1.6em; border-bottom: 1px solid #6d4c07;">Editions</h1>
<ul>
<li>Clonezilla Live: Allows you to use CD/DVD or USB flash drive to boot and run clonezilla (Unicast only)</li>
<li class="gap" style="margin-top: 0.5em;">Clonezilla server edition: A DRBL server must first be set up in order to use Clonezilla to do massively clone (Both unicast and multicast are supported)</li>
</ul>
</div>
<p><map name='google_ad_map_251_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/251?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_251_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=251&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F06%2Fwhat-are-the-differences-between-drbl-and-ltsp%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/06/what-are-the-differences-between-drbl-and-ltsp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install ubuntu lucid to hard drive Part 2</title>
		<link>http://www.osscc.org/2010/06/how-to-install-ubuntu-lucid-to-hard-drive-part-2/</link>
		<comments>http://www.osscc.org/2010/06/how-to-install-ubuntu-lucid-to-hard-drive-part-2/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 02:18:32 +0000</pubDate>
		<dc:creator>osscc</dc:creator>
				<category><![CDATA[Cyber Cafe]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.osscc.org/?p=145</guid>
		<description><![CDATA[After a successful installation and boot to the newly installed Ubuntu Lucid with out problem, now it's time for the post-installation. You might consider to create a user if you want, login as root with your previous password]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.osscc.org/wp-content/uploads/2010/06/Ubuntu-Lucid-1.png"><img class="alignleft size-medium wp-image-142" title="Ubuntu-Lucid-1" src="http://www.osscc.org/wp-content/uploads/2010/06/Ubuntu-Lucid-1-300x175.png" alt="" width="300" height="175" /></a>Post installation</strong></p>
<p>After a successful installation and boot to the newly installed Ubuntu Lucid with out problem, now it&#8217;s time for the post-installation. You might consider to create a user if you want, login as root with your previous password:</p>
<div>
<p>To add a user and set a password for that user.</p>
</div>
<div>
<blockquote><p><strong># adduser</strong></p>
</blockquote>
</div>
<p><strong>Step 1.</strong> You will need to edit your hosts file</p>
<div>
<blockquote><p><strong># vi /etc/hosts</strong></p>
</blockquote>
<blockquote><p>127.0.0.0.1                localhost.localdomain  localhost</p>
<p>127.0.0.0.1                yourhostname</p>
<p>192.168.1.100           yourhostname.dotcom yourhostname</p>
</blockquote>
<p>Change the 192.168.1.100 to fit your need.</p>
</div>
<div>
<div>
<p><strong>Step 2.</strong> Re-create and reconfigure your file system table, this is quite tricky, I got three partition for on my hard drive for this installation method.</p>
</div>
<div>
<blockquote>
<div>
<p>Name                Flags             Part Type        FS Type                    [Label]                 Size (MB)</p>
</div>
<div>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
</div>
<div>
<p>sda1                Boot               Primary         Linux ext3                                           5239.51</p>
</div>
<div>
<p>sda5                                   Logical         Linux ext3                                           4491.01</p>
</div>
<div>
<p>sda6                                   Logical         Linux swap / Solaris                                  509.97</p>
</div>
<div>
<div>
<p>so just create new file system for the partition to used as a cache directory for Squid Proxy purpose.</p>
</div>
<p><strong># mkfs.ext3 /dev/sda5</strong></p>
</div>
<p><strong> # mkdir -p /var/spool/squid (note: you will need this)</strong></p>
<div>
<p><strong># mount /dev/sda5 /var/spool/squid</strong></p>
</div>
<div>
<p>Now edit your /etc/fstab file</p>
<p><strong># vi /etc/fstab</strong></p>
</div>
<div>
<p>You will see the fstab file content is nothing except &#8220;UNCONFIGURED FSTAB FOR BASE SYSTEM&#8221;,  find your UUID using blkid commmand</p>
</div>
<div>
<p><strong># blkid</strong></p>
</div>
<div>
<p>/dev/sda1: UUID=&#8221;09dd88d5-251b-4c88-9643-3c2658fe3b50&#8243; TYPE=&#8221;ext3&#8243;</p>
</div>
<div>
<p>/dev/sda5: UUID=&#8221;76835f78-cfee-4d52-a664-92bdf3d8a633&#8243; TYPE=&#8221;ext3&#8243;</p>
</div>
<div>
<p>/dev/sda6: UUID=&#8221;b0f80d32-87d6-46f4-97b9-9aedd93334b6&#8243; TYPE=&#8221;swap&#8221;</p>
</div>
<p>now enter those UUID without &#8220;quote&#8221; sign.</p>
<div>
<p><strong># vi /etc/fstab</strong></p>
</div>
<div>
<p>#</p>
</div>
<div>
<p>proc            /proc           proc    defaults        0       0</p>
</div>
<div>
<p>UUID=09dd88d5-251b-4c88-9643-3c2658fe3b50      /       ext3    relatime,errors=remount-ro 0       1</p>
</div>
<div>
<p>UUID=76835f78-cfee-4d52-a664-92bdf3d8a633      /var/spool/squid        ext3  nodev,nosuid 0        2</p>
</div>
<div>
<p>UUID=b0f80d32-87d6-46f4-97b9-9aedd93334b6      none    swap    sw              0       0</p>
</div>
<div>
<p>Esc then :wq! press Enter</p>
</div>
<div>
<p>now type the command below to see the changes</p>
</div>
<div>
<p><strong># sudo mount -a</strong></p>
</div>
<div>
<p><strong># sudo mount</strong></p>
</div>
<div>
<div>
<p>/dev/sda1 on / type ext3 (rw,relatime,errors=remount-ro)</p>
</div>
<div>
<p>proc on /proc type proc (rw)</p>
</div>
<div>
<p>none on /sys type sysfs (rw,noexec,nosuid,nodev)</p>
</div>
<div>
<p>none on /sys/fs/fuse/connections type fusectl (rw)</p>
</div>
<div>
<p>none on /sys/kernel/debug type debugfs (rw)</p>
</div>
<div>
<p>none on /sys/kernel/security type securityfs (rw)</p>
</div>
<div>
<p>udev on /dev type tmpfs (rw,mode=0755)</p>
</div>
<div>
<p>none on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)</p>
</div>
<div>
<p>none on /dev/shm type tmpfs (rw,nosuid,nodev)</p>
</div>
<div>
<p>none on /var/run type tmpfs (rw,nosuid,mode=0755)</p>
</div>
<div>
<p>none on /var/lock type tmpfs (rw,noexec,nosuid,nodev)</p>
</div>
<div>
<p>none on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)</p>
</div>
<div>
<p>/dev/sda5 on /var</p>
</div>
</div>
</blockquote>
<p><strong> now edit your /etc/fstab file</strong></p>
<p>After that reboot your system and pray hard</p>
<p>Then we will continue to setup our firewall and proxy server</p>
</div>
<div>
</div>
</div>
<p><map name='google_ad_map_145_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/145?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_145_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=145&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F06%2Fhow-to-install-ubuntu-lucid-to-hard-drive-part-2%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/06/how-to-install-ubuntu-lucid-to-hard-drive-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Ubuntu Lucid to hard drive Part 1</title>
		<link>http://www.osscc.org/2010/06/how-to-install-ubuntu-lucid-to-hard-drive-part-1/</link>
		<comments>http://www.osscc.org/2010/06/how-to-install-ubuntu-lucid-to-hard-drive-part-1/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 01:47:08 +0000</pubDate>
		<dc:creator>osscc</dc:creator>
				<category><![CDATA[Cyber Cafe]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.osscc.org/?p=138</guid>
		<description><![CDATA[Firewall is one of the most important thing that you should have it although your business is a cyber cafe, internet cafe or gaming center. Because running a firewall system meant to protect your interest and your investment, also your business reputation is depending on i]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.osscc.org/wp-content/uploads/2010/06/Ubuntu-Lucid-1.png"><img class="alignleft size-medium wp-image-142" title="Ubuntu-Lucid-1" src="http://www.osscc.org/wp-content/uploads/2010/06/Ubuntu-Lucid-1-300x175.png" alt="" width="300" height="175" /></a>Firewall is one of the most important thing that you should have it although your business is a cyber cafe, internet cafe or gaming center. Because running a firewall system meant to protect your interest and your investment, also your business reputation is depending on it.</p>
<p>So I want to install Ubuntu Linux for my other system without using a cdrom, but I dont want to do it on that system, instead of that I want to install it via my current working ubuntu desktop that Im using right now.</p>
<p>Actually I want to build a firewall system complate with hotspot gateway and freeradius. But for now lets start with the basic installation first.</p>
<p>You could follow the instruction from ubuntu help community by <a class="interwiki" title="https://login.launchpad.net/+id/PRKPNfN @ wentz-dip0.nat.okstate.edu[139.78.10.24]" href="https://launchpad.net/%7Ecurtlee2002">Curtis Lee Bolin</a> : <a href="https://help.ubuntu.com/community/Installation/FromLinux#Alternate%20CD%20Alternate%20Method">Installation From Linux</a> or you can continue to read it from here because I made a little modification for the installation method and I add the instruction for the post-installation and how to setup a firewall base system.</p>
<p><strong>How to install without CD</strong></p>
<p>You can install Ubuntu directly from Ubuntu using debootstrap. Debootstrap installs some essential packages in a directory for use with chroot. Note that the essential packages does not in itself make the system bootable. It just installs what you need to chroot to that directory and use apt-get to install other packages witch makes ubuntu usable.</p>
<p><strong>Step 1</strong>. First turn off you computer and plugin your hard drive to it, after turn it on back then check that you have debootstrap installed if not, then you should run the following command below:</p>
<p><strong># sudo apt-get install debootstrap</strong></p>
<p>(NOTE: if you want to install a newer release than your current system, you normally need to install the backported debootstrap version, see: UbuntuBackports)</p>
<p><strong>Step 2. </strong>Partition device and make a file-system, to make it more easy, I use cfdisk to create partition for the other drive.</p>
<p>We will assume /dev/sdb is the storage device for your fresh install. I use my thumbdrive to show you an example how to partition the other drive for another system to setup an installation of ubuntu linux from your current ubuntu desktop.</p>
<p>Remove former partitions and create the new on.</p>
<blockquote><p><strong># sudo cfdisk /dev/sdb</strong></p></blockquote>
<p>cfdisk (util-linux-ng 2.17.2)</p>
<p>Disk Drive: /dev/sdb<br />
Size: 2056257536 bytes, 2056 MB<br />
Heads: 64   Sectors per Track: 62   Cylinders: 1012</p>
<p>Name        Flags      Part Type  FS Type          [Label]        Size (MB)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
sdb1        Boot        Primary   W95 FAT32 (LBA)                   2056.00</p>
<p>[ Bootable ]  [  Delete  ]  [   Help   ]  [ Maximize ]  [  Print   ]<br />
[   Quit   ]  [   Type   ]  [  Units   ]  [  Write   ]</p>
<p>Use your arrow key to the [ Delete ] option to remove your partition on the other drive:</p>
<p>Name        Flags      Part Type  FS Type          [Label]        Size (MB)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Pri/Log   Free Space                        2056.00</p>
<p>[   Help   ]  [   New    ]  [  Print   ]  [   Quit   ]  [  Units   ]<br />
[  Write   ]</p>
<p>Create new partition from free space, then you will see your drive is empty, now select [ New ] to create your new partition and select [ Primary ] :</p>
<p>Name        Flags      Part Type  FS Type          [Label]        Size (MB)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Pri/Log   Free Space                        2056.00</p>
<p>Size (in MB): 1500</p>
<p>You need to enter new size limit for primary partition, press backspace then enter the size yo want, for example I use 1500MB and 500MB++ for the extended and swap partition.</p>
<p>Now create the rest of your free space as an extended and swap, to change type of your newly created partition navigate to [ Type ] press Enter and select 83 for linux and 82 for swap.</p>
<p>Name        Flags      Part Type  FS Type          [Label]        Size (MB)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
sdb1        Boot        Primary   Linux                             1499.34<br />
sdb5                    Logical   Linux swap / Solaris               556.67</p>
<p>and select your primary partition as bootable by press the option [ Bootable ]. The write down your partition and quite cfdisk.</p>
<p>Are you sure you want to write the partition table to disk? (yes or no): yes</p>
<p>then [ Quit ] and start to make the file-system</p>
<blockquote><p><strong># sudo mkfs.ext4 /dev/sdb1</strong></p></blockquote>
<p><strong>Step 3.</strong> Mount that new partition.</p>
<blockquote><p><strong># sudo mkdir /mnt<br />
# sudo mount /dev/sdb1 /mnt</strong></p></blockquote>
<p><strong>Step 4</strong>. Create the new install.</p>
<blockquote><p><strong># sudo debootstrap lucid /mnt</strong></p></blockquote>
<p><strong>Step 5.</strong> Copy files to the new install to keep your repositories</p>
<blockquote><p><strong># sudo cp /etc/apt/sources.list /mnt/etc/apt/</strong></p></blockquote>
<p><strong>Step 6</strong>. Chroot to your new install.</p>
<blockquote><p><strong># sudo mount &#8211;bind /dev /mnt/dev<br />
# sudo mount -t proc /proc /mnt/proc<br />
# sudo chroot /mnt /bin/bash</strong></p></blockquote>
<p><strong>Step 7</strong>. Upgrade the new install.</p>
<blockquote><p><strong># apt-get update<br />
# apt-get install language-pack-en-base</strong></p></blockquote>
<p><em>Note: I install the language-pack-en-base before upgrade to avoid perl warnings as shown below.</em></p>
<p>perl: warning: Setting locale failed.<br />
perl: warning: Please check that your locale settings:<br />
LANGUAGE = (unset),<br />
LC_ALL = (unset),<br />
LANG = &#8220;en_US.utf8&#8243;<br />
are supported and installed on your system.<br />
perl: warning: Falling back to the standard locale (&#8220;C&#8221;).<br />
locale: Cannot set LC_CTYPE to default locale: No such file or directory<br />
locale: Cannot set LC_MESSAGES to default locale: No such file or directory<br />
locale: Cannot set LC_ALL to default locale: No such file or directory</p>
<p>then continue with :</p>
<blockquote><p><strong># apt-get upgrade</strong></p></blockquote>
<p><strong>Step 8.</strong> Install Grub and Linux Kernel.</p>
<blockquote><p><strong># apt-get install grub-pc linux-image</strong></p></blockquote>
<p><strong>Step 9.</strong> set root password.</p>
<p>To set a root password.</p>
<p>(NOTE: You must at least set a root password if you aren&#8217;t adding a user)</p>
<blockquote><p><strong># passwd</strong></p></blockquote>
<p>It should now be safe to reboot, you may want the next few things.</p>
<p><strong>Step 10</strong>. If you want to access it with ssh after reboot.</p>
<p>Use vi or install nano to edit /etc/hostname.</p>
<p>Remove anytext in this file and add the hostname you would like.</p>
<blockquote><p><strong># vi /etc/hostname</strong></p>
<p>yourhostnameyouwant</p></blockquote>
<p>and then edit /etc/network/interfaces</p>
<blockquote><p><strong># vi /etc/network/interfaces</strong></p></blockquote>
<p>Add this lines to /etc/network/interfaces. This will start eth0 at boot and request an ip with dhclient.</p>
<blockquote><p>auto eth0<br />
iface eth0 inet dhcp</p></blockquote>
<p>Next you need to install ssh</p>
<blockquote><p><strong># apt-get install ssh</strong></p></blockquote>
<p>Turn off your computer, remove the new installation drive and plugin to the other system, and bootup the system. If you want the Ubuntu Gnome desktop, continue with Step 11, but if you want to setup a firewall base system, so just skip the Step 11 and Step 12, so it safe for you turn off your system and boot the drive from other system.</p>
<p><strong>Step 11.</strong> Install ubuntu-desktop.</p>
<blockquote><p><strong># apt-get install ubuntu-desktop ubuntu-standard</strong></p></blockquote>
<p>Step 12. Reboot and keep those fingers crossed.</p>
<blockquote><p><strong># sudo halt or sudo reboot</strong></p></blockquote>
<p><strong>To be continue on Part 2</strong></p>
<p><map name='google_ad_map_138_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/138?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_138_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=138&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F06%2Fhow-to-install-ubuntu-lucid-to-hard-drive-part-1%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/06/how-to-install-ubuntu-lucid-to-hard-drive-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto setup your free domain name in Blogger &#8211; Part 2</title>
		<link>http://www.osscc.org/2010/06/howto-setup-your-free-domain-name-in-blogger-part-2/</link>
		<comments>http://www.osscc.org/2010/06/howto-setup-your-free-domain-name-in-blogger-part-2/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 00:25:00 +0000</pubDate>
		<dc:creator>osscc</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Domain Name]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.osscc.org/2010/06/howto-setup-your-free-domain-name-in-blogger-part-2/</guid>
		<description><![CDATA[Last time I posted a tutorial about to setup your-free-domain.co.cc, if you don&#8217;t have any of this free domain name account, you can get it by using this search form to find out which name you like, after that proceed to registering your new account. This domain is free to use for personal purpose but [...]]]></description>
			<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: center;"><a href="http://www.co.cc/?id=181185" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzOBFHX9iEI/AAAAAAAAA2Y/3G6AlW19_u4/s320/Screenshot-co.cc.png" /></a></div>
<p>Last time I posted a tutorial about to setup <a href="http://www.co.cc/?id=181185">your-free-domain.co.cc</a>, if you don&#8217;t have any of this free domain name account, you can get it by using this <a href="http://www.keghahpalo.co.cc/2006/12/cocc-free-domain-name-registration.html">search form</a> to find out which name you like, after that proceed to registering your new account.</p>
<p><iframe align="right" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=kegpal-20&amp;o=1&amp;p=8&amp;l=bpl&amp;asins=0470241993&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="align: left; height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"></iframe>This domain is free to use for personal purpose but they will charge you for business at minimum price at $3 per domain name, but if you make a donation to them about $5, you can have around 100 domain name, normal account will get about 4 domain only.</p>
<p>After completing <a href="http://www.keghahpalo.co.cc/2009/12/how-to-setup-your-free-domain-name-in.html">How to setup your free domain name in Blogger &#8211; Part 1</a> process, to make your free domain working with Blogger all you need to do now is login to your Blogger account and start doing the next procedure.</p>
<p>If you feel uncomfortable with image size, you can maximize it by click the maximize button located on the top left corner of the images <img alt="free domain provider" src="http://4.bp.blogspot.com/_IZd4Rp4XipA/SzOHP7mL9SI/AAAAAAAAA20/AUycrw7WQDc/s320/blogger-image-maximize-button.png" />.</p>
<p>Wokeyy.. let&#8217;s do it&#8230; <img src='http://www.osscc.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><b>Step 01</b><br />At your Dashboard click at <b>&#8220;Setting&#8221;</b> link on your Blog.
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN44VW86nI/AAAAAAAAA1I/VLe4Ia56zMk/s1600-h/Screenshot-kitab-linux-setting-blogger.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img alt="blogger images maximize button" border="0" longdesc="http://lh5.ggpht.com/_IZd4Rp4XipA/SzN44VW86nI/AAAAAAAAA1I/VLe4Ia56zMk/Screenshot-kitab-linux-setting-blogger.png" src="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN44VW86nI/AAAAAAAAA1I/VLe4Ia56zMk/s320/Screenshot-kitab-linux-setting-blogger.png" /></a></div>
<p><b>Step 02</b><br />At the navigation menu <b>&#8220;Setting&#8221;</b> tab, click the sub menu <b>&#8220;Publishing&#8221;</b>.
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN4AGOVOmI/AAAAAAAAA1A/u8czAr5eqn4/s1600-h/Screenshoot-kitab-linux-publish-blogger.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" longdesc="http://lh5.ggpht.com/_IZd4Rp4XipA/SzN4AGOVOmI/AAAAAAAAA1A/u8czAr5eqn4/Screenshoot-kitab-linux-publish-blogger.png" src="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN4AGOVOmI/AAAAAAAAA1A/u8czAr5eqn4/s320/Screenshoot-kitab-linux-publish-blogger.png" /></a></div>
<p><b>Step 03</b><br />Then you will see the <b>&#8220;Custom Domain&#8221;</b> link, click on it.
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN5CSdY6mI/AAAAAAAAA1Q/WX1IeGED4G4/s1600-h/Screenshot-blogger-custom-domain.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" longdesc="http://lh5.ggpht.com/_IZd4Rp4XipA/SzN5CSdY6mI/AAAAAAAAA1Q/WX1IeGED4G4/Screenshot-blogger-custom-domain.png" src="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN5CSdY6mI/AAAAAAAAA1Q/WX1IeGED4G4/s320/Screenshot-blogger-custom-domain.png" /></a></div>
<p><b>Step 04</b><br />Then you will see the <b>&#8220;Switch to advanced settings&#8221;</b>, for more infos, if you don&#8217;t have any domain yet, you can purchase it through Blogger.
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN5vrtLlqI/AAAAAAAAA1Y/8XuGgF57uVA/s1600-h/Screenshot-kitab-linux-switch-advance-blogger.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" longdesc="http://lh5.ggpht.com/_IZd4Rp4XipA/SzN5vrtLlqI/AAAAAAAAA1Y/8XuGgF57uVA/Screenshot-kitab-linux-switch-advance-blogger.png" src="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN5vrtLlqI/AAAAAAAAA1Y/8XuGgF57uVA/s320/Screenshot-kitab-linux-switch-advance-blogger.png" /></a></div>
<p><b>Step 05</b><br />Key in your domain name in the text box, remember that you should include the &#8220;www&#8221; subdomain before your top level domain name, otherwise Blogger will reject your request if you put naked domain name e.g. <a href="http://kitablinux.co.cc/">kitablinux.co.cc</a>. By the way if you like to use a different subdomain like blog.kitablinux.co.cc, you can do it by adding up first the CNAME at your <a href="http://www.co.cc/?id=181185">co.cc</a> domain hosting.
<div class="separator" style="clear: both; text-align: center;"></div>
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN9YrTHZlI/AAAAAAAAA1o/SZfaJ_pq0SM/s1600-h/Screenshot-kitab-linux-keyin-your-domain.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" longdesc="http://lh3.ggpht.com/_IZd4Rp4XipA/SzN6hNlzNXI/AAAAAAAAA1g/BVaJLWMhQN0/Screenshot-blogger-your-domain.png" src="http://3.bp.blogspot.com/_IZd4Rp4XipA/SzN9YrTHZlI/AAAAAAAAA1o/SZfaJ_pq0SM/s320/Screenshot-kitab-linux-keyin-your-domain.png" /></a></div>
<p>After that key in the <b>&#8220;Word Verification&#8221;</b> text and click <b>&#8220;SAVE SETTING&#8221;</b> button.
<div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/_IZd4Rp4XipA/SzN-DDxY6dI/AAAAAAAAA1w/GtrUEdvuXXQ/s1600-h/Screenshot-kitab-linux-word-verify.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/_IZd4Rp4XipA/SzN-DDxY6dI/AAAAAAAAA1w/GtrUEdvuXXQ/s320/Screenshot-kitab-linux-word-verify.png" /></a></div>
<p><b>Step 06</b><br />After doing all the above successfully, now you need to redirect your domain name, click the checkbox to redirect your domain, but please make sure first that you already&nbsp;<span style="line-height: 16px;"><span style="font-family: inherit;">Create&nbsp;</span><b><span style="font-family: inherit;">&#8216;A&#8217; NAME</span></b><span style="font-family: inherit;">&nbsp;records for your naked domain as I did mention in the <a href="http://www.keghahpalo.co.cc/2009/12/how-to-setup-your-free-domain-name-in.html">Part 1</a>&nbsp;of this tutorial, if not you should check for it first or your redirection won&#8217;t work at all.</span></span>
<div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/_IZd4Rp4XipA/SzN_zpQVSgI/AAAAAAAAA2Q/U1KAIjM3sgc/s1600-h/Screenshot-kitab-linux-keyin-your-domain.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" longdesc="http://lh5.ggpht.com/_IZd4Rp4XipA/SzN9YrTHZlI/AAAAAAAAA1o/SZfaJ_pq0SM/Screenshot-kitab-linux-keyin-your-domain.png" src="http://1.bp.blogspot.com/_IZd4Rp4XipA/SzN_zpQVSgI/AAAAAAAAA2Q/U1KAIjM3sgc/s320/Screenshot-kitab-linux-keyin-your-domain.png" /></a></div>
<div class="separator" style="clear: both; text-align: left;"></div>
<p><span style="line-height: 16px;">Enter your &#8220;Word Verification&#8221; in the textbox and click SAVE SETTING button to proceed, after completing all the steps above now try to view your domain either using full web address with subdomain e.g. <i>&#8220;http://www.kitablinux.co.cc&#8221;</i> or naked domain e.g. <i>&#8220;http://kitablinux.co.cc&#8221;</i>.</span><br /><span style="line-height: 16px;"><br /></span><br /><span style="line-height: 16px;">Related Article : <a href="http://www.keghahpalo.co.cc/2009/12/how-to-setup-your-free-domain-name-in.html">How to setup your free domain name in Blogger &#8211; Part 1</a></span></p>
<p><span style="line-height: 16px;"><b>p/s</b>: currently I am working with another tutorial about setting a domain to use with google apps(mail/sites/blogger)+web hosting, yaa dude you can use one single domain name for multipurpose, don&#8217;t waste it, make fortune or wheel of fortune.. weeee&#8230;&#8230; chow cinchau&#8230;.</span></p>
<p><map name='google_ad_map_175_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/175?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_175_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=175&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F06%2Fhowto-setup-your-free-domain-name-in-blogger-part-2%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/06/howto-setup-your-free-domain-name-in-blogger-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure your display using xrandr</title>
		<link>http://www.osscc.org/2010/06/how-to-configure-your-display-using-xrandr/</link>
		<comments>http://www.osscc.org/2010/06/how-to-configure-your-display-using-xrandr/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 00:20:21 +0000</pubDate>
		<dc:creator>osscc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xrandr]]></category>

		<guid isPermaLink="false">http://www.osscc.org/?p=131</guid>
		<description><![CDATA[To solve the problem you could done it by following the instruction below using the xrandr. First open your terminal from your desktop, go to Ubuntu Main Menu button > Accessories > Terminal, and type the following command  to find your default display adapter]]></description>
			<content:encoded><![CDATA[<div>
<p><a href="http://www.osscc.org/wp-content/uploads/2010/06/9jnmed.jpg"><img class="alignleft size-full wp-image-180" title="GNU LINUX" src="http://www.osscc.org/wp-content/uploads/2010/06/9jnmed.jpg" alt="" width="300" height="296" /></a>If you new to Ubuntu Linux, sometime you might face a problem in configuring display in Ubuntu Linux, it&#8217;s might cause of un-supported monitor or lcd on your system.</p>
<p>To solve the problem you could done it by following the instruction below using the xrandr. First open your terminal from your desktop, go to Ubuntu Main Menu button &gt; Accessories &gt; Terminal, and type the following command  to find your default display adapter:</p>
<blockquote><p># xrandr</p>
<p># Screen 0: minimum 320 x 240, current 1280 x 800, maximum 1280 x 800</p>
<p><strong>default</strong> connected 1280&#215;800+0+0 0mm x 0mm (you&#8217;ll see the default word that I just bold it, is my default display adapter, but it might different with your&#8217;s)</p>
<p>1280&#215;800       50.0*</p>
<p>1024&#215;768       51.0</p>
<p>960&#215;540        52.0</p>
<p>840&#215;525        53.0</p>
<p>800&#215;600        54.0</p>
<p>800&#215;512        55.0</p>
<p>720&#215;450        56.0</p>
<p>680&#215;384        57.0     58.0</p>
<p>640&#215;512        59.0</p>
<p>640&#215;480        60.0     61.0</p>
<p>576&#215;432        62.0</p>
<p>512&#215;384        63.0</p>
<p>400&#215;300        64.0</p>
<p>320&#215;240        65.0</p></blockquote>
<div>You see that my max screen resolution is 1280&#215;800, so to add your highes undetected resolution for your display adapter, run the following command:</div>
<blockquote><p># cvt / gtf 1280 800 60 (note: you can use cvt or gtf, but dont type both just one) i.e # cvt 1280 800 60</p></blockquote>
<p>then you will get the following messages</p>
<blockquote><p># 1280&#215;800 59.81 Hz (CVT 1.02MA) hsync: 49.70 kHz; pclk: 83.50 MHz</p>
<p>Modeline &#8220;1280x800_60.00&#8243;   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync</p></blockquote>
<p>Then to add new mode run the following command :</p>
<blockquote><p># xrandr &#8211;newmode  &#8221;1280x800_60.00&#8243;   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync</p></blockquote>
<p>after that add your desire mode to the default display adapter of yours by using the command line option below:</p>
<blockquote><p>#xrandr &#8211;addmode default &#8220;1280x800_60.00&#8243;</p></blockquote>
<p>And to set up your screen display with new resolution, run the command below:</p>
<blockquote><p># xrandr &#8211;output default &#8211;mode 1280&#215;80</p></blockquote>
<p><strong>Before and after screenshot:</strong></p>
<p><a href="http://www.osscc.org/wp-content/uploads/2010/06/800x600-Screenshot-osscc  free-open-source-software-for-cyber-cafe.png"><img class="aligncenter size-full wp-image-132" title="800x600-Screenshot-osscc | free open source software for cyber cafe" src="http://www.osscc.org/wp-content/uploads/2010/06/800x600-Screenshot-osscc  free-open-source-software-for-cyber-cafe.png" alt="configure using xrandr" width="800" height="578" /></a></p>
<p style="text-align: center;">800&#215;600</p>
<p><a href="http://www.osscc.org/wp-content/uploads/2010/06/1280x800-Screenshot-osscc  free-open-source-software-for-cyber-cafe.png"><img class="aligncenter size-large wp-image-134" title="1280x800-Screenshot-osscc | free open source software for cyber cafe" src="http://www.osscc.org/wp-content/uploads/2010/06/1280x800-Screenshot-osscc  free-open-source-software-for-cyber-cafe-1024x622.png" alt="configure using xrandr" width="1024" height="622" /></a></p>
<p style="text-align: center;">1240&#215;800</p>
</div>
<p><map name='google_ad_map_131_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/131?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_131_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=131&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F06%2Fhow-to-configure-your-display-using-xrandr%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/06/how-to-configure-your-display-using-xrandr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Old Days With NT 4.0 / 2k Windows Terminal Server</title>
		<link>http://www.osscc.org/2010/06/my-old-days-with-nt-4-0-2k-windows-terminal-server/</link>
		<comments>http://www.osscc.org/2010/06/my-old-days-with-nt-4-0-2k-windows-terminal-server/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 08:41:38 +0000</pubDate>
		<dc:creator>osscc</dc:creator>
				<category><![CDATA[Cyber Cafe]]></category>
		<category><![CDATA[Diskless Technology]]></category>
		<category><![CDATA[LTSP]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://osscc.org/?p=43</guid>
		<description><![CDATA[Although this site is dedicated to the Open Source Softwares technologies for cyber cafe, but the document still got a relation to the FOSS technology. Perhaps this old instruction could give as some motivation to search and to develop new kind of methods to full utilizes open source softwares for cyber cafe purpose.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.osscc.org/wp-content/uploads/2010/06/Terminal_server.gif"><img class="alignleft size-medium wp-image-63" title="Terminal_server" src="http://www.osscc.org/wp-content/uploads/2010/06/Terminal_server-300x220.gif" alt="" width="300" height="220" /></a>I am cleaning my drive today, since I&#8217;ve work hard for www.pheewit.com that is currently still under construction. I need to rest my mind for a while. While I am selecting old junkie files, suddenly I found one of my old collection about &#8220;Creating Linux Diskless Client for Windows 2k / 2003 Terminal Service by Avinoam Levkovich&#8221; from my backup server.<span id="more-43"></span></p>
<p>Although this site was dedicated to the Open Source Softwares technologies for cyber cafe, but the document still got a relation to the FOSS technology. Perhaps this old instruction could give us some motivation to search and to develop new kind of methods to full utilizes open source softwares for cyber cafe purpose.</p>
<p>This old document just made me to remember my old days dealing with NT 4.0 / 2k Terminal Server running with Citrix Metaframe before I met Linux and LTSP, but right now I was falling in LOVE with DRBL.</p>
<p>So guys, I hope you all could give some suggestion or some ideas for us to share at <a title="OSSCC Community Board" href="http://www.pheewit.com/groups/open-source-cyber-cafe/" target="_blank">OSSCC Community</a>, and please have a look to the document below.</p>
<p><big><big><strong><span style="color: maroon;">Creating Linux Diskless  Client For Windows 2k/2003 Terminal Service</span></strong></big></big><br />
<strong>By  <a href="http://linuxgazette.net/authors/levkovich.html">Avinoam  Levkovich</a></strong></p>
<p>version 1.0</p>
<p>The company I work for has many old computers that are no longer suitable for the common application today ( try Running Office XP/2k on a P-I 100MHZ with 32MB Ram, and you will find out that this is not a pleasant experience ). We start looking for a solution that will save the money of buying new computers or Brand thin-clients. The goal was to use our old computer and still get good performance . We find the Linux solution just great for my goals.</p>
<p>we still use our old computer and the only investment we will have to make is buying the Windows 2K/2003 licenses and hardware .</p>
<p>The solution is actually an integration of the following Sub systems :  LTSP, rdesktop and wilisystem , fortunately those systems are integrating quite naturally as you will see .</p>
<p><strong>LTSP   : (  <a title="Linux Terminal Server Project" href="http://www.ltsp.org" target="_blank">http://www.ltsp.org</a> )<br />
</strong></p>
<p>Is the backbone of all the system which provide the Linux terminal services for the diskless client. after installing LTSP it create the /opt/ltsp/i386  Directory.</p>
<p>this Directory will be the root system of our diskless clients.  when booting the client it will get its kernel by tftp from LTSP and then it will mount /opt/ltsp/i386 as its root directory.</p>
<p>So after your client finish its boot process you will be logged to your LTSP Server and your file system will be the /opt/ltsp/i386 Directory. and then the Wilisystem start Working.</p>
<p><strong>Rdesktop :   <a title="rdesktop site" href="http://www.rdesktop.org" target="_blank">(http://www.rdesktop.org</a> )<br />
</strong></p>
<p>Microsoft has developed a protocol called RDP which is used for the Terminal Server communication with the client.</p>
<p>The rdesktop package is an application that opens  RDP Session with a Windows Server and by doing it , the Linux station become a Windows Terminal Client.</p>
<p><strong>Wilisystem : ( <a href="http://www.wllisystem.com" target="_blank">http://www.wilisystem.com/</a> ) </strong></p>
<p>The Wilisystem is actually a patch for the LTSP server. what is does is make the connection to the Windows Terminal Server as easy as it can get.</p>
<p>The Wilisystem uses the rdesktop package and finish the Diskless client boot process with the Windows login screen. by doing this it make the LTSP Session invisible to the user who feel as if he is plugged directly to the Windows Server .</p>
<p>I must thank the wilisystem developers for a great job !</p>
<p><strong>Rom-O-Matic : (  <a href="http://www.rom-o-matic.net" target="_blank">www.rom-o-matic.net</a> )</strong></p>
<p>This is where you get you boot image for you selected boot Device ( I used a floppy ). after specifying your Ethernet card model you can download your boot image.</p>
<p><strong>Great implementation for a great idea.</strong></p>
<p>please read the documentation from the Above web site&#8217;s.  when you read the documentation you will discover all the options and benefits that you can get from this system and how to tune it to your needs.</p>
<p><strong>what you need :</strong></p>
<blockquote><p>1.	Linux Server , I used P-III 800 with 256MB RAM , With Red Hat 9.0  .</p>
<p>2. 	Diskless Client, I used a P-I 133MHZ , 32MB RAM, Ati &#8211; Rage XL (mach64 Family) Display Adaptor, with the intel 100/pro Ethernet .</p>
<p>3.	Windows 2K/2003 Server With Terminal Services installed, configured and Running .<br />
I used a P-4 1.7MHZ with 256MB RAM.</p></blockquote>
<p><strong>Create your diskless Client Environment:</strong></p>
<p>The Diskless Client will be called ws009.</p>
<p><strong>The Linux Server Side :</strong></p>
<p>1.	Find your Client ( ws009 ) Display card Model  and his Ethernet mac address and write them down, you will need them later.</p>
<p>2.	Download and install the Following packages from http://www.ltsp.org :</p>
<blockquote><p>ltsp_core-X.X-X.rpm<br />
ltsp_kerne-X.X-X.rpm<br />
ltsp_x_core-X.X-X.rpm<br />
ltsp_x_fonts-X.X-X.rpm</p></blockquote>
<p>3. 	Install the rdesktop package from your RedHat CD or Download it form http://www.rdesktop.org/ .</p>
<p>4.	Download the wilisystem patch from www.wilisystem.com , and install it .</p>
<p>5.	Make sure that the packages for the Dhcp,Nfs,Tftp servers are installed.</p>
<p>6.	Edit the file /opt/ltsp/install_scripts/CONFIG and change the settings  to match your network Setting.</p>
<p>7.	Run  /opt/ltsp/templates/ltsp_initialize</p>
<blockquote><p># cd /opt/ltsp/templates/ltsp_initialize</p>
<p>#  ./ltsp_initialize</p></blockquote>
<p>8. Copy /etc/dhcpd.conf.example to /etc/dhcpd.conf and check that all the network numbers match your network Configuration.<br />
Check the Mac address of your client and update the client configuration section ( host ws009 ) in the dhcpd.conf file.</p>
<p>Here is my /etc/dhcpd.conf :</p>
<blockquote><p>ddns-update-style none;</p>
<p>default-lease-time 21600;<br />
max-lease-time 21600;</p>
<p>option subnet-mask 255.255.255.0;<br />
option broadcast-address 192.168.1.255;<br />
option routers 192.168.1.100;<br />
option domain-name-servers 192.168.1.100;<br />
option domain-name &#8220;my-domain.com&#8221;;<br />
option root-path &#8220;192.168.1.100:/opt/ltsp/i386&#8243;;</p>
<p>option option-128 code 128 = string;<br />
option option-129 code 129 = text;</p>
<p>shared-network WORKSTATIONS {<br />
subnet 192.168.1.0 netmask 255.255.255.0 {<br />
}<br />
}</p>
<p>group {<br />
use-host-decl-names on;<br />
option log-servers 192.168.1.100;</p>
<p>host ws009 {<br />
hardware ethernet 00:02:B3:2D:B0:D2;<br />
fixed-address 192.168.1.113;<br />
filename &#8220;/lts/vmlinuz-2.4.21-ltsp-1&#8243;;<br />
}</p>
<p>}</p></blockquote>
<p>9.	Check /etc/exports. check that the IP numbers match your network Configuration.  if everything is fine run :</p>
<blockquote><p># exportfs -r<br />
# exportfs -a</p></blockquote>
<p>10.	Check that your client is properly listed in /etc/hosts. if your client name is w009 and your domain is my-domain.com you should add a line to your /etc/hosts file  like :</p>
<p>192.168.1.112       ws009.my-domain.com         ws009 this name (ws009) should be the same as the client name ( host ws009) that you configured in your dhcp.conf</p>
<p>12.	Check /opt/ltsp/i386/etc/lts.conf at the end of the file you should see the wilisystem configuration</p>
<p>Here is my Wilisystem Config , I added my remarks for the configuration part:</p>
<blockquote><p># Config part for the http://www.wilisystem.com<br />
# example ws009 accessing the W2K/NT4 TSE<br />
[ws009]<br />
RDPSERVER = 192.168.1.3                  # The ip of your W2K/NT4 Terminal Server<br />
RUNLEVEL = 7                                     # runlevel 7 for wilisystem<br />
SERVER = 192.168.1.100                      # The IP of your LTSP server<br />
XSERVER = auto                                  # auto Discovery of your Display-card</p>
<p># if your display card fail in the auto mod, you should download the proper ltsp_x336-XXX from www.ltsp.org and specify it like    XSERVER      = XF86_Mach64</p>
<p>X_MODE_0 = 1024&#215;768        # The Resolution that you want, ( 1024&#215;768 , 800&#215;600 &#8230;)</p>
<p>X_COLOR_DEPTH = 15      # The color Depth .. i think win2k server only support 8 bit (256) color.</p>
<p># the folowing line configure your mouse , check the Documentation page for more mouse type configuration : http://www.ltsp.org/documentation/</p>
<p>X_MOUSE_PROTOCOL = &#8220;PS/2&#8243;<br />
X_MOUSE_DEVICE = &#8220;/dev/psaux&#8221;<br />
X_MOUSE_RESOLUTION = 400<br />
X_MOUSE_BUTTONS = 3</p></blockquote>
<p>13.	Make sure that the tftp service is enabled in the xinetd directory. run :</p>
<blockquote><p>#  service dhcpd restart<br />
#  service xinetd restart</p>
<p>#  service nfs restart</p></blockquote>
<p>The verify that the tftp server is running. run :<strong> netstat -anp | grep &#8220;:69 &#8220;</strong></p>
<p>you should get something like :<strong> udp 0 0 0.0.0.0:69 0.0.0.0:* 799/xinetd</strong></p>
<p>verify dhcp server by :   <strong>netstat -anp | grep &#8220;:67 &#8220;</strong><br />
you should get something like : <strong>udp 0 0 0.0.0.0:67 0.0.0.0:* 2086/dhcpd</strong></p>
<p>If dhcp is not working try restarting it .<br />
If tftp is not working then you have to enable tftp in /etc/xinetd.d/tftp  and restart it.</p>
<p>14.	The default runlevel is specified in  /opt/ltsp/i386/etc/lts.conf  is runlevel 5 BUT in the wilisystem section it override the default with its own Runlevel 7 ( if you take a look at /opt/ltsp/i386/etc/inittab you will see wilisystem Configuration for this runlevel.). if you exerience problems you should change it. try to load your client with one of the other clients configuration that you have in /opt/ltsp/i386/etc/lts.conf , ws001 is a good start . remember to change your dhcp configuration and your hosts file to match your new host name. and choose the runlevel 3 . this will only load the ltsp system without trying to connect to the Windows Terminal Server.</p>
<p>then you will be able to debug the system.</p>
<p><strong>The Diskless Client Side</strong></p>
<blockquote><p>1.	Get your initial client boot kernel from : http://rom-o-matic.net/<br />
To creat  a boot floppy from the image you downloaded run :<br />
# cat eb-5.0.10-yournic.lzdsk &gt; /dev/fd0<br />
where &#8220;eb-5.0.10-yournic.lzdsk&#8221; is where you stored your downloaded ROM image.</p>
<p>2.	Reboot the client with the boot floppy that you created from the boot image.</p>
<p>After The boot process finished ,you should get the Windows logon screen  <img src='http://www.osscc.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p></blockquote>
<p><strong>Problems</strong><br />
=====================</p>
<p>i experienced screen flickers when the  X Server was trying to load and failes with message &#8220;no screens found &#8221; , it was because the system didnt recognized my display adaptor ,  which is &#8220;mach64&#8243; family , it was solved after I downloaded the proper Xfree 3.3 Drivers from the ltsp site. and I used the &#8221; XSERVER = XF86_Mach64 &#8221; in the lts.conf file.</p>
<p><map name='google_ad_map_43_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/43?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_43_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=43&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F06%2Fmy-old-days-with-nt-4-0-2k-windows-terminal-server%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/06/my-old-days-with-nt-4-0-2k-windows-terminal-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linksys Power Over Ethernet Adapter Injector</title>
		<link>http://www.osscc.org/2010/05/linksys-power-over-ethernet-adapter-injector/</link>
		<comments>http://www.osscc.org/2010/05/linksys-power-over-ethernet-adapter-injector/#comments</comments>
		<pubDate>Wed, 19 May 2010 23:17:00 +0000</pubDate>
		<dc:creator>thenone</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[Access Point]]></category>
		<category><![CDATA[power over ethernet]]></category>

		<guid isPermaLink="false">http://osscc.org/?p=33</guid>
		<description><![CDATA[What you may not realize is that, these same pins 4, 5, 7, and 8 can be used as data or network cable as well if we going to split one UTP cable to be connected to two NIC on the same computer system such as linux pc based router/firewall, so for pins 4,5,7 and 8 are used as power supply pins.]]></description>
			<content:encoded><![CDATA[<p><a style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" href="http://www.amazon.com/Cisco-WAP200E-Wireless-G-Access-Point/dp/B000RMJAKC?ie=UTF8&amp;tag=kegpal-20&amp;link_code=bil&amp;camp=213689&amp;creative=392969" target="_blank"><img src="http://ws.amazon.com/widgets/q?MarketPlace=US&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL160_&amp;ASIN=B000RMJAKC&amp;tag=kegpal-20" alt="Cisco WAP200E Wireless-G Access Point - PoE" /></a><img style="border: none !important; margin: 0px !important; padding: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=kegpal-20&amp;l=bil&amp;camp=213689&amp;creative=392969&amp;o=1&amp;a=B000RMJAKC" border="0" alt="" width="1" height="1" />This is a survival guide to save your &#8220;buck&#8221; if you had a same problem like me in dealing with broken UTP cable on Linksys <a href="http://www.amazon.com/Cisco-Linksys-WAPPOE12-Power-Ethernet-Adapter/dp/B00077IPC6?ie=UTF8&amp;tag=kegpal-20&amp;link_code=btl&amp;camp=213689&amp;creative=392969" target="_blank">Power Over Ethernet Adapter</a><img style="border: none !important; margin: 0px !important; padding: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=kegpal-20&amp;l=btl&amp;camp=213689&amp;creative=392969&amp;o=1&amp;a=B00077IPC6" border="0" alt="" width="1" height="1" /> Injector and beside you dont have any other POE appliances such as manageable switch to providing power supply over ethernet for your <a href="http://www.amazon.com/Cisco-WAP200E-Wireless-G-Access-Point/dp/B000RMJAKC?ie=UTF8&amp;tag=kegpal-20&amp;link_code=btl&amp;camp=213689&amp;creative=392969" target="_blank">Linksys WAP54GPE Acess Point</a><img style="border: none !important; margin: 0px !important; padding: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=kegpal-20&amp;l=btl&amp;camp=213689&amp;creative=392969&amp;o=1&amp;a=B000RMJAKC" border="0" alt="" width="1" height="1" />.<span id="more-33"></span></p>
<p><strong>My actual problem is :</strong></p>
<ol>
<li>the UTP cable on POE Adapter is not working to transmit data via it own UTP cable, to buy a new one it cost about $25-$60 buck(RM80 &#8211; RM200), but why spending when you can still use the POE Adapter as power supply, except for the broken UTP cable on the POE Adapter.</li>
<li>the current UTP installed with Linksys WAP54GPE with RJ45 PCB Socket attached on it is not working too.</li>
</ol>
<div class="separator" style="clear: both; text-align: center;"><a href="http://www.osscc.org/wp-content/uploads/2010/05/DSC00096.jpg"><img class="aligncenter size-full wp-image-107" title="DSC00096" src="http://www.osscc.org/wp-content/uploads/2010/05/DSC00096.jpg" alt="" width="384" height="288" /></a></div>
<div style="text-align: center;">
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://lh4.ggpht.com/_IZd4Rp4XipA/S_RxWPlzc9I/AAAAAAAAA9U/3Nu1_RLCkfo/DSC00095.JPG"><img src="http://lh4.ggpht.com/_IZd4Rp4XipA/S_RxWPlzc9I/AAAAAAAAA9U/3Nu1_RLCkfo/DSC00095.JPG" border="0" alt="" width="400" height="300" /></a></div>
<p>the power is there but not the network connection</p>
</div>
<p><strong>My Solution :</strong><br />
Splitting 1 UTP cable into POE connector and networking cable. At the first end of the UTP cable clamped as normal straight cable, and the second end we split it one as data cable and the other as power supply cable. So pins 1,2,3 and 6 will be connected to the switch.</p>
<div style="text-align: center;"><strong>See the pins out diagram</strong></div>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://1.bp.blogspot.com/_IZd4Rp4XipA/S_Re5eMlU8I/AAAAAAAAA80/1IAz_CxMdWk/s1600/568-b.gif"><img src="http://1.bp.blogspot.com/_IZd4Rp4XipA/S_Re5eMlU8I/AAAAAAAAA80/1IAz_CxMdWk/s320/568-b.gif" border="0" alt="" /></a></div>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://1.bp.blogspot.com/_IZd4Rp4XipA/S_RgXcXl1PI/AAAAAAAAA88/45ZvoheZvk0/s1600/rj45pinout.gif"><img src="http://1.bp.blogspot.com/_IZd4Rp4XipA/S_RgXcXl1PI/AAAAAAAAA88/45ZvoheZvk0/s320/rj45pinout.gif" border="0" alt="" /></a></div>
<div style="text-align: center;"><span class="Apple-style-span" style="font-family: arial, serif;"> </span><br />
<span class="Apple-style-span" style="font-family: arial, serif;"> </span><br />
<span class="Apple-style-span" style="font-family: arial, serif;"></p>
<div style="margin-bottom: 0in;"><strong>The Table</strong></div>
<dl>
<dd>
<table style="text-align: left;" border="0" cellspacing="0" cellpadding="2">
<col width="41*"></col>
<col width="40*"></col>
<col width="47*"></col>
<col width="55*"></col>
<col width="29*"></col>
<col width="45*"></col>
<thead>
<tr>
<th width="16%">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: white;"><span style="font-size: x-small;"><strong>First      RJ45 Pin #</strong></span></span></div>
</th>
<th width="16%">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: white;"><span style="font-size: x-small;"><strong>Wire      Color</strong></span></span></div>
</th>
<th width="18%">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: white;"><span style="font-size: x-small;"><strong>100Base-TX      Signal</strong></span></span></div>
</th>
<th width="21%">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: white;"><span style="font-size: x-small;"><strong>2nd      and 3rd RJ45 Pin #</strong></span></span></div>
</th>
<th width="11%">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: white;"><span style="font-size: x-small;"><strong>Wire      Color</strong></span></span></div>
</th>
<th width="17%">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: white;"><span style="font-size: x-small;"><strong>100Base-TX      Signal</strong></span></span></div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">1</span></span></div>
</td>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Orange</span></span></div>
</td>
<td width="18%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Transmit+</span></span></div>
</td>
<td width="21%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">1      (2nd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Green</span></span></div>
</td>
<td width="17%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Transmit+</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">2</span></span></div>
</td>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Orange</span></span></div>
</td>
<td width="18%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Transmit-</span></span></div>
</td>
<td width="21%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">2 (2nd      RJ45) </span></span></div>
</td>
<td width="11%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Green</span></span></div>
</td>
<td width="17%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Transmit-</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">3</span></span></div>
</td>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Green</span></span></div>
</td>
<td width="18%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Receive+</span></span></div>
</td>
<td width="21%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">3      (2nd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Orange</span></span></div>
</td>
<td width="17%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Receive+</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">4</span></span></div>
</td>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Blue</span></span></div>
</td>
<td width="18%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Unused</span></span></div>
</td>
<td width="21%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">6      (2nd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Blue</span></span></div>
</td>
<td width="17%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Receive-</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">5</span></span></div>
</td>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Blue</span></span></div>
</td>
<td width="18%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Unused</span></span></div>
</td>
<td width="21%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">4      (3rd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Blue</span></span></div>
</td>
<td width="17%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">BI_D3+**</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">6</span></span></div>
</td>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Green</span></span></div>
</td>
<td width="18%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Receive-</span></span></div>
</td>
<td width="21%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">5      (3rd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Green</span></span></div>
</td>
<td width="17%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">BI_D3-**</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">7</span></span></div>
</td>
<td width="16%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Brown</span></span></div>
</td>
<td width="18%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Unused</span></span></div>
</td>
<td width="21%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">7      (3rd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">White/Brown</span></span></div>
</td>
<td width="17%" bgcolor="#ffffff">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">BI_D4+**</span></span></div>
</td>
</tr>
<tr>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">8</span></span></div>
</td>
<td width="16%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Brown</span></span></div>
</td>
<td width="18%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Unused</span></span></div>
</td>
<td width="21%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">8      (3rd RJ45)</span></span></div>
</td>
<td width="11%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">Brown</span></span></div>
</td>
<td width="17%" bgcolor="#dddddd">
<div style="text-align: center; padding: 0in; border: initial none initial;"><span style="color: black;"><span style="font-size: x-small;">BI_D4-**</span></span></div>
</td>
</tr>
</tbody>
</table>
</dd>
</dl>
<p></span></div>
<div style="text-align: center;"><strong>like this one</strong></p>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://lh5.ggpht.com/_IZd4Rp4XipA/S_RxVpNaqlI/AAAAAAAAA9E/QTSFe3ORFQM/s1600/DSC00099.JPG"><img src="http://lh5.ggpht.com/_IZd4Rp4XipA/S_RxVpNaqlI/AAAAAAAAA9E/QTSFe3ORFQM/s400/DSC00099.JPG" border="0" alt="" width="300" height="400" /></a></div>
<p><strong><br />
</strong></p>
</div>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://lh5.ggpht.com/_IZd4Rp4XipA/S_RduygdJhI/AAAAAAAAA8w/FXFo0lKw7p4/s1600/DSC00100.JPG"><img src="http://lh5.ggpht.com/_IZd4Rp4XipA/S_RduygdJhI/AAAAAAAAA8w/FXFo0lKw7p4/s400/DSC00100.JPG" border="0" alt="" width="300" height="400" /></a></div>
<p><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;">We see that the TX (transmitter) pins are connected to the corresponding RX (receiver) pins, plus to plus and minus to minus. You can also see that both the blue and brown wire pairs on pins 4, 5, 7, and 8 are not used in either standard, but actually it was used as power transmiter between the POE Adapter and WAP54GPE Access Point.</span><br />
<span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;"><br />
</span><br />
<span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;">What you may not realize is that, these same pins 4, 5, 7, and 8 can be used as data or network cable as well if we going to split one UTP cable to be connected to two NIC on the same computer system such as linux pc based router/firewall, s</span><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;">o for pins 4,5,7 and 8 are used as power supply pins.</span><br />
<span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;"><br />
</span></p>
<div style="text-align: center;"><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;"><strong>And the result</strong></span></div>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://lh5.ggpht.com/_IZd4Rp4XipA/S_RdGhYKlXI/AAAAAAAAA8M/bgRV27xuHks/DSC00107.JPG"><img src="http://lh5.ggpht.com/_IZd4Rp4XipA/S_RdGhYKlXI/AAAAAAAAA8M/bgRV27xuHks/DSC00107.JPG" border="0" alt="" width="400" height="300" /></a></div>
<p><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;"><br />
</span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://lh3.ggpht.com/_IZd4Rp4XipA/S_RcxxjTmII/AAAAAAAAA8E/k-WnM78q_Hw/DSC00109.JPG"><img src="http://lh3.ggpht.com/_IZd4Rp4XipA/S_RcxxjTmII/AAAAAAAAA8E/k-WnM78q_Hw/DSC00109.JPG" border="0" alt="" width="400" height="300" /></a></div>
<div style="text-align: center;"><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;">Now the LAN connection is ON</span></div>
<div style="text-align: center;"><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;"><br />
</span></div>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://lh3.ggpht.com/_IZd4Rp4XipA/S_RcxG2-OZI/AAAAAAAAA78/dL8M5Dh0HQ8/DSC00111.JPG"><img src="http://lh3.ggpht.com/_IZd4Rp4XipA/S_RcxG2-OZI/AAAAAAAAA78/dL8M5Dh0HQ8/DSC00111.JPG" border="0" alt="" width="400" height="300" /></a></div>
<div style="text-align: center;"><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;">WAP54GPE is &#8220;ON THE AIR&#8221;</span><br />
<span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px;">hehe.. now I can browse the internet using my Sony Ericsson G705 again =P</span></div>
<div class="blogger-post-footer">OSSCC © 2006</div>
<p><map name='google_ad_map_33_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/33?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_33_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=33&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F05%2Flinksys-power-over-ethernet-adapter-injector%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/05/linksys-power-over-ethernet-adapter-injector/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Installing Limewire 5.5.8 On Ubuntu 10.04 LTS</title>
		<link>http://www.osscc.org/2010/05/installing-limewire-5-5-8-on-ubuntu-10-04-lts/</link>
		<comments>http://www.osscc.org/2010/05/installing-limewire-5-5-8-on-ubuntu-10-04-lts/#comments</comments>
		<pubDate>Thu, 13 May 2010 16:56:00 +0000</pubDate>
		<dc:creator>thenone</dc:creator>
				<category><![CDATA[File Sharing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[limewire]]></category>

		<guid isPermaLink="false">http://osscc.org/?p=31</guid>
		<description><![CDATA[I was having a problem to run an old version of Limewire after upgrading my laptop operating system from Ubuntu 9.10 Karmic Koala to Ubuntu 10.04 LTS Lucid Lynx. This is because I was so eager and can wait to buy Ironman 2 and Clash Of The Titan DVD. After searching and googleling for solution then [...]]]></description>
			<content:encoded><![CDATA[<p>I was having a problem to run an old version of Limewire after upgrading my laptop operating system from Ubuntu 9.10 Karmic Koala to Ubuntu 10.04 LTS Lucid Lynx.</p>
<p>This is because I was so eager and can wait to buy Ironman 2 and Clash Of The Titan DVD.</p>
<p>After searching and googleling for solution then I&#8217;ve find out how to upgrade to Limewire 5.5.8.<span id="more-31"></span></p>
<div style="text-align: center;"><strong>Limewire Basic 5.5.8 For Ubuntu Linux</strong></div>
<p><a href="http://www.osscc.org/wp-content/uploads/2010/05/Limewire.png"><img class="aligncenter size-full wp-image-104" title="Limewire" src="http://www.osscc.org/wp-content/uploads/2010/05/Limewire.png" alt="Limewire on Ubuntu Linux" width="400" height="243" /></a><br />
<strong>Just follow these simple instruction here :</strong></p>
<ol>
<li>sudo add-apt-repository &#8220;deb http://archive.canonical.com/ lucid partner&#8221;</li>
<li>sudo apt-get update</li>
<li>download Limewire Basic 5.5.8 for Ubuntu Linux from here <a href="http://www.limewire.com/LimeWireSoftLinuxDeb">http://www.limewire.com/LimeWireSoftLinuxDeb</a></li>
<li>search for the downloaded file, double click and follow the installation prosess</li>
</ol>
<p>If you prompted with authentication key for Limewire Pro, just ignore it, click cancel and proceed to use it as usual.</p>
<p>There is another software you might consider to try, I just installed it but dont have any intentions to explorer gtk-gnutella, but you can give a try.</p>
<div class="blogger-post-footer">OSSCC © 2006</div>
<p><map name='google_ad_map_31_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/31?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_31_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=31&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F05%2Finstalling-limewire-5-5-8-on-ubuntu-10-04-lts%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/05/installing-limewire-5-5-8-on-ubuntu-10-04-lts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Smoothwall for routing your client internet access</title>
		<link>http://www.osscc.org/2010/01/smoothwall-for-routing-your-client-internet-access/</link>
		<comments>http://www.osscc.org/2010/01/smoothwall-for-routing-your-client-internet-access/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:51:00 +0000</pubDate>
		<dc:creator>cubiczero</dc:creator>
				<category><![CDATA[Cyber Cafe]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[smoothwall]]></category>

		<guid isPermaLink="false">http://osscc.org/?p=26</guid>
		<description><![CDATA[They are many kind of firewall system and application you can try for free, and one of them are Smoothwall Express 3.0 polar. Further more SmoothWall Express is not just a firewall but it can also to be setup as a proxy server. Yeah, normally a cyber cafe really needs a proxy server to release the burden of their connection]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.osscc.org/wp-content/uploads/2010/01/smoothwallexpress3.gif"><img class="aligncenter size-full wp-image-90" title="smoothwallexpress3" src="http://www.osscc.org/wp-content/uploads/2010/01/smoothwallexpress3.gif" alt="Smoothwall Express Polar" width="668" height="159" /></a></p>
<p>One of the most important thing that cyber cafe or internet cafe owners should not forget is a firewall. I am not going to brief about firewall history here, but from my experiences dealing with business that has an internet access, a firewall is a must.</p>
<p>They are many kind of firewall system and application you can try for free, and one of them are Smoothwall Express 3.0 polar. Further more SmoothWall Express is not just a firewall but it can also to be setup as a proxy server. Yeah, normally a cyber cafe really needs a proxy server to release the burden of their connection.</p>
<p>Installing and configuring a Linux firewall can be one of the most difficult tasks Linux administrators face. In addition to actually configuring the gateway, few admin pros have expertise with securing the network through <em>ipchains</em>.</p>
<p>Not to worry. The <a href="http://www.smoothwall.org/">SmoothWall</a> Linux distribution simplifies the otherwise daunting task of sharing Internet connections and providing network security. This relatively new Linux distribution is used for one purpose: to provide an easy-to-configure firewall with minimal hardware requirements. Typically, you can convert an older desktop system that has outlived its word-processing and Web-surfing usefulness into a formidable firewall box. SmoothWall is able to run on processors as old as a 386 with 8 MB of RAM. In this Daily Drill Down, I’ll discuss how to install and configure SmoothWall.</p>
<p><strong><span class="subhead1">What you need</span></strong></p>
<ul>
<li>Intel-based PC (386 or greater) with 8 MB of RAM</li>
<li>CD-ROM drive</li>
<li>100 MB of disk space</li>
<li>Access to a CD-ROM writer</li>
</ul>
<p><strong>SmoothWall Express Polar Screenshot</strong></p>
<p style="text-align: center;"><a href="http://www.osscc.org/wp-content/uploads/2010/01/smoowall-express-3-polar.png"><img class="aligncenter size-full wp-image-92" title="smoowall-express-3-polar" src="http://www.osscc.org/wp-content/uploads/2010/01/smoowall-express-3-polar.png" alt="Smoothwall Express" width="475" height="388" /></a>Nice simple and slick web administration interface</p>
<p>Source : <a href="http://articles.techrepublic.com.com/5100-10878_11-1053408.html">http://articles.techrepublic.com.com/5100-10878_11-1053408.html</a></p>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer"></div>
<div class="blogger-post-footer">OSSCC © 2006</div>
<p><map name='google_ad_map_26_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/26?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_26_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=26&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F01%2Fsmoothwall-for-routing-your-client-internet-access%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/01/smoothwall-for-routing-your-client-internet-access/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

