Archive for June, 2008
” This article especially for newbie (wordpress user)”
After you have domain and upload your file at hosting server, you should do several changes setting to increase credibility and performance your website especially for reader and search engine
Several little change like following
1. Change permalink from website you to form easier is identified search engine and catchy reader.
So change permalink in settings, example
before->http: /www. domain. com/? p=1
after->http: /www. domain. com/2008/06/26/article1/
Do this with the way add file .htaccess in your file manager
2. Add picture as support or give an illustration for article that you write.
To can do this matter so in manager file at your hosting server in folder wp-content->upload change permission (chmod) to 775
3. To customize your themes to increase performance also website display, change your that themes.
in wp-content->themes-> change permission(chmod)
-for folder chmod to 775
-for file chmod to 664
If you have any idea please give me some comment.
“This article always regularly update”
This article is next part of recent article
3.Activate daemon
After make zebra configuration. conf and routing protocol (example ospfd. conf), daemon routing protocol necessary activate by:
Router# /etc/init.d/quagga start
And also for restart and stop
Router# /etc/init.d/quagga stop
Router# /etc/init.d/quagga restart
This matter necessary has been done when we have replaced configuration from quagga.
Router# /etc/init.d/quagga restart
Stopping Quagga daemons (prio:0): ospfd zebra (bgpd) (ripd)
(ripngd) (ospf6d).
Removing all routes made by zebra.
Nothing to flush.
Loading capability module if not yet done.
Starting Quagga daemons (prio:10): zebra ospfd.
4.Login to application routing protocol
To login to routing protocol, we can use application TELNET, while to detect port from application routing protocol can be done with command netstat -nlptu
For see zebra port and another routing daemon
Router# netstat -nlptu | grep zebra
tcp 0 0 127.0.0.1:2601 0.0.0.0:*
LISTEN 7567/zebra
Router# netstat -nlptu | grep ospfd
tcp 0 0 127.0.0.1:2604 0.0.0.0:*
LISTEN 7571/ospfd
For zebra uses port 2601 and to ospfd 2604, mean us accessible to application pass ports
Router# telnet localhost 2601
Trying 127.0.0.1…
..
..
Password:
Or to application ospfd in port 2604
Router# telnet localhost 2604
Trying 127.0.0.1…
..
..
Password:
To logging us use password initially “zebra” (without pick two, as according to configuration). so that appear
Router> or ospfd>
Be prompt beginning in quagga. so also when use ripd or another.
5.Do network distribution in pc router
Do network distribution, will mean router (in this case pc) mutual will ask and swap information about network member.

With topology condition on, when do we reside in network a, we only can detect that us has 2 networks 10.252.108.0/24 with 192.168.1.0/24. For certain that us not yet sure know network that present to turned routerb. So also on the contrary.
So that network a can contact network b, in routera must be added table routing that aim to network b. by order of
RouterA# ip route add 192.168.2.0/24 via 10.252.108.15
That can be done when we detect ip network be be turned router b, and when network total that aimed only 1, how when aimed there 1000 router? ? ? ?
So that in quagga we can do distributing by:
-Logging to application routing protocol (example: ospfd with port 2604) with password “zebra”
Router# telnet localhost 2604
Trying 127.0.0.1…
Connected to localhost.localdomain.
Escape character is ‘^]’.
Hello, this is Quagga (version 0.98.3).
Copyright 1996-2005 Kunihiro Ishiguro, et al.
User Access Verification
Password:
ospfd>
-Rise to next privillages by order of “enable”
ospfd> en
-Enter to configuration mode by order of “configure minal”
ospfd# conf t
-Activate type routing
ospfd(config)# router ospf
-Distribute network that has by router
ospfd(config-router)# network 10.252.108.0/24 area 0
ospfd(config-router)# network 192.168.1.0/24 area 0
-Save configuration by order of
CtrlZ
ospfd# wr
IP FORWARDING
Pc router must activate ip forwarding pass terminal by:
Router# echo 1 > /proc/sys/net/ipv4/ip_forward
Or by activate to pass zebra, with password “zebra”
-telnet to port 2601
Router# telnet localhost 2601
Trying 127.0.0.1…
..
..
Password:
-Do “enable” with password “zebra”
Router> en
Password:
-Step into configuration mode by order of “configure minal”
Router# conf t
-Activate ip forwarding
Router(config)# ip forwarding
-Save with return to fashion enable with depress ctrlz, then do command “write memory”
Router(config)#
Router# wr
Configuration saved to /etc/quagga/zebra.conf
Reference:Quagga
Quagga a application software that used for application routing protocol, part quagga like in following

