<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-21091388</id><updated>2011-12-13T19:53:33.735-08:00</updated><title type='text'>LINUX and STUFF</title><subtitle type='html'>All about linux inside, networking, programming,server,tutorials, Open Source resources software and hardware and the other stuff.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>48</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-21091388.post-114331157313204634</id><published>2006-03-25T10:31:00.000-08:00</published><updated>2006-05-16T19:59:37.120-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Library types&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Two types of libraries exist on most operating systems: shared and static. On Windows, they are .DLL, for dynamically linked library, and .LIB for static library.&lt;br /&gt;On Linux and most Unix, they are .so and .a files. The shared libraries, the .so files, are loaded at runtime. The .a files, or static libraries, are loaded at compile time and are no longer required to run the binary program. When you make a program, you must decide if you will link it to a static library or a shared one. You will want a shared library in most cases because standard libraries are available on most systems, and would be too big to include in a binary file.&lt;br /&gt;If you have a small library that is not one of the standard ones that you need, then you may decide to include it in your binary program. In that case, simply add it like any other object file in your compilation:&lt;br /&gt;&lt;span style="font-family:lucida grande;"&gt;cc -o program file1.o file2.o library.a&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;shared static library&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331157313204634?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331157313204634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331157313204634' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331157313204634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331157313204634'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/library-types-two-types-of-libraries.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331144830887709</id><published>2006-03-25T10:29:00.000-08:00</published><updated>2006-04-11T22:17:52.380-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Graphical toolkits&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Most Unix programs are console based. This is mainly because several years ago, most computer users were on text-only stations linked to big mainframes. Now, Linux is becoming a full graphical desktop, and needs graphical programs, or at least frontends to text-only programs. This is where graphical tookits come in. Here is a list of some of the toolkits available to Linux programmers:&lt;br /&gt;·  GTK - This is currently a very popular toolkit, and is the base of the GNOME desktop. It is C&lt;br /&gt;based and easy to work with.&lt;br /&gt;· QT - QT is a C++ toolkit made by Troll Tech. It is the base of the popular KDE desktop. · WXwindows - This is a very complete C++ toolkit that is cross-platform. The same code should work on Windows, the MacOS, Unix (Motif and GTK) and others.&lt;br /&gt;· GraphApp - This is also a cross-platform toolkit, but is one of the easiest libraries I ever saw. It supports a smaller set of widgets, but takes only hours to learn. It will work on Windows, the&lt;br /&gt;MacOS, Unix (Motif and Athena) and others.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;gtk,qt,graphapp&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331144830887709?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331144830887709/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331144830887709' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331144830887709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331144830887709'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/graphical-toolkits-most-unix-programs.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331134873766545</id><published>2006-03-25T10:27:00.000-08:00</published><updated>2006-04-07T12:52:21.660-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Segmentation fault&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="" style="display: block;" id="formatbar_JustifyFull" title="Justify Full" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 13);ButtonMouseDown(this);"&gt;&lt;/span&gt;One of the most common problems when making software is errors like "Segmentation fault", also called SegFault. Here is what a SegFault is. Virtual memory in a computer can be created in 2 ways: pages or segments. Paging means that the memory is divided in pages of equal size, containing words of memory in it. Segmentation means that every process has a segment of memory of needed size, with gaps of empty memory blocks between the segments.&lt;br /&gt;The operating system knows the upper limit of every segment, and every segment begins at a virtual address 0. When a program accesses a memory block, it calls a virtual address that the Memory Management Unit (MMU) maps to a real address. If the operating system sees that the requested address doesn't match any valid address in the segment, it will send a signal to the process terminating it. SegFaults are the direct result of a memory error. The program has a bad pointer, a memory leak or any kind of error that makes it access the wrong memory address. To correct these errors you need to check pointers and arrays for errors.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;virtual memory,mmu&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331134873766545?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331134873766545/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331134873766545' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331134873766545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331134873766545'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/segmentation-fault-one-of-most-common.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331124359176923</id><published>2006-03-25T10:26:00.000-08:00</published><updated>2006-04-04T05:02:08.106-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Using PASCAL on Linux&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Linux comes with a lot of compilers and interpreters. These include programs for C, C++, Perl, TCL/TK and more. Unfortunately most Linux distributions don't come with a Pascal compiler. Is it possible to compile Pascal programs? It sure is.&lt;br /&gt;Several projects were started to make a Pascal compiler for Linux. One is called GNU Pascal and is available from &lt;a href="http://agnes.dida.physik.uni-essen.de/%7Egnu-pascal"&gt;http://agnes.dida.physik.uni-essen.de/~gnu-pascal&lt;/a&gt;. That program will also run on any operating system that supports the GNU C compiler.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;fpc, gnu pascal&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331124359176923?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331124359176923/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331124359176923' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331124359176923'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331124359176923'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/using-pascal-on-linux-linux-comes-with.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331116056223029</id><published>2006-03-25T10:24:00.000-08:00</published><updated>2006-04-03T01:56:53.826-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Makefile don't equal C&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Makefiles are used in most Unix C or even C++ programs. But nowhere does it say that they can't be used for other languages. Make is a program installed with most Linux distributions, and on most Unix systems too.&lt;br /&gt;Makefiles make your program portable, and easy to compile. These files can be used in C, C++, Java, and any program that requires compilation. Make has so many useful applications. Feel free to explore them for your programs.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;makefile howto&lt;/span&gt;&lt;br /&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331116056223029?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331116056223029/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331116056223029' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331116056223029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331116056223029'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/makefile-dont-equal-c-makefiles-are.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331103037179130</id><published>2006-03-25T10:22:00.000-08:00</published><updated>2006-03-31T09:39:24.473-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Speed problems on a PPP connection&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;PPPd is the PPP connection daemon. It will try to connect to a server using a specified speed. The default speed is 38400. If you use a serial connection, or a 56.7Kbps modem, it may not be enough. If you want to use all the available bandwidth, you need to increase that number. For example, for a serial connection, you want the speed set at 115200.&lt;br /&gt;Another reason for speed drops is unwanted packets. You may want to filter unwanted packets out of your network, like some ICMP messages and chat connections. A last possibility for speed drops is Denial of Service attacks. DoS attacks are unfortunately very real and they occur a lot. Malicious people that can't handle their problems elsewhere turn to the Internet and launch attacks against networks. An attack against one user will always affect several thousands of people. By using bandwidth of an Internet provider to cause trouble to any one user, the whole provider will be affected. To prevent such attacks, firewalls exist, and tracking tools were invented to deal with abusers. MCI has a tool called DoSTrack that can be of help if you are victim of such an attack. For more information about various DoS attacks, you should search the Web.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;ppp&lt;/span&gt;&lt;br /&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331103037179130?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331103037179130/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331103037179130' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331103037179130'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331103037179130'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/speed-problems-on-ppp-connection-pppd_25.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331092412846864</id><published>2006-03-25T10:21:00.000-08:00</published><updated>2006-03-30T10:36:52.620-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Linux without a hard drive&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Modern Linux distributions require around 100 megs to 200 megs of hard disk space to install. But is it possible to run Linux on a system without a hard drive? Yes it is.&lt;br /&gt;The Linux Router Project is a full-featured Linux distribution that fits on one diskette. It was made for routers, and use modules to add the software packages you need, including DNS servers, Web servers, email and routing. You can find more information on the Linux Router Project at &lt;a href="http://www.linuxrouter.org"&gt;http://www.linuxrouter.org&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;keyword :&lt;span style="font-weight: bold;"&gt; linux router project&lt;/span&gt;&lt;br /&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331092412846864?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331092412846864/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331092412846864' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331092412846864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331092412846864'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/linux-without-hard-drive-modern-linux.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331084176420627</id><published>2006-03-25T10:19:00.000-08:00</published><updated>2006-03-29T09:54:25.816-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Added processors&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Dual processors are becoming more and more popular in computers. Of course, you won't be able to see much performance increase in Linux unless you tell Linux about the second CPU. Here is how to do it.&lt;br /&gt;Go in the kernel, and enable SMP. SMP means Symetric Multi-Processing and tells the kernel that more than one processor can be used. After a reboot, Linux should tell you that it has detected 2 processors and what their status are.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;smp&lt;/span&gt;&lt;br /&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331084176420627?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331084176420627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331084176420627' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331084176420627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331084176420627'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/added-processors-dual-processors-are.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331071597746686</id><published>2006-03-25T10:16:00.000-08:00</published><updated>2006-03-29T01:52:51.680-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Use Windows special keys in Linux&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Why are all the new keyboards sold with Win95 keys on them? How about making them do real keyboard functions while in X Window? Here is how.&lt;br /&gt;First you need to find out which key mapping you are using. Usually it will be US, it might also be en_US, ca or else. Locate the file, usually in /usr/X11/lib/X11/xkb and edit it with your favorite editor. For me the file is called /usr/X11/lib/X11/xkb/symbols/ca.&lt;br /&gt;The file lists all the key codes and what they do. The key codes for the Win95 special keys are LWIN, RWIN and MENU. All you need to do is add them to the list, with the functions for them. I decided to map the leftWIN key to "@" and the right WIN key and MENU keys to "{" and "}". Here are the lines I added:&lt;br /&gt;key &lt;rwin&gt; { [ braceleft ] };&lt;br /&gt;key &lt;lwin&gt; { [ at ] };&lt;br /&gt;key&lt;/lwin&gt;&lt;/rwin&gt;{ [ braceright ] };&lt;br /&gt;By browsing the file you can find all the other symbols and what they do. You can also add multiple functions to a key, by using ALT and SHIFT.The changes will take effect when you restart X Window. With the XKB extension (you do need to have it enabled in /etc/XF86Config btw) it's easy to change the mapping of any key.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;special key in linux&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331071597746686?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331071597746686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331071597746686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331071597746686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331071597746686'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/use-windows-special-keys-in-linux-why.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331049330574819</id><published>2006-03-25T10:12:00.000-08:00</published><updated>2006-09-13T23:13:26.350-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Everything on sound cards&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A sound card can be easy or hard to detect. It depends on who made it. Many Sound Blaster Compatible cards in fact are not compatible with the Linux Sound Blaster driver. Other cards will be compatible with a driver you would never have thought of.&lt;br /&gt;There are multiple drivers for Linux. Currently the kernel comes with its own set of sound drivers, plus the OSS/Free drivers. These will support most generic cards. In the installation program, or when compiling your kernel, you can pick the sound card that matches yours, or the one that matches the chipset on your sound card (for example, the Sound Blaster PCI64 card uses the AudioPCI chipset).&lt;br /&gt;If your sound card is not supported by the kernel, you will need to get another driver. 2 popular ones are ALSA available from &lt;a href="http://alsa.jcu.cz"&gt;http://alsa.jcu.cz&lt;/a&gt; and OSS/Linux available from &lt;a href="http://www.opensound.com"&gt;http://www.opensound.com&lt;/a&gt; OSS/Linux is a commercial product that supports a lot of cards not available in other drivers because of card specification restrictions. You will need to see the list of supported cards in each driver and pick the driver you need.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;alsa&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331049330574819?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331049330574819/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331049330574819' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331049330574819'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331049330574819'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/everything-on-sound-cards-sound-card.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331032207847326</id><published>2006-03-25T10:09:00.000-08:00</published><updated>2006-03-27T10:10:17.083-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;Detecting 2 ethernet cards&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To configure an ethernet card in Linux, you need to enable it in the kernel. Then the kernel will detect your ethernet card if it is at a common IO port. But it will stop there, and will never check if you have 2 ethernet cards.&lt;br /&gt;The trick is to tell the ethernet driver that there are 2 cards in the system. The following line will tell the kernel that there is an ethernet card at IRQ 10 and IO 0x300, and another one at IRQ 9 and IO 0x340: ether=10,0x300,eth0 ether=9,0x340,eth1&lt;br /&gt;You can add that line on bootup at the "boot:" prompt, or in the /etc/lilo.conf file. Don't forget to run:&lt;br /&gt;lilo&lt;br /&gt;That will reload the lilo.conf file and enable changes.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;ethernet card in linux&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331032207847326?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331032207847326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331032207847326' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331032207847326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331032207847326'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/detecting-2-ethernet-cards-to.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114331015537815447</id><published>2006-03-25T10:06:00.000-08:00</published><updated>2006-03-26T09:29:47.716-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;Running Java programs&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Java is an interpreted language. Usualy Java is found on the Web, in small programs called applets. But many Java applications exist. They are like applets, but require a Java Virtual Machine to run on your system. Netscape Communicator and any Java-enabled browser can run Java applets, but what if you want to run Java programs?&lt;br /&gt;Java programs are files ending with .class and must be run in a JVM. The Java Development Kit comes with a JVM. What you need is the Linux port of the JDK that you can find at &lt;a href="http://www.blackdown.org"&gt;http://www.blackdown.org&lt;/a&gt;. Once installed, you can run any Java application using the line:&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;java Program&lt;/span&gt;&lt;br /&gt;Where java is the JVM, from the JDK package, and Program is the class found inside the Program.class file. Note that you do not have to specify the .class part of the file to run it.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;java virtual machine,java development kit&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114331015537815447?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114331015537815447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114331015537815447' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331015537815447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114331015537815447'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/running-java-programs-java-is_25.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114330995199969352</id><published>2006-03-25T09:51:00.000-08:00</published><updated>2006-03-25T10:05:52.036-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Internet Technologies&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The Internet is of course a big phenomena, and Linux is a big part of it. Linux servers are very popular, and you can be a part of this revolution.&lt;br /&gt;Among available technologies, here are the most popular ones:&lt;br /&gt;·  Java - The Java language is a new and powerful language made to be cross-platform. Since the  Web must be available on all systems, this makes Java a very powerful tool. You can make Java applets that will run on the user's system and display information or interact with him.&lt;br /&gt;·  JavaScript - This is similar to Java, but in a Web page itself. It is embedded in HTML, to do small functions like rollover scripts, and making text appear on the screen.&lt;br /&gt;·  CGI - The CGI protocol is very much in use for servers with some sort of account system, like online shops and search engines. You can make CGI scripts in any language, and make your Web server run them on the server.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;java,javascript,cgi&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114330995199969352?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114330995199969352/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114330995199969352' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114330995199969352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114330995199969352'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/internet-technologies-internet-is-of.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114288531463193698</id><published>2006-03-20T12:06:00.000-08:00</published><updated>2006-03-25T00:26:40.786-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold;font-size:130%;" &gt;Network printers&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;By tradition in Unix most services come with networking capabilities. This includes the printing server. You don't need to get third party software to make a printing server.&lt;br /&gt;The lpd daemon allows you to print to your local printer, but also allows others to print on it, if you allow them.&lt;br /&gt;By default the printing software will read on port 515 on the UDP protocol. It will allow hosts listed in the /etc/hosts.lpd to print using your printer. For a full overview of the printing service, you should check the printing howto on the Web.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;linux printing howto&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114288531463193698?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114288531463193698/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114288531463193698' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288531463193698'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288531463193698'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/network-printers-by-tradition-in-unix.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114288460954928376</id><published>2006-03-20T11:54:00.000-08:00</published><updated>2007-02-26T00:45:22.763-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Speed problems on a PPP connection&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;PPPd is the PPP connection daemon. It will try to connect to a server using a specified speed. The default speed is 38400. If you use a serial connection, or a 56.7Kbps modem, it may not be enough. If you want to use all the available bandwidth, you need to increase that number. For example, for a serial connection, you want the speed set at 115200.&lt;br /&gt;Another reason for speed drops is unwanted packets. You may want to filter unwanted packets out of your network, like some ICMP messages and chat connections.&lt;br /&gt;A last possibility for speed drops is Denial of Service attacks. DoS attacks are unfortunately very real and they occur a lot. Malicious people that can't handle their problems elsewhere turn to the Internet and launch attacks against networks. An attack against one user will always affect several thousands of people. By using bandwidth of an Internet provider to cause trouble to any one user, the whole provider will be affected. To prevent such attacks, firewalls exist, and tracking tools were invented to deal with abusers. MCI has a tool called DoSTrack that can be of help if you are victim of such an attack. For more information about various DoS attacks, you should search the Web.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;pppd&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114288460954928376?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114288460954928376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114288460954928376' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288460954928376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288460954928376'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/speed-problems-on-ppp-connection-pppd.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114288438875087139</id><published>2006-03-20T11:52:00.000-08:00</published><updated>2006-03-22T09:44:22.706-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Accessing remote file systems&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;SMB is the most popular protocol to access Windows systems. But from the Unix world comes NFS. NFS is a way to share files that predates SMB and Samba, and comes compiled in most Linux distributions. To enable file sharing, you must have the nfsd and mountd daemons running. You also need to add the IPs of the systems you want to allow in /etc/exports. To access remote file systems, you simply mount them like local hard drives. To mount /usr/files from 1.2.3.4 into /mnt/files, simply type: mount -tnfs 1.2.3.4:/usr/files /mnt/files&lt;br /&gt;The -tnfs parameter may be omited.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;nfs server&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114288438875087139?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114288438875087139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114288438875087139' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288438875087139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288438875087139'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/accessing-remote-file-systems-smb-is.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114288421107072913</id><published>2006-03-20T11:46:00.000-08:00</published><updated>2006-03-21T10:21:14.673-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Sharing files from a Windows system&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The protocol to use to be able to share files with Windows systems is called SMB. Linux supports natively a lot of file systems and network protocols. SMB is one of them. To be able to mount a Windows file system to share files, that system needs to have file sharing enabled, and you need to enable SMB support in the kernel. You also need to download a program called Samba which allows you to share remote file systems, and build yourself a server. General information about how to connect Linux, Windows machines and Macs is on the Web at &lt;a href="http://www.eats.com/linux_mac_win.html"&gt;http://www.eats.com/linux_mac_win.html&lt;/a&gt;.&lt;br /&gt;If SMB is not a possibility, you could use FTP. Linux by default has an FTP server turned on. Windows FTP servers are also available for free.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;samba server&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114288421107072913?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114288421107072913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114288421107072913' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288421107072913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114288421107072913'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/sharing-files-from-windows-system.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114287863058612330</id><published>2006-03-20T10:13:00.000-08:00</published><updated>2006-03-20T10:27:06.016-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold;font-size:130%;" &gt;Internet for your LAN&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Many companies have local networks, and it is becoming even more popular in homes, where 2 or 3 systems are linked together using ethernet wires. Most providers only offer 1 IP address per connection, which means that you can't put all of the systems on the Internet at the same time, unless you use a special gateway.&lt;br /&gt;Linux comes with something called IP-Masquerade. With it, you can assign LAN IPs, which are IPs that can't go on the Internet directly, and then use the Linux system as a gateway. All you need to implement this is a Linux system with 2 ethernet cards, and an Internet connection. The Linux system has IP-Masquerade enabled, and the LAN systems will have access to the Internet using the Linux gateway as a transparant proxy server.&lt;br /&gt;You can find more on the subject by reading the IP-Masq HOWTO and other networking documentation at &lt;a href="http://metalab.unc.edu/pub/Linux/docs"&gt;http://metalab.unc.edu/pub/Linux/docs&lt;/a&gt;. You also need to make sure your Internet provider accepts this kind of network on their connection.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;proxy server, ip masquerade, networking documentation&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114287863058612330?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114287863058612330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114287863058612330' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114287863058612330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114287863058612330'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/internet-for-your-lan-many-companies.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225387358346353</id><published>2006-03-13T04:41:00.000-08:00</published><updated>2006-03-19T10:33:00.873-08:00</updated><title type='text'></title><content type='html'>&lt;div align="justify"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;Secure Web Server&lt;/strong&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Electronic commerce is becoming very popular on the Internet. Companies will often pay thousands of dollars for commercial packages to deliver secure content to customers on the Web. You can setup one of the most popular Web servers, Apache, running on Linux and serving secure content, for free. To setup Apache to deliver secure content, you will need to get a cryptographic package called OpenSSL, based on the SSLeay library. The place to start is at &lt;a href="http://www.apache-ssl.org"&gt;http://www.apache-ssl.org&lt;/a&gt;. From there, you can download the needed patches to make Apache into a secure web server. Detailed instructions are available in the packages, but here is a quick step-by-step guide:&lt;br /&gt;· First, you need to download 3 packages: Apache itself, the corresponding Apache-SSL patch&lt;br /&gt;and OpenSSL.&lt;br /&gt;· Then you need to patch the Apache distribution and compile the SSL library.&lt;br /&gt;· After editing the configuration file in the Apache directory, and setting the right paths and libraries to use, you can compile Apache and then create a test certificate.&lt;br /&gt;· All you have to do now is install Apache and configure it to use your test certificate.&lt;br /&gt;Note that while Apache and the SSLeay libray are free, you may need to pay to get signed certificates from commercial companies. Also, due to export laws in various countries, you may want to check your local laws before using any encrypting product.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;keyword : &lt;strong&gt;apache web server&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225387358346353?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225387358346353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225387358346353' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225387358346353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225387358346353'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/secure-web-server-electronic-commerce.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225369314517856</id><published>2006-03-13T04:37:00.000-08:00</published><updated>2006-03-16T14:13:45.500-08:00</updated><title type='text'></title><content type='html'>&lt;div align="justify"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;Emulation&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Linux is source compatible with Unix. This means that all of the Unix programs should work on Linux when compiled correctly, with little or no change to the source. Unix does provide a wide variaty of software programs, but some programs are only available on non-Unix systems. A number of emulators are available on Linux. We'll see 4 of them:&lt;br /&gt;· One of them is called WINE and stands for WINE Is Not an Emulator. It used to stand for Windows Emulator. WINE will run various Windows 16bits and 32bits applications. The home page for WINE is at &lt;a href="http://www.winehq.com"&gt;http://www.winehq.com&lt;/a&gt;.&lt;br /&gt;· To emulate DOS programs, a program called DOSemu exists. That program comes with an X Window interface and a console interface. It will run most DOS programs. You may want to run graphic-intensive programs like DOS games in the console interface of DOSemu. Like WINE, DOSemu is a free product.&lt;br /&gt;· To emulate MacOS programs, a commercial program called Executor exists. It will run a MacOS-like shell in X Window and will run various MacOS programs. · A new commercial program is now available for every OS. It is called VMware and will create a virtual PC, allowing you to run nearly any operating system, including DOS, Windows NT and FreeBSD. It is very stable and comes with a 30 day free license.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;keyword : &lt;strong&gt;wine,dosemu,executor,vmware,macos&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225369314517856?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225369314517856/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225369314517856' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225369314517856'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225369314517856'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/emulation-linux-is-source-compatible.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225344548477776</id><published>2006-03-13T04:34:00.000-08:00</published><updated>2006-03-15T10:04:20.140-08:00</updated><title type='text'></title><content type='html'>&lt;div align="justify"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;Real Audio and Video&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Real Networks has released their Real Player for Linux. Unfortunately, many users had problems setting it up. When running an older kernel, you may need to disable the 16bits sound playback. When running the Linux kernel 2.2 with Real Player 5.0, you may need to use a workaround to get the Real Player to work. The workaround is available from the Web. Real Networks provides the Real Player for Linux and for RedHat Linux. The RedHat Linux version comes in the RPM format. Here it is:&lt;br /&gt;&lt;/div&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/blogger/7338/2130/320/real%20player.jpg" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;real player for linux&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225344548477776?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225344548477776/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225344548477776' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225344548477776'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225344548477776'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/real-audio-and-video-real-networks-has.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225301027580004</id><published>2006-03-13T04:28:00.000-08:00</published><updated>2006-03-14T10:12:34.656-08:00</updated><title type='text'></title><content type='html'>&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;Scanning with Linux&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;A number of scanning programs exist for Linux. A popular one currently is SANE which stands for "Scanner Access Now Easy" and is available from &lt;a href="http://www.mostang.com/sane"&gt;http://www.mostang.com/sane&lt;/a&gt;. It is an application programming interface that provides standardized access to scanners. Several graphical frontends are also available from the SANE Web page.&lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;keyword : &lt;strong&gt;sane&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225301027580004?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225301027580004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225301027580004' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225301027580004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225301027580004'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/scanning-with-linux-number-of-scanning.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225289935637753</id><published>2006-03-13T04:26:00.000-08:00</published><updated>2006-03-14T01:54:42.556-08:00</updated><title type='text'></title><content type='html'>&lt;div align="justify"&gt;&lt;strong&gt;ICQ on Linux&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;The original ICQ client does not currently run on Linux. Fortunately, there are clones that do run on Linux and offer the ICQ service to users. A popular ICQ program is Licq available from &lt;a href="http://licq.wibble.net"&gt;http://licq.wibble.net&lt;/a&gt;. Another popular one is Micq available at &lt;a href="http://micq.chatzone.org"&gt;http://micq.chatzone.org&lt;/a&gt;. Other ICQ programs are also available for Linux. This is licq:&lt;br /&gt;&lt;/div&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://photos1.blogger.com/blogger/7338/2130/320/icq.jpg" border="0" /&gt;&lt;br /&gt;keyword :&lt;strong&gt; icq on linux&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225289935637753?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225289935637753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225289935637753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225289935637753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225289935637753'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/icq-on-linux-original-icq-client-does.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225271420256371</id><published>2006-03-13T04:23:00.000-08:00</published><updated>2006-03-13T04:32:47.373-08:00</updated><title type='text'></title><content type='html'>&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;Running Java Programs&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Java is an interpreted language. Usualy Java is found on the Web, in small programs called applets. But many Java applications exist. They are like applets, but require a Java Virtual Machine to run on your system. Netscape Communicator and any Java-enabled browser can run Java applets, but what if you want to run Java programs?&lt;br /&gt;Java programs are files ending with .class and must be run in a JVM. The Java Development Kit comes with a JVM. What you need is the Linux port of the JDK that you can find at &lt;a href="http://www.blackdown.org"&gt;http://www.blackdown.org&lt;/a&gt;. Once installed, you can run any Java application using the line: java Program. Where java is the JVM, from the JDK package, and Program is the class found inside the Program.class file. Note that you do not have to specify the .class part of the file to run it.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;java programming&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225271420256371?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225271420256371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225271420256371' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225271420256371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225271420256371'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/running-java-programs-java-is.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114225259708136396</id><published>2006-03-13T04:21:00.000-08:00</published><updated>2006-03-13T04:33:58.286-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;strong&gt;TV on Linux&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;br /&gt;A number of cards exist allowing you to watch and record TV on your PC. Most come with software for Windows only, like so many things, but it is possible to do the same thing on Linux.&lt;br /&gt;Linux comes with several drivers which make up the Video4Linux drivers. Several cards are upported by these drivers, and a list of them is available at &lt;a href="http://roadrunner.swansea.linux.org.uk/v4l.shtml"&gt;htttp://roadrunner.swansea.linux.org.uk/v4l.shtml&lt;/a&gt;. This is the driver side. You also need software to use the devices. Several programs are available to watch TV, capture images and even Web applications. A list of some of the programs is available at &lt;a href="http://www.thp.uni-koeln.de/~rjkm/linux/bttv.html"&gt;http://www.thp.uni-koeln.de/~rjkm/linux/bttv.html&lt;/a&gt; including datasheets.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;tv on linux&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114225259708136396?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114225259708136396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114225259708136396' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225259708136396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114225259708136396'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/tv-on-linux-number-of-cards-exist.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114217740905795996</id><published>2006-03-12T07:28:00.000-08:00</published><updated>2006-03-12T07:30:09.073-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold;font-size:130%;" &gt;Mono Progressively Come Near .Net&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Mono project has present the new release which aim to make it out from development environment and going to production systems. Version 1.1.10 containing tweaks like &lt;span style="font-style: italic;"&gt;auto-configuration&lt;/span&gt; and ability to work with virtual hosts. Mono desained so .Net codes can be execute on n0 Windows system like Unix and Linux. One of the problem is mod_mono, Apache modul which providing support to ASP.NET. "We know that mod_mono difficult to configure and Mono needs system administrator to registrate all directory containing ASP.NET application manually. This thing is a complicated problem to many system administrator and discontinuing usaging mod_mono adoption to multi user," said Mono project developer. This modul have updated in 1.1.10 release with a auto-configuration system, so that ASP.NET aplications can work without to make Apache configuration changes.&lt;br /&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;mono project&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114217740905795996?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114217740905795996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114217740905795996' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114217740905795996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114217740905795996'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/mono-progressively-come-near.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114201375638323212</id><published>2006-03-10T09:46:00.000-08:00</published><updated>2006-03-10T10:02:36.453-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;/span&gt;      &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Create Instant Messaging Server with Jabberd2 and MySQL&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;br /&gt;Chatting server doesn't always Yahoo,Google or Microsoft. You can make chatting server&lt;span style=""&gt;  &lt;/span&gt;base on open source software Jabberd2 and MySQL. In this tutorial i'll give you how to make instant messaging serverbase on jabber protocol with Jabberd2 as server and MySQL as jabber data storage place .For the installation make sure that you libdn version 0.3 or higher, OpenSSL verion 0.9 or higher and MySQL packet.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;                                                       &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;span style="font-weight: bold;"&gt;Jabberd2 Installation&lt;/span&gt;&lt;br /&gt;After downloading the new and stabil jabberd2, go to directory where the jabberd2 placed.&lt;br /&gt;1. Make new group and user call jabber&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ su&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;passwd : &lt;your&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# groupadd jabber&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;# useradd jabber&lt;/span&gt;&lt;br /&gt;2. Make directory to save jabberd2 log files&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# mkdir -p /usr/local/var/jabberd/log&lt;/span&gt;&lt;br /&gt;3. Make directory to save jabberd2 PID files.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# mkdir -p /usr/local/var/jabberd/pid&lt;/span&gt;&lt;br /&gt;4. Change log file and PID directory owner for user and group jabber&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# chown -R jabber:jabber /usr/local/var/jabberd/&lt;/span&gt;&lt;br /&gt;5. Extract jabberd file&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# tar -zxf jabberd -2.0s10.tar.gz&lt;/span&gt;&lt;br /&gt;6. Go to directory extract result and do configuration command&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# cd jabber2-2.0s10&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;# ./configure --enable-idn --enable-mysql --enable-ssl&lt;/span&gt;&lt;br /&gt;7. After configure finish, do build and installation&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# make &amp;&amp;amp; make install&lt;/span&gt;&lt;br /&gt;8. Change configuration files for root user and change file permission&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# chown -R root:jabber /usr/local/etc/jabberd/*&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;# chmod 640 /usr/local/etc/jabberd/*&lt;/span&gt;&lt;br /&gt;9. To make easy configuration setting, create symbolic link configuration jabberd2 directory to /etc&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#  ln -s /usr/local/etc/jabberd /etc/jabberd&lt;/span&gt;&lt;o:p style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;                                                   &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;span style="font-weight: bold;"&gt;Jabberd2 Configuration&lt;/span&gt;&lt;br /&gt;Jabberd configuration files is file with extension.xml. For early step do configuration to sm.xml and c2s.xml&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# vi /etc/jabberd/sm.xml&lt;/span&gt;&lt;br /&gt;At &lt;id&gt;&lt;/id&gt; part, insert hostname as identification for your jabber server&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;id&gt;jabber.localhost.org&lt;/id&gt;&lt;/span&gt;&lt;br /&gt;At &lt;ip&gt;&lt;/ip&gt; part, on Router connection configuration, change 127.0.0.1 to your server ip address.EX:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;!-- Router connection configuration --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;router&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- IP/Port the router is waitng for connection on --!&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;ip&gt;192.168.0.1&lt;/ip&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- default: 127.0.0.1 --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;port&gt;5347&lt;/port&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- default: 5347 --&gt;&lt;/span&gt;&lt;br /&gt;Save and now edit c2s.xml file,&lt;br /&gt;Change IP address on Roter connection configuration with your server IP address.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;!-- Router connection configuration --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;router&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- IP/Port the router is waitng for connection on --!&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;ip&gt;192.168.0.1&lt;/ip&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- default: 127.0.0.1 --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;port&gt;5347&lt;/port&gt;&lt;br /&gt;&lt;!-- default: 5347 --&gt;&lt;/span&gt;&lt;br /&gt;Then edit on Local network configuration by cahnge &lt;id&gt;&lt;/id&gt; part with your hostname&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;id&gt;jabber.localhost.org&lt;/id&gt;&lt;/span&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;                                                 &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;span style="font-weight: bold;"&gt;MySQL Configuration&lt;/span&gt;&lt;br /&gt;Execute MySQL setup script which locate in tools directory in source directory jabber. First change to tools directory&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# cd tools&lt;/span&gt;&lt;br /&gt;Make sure MySQL server service is running, and execute below command from console&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;mysql -u root -p&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;mysql&gt; \. db -setup.mysql&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;mysql&gt; GRANT select, insert, delete, update, ON jabber2.* to jabberd2@localhost IDENTIFIED by 'secret';&lt;/span&gt;&lt;br /&gt;Jabberd2 user with password secret is the default.You can change it with your own user and password. If you choose to use default user and password, you dont have to edit sm.xml and c2s.xml. But if you use your own user and password do this :&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;!-- MySQL driver configuration --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;mysql&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!--Database server host and port --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;host&gt;localhost&lt;/host&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;port&gt;3306&lt;/port&gt;&lt;/span&gt;&lt;o:p style="font-weight: bold;"&gt;&lt;/o:p&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- Database name --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;dbname&gt;jabberd2&lt;/dbname&gt;&lt;/span&gt;&lt;o:p style="font-weight: bold;"&gt;&lt;/o:p&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;!-- Database username and password --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;user&gt;jabberd2&lt;/user&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;pass&gt;secret&lt;/pass&gt;&lt;/span&gt;&lt;br /&gt;On MySQL driver configuration change &lt;user&gt;&lt;/user&gt; with your&lt;span style=""&gt;  &lt;/span&gt;MySQL database user and &lt;pass&gt;&lt;/pass&gt; with your&lt;span style=""&gt;  &lt;/span&gt;MySQL database password.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;!-- Database username and password --&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;user&gt;user_db&lt;/user&gt;&lt;/span&gt;&lt;o:p style="font-weight: bold;"&gt;&lt;/o:p&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;pass&gt;pass_user_db&lt;/pass&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;             &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;span style="font-weight: bold;"&gt;Server Test&lt;/span&gt;&lt;br /&gt;Execute jabberd server with this command :&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# su jabber&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;$ /usr/local/bin/jabberd &amp;&lt;/span&gt;&lt;o:p&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;                               &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;span style="font-weight: bold;"&gt;Jabberd2 configuration with SSL Connection&lt;/span&gt;&lt;br /&gt;First step is make self-signed SSL &lt;span style="color: black;"&gt;certificate&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: black;" lang="EN-US"&gt;&lt;span style="font-weight: bold;"&gt;openssl req -new -x509 -newkey -rsa:1024 -days 3650 -keyout privkey.pem -out server.pem&lt;/span&gt;&lt;br /&gt;Delete passphrase from your private key.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;openssl rsa -in privatekey.pem -out privatekey.pem&lt;/span&gt;&lt;br /&gt;Combine private key and public key in one file.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cat privatekey.pem &gt;&gt; server.pem&lt;/span&gt;&lt;br /&gt;Delete your private key&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rm privkey.pem&lt;/span&gt;&lt;br /&gt;Remove server.pem file to /usr/local/etc/jabberd directory&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# mv server.pem /usr/local/etc/jabberd/server.pem&lt;/span&gt;&lt;br /&gt;Change owner and permission file for root user&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# chown root:jabber /usr/local/etc/jabberd/server.pem&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;# chmod 640 /usr/local/etc/jabberd/server.pem&lt;/span&gt;&lt;o:p&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;                 &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial; color: black;" lang="EN-US"&gt;&lt;span style="font-weight: bold;"&gt;Configure SSL Certificate so can be use by Jabber client&lt;/span&gt;&lt;br /&gt;SSL Key configuration for jabber client place in c2s.xml file. Edit location from your SSl Key. If you following steps above, uncomment file location on local network configuration session.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;pemfile&gt;/usr/local/etc/jabberd/server.pem&lt;/pemfile&gt;&lt;/span&gt;&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Configure SSL Certificate Jabberd  Between Component&lt;/span&gt;&lt;br /&gt;Each of five Jabberd componen (router.xml,resolver.xml,s2s.xml,sm.xml and c2s.xml) have configuration for encrypted communication between component to jabberd router.So each component must be configured. Below is example configuration SSL Key certificate location for sm.xml. Same way can be done too to other files.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;pemfile&gt;/usr/local/etc/jabberd/server.pem&lt;/pemfile&gt;&lt;/span&gt;&lt;br /&gt;After edited jabberd configuration file finish, restart your jabberd server. Now you can try from jabber client. In linux you can use Kopete, Gaim, Gabber or Psi while in window use Exodus or Psi. Enjoy !!!!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;o:p&gt;keyword : &lt;span style="font-weight: bold;"&gt;Linux Instant Messaging Server, Jabberd2, Jabberd2studio&lt;/span&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;your root="" password=""&gt;&lt;router&gt;&lt;router&gt;&lt;mysql&gt;&lt;/mysql&gt;&lt;/router&gt;&lt;/router&gt;&lt;/your&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114201375638323212?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114201375638323212/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114201375638323212' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114201375638323212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114201375638323212'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/create-instant-messaging-server-with.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114182115886529865</id><published>2006-03-08T04:30:00.000-08:00</published><updated>2006-03-09T11:53:23.626-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;strong&gt;Database Management : phpLDAPadmin 0.9.7.2&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;PhpLDAPadmin is a web based LDAP browser and management tool which is made use PHP script. With this application you can configure LDAP server application easily. Some feature that had by PhpLDAPadmin : LDAP tree browser, template based entry editing, copy LDAP entries, LDIFF and DSML export, DSML import, manage user password hashes,etc. Because of all these features, PhpLDAPadmin included in 50 best PHP software in PHP Quebec Conference 2004. Beside OpenLDAP, some LDAP server that had supported by PhpLDAPadmin is Fedora Directory Server,Microsoft Active Directory, Novell Netware 6.5 eDirectory and Sun DirectoryServer. To use phpLDAPadmin, make sure you have install apache, MySQL/PostgreSQL and PHP with LDAP support. Beside that, extract to your Apache Root Document and edit parameter in config.php file. As Front-end application for LDAP server like openLDAP, phpLDAPadmin usage can lightening you in editing complicated LDAP configuraton file.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;PhpLDAPadmin, Free Database Management Software&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114182115886529865?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114182115886529865/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114182115886529865' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114182115886529865'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114182115886529865'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/database-management-phpldapadmin-0.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114182099124479117</id><published>2006-03-08T04:26:00.000-08:00</published><updated>2006-03-09T11:49:43.486-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;strong&gt;IBM Open GPFS Code&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As more popular Linux cluster, IBM finally open General Parallel File System (GPFS) source code. This done by IBM so that the file system can walk at hardware from other vendor. With GPFS, giving addition ability to all its consumer to use physical resource, like line of server or storage, as also to a virtual file system.GPFS can insert hundreds data in terabyte, same as with accomodating very big file data in engineering design, digital media, data mining, finansial analysis and seismic data processing. GPFS used first time as file system for high performance cluster computing on Unix server in the early of 90's., giving its consumer speed to access file to application. This technology was introduced to Linux system in the end of 90's, accomodating IBM to push Linux cluster to the market. Till now, all user can operate GPFS on a machine with IBM support. However if all consumer have joined IBM cluster environment walk with linux networking or other, they only can operate it in IBM hardware.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;GPFS Code, Linux Cluster,Linux Networking&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114182099124479117?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114182099124479117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114182099124479117' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114182099124479117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114182099124479117'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/ibm-open-gpfs-code-as-more-popular.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114182076356058960</id><published>2006-03-08T04:22:00.000-08:00</published><updated>2006-03-09T05:18:16.036-08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;&lt;span style="font-size:130%;"&gt;Borland Delphi Programming in Linux&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;To who fond of to make program in GUI environment by using Pascal Ianguage, Borland Delphi very known as most popular RAD which at most used. But unfortunately, Borland Delphi isn't free. Beside that Borland nor too serious focussed on Borland Kylix as substitution of Borland Delphi that can operate in Linux platform. But you don't have to worry because nowadays have made available Lazarus alternatively Borland Delphi substitution in Linux world. As RAD tool for Free Pascal, syntax which used in Lazarus have looking like with Borland Delphi. Some feature which there are in Lazarus is supporting application project, there is object inspector, OOP, supporting connection to database application (MySQL,SQLite,PostgreSQL), Source Editor Built-in, Form Editor, LCL that quite complete, Compiling and Debugging,etc. And one more, once you make program in Lazarus, your code can be compile to walk in some platform like Linux,Mac ,Windows. If you want a complete RAD and free you can choose Lazarus to make your program.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;Lazarus,Borland Delphi in Linux,Free Pascal&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114182076356058960?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114182076356058960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114182076356058960' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114182076356058960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114182076356058960'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/borland-delphi-programming-in-linux-to.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114181775564592415</id><published>2006-03-08T03:32:00.000-08:00</published><updated>2006-03-09T05:17:45.836-08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;PalmSource assisting makes LiPS&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;On November 11th 2005, have been formed &lt;strong&gt;Linux Phone Standards (LiPS)&lt;/strong&gt; forum. Consortium from this leading companies said that they join together to quickening linux adoption in the case of fixed devices, mobile and converged.This group said that LiPS will finish this duty by service standardization and API base on Linux which affect directly to development, deployment, and interoperability from user applications and service. LiPS founder member are &lt;strong&gt;PalSource, France Telecom/Orange, FSM Labs, Huawei, Jaluna, MontaVista Software, MIZI Research, Open Plug, Arm, Cellon, and Esmertec&lt;/strong&gt;. &lt;strong&gt;Michael Kelley&lt;/strong&gt;, senior vice president technician for PalmSource, said that became apart of LiPS forum will be more demonstrate company trust to linux potency and its plan to make development with linux. All LiPS member trust, with more increasing linux popularity at mobile market will improving industrial standard requirement to prevent forgery and ascertain interoperability from technology from different vendor.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;Linux Phone Standards , PalmSource&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114181775564592415?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114181775564592415/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114181775564592415' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114181775564592415'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114181775564592415'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/palmsource-assisting-makes-lips-on.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114175547454282886</id><published>2006-03-07T10:15:00.000-08:00</published><updated>2006-03-10T10:10:43.586-08:00</updated><title type='text'></title><content type='html'>&lt;p class="MsoNormal" style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  lang="EN-US" &gt;Firefox Web Browser&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  lang="EN-US" &gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;On 30 November 2005, Mozilla Corp. releasing Firefox 1.5. A&lt;span style="color:black;"&gt;mong repair that happened in this newest version is auto update feature which will downloading security patches and other software updates and it is happen in background. Another feature is better blocking pop up, security and privacy improvement and faster ability to show and rendering web pages. You can download this new firefox in the sidebar of this pages (free download part)&lt;/span&gt;&lt;/span&gt;&lt;span style=";font-family:Arial;font-size:10;"  lang="IN" &gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114175547454282886?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114175547454282886/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114175547454282886' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114175547454282886'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114175547454282886'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/firefox-web-browser-on-30-november.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114175533801295047</id><published>2006-03-07T10:13:00.000-08:00</published><updated>2006-03-07T10:15:38.123-08:00</updated><title type='text'></title><content type='html'>&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style=";font-family:Arial;"  lang="EN-US"&gt;K Dekstop Environment 3.5&lt;/span&gt;&lt;/span&gt;&lt;span style=";font-family:Arial;font-size:100%;"  lang="EN-US" &gt;&lt;o:p&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt; &lt;/span&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:100%;"  lang="EN-US" &gt;KDE project has release the newest free dekstop KDE version 3.5. Many enhanced feature and improve that makes KDE as the most complete free dekstop environment.Some renewal is : Konqueror as the second web browser that pass Acid2 CSS test, before Firefox and Internet Explorer; Konqueror now has support &lt;i&gt;ad block&lt;/i&gt; feature, Superkaramba giving widgets &lt;span style="color:black;"&gt;which have&lt;span style=""&gt;  &lt;/span&gt;better&lt;span style=""&gt;  &lt;/span&gt;integrated and easy to installation for the dekstop usage&lt;span style=""&gt;  &lt;/span&gt;now have been included in KDE; Kopete now support MSN and Yahoo ! Webcam, and KDE 3.5 adds edutainment moduls, Kgeography, Kanagram and blinKen.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:100%;color:black;"   lang="EN-US" &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:100%;color:black;"   lang="EN-US" &gt;keyword : &lt;span style="font-weight: bold;"&gt;KDE version 3.5, Kopete, Kgeography, Kanagram, blinKen, &lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:Arial;font-size:100%;"  lang="EN-US" &gt;Superkaramba&lt;/span&gt;&lt;span style=";font-family:Arial;font-size:10;"  lang="IN" &gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114175533801295047?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114175533801295047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114175533801295047' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114175533801295047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114175533801295047'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/k-dekstop-environment-3.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114175505677888656</id><published>2006-03-07T10:07:00.000-08:00</published><updated>2006-03-07T12:26:23.436-08:00</updated><title type='text'></title><content type='html'>&lt;p style="font-weight: bold;" class="MsoNormal"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;span style="font-size:130%;"&gt;Nokia Launch OSS site&lt;/span&gt;&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;One the biggest phonecell producer, Nokia, which finally release Internet Tablet 770&lt;span style=""&gt;  &lt;/span&gt;that base on linux, also launch portal that arranging the project of open source software. and promoting the involvement of community in it. This portal is in http://opensource.nokia.com give feature about open source news from nokia and links that refer to all open source software project.In addition to its open source project, Nokia has contribute to open source industry project and community. Lately Nokia also join with Eclipse Foundation, main project that presenting &lt;i&gt;mobile developer tools &lt;/i&gt;for java. Nokia also contribute to Linux kernel, various bluetooth project,etc.&lt;/span&gt;&lt;/p&gt;       &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="EN-US"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;br /&gt;keyword : &lt;span style="font-weight: bold;"&gt;nokia open source site, mobile developer tools&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Arial;" lang="IN"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114175505677888656?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114175505677888656/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114175505677888656' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114175505677888656'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114175505677888656'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/nokia-launch-oss-site-one-biggest.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114157652314319698</id><published>2006-03-05T08:33:00.000-08:00</published><updated>2006-03-05T08:35:23.270-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;strong&gt;Linux Play a part in Microsoft Film&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;In early October 2005, Universal Pictures and Twentieth Century Fox announcing that Peter Jackson and his partner Fran Walsh will be the executive producer for film base on game for console Xbox, property of Microsoft. Reported that Weta Digital Company, Peter Jackson Owner, will undertake post production process. Weta Digital uses more than one thousand server IBM blade dual-processors that use Fedora as OS to produce effect for that Halo film . This film planned to release in the middle of 2007.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;weta digital,fedora,IBM blade dual-processors&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114157652314319698?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114157652314319698/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114157652314319698' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114157652314319698'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114157652314319698'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/linux-play-part-in-microsoft-film-in.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114157638004331045</id><published>2006-03-05T08:30:00.000-08:00</published><updated>2006-03-05T08:33:00.296-08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Google menacing Microsoft&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The most popular search engine,Google, in the early oktober 2005 declarate fight to Microsoft, by announcing to launch word-processing and spreadsheet software  which free by online. To realize their goal, Google inviting Sun Microsystem so that every web consumer can access &lt;strong&gt;OpenOffice.org&lt;/strong&gt; from anywhere in the world.Mouthpiece from Sun Microsystem Paul O'connor said that this cooperation is very big opportunity.&lt;br /&gt;"Google is visited by almost 80 million web consumer in all the world," said Paul O'connor. He also tell that this coorporation will awaking traditional software company like Microsoft.In this time, most people have accustomed to pay for software packages, though finally which the true value in fact is service and content not which there are in the software.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;openoffice,google news&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114157638004331045?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114157638004331045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114157638004331045' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114157638004331045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114157638004331045'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/google-menacing-microsoft-most-popular.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114157617808114983</id><published>2006-03-05T08:25:00.000-08:00</published><updated>2006-03-05T08:29:49.146-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;strong&gt;Networking and Firewall Software : IPCop 1.4.10&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/7338/2130/1600/1.1.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/7338/2130/320/1.1.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;In the internet networking, all done activity cannot be safe 100 % from threat. For minimalize it you need firewall software. One of the best open source software with complete feature in linux is IPCop. With IPCop you can configure easily from web bases menu. Some feature in IPCop : IDS application to detect attack from outside into your network, VPN facility, optimal kernel configuration for security, etc. IPCop was bundled become a linux distro especially for Firewall. So for installation, setup an empty partition first. As one of free firewall, IPCop can become one of the firewall software that able to be used in your network.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;ipcop, linux firewall software&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114157617808114983?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114157617808114983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114157617808114983' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114157617808114983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114157617808114983'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/networking-and-firewall-software-ipcop.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114148433506849331</id><published>2006-03-04T06:58:00.000-08:00</published><updated>2006-03-04T07:20:51.103-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;strong&gt;VOIP feature on PhoneCell base on Linux&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="http://photos1.blogger.com/blogger/7338/2130/1600/2.0.jpg"&gt;&lt;img style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/7338/2130/320/2.0.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Trolltech has update Qtopia Phone platform for linux handsets, by enhancing a Client Voice Over IP (VOIP) dan better support for wireless messaging. Qtopia Phone 2.2 is first system base on linux for phone and handled wireless to support VOIP technology. This handled has including a VOIP open source application which using Session Initiation Protocol (SIP). First handsets with Qtopia Phone 2.2 there wiil be in China. Motorola also planning to intoduce their VOIP linux phone to European market after doing examination market in China.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;VOIP Linux Phonecell , trolltech&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114148433506849331?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114148433506849331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114148433506849331' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114148433506849331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114148433506849331'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/voip-feature-on-phonecell-base-on.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114148428362778040</id><published>2006-03-04T06:57:00.000-08:00</published><updated>2006-03-04T07:15:38.003-08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Insurance to Open Source &lt;a href="http://photos1.blogger.com/blogger/7338/2130/1600/1.0.jpg"&gt;&lt;img style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/7338/2130/320/1.0.jpg" border="0" /&gt;&lt;/a&gt;Community&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;A brokerage from United State offering insurance to possibility face demand because using noncommercial software. R J Kiln &amp;amp; Co , a international insurance group, insuring policy which able to harm source open consumer till ten million dollar.&lt;br /&gt;To all consumer will be replaced the loss if them forced have to desist to use open source code, all estimating of loss from an agreement commute for open source software and in some certain situation some expense from code commutation.&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;insurance open source community&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114148428362778040?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114148428362778040/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114148428362778040' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114148428362778040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114148428362778040'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/insurance-to-open-source-community.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114148423870877691</id><published>2006-03-04T06:54:00.000-08:00</published><updated>2006-03-04T07:09:49.426-08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;Hardisk Cloning On Linux&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;This article will show you a little trick how to make clon linux system into another computer.&lt;br /&gt;First you must plugin empty hardisk to your computer with linux system and the next step is  :&lt;br /&gt;1. Login to linux with root user&lt;br /&gt;2. Open terminal and type &lt;strong&gt;cat /dev/sda &gt; /dev/sdb &amp;&lt;/strong&gt;&lt;br /&gt;    This command will copy all entire file on the system including the database.&lt;br /&gt;Or with another command:&lt;br /&gt;&lt;strong&gt;dd if=/dev/sda of=/dev/sdb &amp;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Wow incredible isn't it ? So in linux cloning process doesn't need third party like Norton Ghost or another clone software.&lt;br /&gt;But i wonder if this is an advantage or a weakness. The answer is depend to administrator that do not forget to lock server room or your company data will be steal by unconcerned party.&lt;br /&gt;&lt;br /&gt;Ps : /dev/sda is source, /dev/sdb is destination&lt;br /&gt;&lt;br /&gt;keyword : &lt;strong&gt;cloning linux,restore&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114148423870877691?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114148423870877691/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114148423870877691' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114148423870877691'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114148423870877691'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/hardisk-cloning-on-linux-this-article.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-114129182217424679</id><published>2006-03-02T01:26:00.000-08:00</published><updated>2006-03-02T01:30:22.186-08:00</updated><title type='text'></title><content type='html'>&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Recovery Root Password&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;      &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;"Oh my god i forgot my root password. Help me."&lt;br /&gt;If you are a Linux Administrator who manage many server, this is very big big problem.Stay calm and i will give you some tips how to fix this trouble.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;span style="font-weight: bold;"&gt;Solution&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;                                            &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;span style="color: rgb(255, 102, 102); font-weight: bold;"&gt;1. Using Grub Loader&lt;/span&gt;&lt;br /&gt;First step that you can use is add &lt;i&gt;single&lt;/i&gt; parameter, when Grub menu show. Example when grub menu show press 'e', and you'll see this line :&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size: 10pt;"&gt;title Fedora Core (2-6.11-1.1369_FC4)&lt;br /&gt;root (hd0,0)&lt;br /&gt;kernel /boot/vmlinuz-2.6-11-1.1369_FC4 ro root=LABEL=/1 rhgb quiet&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;span style="font-family: verdana;"&gt;initrd /boot/initrd-2.6.11-1.1369_FC4.img&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;After that menu show, add &lt;i&gt;single&lt;/i&gt; word in the end of third row.&lt;/span&gt;&lt;br /&gt;&lt;b style="font-family: verdana;"&gt;&lt;span style="font-size: 10pt;"&gt;kernel /boot/vmlinuz-2.6-11-1.1369_FC4 ro root=LABEL=/1 rhgb quiet single&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Press enter and then press 'b'. Wait for a moment and you will go to init 1 with root user. From that command prompt you can make a new password with &lt;b&gt;passwd&lt;/b&gt; command.&lt;br /&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 102);"&gt;2. Using Knoppix Live Cd&lt;/span&gt;&lt;br /&gt;For using this way boot your computer with Knoppix Live CD. When first parameter show from knoppix, type option '&lt;b&gt;knoppix 2&lt;/b&gt;' to get in command prompt only.Mounting linux partition that you want to recover.Ex. Fedora Core partition is in /dev/hda1.&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;span style="font-family: verdana;"&gt;root@tty[/] # mount dev/hda1 /mnt/hda1&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Then chroot to linux partition that you have mount.&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;span style="font-family: verdana;"&gt;root@tty[/] # chroot /mnt/hda1 /bin/bash --login&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Now you have login as root user. The next step is make a new password with &lt;b&gt;passwd&lt;/b&gt; command.&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;span style="font-family: verdana;"&gt;root@tty[/] # passwd&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;After all finish type exit and reboot your computer.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;keyword:&lt;b&gt;root password recovery&lt;/b&gt;, &lt;b&gt;repair linux&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-114129182217424679?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/114129182217424679/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=114129182217424679' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114129182217424679'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/114129182217424679'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/03/recovery-root-password-oh-my-god-i.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113870470968430228</id><published>2006-01-31T02:47:00.000-08:00</published><updated>2006-06-14T20:04:26.603-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;font-size:180%;" &gt;&lt;span style="font-family: verdana;"&gt;&lt;span style="font-size:180%;"&gt;Free Linux Manual and Documentation&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-family: verdana;"&gt;When we start to learn linux, manual and documentation are important thing which is must often opened. And the great thing is we don't  have spend our money to buy it because we can download from internet &lt;span style="font-weight: bold;"&gt;freely&lt;/span&gt;. With that free manual and  documentation, our productivitas will increase to explore Linux. This article will explain about some pointer to access linux manual and documentation and application program.&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="font-family: verdana;"&gt;The Linux Documentation Project (TLDP)&lt;br /&gt;&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;The Linux Documentation Project (TLDP) is project of making free linux manual and documentation. It has translate to many language. It is available in various format which can be downloaded ( &lt;span style="font-weight: bold;"&gt;PDF, HTML,etc&lt;/span&gt;). This project in http://www.tldp.org.&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;Interesting documentation in TLDP among others is :&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;1. &lt;span style="font-weight: bold;"&gt;HOWTO&lt;/span&gt; : short and practical manual in many theme. http://www.tldp.org/HOWTO/HOWTO-INDEX/categories.html&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;2. &lt;span style="font-weight: bold;"&gt;GUIDE GAZETTE&lt;/span&gt; : Complete manual in the form of book. http://www.tldp.org/guides.html&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;3. &lt;span style="font-weight: bold;"&gt;LINUX GAZETTE&lt;/span&gt; : interesting article about linux http://www.tldp.org/LDP/LG/&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="font-family: verdana;"&gt;Mandrake Linux Manual&lt;br /&gt;&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;MandrakeSoft publishing special manual for Mandrake Linux. You can get it directly from : http://www.mandrakelinux.com/fdoc.php3 or in directory /usr/share/doc/mandrake/en on Mandrake linux that installed in your box. Manual that always update at the same time with this release Mandrake Linux version available in various format (HTML or PDF), among athers is :&lt;/span&gt;&lt;br /&gt; &lt;ul style="font-weight: bold;"&gt;   &lt;li&gt;&lt;span style="font-family: verdana;"&gt;Starter Guide&lt;/span&gt;&lt;/li&gt;   &lt;li&gt;&lt;span style="font-family: verdana;"&gt;Reference Guide&lt;/span&gt;&lt;/li&gt;   &lt;li&gt;&lt;span style="font-family: verdana;"&gt;DrakXTools User Manual&lt;/span&gt;&lt;/li&gt; &lt;/ul&gt; &lt;br /&gt; &lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="font-family: verdana;"&gt;Debian Linux Manual&lt;br /&gt;&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;Debian Linux distro knows as one of the linux distro based on community. Done together by community so have many linux community support. Project of writing manual and its documentation also complete enough. Available in many format : http//www.debian.org/doc/use-manuals.en.html.&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="font-family: verdana;"&gt;Interesting article in many site&lt;br /&gt;&lt;br /&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;http://www.linux-mag.com&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;http://www.linuxquestions.org&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;http:://www.konsultanlinux.com&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: verdana;"&gt;http://www.linuxjournal.com&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113870470968430228?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113870470968430228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113870470968430228' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113870470968430228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113870470968430228'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/free-linux-manual-and-documentation.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113870441342278530</id><published>2006-01-31T02:34:00.000-08:00</published><updated>2006-01-31T02:46:53.466-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold; font-family: verdana;font-size:180%;" &gt;Playing MP3 in LINUX&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The file music format which wide knows is MP3. It is very pleasant when doing a job in front of computer while listening and enjoying music.Many software which can be use to playing MP3 in linux.One of my favourite is &lt;span style="font-weight: bold;"&gt;XMMS&lt;/span&gt;. For windows user whom usually familiar with Winamp will have no difficult to operate this because the look or GUI is quite same.XMMS software have the license GPL, which mean it's free.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;More about XMMS&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Many linux distro now usually have figuring &lt;span style="font-weight: bold;"&gt;XMMS&lt;/span&gt; in its package. But the only problem is this package does'nt include MP3 decoder because the license problem. Because of that we have to download MP3 encoder so that we can play MP3 file. XMMS can play WAV file and CD media as good as Winamp. Beside that it can play file with format &lt;span style="font-weight: bold;"&gt;MOD, S3M, MED&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;Ogg Vorbis&lt;/span&gt; (look &lt;span style="font-weight: bold;"&gt;http://www.vorbis.com&lt;/span&gt;) which is free file music format, MP3 substitution alternative.&lt;br /&gt;Like Winamp, XMMS has 3 main panel, &lt;span style="font-weight: bold;"&gt;control panel&lt;/span&gt;, &lt;span style="font-weight: bold;"&gt;equalizer panel&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;playlist panel&lt;/span&gt;. Beside skin from winamp, have made available also many free skin in internet which can be downloaded from &lt;span style="font-weight: bold;"&gt;http://www.xmms.org/skins.php&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Installation&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Before this process start, make sure that your sound card have work properly. I assume that you have install linux in your box. The steps are :&lt;br /&gt;1. Insert your CD-ROM Linux where XMMS file store.&lt;br /&gt;2. Make sure RPM files from XMMS is in that CD-ROM. Usually file name begin with xmms word.&lt;br /&gt;3.Open your console, and go to the directory where the XMMS files save. Operate this command as root :&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt;# rpm -i xmms*&lt;/span&gt;&lt;br /&gt;To playing audio file with MP3 format, do next steps:&lt;br /&gt;1.Download &lt;span style="font-weight: bold;"&gt;xmms-mpg123-(version).i386.rpm&lt;/span&gt; (for Red Hat 9: http://www.havardk.xmms.org/dist/xmms-1.2.7-rh8-rh9-rpm/)&lt;br /&gt;2. Running instalasi command in console as root :&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt;# rpm -i xmms-mpg123-(version).i386.rpm&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Changing  Skin&lt;/span&gt;&lt;br /&gt;1. Download your favourite skin from http://www.xmms.org/skins.php&lt;br /&gt;2. Save that file in ~/.xmms/Skins/. Symbol ~ means your home directory ex: &lt;span style="font-weight: bold;"&gt;/home/yunan&lt;/span&gt;&lt;br /&gt;3. Activate skin panel (Alt+s) and choose that skin.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7338/2130/1600/xmms.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7338/2130/400/xmms.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Operate XMMS&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;To operate XMMS, we can select from menu in linux dekstop or running command in console :&lt;br /&gt; &lt;span style="font-weight: bold;"&gt; $ xmms &amp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7338/2130/1600/xmms2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7338/2130/400/xmms2.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;So now you can enjoying music while typing school or office duties . Happy wiggling !!!!&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113870441342278530?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113870441342278530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113870441342278530' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113870441342278530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113870441342278530'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/playing-mp3-in-linux-file-music-format.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113862134262566409</id><published>2006-01-30T03:37:00.000-08:00</published><updated>2006-01-31T02:33:51.936-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:180%;" &gt;Use Window from Linux, Why Not ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Example that company where you are work has use product from microsoft like Windows and Office.Database with SQL Server, MS Exchange and Outlook, and many business aplication work in Windows Server. But your boss want make cost-saving for IT. The boss doesn't want expense much fund for the license in the middle of crisis and emulation which progressively tighten.&lt;br /&gt;On the other hand he want business that he had use and buy with high price still defended. And the company doesn't have much fund and time for buy or develop a new application. You have responsibility from boss to solve this problem.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;But you don't have to worry because LINUX is the solution.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;You can still access all of Windows application which walk in server . This is very interesting, because you don't have to develop or make new application, train user or data migration between database which often risk. You can economizing license fee because Linux client doesn't have to pay license. This scenario usually know as thin client.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;Equipment you need.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;First you need minimum server Pentium III class with RAM 512 MB. That specification has enough for serve 20 user. The general prinsip is you have add 10 MB RAM for every user that connect to server. While for operate Windows NT or Windows 2000 need 256 MB RAM. You have to expense Windows license fee on server side. Because we need Windows Terminal Services and various its application. Terminal services is a service which operate in Windows 2000 Server so it can use as application server in this scenario.&lt;br /&gt;Second, hardware for client. Client computer use Linux OS so you can still work with various application on client side. And if you want to use Windows application then use rdesktop to connect to Windows server.&lt;br /&gt;Third, download the software from &lt;span style="font-weight: bold;"&gt;http://www.rdekstop.org&lt;/span&gt;. In many distribution now, it has pack into the cd installation.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Installation Step&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;In server side, you have to activate Terminal service from menu &lt;span style="font-weight: bold;"&gt;Control Panel&gt; Add/Remove Program &gt; Add/Remove Windows Component&lt;/span&gt;. After that you just install every application that will run in server for client. Terminal Service Windows 2000 have to install in Application Server Mode condition so that can serve many client.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7338/2130/1600/1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7338/2130/320/1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7338/2130/1600/2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7338/2130/320/2.jpg" alt="" border="0" /&gt;&lt;/a&gt;Next is installation on client side. I assume that you have install Linux in your box. The downloaded file have to install first. Use this command :&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ tar -zxvf rdekstop-1.1.0.tar.gztar&lt;/span&gt;&lt;br /&gt;Attention please that rdekstop-1.1.0.tar.gztar is just example, you have to change the name according to the file that you have download. Then you have to change to the folder where the result extract file was save. Next step is execute this command one by one :&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ ./configure&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ make install&lt;/span&gt;&lt;br /&gt;Installation finish, and you can test rdekstop to execute application in Windows server.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;And it's time for enjoying&lt;/span&gt;&lt;br /&gt;Ex. that your Windows server name is "central" and you connecting to that server with user "abc" with password "linux" then use this command :&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ rdekstop -u abc -p linux central&lt;/span&gt;&lt;br /&gt;Wait for a moment and Windows 2000 dekstop will appear in your linux screen. Remember user "abc" and password "linux" have to make first in server "central". Look picture below.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7338/2130/1600/3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/7338/2130/400/3.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Make presentation and report for your Boss, and ready to have praise, or even bonus ? Who knows .....&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:78%;" &gt;Source from www.ilmukomputer.com&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113862134262566409?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113862134262566409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113862134262566409' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113862134262566409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113862134262566409'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/use-window-from-linux-why-not-example.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113861952712813299</id><published>2006-01-30T03:05:00.000-08:00</published><updated>2006-01-30T03:12:07.133-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;font-size:180%;" &gt;Installation OpenSource Packet on Linux&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Differ from Windows which software installation process just click next and next then the installation finish, in Linux we will have to get acquainted with package manager . One of the  popular package manager is &lt;span style="font-weight: bold;"&gt;Redhat Package Manager ( RPM).&lt;/span&gt; Although carry the name of Redhat, but this application is used by many distro for the managerial of package in distro which is is pertinent., some among distro which is use RPM for the management of package is Mandrake, Trustix, Suse.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;What is Package Manager?&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;Package Manager represent a tool assist to handle application in some distro. This is of course differ from software manager  which GUI bases in linux. . Analogy for the software manager is utilty like Add/Remove Program which there are in Windows Control Panel while for installing program which we get from internet, we can use Package Manager. In general software packages in internet has the extension tar.bz2, tar.gz,rpm,deb(for Debian distro).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;Installation with RedHat Package Manager&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;The sintax is:&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;rpm -i package-name.rpm&lt;/span&gt;&lt;br /&gt;Another additional option for installation (-i) is&lt;br /&gt;-h, to see installation output.&lt;br /&gt;-v, to see installation progress.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Uninstal/Remove&lt;/span&gt;&lt;br /&gt;Sintax :&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;rpm-e package-name&lt;/span&gt;&lt;br /&gt;Ex: #rpm -e ymessenger&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Upgrade Package&lt;/span&gt;&lt;br /&gt;Sintax :&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;rpm -Uvh package-name.rpm&lt;/span&gt;  or &lt;span style="font-weight: bold; font-style: italic;"&gt;rpm -Fvh package-name.rpm &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;To see installed package&lt;/span&gt;&lt;br /&gt;Sintax :&lt;span style="font-weight: bold; font-style: italic;"&gt; rpm -qa&lt;/span&gt;&lt;br /&gt;If the output we get to many we can combine with | (pipe) and more : &lt;span style="font-weight: bold; font-style: italic;"&gt;#rpm -qa | more&lt;/span&gt;&lt;br /&gt;To see a package with contain a certain words we can use command :&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;#rpm -qa | grep python &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;(ex.)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;To see files contained in a package&lt;/span&gt;&lt;br /&gt;Sintaks :&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;rpm -ql package-name.rpm&lt;/span&gt;&lt;br /&gt;Ex: #rpm -ql ymessenger-1.0.4-1.i386.rpm&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Package installation with src.rpm extension&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;Src.rpm package is source package from a RPM package. The contain of src.rpm package is program source. How is the installation of this package? First we need to rebuild the package with sintax : rpm --rebuild package-name.src.rpm. After the rebuild we will have package with *.rpm extension. It's mean that installation process use ordinary sintax : rpm -ivh package-name.rpm&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Package installation with tar.bz2 and tar.gz extension&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;For installation with tar.bz2 and tar.gz extension, you have install C compiler on your system which is have (don't you ?) Next the steps is :&lt;br /&gt;1. Download the package from internet. Recommended site is www.sourforge.net and www.freshmeat.com.&lt;br /&gt;2. Extract that package.  &lt;br /&gt;   - for tar.gz and tgz use command # tar -zxvf file-name.tar.gz&lt;br /&gt;   - for tar.bz2 use command tar -xjvf  file-name.tar.bz2&lt;br /&gt;3. After that you have to go to the folder where the package was extracted. For the next three step you must login as root.&lt;br /&gt;4. We have configure that software with sintax :&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;  # ./config or # make config&lt;/span&gt;&lt;br /&gt;5. Then compile source program&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt; # make or # make all &lt;/span&gt;&lt;br /&gt;6. Last after we've compiled it, we have to install that object.&lt;br /&gt;   &lt;span style="font-weight: bold;"&gt;# make install&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;ps : all step above not work for all package/software. so before you do that, it's good to read first manual file installation in extract directory, usually the name is &lt;span style="font-weight: bold;"&gt;INSTALL, README OR MANUAL. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Source from www.ilmukomputer.com&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113861952712813299?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113861952712813299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113861952712813299' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113861952712813299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113861952712813299'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/installation-opensource-packet-on_30.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113818339158299901</id><published>2006-01-25T01:50:00.000-08:00</published><updated>2006-05-14T23:10:36.450-07:00</updated><title type='text'></title><content type='html'>&lt;span style="color:#ff0000;"&gt;&lt;span style="font-family:verdana;font-size:180%;"&gt;10 reasons why linux is the best operating system&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:georgia;"&gt;&lt;br /&gt;1. Inside linux distribution have many softwares worthing million dollar which is free to use.&lt;br /&gt;&lt;br /&gt;2. A complete opeating system :&lt;br /&gt;a. Stable - crash application doesn't make operating system down&lt;br /&gt;b. Reliable- Linux server has long life in period hundreds of day compared to Windows which is need to reboot periodicly&lt;br /&gt;c. Extremely very usefull&lt;br /&gt;&lt;br /&gt;3. Completed with tens of aplication development enviroment include C, C++, Fortran, some scripting language like Perl, Python, Awk, and sed. The price C compiler in windows more than 1000 US dollar.&lt;br /&gt;&lt;br /&gt;4. Special network facility, enabling to share CPU.&lt;br /&gt;&lt;br /&gt;5. The ideal environment to operate server like Web server, FTP server, Authentication server,etc&lt;br /&gt;&lt;br /&gt;6. There is commercial software too, if requirement not fulfilled with free software&lt;br /&gt;&lt;br /&gt;7. The easiest operating system to upgrade.&lt;br /&gt;&lt;br /&gt;8. Support many processor&lt;br /&gt;&lt;br /&gt;9. The real Multi tasking, enabling to operate more than one application on the same time&lt;br /&gt;&lt;br /&gt;10. A special GUI system called X, equivalen with Windows but very easy to customize.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113818339158299901?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113818339158299901/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113818339158299901' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113818339158299901'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113818339158299901'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/10-reasons-why-linux-is-best-operating.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113776258284836438</id><published>2006-01-20T04:42:00.000-08:00</published><updated>2006-01-20T05:09:42.886-08:00</updated><title type='text'>Choosing a Linux Distribution</title><content type='html'>&lt;div align="justify"&gt;If you ever watch the IT press, you will have probably heard of company names such as &lt;a href="http://europe.redhat.com/"&gt;Red Hat&lt;/a&gt;, &lt;a href="http://www.suse.com/"&gt;SUSe (pronounced Soozah)&lt;/a&gt;, &lt;a href="http://www.debian.com/"&gt;Debian&lt;/a&gt; and possibly &lt;a href="http://www.caldera.org/"&gt;Caldera OpenLinux&lt;/a&gt;.These are all companies that have created their own 'distributions' of Linux.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;In any distribution, the fundamentals stay the same:&lt;/div&gt;&lt;div align="justify"&gt;The Kernel is the original Linus Torvalds Linux Kernel*&lt;/div&gt;&lt;div align="justify"&gt;The default GNU software*&lt;/div&gt;&lt;div align="justify"&gt;General software to be expected of a Linux distribution&lt;/div&gt;&lt;div align="justify"&gt;*: May differ in version. &lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;What differs from distribution to distribution is usually:&lt;br /&gt;Installation Software (good, bad, none at all!)&lt;/div&gt;&lt;div align="justify"&gt;Extra software: (Office Apps, Prog. Languages, Games, Web Software etc)&lt;/div&gt;&lt;div align="justify"&gt;Documentation and Manuals (Quality of, Lack of, Quantity of)&lt;/div&gt;&lt;div align="justify"&gt;Quality of software (buggy or not buggy software, latest versions of software)&lt;/div&gt;&lt;div align="justify"&gt;Up to date&lt;/div&gt;&lt;div align="justify"&gt;Offers SupportEase of Use&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;So, as you can see, whatever distribution you choose. You get Linux, whatever you buy, but you may get a better range of options with distribution X over distribution Y. The choice is for you to decide, and because of Linux's excellent Copying/Licensing properties, you can try it out before you commit to anything.Of course, you don't have to buy Linux at all. You can take a copy from your friends, or from a magazine or book and use it quite happily, but you usually get lots more goodies (extra cds,manuals, free support, etc) when you buy the product. I purchased Red Hat Linux 7.0 for only £29.99 (pounds sterling), and it has a great deal more software with it (5 CDs!) than the 1 CD publishers version costs.&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;span style="font-size:130%;"&gt;&lt;div align="justify"&gt;&lt;br /&gt;What Linux Distribution should I choose?&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Choosing a Linux distribution is a personal thing. It greatly depends on what you want to do with it all.If you are a complete newbie and you are looking for an easy introduction to Linux, then I would probably choose &lt;a href="http://www.mandrake.com/"&gt;Mandrake Linux.&lt;/a&gt;. Have a look at this rough guide to get an idea of which Linux distribution is right for you. Note: If a distribution is at release 7.0 (ie: Red Hat), but another distribution is only at 2.2 (ie: Debian), this does not mean that Debian is an old version of Linux. The release numbers are only an indicator of how many releases that particular vendor has made. It is quite likely that Debian 2.2 and Red Hat 7.0 share the same kernel version (2.2.16).&lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://photos1.blogger.com/blogger/7338/2130/400/distro.jpg" border="0" /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;For a really nice representation on all of the ups and downs of each distribution, I recommend visiting &lt;a href="http://home.kimo.com.tw/ladislav/distro_compare.htm"&gt;Ladislav Bodnar's Comparison of Linux Distributions Web Page&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113776258284836438?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113776258284836438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113776258284836438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113776258284836438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113776258284836438'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/choosing-linux-distribution.html' title='Choosing a Linux Distribution'/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-21091388.post-113775886244350275</id><published>2006-01-20T03:54:00.000-08:00</published><updated>2006-01-20T04:07:42.453-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-family:arial;font-size:180%;color:#33cc00;"&gt;&lt;strong&gt;What Is Linux?&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;Linus Tosvald was, in 1991, a student in Finland studying Computer programming at university. Obviously using a &lt;span style="color:#000000;"&gt;&lt;span style="color:#33ccff;"&gt;UNIX&lt;/span&gt; system&lt;/span&gt; (probably BSD). He went home, as millions did, to their PC, and wondered why it didn't do the same things as the big computers at uni did.He got bored of &lt;span style="color:#33ccff;"&gt;MS-DOS&lt;/span&gt; after 10 minutes, and decided to start his own kernel, which is the code at the heart of every operating system, that addresses the hardware directly. He wanted it to be free to distribute. He finished the first &lt;span style="color:#33ccff;"&gt;Linux&lt;/span&gt; kernel in mid 1991. He had the 32 bit kernel, in which programs could be run under, but he didn't have any software to run on it. Luckily, an ex-student in the USA, by the name of Richard Stallman had created a team of programmers devoted to free software, he&lt;span style="color:#ff6666;"&gt; &lt;/span&gt;&lt;span style="color:#000000;"&gt;called this the&lt;/span&gt; Free Software Foundation, who believed in making software free to distribute, and free to obtain the source code along with it. &lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;strong&gt;The GNU GPL (General Public License)&lt;/strong&gt; that the Free Software Foundation (or FSF) made also stated that the authors of the software could charge for the software, as long as they are willing for it to be freely distributed. This is the way that the GNU (stand's for GNU's Not Unix) and all software under the GNU GPL would create (hopefully) a profit.Stallman had been busy making a whole suite of software, for example: an editor called emacs, which is very popular today, and the bash (Bourne Again Shell), a command line interface based upon the original Bourne Shell, that comes with the &lt;span style="color:#33ccff;"&gt;BSD&lt;/span&gt; variant of &lt;span style="color:#33ccff;"&gt;UNIX&lt;/span&gt;. the FSF's software was entirely based upon the UNIX software suite, and essentially improved on it. The FSF were missing by 1991, only one really vital piece of software, to make it a fully fledged operating system: The Kernel Linus and Stallman got together, put their code together, and Linux, or GNU/Linux (as it's properly named) was made.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21091388-113775886244350275?l=linuxscience.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxscience.blogspot.com/feeds/113775886244350275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=21091388&amp;postID=113775886244350275' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113775886244350275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/21091388/posts/default/113775886244350275'/><link rel='alternate' type='text/html' href='http://linuxscience.blogspot.com/2006/01/what-is-linux-linus-tosvald-was-in.html' title=''/><author><name>Yunan Lasito</name><uri>http://www.blogger.com/profile/05765728272544322646</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