Quagga architecture divided in 2 that is:
1. Zebra–be liaison part between linux kernel with application routing protocol
2. Routing daemon–be regulator application routing protocol. example: ospfd, application that regulate routing protocol ospf, ripd application that regulate routing protocol rip
Quagga command, resemble by order of exist in cisco router
To installation:
Router# apt-get install quagga quagga-doc
beginning quagga configuration resides in directory etc/quagga
Router# ls /etc/quagga
daemons
debian.conf
Step-step to use routing protocol:
1. will choose daemon routing protocol that be used
2. make configuration base
3. activate daemon
4. logging to application routing protocol
5. do network distribution in pc router
1.Choose daemon routing protocol that be used
Activate quagga by edit file etc/quagga/daemons
Router# vim /etc/quagga/daemons
Change protocol that will use with changes “no” be “yes”, example:
zebra=no
ospfd=no
Become
zebra=yes
ospfd=yes
Meaning us activate zebra (obligatory activate)s and protocol ospf, example can also be done for protocol routing another.
2.Make base configuration
Make beginning configuration, to every daemon that activate. in first step we activate zebra and routing protocol, afterwards we also must make configuration file at directory etc/quagga/. configuration file that must be made:
– zebra.conf for zebra application (must be)
– ospfd.conf if we use OSPF routing protocol
– ripd.conf if we use RIP routing protocol
– bgpd.conf if we use BGP routing protocol
Can also by copy from documentation folder quagga. documentation quagga folder reside in usr/share/doc/quagga/examples/
Router# ls /usr/share/doc/quagga/examples/
bgpd.conf.sample ospf6d.conf.sample ripngd.conf.sample
bgpd.conf.sample2 ospfd.conf.sample vtysh.conf.sample
isisd.conf.sample ripd.conf.sample zebra.conf.sample
Manner to copy it:
Router#cp/usr/share/doc/quagga/
examples/zebra.conf.sample/etc/quagga/zebra.conf
Copy zebra file. conf. sample be zebra. conf (without sample). do also to another routing protocol, example ospfd. conf, ripd. conf or bgpd. conf
Quality guidelines (we are short QG) rule google about quality a site, explain about dishonest manners and manipulatif many worn, although google may be also will responsive negatively practices will deviate unwritten here (example: fool user with register site by the name of wrong spell from website famous). So, don’t of opinion that certain gimmick techniques is not mentioned here, approved by google.
Webmaster that pour out the energy with respect spirit from principles base will give freshment better to user, and then has homework better than they are that spend the time looks for gaps to exploited.
QG - principles base
1. Make page that attributed to visitor, not to search engine. don’t fool your visitor or present content to search engine different with content you display for your visitor. this technique often is named with “cloaking“.
2. avoid trick intentional to increase ranking at search engine. try to ask themselves:
- what us felt pleasant when explain matters that we do in website our competitor?
- will what this will help our visitor?
- what we shall do otherwise there search engine?
3. don’t participate at link schemes that made to increase ranking or homework a site. also avoid links to web spammer or “bad environment” exist in web, because possible ranking you be be influenced on the contrary by links a while ago.
4. don’t use computer program not authorized to submit page, check ranking, etc. programs like that spend when run resource and also break TOS. google not recommended product use likes WebPosition GoldTM that send query automatic and program to google.
QG - special instructions
1. avoid text use or latent link.
2. don’t use cloaking or redirect under cover.
3. don’t send to google automation query.
4. don’t put into keyword irrelevant into page.
5. don’t make multiple page, subdomain, or domain only full duplication content.
6. don’t make page that install virus, trojan, or badware another.
7. avoid doorway pages that made just for search engine, or manners “cookie cutter” like affiliation programs with content slimmest and not original.
8. if your site follows a affiliation program, ensure that your site has also value or value. create content unique and relevant that will make your visitor has reason to will give to come to return to your site.
if you felt your site disagree with QG this, you can do modif in your site so that be obedient QG, then submit your site is to asks deliberation returns.
Source : Google
Probably the most useful thing to know about the Global System for Mobile communications (GSM) is that it is an international standard. If you travel in Europe and many other parts of the world, GSM is the only type of cellular service available. Originally, the acronym GSM stood for Groupe Spécial Mobile, a group formed by the Conference of European Posts and Telegraphs (CEPT) in 1982 to research the merits of a European standard for mobile telecommunications. Commercial service using the GSM system did not actually start until 1991. Instead of using analog service, GSM was developed as a digital system using TDMA technology.
Using TDMA, a narrow band that is 30 kHz wide and 6.7 milliseconds long is split time-wise into three time slots. Narrow band means channels in the traditional sense. Each conversation gets the radio for one-third of the time. This is possible because voice data that has been converted to digital information is compressed so that it takes up significantly less transmission space. Therefore, TDMA has three times the capacity of an analog system using the same number of channels.
TDMA is the access method used by GSM, as well as the Electronics Industry Alliance and the Telecommunications Industry Association for Interim Standard 54 (IS-54) and Interim Standard 136 (IS-136). GSM implements TDMA in a somewhat different and incompatible way from IS-136. Think of GSM and IS-136 as two different operating systems that work on the same processor, like Windows and Linux both working on an Intel Pentium III. GSM systems provide a number of useful features:
-
Uses encryption to make phone calls more secure
-
Data networking
-
Group III facsimile services
-
Short Message Service (SMS) for text messages and paging
-
Call forwarding
-
Caller ID
-
Call waiting
-
Multi-party conferencing
GSM operates in the 900 MHz band (890 MHz - 960 MHz) in Europe and Asia and in the 1900 MHz (sometimes referred to as 1.9 GHz) band in the United States. It is used in digital cellular and PCS-based systems. GSM is also the basis for Integrated Digital Enhanced Network (iDEN), a popular system introduced by Motorola and used by Nextel. The incredible growth of GSM is a big part of why the acronym is now commonly thought of as standing for the Global System for Mobile communications!
Source here
If you have your own blog, designing it in an interesting style is tdefinitely a must. Your blog should be so attractive and professional-looking in order to make people enjoy their visit and feel homey there.
… but that’s not the main thing!!
You’ll never get loyal visitors until people find what they’re looking for in your blog. INFORMATION. And in fact, the information content is the main key to attract visitors. When useful information can answer visitor’s questions and are well-written in your site, then you have a chance to keep them there long enough and coming back the next day.
So how can you write your content well? Nancy Jackson shares her tips about this question.
Good web content can always be described by these four adjectives.
1. Consistent. There’s nothing like inconsistency to make your Web site appear amateurish. Some businesses spell their own company names two or three different ways right on the home page. If your company name is written in all lower-case letters or with unique spacing, be sure you write it the same way every time. But don’t stop there; strive for consistency in all your content — from the use of abbreviations, fonts and numerals to the tone, style and voice of your copy. Having one person write all the content helps keep it consistent, but when this isn’t possible, at least try to have one person serve as editor. If several people are contributing to your site, develop a style guide to inform them of your rules for consistent content.
2. Clear. As in all writing, the goal of Web content is to communicate with an audience, and clarity is essential. Try reading your copy aloud before posting; hearing it out loud can help you determine whether it all makes sense. If possible, have one or two others read copy before posting it to the Web — and if your subject matter is technical or complicated, consider using an outside editor to help eliminate techno-speak.
3. Casual. The nature of the Web is more informal than many other marketing venues, so make sure your copy fits the medium. Your Web content should probably be more conversational than your traditional brochure or company presentation, and because many readers scan Web copy rather than reading it word for word, subheadings and bullets are helpful. In most cases, Web content should also be brief, making your points quickly without losing readers’ attention. However, many effective sites contain brief copy on the front pages with more detailed information available through additional links, which works to keep the attention of the general readership while offering more for those who want it.
4. Correct. Don’t confuse “casual” with “sloppy,” however. Correctness is still important, even on the Web, and errors in spelling, grammar, or facts will give most readers a negative impression of your company. Don’t just use spell check; read and re-read your copy before posting it, and if possible, get second opinions from those who know what they’re doing. There’s nothing wrong with being a bad speller, but there’s no excuse for refusing to double-check your work.
1. They are genuinely interested in it
2. They see highly relevant ads to your content
3. They thought it’s part of your content
4. It’s an accidental click
5. Because they notice it
6. They want to support your site
7. They are tricked into clicking it
8. Because you opt for image ads which potentially have a higher value than the corresponding set of text ads
9. They thought your link unit was part of your navigation menu
10. They thought the AdSense ads were part of the search result when you use AdSense For Search
11. You rotate colour palettes which add freshness to your ads
12. You use more wide ad formats than their taller counterparts
13. You use multiple ad units if you page contain lots of text
14. You have an optimised number of ad units occupied by top paying advertisers
15. You keep your filter list small. More filtering means fewer ads appear on you pages which decrease your potential earnings
16. You don’t clutter your page with competing ads
17. They want to sabotage you
18. They are envious and like to see you banned
19. Because you moved you ad from the right side to the left, close to the body of your content
20. Because you have more visitors coming from the search engines than regular visitors
21. Because you have great content.
Source : sabahan.com
Do you have any various activity in your life? And you a headache because that?
So, why don’t you use the internet application to re-organize your daily activity, here they are :
1. Arranged assignment with ‘Remember the milk’
Your daily activity will disorder if the schedule not arranging based on priority. Use ‘Remember The Milk’
2. Save your important note in ‘Backpack’
‘Backpack’ is like web based notebook. You can write various idea in this note, ‘backpack’ also have e-mail address. So, you can direct write your note via e-mail everywhere.
3. ‘Sandy’ as your virtual assistant
Use ‘Sandy’ to remind your daily schedule.
4. Arrange your finance with ‘Wesabe’
Confused with your finance transaction, make use the ‘Wesabe’ online apllication to arrange your finance.
Source : PCWorld











