-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
1244 lines (741 loc) · 56.7 KB
/
atom.xml
File metadata and controls
1244 lines (741 loc) · 56.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Paul Shaiju]]></title>
<link href="http://paultsr.in/atom.xml" rel="self"/>
<link href="http://paultsr.in/"/>
<updated>2013-08-06T09:16:15+05:30</updated>
<id>http://paultsr.in/</id>
<author>
<name><![CDATA[Your Name]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[How to install NS2.35 with Mannasim in Ubuntu 13.04]]></title>
<link href="http://paultsr.in/blog/2013/05/19/how-to-install-ns2-dot-35-with-mannasim-in-ubuntu-13-dot-04/"/>
<updated>2013-05-19T23:20:00+05:30</updated>
<id>http://paultsr.in/blog/2013/05/19/how-to-install-ns2-dot-35-with-mannasim-in-ubuntu-13-dot-04</id>
<content type="html"><![CDATA[<h2>Installation Steps</h2>
<p>( open up the terminal and paste the following commands one by one )</p>
<ol>
<li><code>cd</code></li>
<li><code>sudo apt-get update && sudo apt-get install build-essential autoconf automake libxmu-dev git openjdk-7-jre</code></li>
<li><code>cd /usr/local/</code></li>
<li><code>sudo git clone git://github.com/paultsr/ns-allinone-2.35.git</code></li>
<li><code>cd ns-allinone-2.35/</code></li>
<li><code>sudo ./install</code></li>
<li><code>close the TERMINAL</code></li>
</ol>
<p><em>Sample ns2 programs are available in your home folder: ~/ns2/programs</em></p>
<p><em>NSG ia a GUI tool for designing wired/wireless networks.Execution command : nsg</em></p>
<p><em>NSG documentation is available in your home folder: ~/ns2/docs</em></p>
<p><strong>Screen Shots</strong></p>
<p><img class="center" src="http://paultsr.in/images/mannasim/ns1.png" title="ns2.35 with mannasim installation on ubuntu13.04 image1" >
<img class="center" src="http://paultsr.in/images/mannasim/ns2.png" title="ns2.35 with mannasim installation on ubuntu13.04 image2" >
<img class="center" src="http://paultsr.in/images/mannasim/ns3.png" title="ns2.35 with mannasim installation on ubuntu13.04 image3" >
<img class="center" src="http://paultsr.in/images/mannasim/ns4.png" title="ns2.35 with mannasim installation on ubuntu13.04 image4" >
<img class="center" src="http://paultsr.in/images/mannasim/ns5.png" title="ns2.35 with mannasim installation on ubuntu13.04 image5" >
<img class="center" src="http://paultsr.in/images/mannasim/ns6.png" title="ns2.35 with mannasim installation on ubuntu13.04 image6" >
<img class="center" src="http://paultsr.in/images/mannasim/ns7.png" title="ns2.35 with mannasim installation on ubuntu13.04 image7" >
<img class="center" src="http://paultsr.in/images/mannasim/ns8.png" title="ns2.35 with mannasim installation on ubuntu13.04 image8" >
<img class="center" src="http://paultsr.in/images/mannasim/ns9.png" title="ns2.35 with mannasim installation on ubuntu13.04 image9" >
<img class="center" src="http://paultsr.in/images/mannasim/ns10.png" title="ns2.35 with mannasim installation on ubuntu13.04 image10" >
<img class="center" src="http://paultsr.in/images/mannasim/ns11.png" title="ns2.35 with mannasim installation on ubuntu13.04 image11" ></p>
<h2>License</h2>
<p>Paul S
<em>Free Software Supporter!</em></p>
<p><em>Tested in Ubuntu 13.04 and JOSS Linux 1.10.3</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[How to Unlock Idea 3G Netsetter]]></title>
<link href="http://paultsr.in/blog/2013/02/24/how-to-unlock-idea-3g-netsetter/"/>
<updated>2013-02-24T11:59:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/24/how-to-unlock-idea-3g-netsetter</id>
<content type="html"><![CDATA[<h2>STEP BY STEP GUIDE TO UNLOCK IDEA 3G NETSETTER</h2>
<p><img class="center" src="http://paultsr.in/images/idea_unlock/netsetter.png" title="unlock idea 3g netsetter image0" ></p>
<p>1) Download the cdma workshop and download huawei e1732 downgrader ( disable antivirus before opening the cdma workshop ).</p>
<p><a href="http://cesa.co.in/downloads/idea/CESA_1.zip">cdma workshop free download</a></p>
<p><a href="http://cesa.co.in/downloads/idea/CESA_2.zip">huawei e1732 downgrader free download</a></p>
<p>2) Insert a non idea sim to your Idea 3G Netsetter (e1732 ).</p>
<p>3) Find the common port to which your Idea 3G Netsetter (e1732 ) modem is connected.</p>
<p><strong>Right click on your My Computer icon > Properties > Device Manager > Ports (COM & LPT) > HUAWEI Mobile Connect – 3G Application Interface (COM [The port number appear in your system] )</strong></p>
<p>4) Run <em>CDMA Workshop v2.7.0.exe</em></p>
<p>5) Select the Port that you noted from your Device Manager under the Port option in <em>COM Settings (AT mode)</em> under the <em>Main</em> tab.</p>
<p>6) Then click on <em>connect</em> and then click on <em>read</em></p>
<p><img class="center" src="http://paultsr.in/images/idea_unlock/1.jpg" title="unlock idea 3g netsetter image1" ></p>
<!-- more -->
<p>7) Go to the <em>Security</em> tab > Type <em>000000</em> in the blank box under <em>SPC</em> > Click on <em>SPC</em> button > Click on <em>Send</em> with Default (<em>nv_read</em>) as SPC.</p>
<p><img class="center" src="http://paultsr.in/images/idea_unlock/2.jpg" title="unlock idea 3g netsetter image2" ></p>
<p>8) Click on <em>Memory</em> tab > <em>NV Items</em> > <em>Read</em> > Now a <em>Conform</em> box will appear > Click <em>OK</em> > Now a <em>NV Items Backup</em> box will appear > In the box straight to <em>Last NV Item</em> type <em>9999</em> > Click <em>OK</em> > Save the file by giving a file name you like (Eg: <a href="http://cesa.co.in/downloads/idea/CESA_5_E1732Unlocker.txt">E1732Unlock</a>)</p>
<p><img class="center" src="http://paultsr.in/images/idea_unlock/3.jpg" title="unlock idea 3g netsetter image3" ></p>
<p>9) When the buffer reach <em>100%</em> your file is saved successfully. Now a <em>Information</em> box will appear > Click <em>OK</em> > Minimise <em>CDMA Workshop v2.7.0</em></p>
<p>10) Run <em>E1732 Downgrader8 > </em>accept<em> the agreement > </em>Next<em> > Wait for a few seconds until the search for your modem finishes > (Don’t mark on </em>Auto remove the device after update<em>) </em>Next<em> > (Don’t remove your data card until the process is finished) > </em>Start<em> > At the end of </em>Downloading Programs…<em> you will get a </em>Update Failure!<em> error dialog box (DON’T WORRY & DON’T GET DISAPPOINTED) > Click </em>OK<em> > Click </em>Finish*</p>
<p>11) Restore <em>CDMA Workshop v2.7.0</em> > <em>Main</em> tab > <em>Disconnect</em></p>
<p>12) Unplug your Idea 3G Netsetter (e1732 ) modem from your computer.</p>
<p>13) Again Plug it to the Computer. Check the <em>Port</em> again from the <em>Device Manager</em></p>
<p>14) Go to <em>CDMA Workshop v2.7.08 select the Port that you noted from your Device Manager under the Port option in </em>COM Settings (AT mode)<em> under the </em>Main<em> tab as we did before > Click on </em>Connect<em> > </em>Memory<em> tab > </em>NV Items<em> > Click on </em>Write<em> > A </em>Confirm<em> box will appear > Click </em>OK<em> > </em>Open<em> dialog box will appear > Open the file that you saved before > When the buffer reach </em>100%<em> a </em>Information<em> dialog box appears with a success message > Click </em>OK<em> > </em>Main<em> tab > </em>Disconnect*</p>
<p>15) Now close <em>CDMA Workshop v2.7.0</em> > A <em>Confirm</em> dialogue box will appear > Click <em>NO</em></p>
<p>16) Close everything and Enable your Antivirus</p>
<p>17) That’s it. Your Idea 3G Netsetter (e1732 )is unlocked successfully.</p>
<p>18) Unplug Idea Netsetter (Modem) from your computer.</p>
<p>19) Put a SIM Card other than IDEA to the Netsetter and again Plug it to the Computer.</p>
<p>20) Wait for Idea Netsetter to Start. It will detect the SIM card and enjoy browsing with any other SIM.</p>
<p><strong>To make new mobile apn settings you can download huawei mobile partner</strong></p>
<p><a href="http://cesa.co.in/downloads/idea/CESA_3.zip">Mobile Partner free download</a></p>
<p>Many people are having problem while connecting to internet with other sim cards now you can connect by any sim card with default IDEA net Setter Dashboard using these steps. If your Modem is detecting sim cards and you are getting errors then try this</p>
<p><strong>Windows XP</strong></p>
<p>Open <em>Control Panel</em> -> <em>Phone and Modem</em> (found directly in control panel or in <em>Printers and other hardware</em> ) –> <em>modem</em> tab –> <em>huawei mobile connect 3g modem</em> (which is present on COM ) –> <em>properties advance</em> –> <em>extra initializing command</em> use given commands below and click <em>OK</em></p>
<p><strong>Windows 7</strong></p>
<p>In the start menu, type <em>phone and modem</em> — <em>click</em> on itb —> <em>modems</em> –> <em>huawei mobile connect 3g modem</em> –> <em>properties</em> –> <em>change settings</em> –> <em>advance</em> –> <em>extra initialization command</em> –> use given commands below and if it asks for Country and area code then set Country to <em>India</em> and Area Code to <em>91</em> and leave other fields blank.</p>
<p><strong>commands/settings</strong></p>
<p><strong>Aircel</strong> : <code>AT+CGDCONT=1,"IP",”aircelgprs”</code></p>
<p><strong>Airtel</strong> : <code>AT+CGDCONT=1,”IP”,”airtelgprs.com”</code></p>
<p><strong>BSNL</strong> – <code>AT+CGDCONT=1,”IP”,”bsnlnet”</code></p>
<p><strong>Idea</strong> – <code>AT+CGDCONT=1,”IP”,”internet”</code></p>
<p><strong>Reliance</strong> – <code>AT+CGDCONT=1,”IP”,”rcomnet”</code></p>
<p><strong>Tata Docomo</strong> – <code>AT+CGDCONT=1,”IP”,”tata.docomo.internet”</code></p>
<p><strong>Videocon</strong> – <code>AT+CGDCONT=1,”IP”,”vinternet.com”</code></p>
<p><strong>Vodafone</strong> – <code>AT+CGDCONT=1,”IP”,”www”</code></p>
<p> <em>If you have any trouble doing this please comment here</em></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Windows XP, Windows Vista SP1 and Windows 7</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[JOSS Linux 1.10.3]]></title>
<link href="http://paultsr.in/blog/2013/02/24/joss-linux-1-dot-10-dot-3/"/>
<updated>2013-02-24T11:29:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/24/joss-linux-1-dot-10-dot-3</id>
<content type="html"><![CDATA[<p>Computer Engineering Students Association(<strong>CESA</strong>) of <a href="http://jecc.ac.in">Jyothi Engineering College,Thrissur</a> proudly released <strong>JOSS Linux 1.10</strong>.</p>
<p>Jyothi Operating Sysytem Solutions(<strong>JOSS</strong>) Linux is a customized version of Ubuntu 11.10 for students who are pursuing UG/PG courses in Computer Science and Engineering. JOSS Linux contains almost all softwares required for the practicals and fun such as gcc, java, clisp, gprolog, masm using dosbox, nasm, mysql, apache, php, perl, python, flex, bison, s2, texmaker, geany,vim,vlc, chromium, flash-plugin, dvd-rip, filezilla, skype, wireshark, adobe reader, gimp, dia, stellarium and many more..</p>
<p>Download the iso image from <a href="http://www.cesa.co.in/downloads/livecd.iso">here</a>.</p>
<p>JOSS Linux can also be used as a <strong>Live DVD</strong>.</p>
<p>Screen shots
<img class="center" src="http://paultsr.in/images/joss_linux_0.png" title="joss linux image1" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_1.png" title="joss linux image2" ></p>
<!-- more -->
<p><img class="center" src="http://paultsr.in/images/joss_linux_2.png" title="joss linux image3" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_3.png" title="joss linux image4" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_4.png" title="joss linux image5" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_5.png" title="joss linux image6" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_6.png" title="joss linux image7" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_7.png" title="joss linux image8" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_8.png" title="joss linux image9" ></p>
<p><img class="center" src="http://paultsr.in/images/joss_linux_9.png" title="joss linux image10" ></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[paulson.in to paultsr.in]]></title>
<link href="http://paultsr.in/blog/2013/02/16/paulson-dot-in-to-paultsr-dot-in/"/>
<updated>2013-02-16T22:45:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/16/paulson-dot-in-to-paultsr-dot-in</id>
<content type="html"><![CDATA[<p>I have migrated my Domain/Website from <strong>http://paulson.in</strong> to <strong>http://paultsr.in</strong>. Webspace is in <strong>http://paultsr.github.com</strong>.Also i have changed my blogging platform from <strong>Wordpress</strong> to <strong>Octopress</strong>. it is easy to read and write blogs in Octopress by using its <em>markdown syntax</em>.</p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[How to Crack/Hack Passwords]]></title>
<link href="http://paultsr.in/blog/2013/02/14/how-to-crack-slash-hack-passwords/"/>
<updated>2013-02-14T18:21:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/how-to-crack-slash-hack-passwords</id>
<content type="html"><![CDATA[<p>We can easily crack Linux passwords using the tool <strong>John the Ripper</strong></p>
<p><strong>John the Ripper</strong> is a free password cracking software tool. It currently runs on fifteen different platforms (11 architecture-specific flavors of Unix, DOS, Win32, BeOS, and OpenVMS).</p>
<p>It is one of the most popular password testing/breaking programs. It combines a number of password crackers into one package, auto detects password hash types, and includes a customizable cracker.</p>
<p>It can be run against various encrypted password formats including several crypt password hash types most commonly found on various Unix flavors (based on DES, MD5, or Blowfish), Kerberos AFS, and Windows NT/2000/XP/2003 LM hash.</p>
<p>To Install John the Ripper on Debian/Ubuntu, type the following command in a terminal</p>
<p><code>sudo apt-get install john</code></p>
<p>After installation, first use the unshadow command to combine the <em>/etc/passwd</em> and <em>/etc/shadow</em> files.</p>
<p><code>sudo /usr/sbin/unshadow /etc/passwd /etc/shadow > /tmp/crack.password</code></p>
<p>John the Ripper tool uses brute-force attack and is a CPU/Time consuming password cracking technique.</p>
<p>John can work in the following modes:</p>
<ul>
<li>Wordlist : John will simply use a file with a list of words that will be checked against the passwords.</li>
<li>Single crack : In this mode, john will try to crack the password using the login/GECOS information as passwords.</li>
<li>Incremental : This is the most powerful mode. John will try any character combination to resolve the password.</li>
</ul>
<!-- more -->
<p>To use John, you just need to supply it a password file created using <em>unshadow</em> command along with desired options. If no mode is specified, john will try <em>single</em> first, then <em>wordlist</em> and finally <em>incremental</em> password cracking methods.</p>
<p><code>john /tmp/crack.password</code></p>
<p><img class="center" src="http://paultsr.in/images/passwdcrk.png" title="crack_hack Password image1" ></p>
<p>You can suspend the process by pressing <em>ctrl + c</em> and later can be restored using the command</p>
<p><code>john -restore</code></p>
<p>To view cracked passwords, type</p>
<p><code>john -show /tmp/crack.password</code></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Ubuntu and JOSS Linux</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Developing Web Services in Linux]]></title>
<link href="http://paultsr.in/blog/2013/02/14/madeveloping-web-services-in-linux/"/>
<updated>2013-02-14T17:40:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/madeveloping-web-services-in-linux</id>
<content type="html"><![CDATA[<p><strong>Web services</strong> enable software components such as application functions, objects and processes from heterogeneous systems to be exposed as services over the Internet.</p>
<p>To develop Web Services on Linux, we need the following packages.</p>
<p><strong>1.Java SE Development Kit (JDK)</strong></p>
<p><strong>2.NetBeans IDE</strong></p>
<p>To install these packages, follow the below steps :-</p>
<p>First install Java SE Development Kit</p>
<p>To install proprietary Java, you must have the Multiverse repository enabled. Click on <em>System</em> > <em>Administration</em> > <em>Software Source</em> > <em>Select Multiverse</em> Close.</p>
<p>When ask to reload the package informations, Click <em>Reload</em>.</p>
<p>Open a terminal and type the following command :-</p>
<p><code>sudo apt-get install sun-java6-jdk</code></p>
<p><img class="center" src="http://paultsr.in/images/ws16.png" title="Developing Web Services in linux image1" ></p>
<p>To setup the default java version</p>
<p><code>sudo update-java-alternatives -s java-6-sun</code></p>
<p>Next setup the environment variable</p>
<p>You also need to setup <em>JAVA_HOME</em> and <em>PATH</em> variable.Open your <em>.bash_profile</em> file:</p>
<p><code>sudo gedit $HOME/.bashrc</code></p>
<p>Append following line:</p>
<p><code>export JAVA_HOME=/usr/lib/jvm/java-6-sun</code></p>
<p><code>export PATH=$PATH:$JAVA_HOME/bin</code></p>
<p>Save and close the file.</p>
<!-- more -->
<p>Then download NetBeans IDE from <em>here</em></p>
<p>Open a terminal and <em>cd</em> to the downloaded location.Then type</p>
<p>‘sudo sh netbeans-6.7.1-ml-linux.sh’</p>
<p><img class="center" src="http://paultsr.in/images/ws1.png" title="Developing Web Services in linux image2" ></p>
<p>Click <em>Next</em> and Accept the License.It will automatically detect JDK.Don’t change the default installation paths.</p>
<p><img class="center" src="http://paultsr.in/images/ws3.png" title="Developing Web Services in linux image3" ></p>
<p>When the installation is complete, click <em>Finish</em> to exit the wizard.</p>
<p>Now we will develop our first web service using netbeans. For a change instead of developing a Hello Web Service as the first web service, we will develop a Calculator Web Service to add two integer numbers.</p>
<h2>Creating a Web Service</h2>
<p>1.Choose <em>File > New Project (Ctrl-Shift-N)</em>. Select <em>Web Application</em> from the <em>Java Web</em> category.</p>
<p><img class="center" src="http://paultsr.in/images/ws7.png" title="Developing Web Services in linux image4" ></p>
<p>2.Name the project <em>CalculatorWebService</em>.</p>
<p><img class="center" src="http://paultsr.in/images/ws8.png" title="Developing Web Services in linux image5" ></p>
<p>3.Click through the remaining pages and click <em>Finish</em>.</p>
<p><img class="center" src="http://paultsr.in/images/ws9.png" title="Developing Web Services in linux image6" ></p>
<p>4.Right-click the <em>CalculatorWebServic</em>e node and choose <em>New > Web Service</em>.</p>
<p>5.Name the web service <em>CalculatorWS</em>, type <em>org.me.calculator</em> in Package, and click <em>Finish</em>.</p>
<p><img class="center" src="http://paultsr.in/images/ws10.png" title="Developing Web Services in linux image7" ></p>
<p>The Projects window displays the structure of the new web service and the source code is shown in the editor area.</p>
<p><img class="center" src="http://paultsr.in/images/ws66.png" title="Developing Web Services in linux image8" ></p>
<p>6.Change to the <em>Design</em> view.</p>
<p>Click <em>Add</em> Operation in the visual designer. A dialog box appears where you can define the new operation.
In the upper part of the Add Operation dialog box, type <em>add</em> in Name and type <em>int</em> in the Return Type drop-down list. In the lower part of the Add Operation dialog box, click <em>Add</em> and create a parameter of type <em>int</em> named <em>i</em>.Then click <em>Add</em> again and create a parameter of type <em>int</em> called <em>j</em>.</p>
<p><img class="center" src="http://paultsr.in/images/ws11.png" title="Developing Web Services in linux image9" ></p>
<p>Click <em>OK</em> at the bottom of the Add Operation dialog box.</p>
<p>The visual designer now displays the following:</p>
<p><img class="center" src="http://paultsr.in/images/ws12.png" title="Developing Web Services in linux image10" ></p>
<p>7.Click <em>Source</em> and notice that the source code that has been generated in the previous steps is as follows:</p>
<p>8.In the editor, extend the skeleton add operation to the following (changes are in bold):</p>
<p>@WebMethod</p>
<p>public int add(@WebParam(name = “i”)</p>
<p>int i, @WebParam(name = “j”)</p>
<p>int j) {</p>
<p><strong>int k = i + j;</strong></p>
<p>return <strong>k</strong>;</p>
<p>}</p>
<p><img class="center" src="http://paultsr.in/images/ws13.png" title="Developing Web Services in linux image11" ></p>
<p>9.Right-click the project and choose <em>Deploy</em>. The IDE starts the application server, builds the application, and deploys the application to the server.</p>
<p>You can follow the progress of these operations in the <em>CalculatorWSApplication (run-deploy) and GlassFish V3 Prelude</em> tabs in the <em>Output view</em>.If you deployed to the GlassFish V3 Prelude Server, you will see the following, which indicates that you have successfully deployed your web service:</p>
<p><img class="center" src="http://paultsr.in/images/ws14.png" title="Developing Web Services in linux image12" ></p>
<h2>Consuming the Web Service</h2>
<p>Now that you have deployed the web service, you need to create a client (jsp page) to make use of the web service’s add method.</p>
<p>In this section, we will create a new web application and then consume the web service in the default JSP page that the Web Application wizard creates.</p>
<p>1.Choose <em>File > New Project (Ctrl-Shift-N)</em>. Select <em>Web Application</em> from the <em>Java Web</em> category. Name the project <em>CalculatorWSJSPClient</em>. Click <em>Finish</em>.</p>
<p>2.Right-click the <em>CalculatorWSJSPClient</em> node and choose <em>New > Web Service Client</em>.</p>
<p>3.In <em>Project</em>, click <em>Browse</em>. Browse to the web service that you want to consume. When you have selected the web service, click <em>OK</em>.</p>
<p><img class="center" src="http://paultsr.in/images/ws18.png" title="Developing Web Services in linux image13" ></p>
<p>4.Leave the other settings at default and click <em>Finish</em>. The Projects window displays the new web service client, as shown below:</p>
<p><img class="center" src="http://paultsr.in/images/ws17.png" title="Developing Web Services in linux image14" ></p>
<p>5.In the Web Service References node, expand the node that represents the web service. The <em>add</em> operation, which you will invoke from the client, is now exposed.</p>
<p>6.Drag the add operation to the client’s index.jsp page, and drop it below the H1 tags. The code for invoking the service’s operation is now generated in the <em>index.jsp</em> page.</p>
<p>Change the value for <em>i</em> and <em>j</em> from <em>0</em> to other integers, such as <em>3</em> and <em>5</em>. Replace
the commented out TODO line in the catch block with <em>out.println(“exception” + ex);</em>.</p>
<p><%</p>
<p>try {</p>
<p>org.me.calculator.CalculatorWSService service = new org.me.calculator.CalculatorWSService();</p>
<p>org.me.calculator.CalculatorWS port = service.getCalculatorWSPort();</p>
<p>// TODO initialize WS operation arguments here</p>
<p>int i = <strong>3</strong>;</p>
<p>int j = <strong>5</strong>;</p>
<p>// TODO process result here</p>
<p>int result = port.add(i, j);</p>
<p>out.println(“Result = “+result);</p>
<p>} catch (Exception ex) {</p>
<p><strong>out.println(“exception” + ex);</strong></p>
<p>}</p>
<p>%></p>
<p>7.Right-click the project node and choose <em>Run</em>.The server starts, if it wasn’t running already. The application is built and deployed, and the browser opens, displaying the calculation result:</p>
<p><img class="center" src="http://paultsr.in/images/ws15.png" title="Developing Web Services in linux image15" ></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Ubuntu and JOSS Linux</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Malayalam fonts in Firefox]]></title>
<link href="http://paultsr.in/blog/2013/02/14/malayalam-fonts-in-firefox/"/>
<updated>2013-02-14T17:33:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/malayalam-fonts-in-firefox</id>
<content type="html"><![CDATA[<p>Websites which use malayalam fonts can be easily read by insatlling a small plugin in firefox</p>
<p>The plugin <strong>padma</strong> works for the latest firefo version too.</p>
<p>Click <em>here</em> to install</p>
<p>It can be used to read tamil,kannada,telgu,gujarati,bengali websites.</p>
<p>After installation, restart the browser.Check the following sites</p>
<p><em>www.malayalamanorama.com</em></p>
<p><em>www.mangalam.com</em></p>
<p>It supports Linux, Solaris and Windows platforms.</p>
<p><img class="center" src="http://paultsr.in/images/malayalam-firefox.png" title="malayalam Font installation on linux image1" ></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Ubuntu and JOSS Linux</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[My Favourite Quotes]]></title>
<link href="http://paultsr.in/blog/2013/02/14/rumy-favourite-quotes/"/>
<updated>2013-02-14T16:56:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/rumy-favourite-quotes</id>
<content type="html"><![CDATA[<p><strong>Following are the Quotes which have always inspired me</strong></p>
<p><em>“The most beautiful discovery true friends make is that they can grow separately without growing apart” - Elisabeth Foley</em></p>
<p><em>“Live with Chivalry”</em></p>
<p><em>“Happiness held is the seed. Happiness shared is the flower” - John Harrigan</em></p>
<p><em>“There is a great value in disaste because you can start all over again” - Thomas Edison</em></p>
<p><em>“Doing nothing is very hard to do.. you never know when you’re finished” - Leslie Nielson</em></p>
<p><em>“Do not go where the path may lead, go instead where there is no path and leave a trail” - Ralph Waldo</em></p>
<p><em>“Be fearful when others are greedy and Be greedy when others are fearful” - Warren Buffet</em></p>
<p><em>“Great men are eccentric”</em></p>
<p><em>“Live what you love, don’t be bored”</em></p>
<p><em>“Dream is not what you see in sleep, dream is the thing which does not let you sleep”</em></p>
<p><em>“Education is when you read the fine print, Experience is what you get if you don’t”</em></p>
<p><em>“I Love you, not for what you are, but for what I am when I am with you”</em></p>
<p><em>“We are what we Love, not what Loves us”</em></p>
<p><em>“Count your age by friends, Count your life by smiles”</em></p>
<p><em>“I am not in this world to live up to your expectations, and you are not in this world to live up to mine.
You are you, and I am I, and if by chance we find each other, it’s beautiful”</em></p>
<p><em>“പൊക്കമില്ലായ്മയാനെന്റെ പൊക്കം” — കുഞ്ഞുണ്ണി മാഷ്</em></p>
<p><em>“ഒരു വളപ്പോട്ടുന്ടെന് കയ്യില് , ഒരു മയില് പീലി ഉണ്ടുള്ളില് , വിരസ നിമിഷങ്ങള് സരസമാക്കനിവ ധാരലമാനെനിക്കെന്നും” — കുഞ്ഞുണ്ണി മാഷ്</em></p>
<!-- more -->
<p><em>“If you have an apple and I have an apple and we exchange these apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas” –George Bernard Shaw</em></p>
<p><em>“Beauty and color may attract the eye, but only a smile can catch the attention of the hearts”</em></p>
<p><em>“All the beautiful things in life are not seen, nor touched, but are felt in the heart”</em></p>
<p><em>“He who asks a question is a fool for five minutes; he who does not ask a question remains a fool forever”</em></p>
<p><em>“Dream as if you’ll live for ever, live as if you’ll die today” –James Dean</em></p>
<p><em>“We are what we think. All that we are arises with our thoughts” –Budha</em></p>
<p><em>“Making too many friends is not a big thing….!! Only those who having gud character and who understand us will stay for ever…and ever”</em></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Run Windows applications in Linux]]></title>
<link href="http://paultsr.in/blog/2013/02/14/run-windows-applications-in-linux/"/>
<updated>2013-02-14T16:33:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/run-windows-applications-in-linux</id>
<content type="html"><![CDATA[<h2>Wine Doors 0.1 & Wine in Ubuntu</h2>
<p>Wine Doors is an application that allows easy installation and managing of Windows application on Linux desktop .</p>
<p>This what Wine Doors Website has to say : -</p>
<p>Wine-doors is an application designed to make installing windows software on Linux, Solaris or other Unix systems easier. Wine-doors is essentially a <em>package management tool</em> for windows software on Linux systems.</p>
<p>Since Wine-Doors is basically to manage applications installed through wine and simplify their installation through wine so installing wine is a must.</p>
<p><strong>To install Wine</strong></p>
<p><code>sudo apt-get install wine</code></p>
<p>After installing wine click <em>here</em> to download the latest version of Wine-Doors(<em>wine-doors_0.1.3rc1_all.deb</em>)</p>
<p>Install the following packages from a terminal</p>
<p><code>sudo apt-get install orange</code></p>
<p><code>sudo apt-get install cabextract</code></p>
<p><code>sudo dpkg -i wine-doors_0.1.3rc1_all.deb</code></p>
<!-- more -->
<p>I have used wine-doors release candidate 1 .</p>
<p>After completing above steps launch Wine-Doors from <strong>Applications -> System-Tools -> Wine-Doors</strong></p>
<p>Now Wine-Doors would download and install some necessary apps and when all this inital confiuguration is over you would find a dialog like this providing you a easy way of installing a number of popular windows application.</p>
<p>I Was highly impressed by the ease with which it is possible to install many popular application using wine-doors.It was really impressive .There are a lot of windows applications that can be installed by wine.Check the <em>wine site</em> for the new windows applications which it supports.</p>
<p><img class="center" src="http://paultsr.in/images/wine-doors1.png" title="wine installation on linux image1" ></p>
<p><img class="center" src="http://paultsr.in/images/wine-doors3.png" title="wine installation on linux image2" ></p>
<p><em>Wine-Doors in Action</em></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Ubuntu and JOSS Linux</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[NS2 Installation in Ubuntu 9.10 and Above]]></title>
<link href="http://paultsr.in/blog/2013/02/14/ns2-installation-on-ubuntu-9-dot-10-and-above/"/>
<updated>2013-02-14T16:26:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/ns2-installation-on-ubuntu-9-dot-10-and-above</id>
<content type="html"><![CDATA[<p>I was searching for ns2 ubuntu .deb packages for a long time.I have written many blogs for the manual installation of ns2 on linux and windows.Still I do get many queries of ns2 installation errors.</p>
<p>There is a ppa repository for ns2 created by <em>Wouter Horré</em>.Now its very easy to install ns2 on ubuntu.</p>
<p>Since Ubuntu 9.10 is already being shipped with tcl,otcl,tk, you need not to install these packages, Only ns, nam & xgraph are needed to install.</p>
<p>If you are behind a proxy, make sure you have $http_proxy variable configured in <em>~/.bashrc</em> or type the following in the terminal</p>
<p><code>export http_proxy=http://ipaddr:port</code></p>
<p>If you had followed my previous post to install ns2 on linux, delete the ns2 folder and paths using</p>
<p><code>sudo rm -rf /usr/local/ns-allinone-2.34 && sudo rm -f /etc/profile.d/ns2.sh</code></p>
<p>Type the following command on a terminal :</p>
<p><code>sudo add-apt-repository ppa:wouterh && sudo apt-get update && sudo apt-get install ns nam xgraph</code></p>
<p>There is no need to set-up any path, environment variables or make any changes in <em>~/.bashrc</em> or <em>/etc/profile</em> file.</p>
<p>Run it using the command</p>
<p><code>ns filename.tcl</code></p>
<p><img class="center" src="http://paultsr.in/images/ns2-linux2.png" title="ns2 installation on linux image2" ></p>
<p><img class="center" src="http://paultsr.in/images/ns2-linux3.png" title="ns2 installation on linux image3" ></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software!</em></p>
<p><em>Tested in Ubuntu 11.10 and JOSS Linux 1.10.3</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Installing Google GO in Ubuntu]]></title>
<link href="http://paultsr.in/blog/2013/02/14/installing-google-go-on-ubuntu/"/>
<updated>2013-02-14T11:49:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/installing-google-go-on-ubuntu</id>
<content type="html"><![CDATA[<p>GO is a new programming language released by Google in November 2009. GO is a simple, concurrent, garbage-collected language with fast compilation. The language is still in development stage and there is no readymade package available for ubuntu. You can install it and try out the features from the version control repository of GO.</p>
<h2>Installation Steps</h2>
<p> <strong>Install Pre-requisites on ubuntu</strong></p>
<p>You need gcc and some supporting software like bison to compile go. Install the following :</p>
<p><code>sudo apt-get install mercurial bison libc6-dev python-setuptools python-dev</code></p>
<p> <strong>Install GO</strong></p>
<p>Download the go source package from <em>here</em>.Copy <em>go-path_syntax_build.tbz</em> file to the <em>/usr/local</em> directory.</p>
<p><code>sudo cp go-path_syntax_build.tbz /usr/local/</code></p>
<p>Then type the following commands in a terminal.</p>
<p><code>cd /usr/local/</code></p>
<p><code>sudo tar –jxvf go-path_syntax_build.tbz</code></p>
<p>To change the default 386 architecture, edit the folowing file :</p>
<p><code>sudo gedit /usr/local/go/.paulson/go.sh</code></p>
<p>Replace the value of environmental variable <em>$GOARCH</em> to <em>amd64</em>
Save the file and follow the steps below :</p>
<p><code>cd /usr/local/go/src</code></p>
<p><code>sudo ./all.bash</code></p>
<!-- more -->
<p>Now wait for some time. The compilations will proceed and will be completed with the following message</p>
<p><em>— cd ../test</em></p>
<p><em>0 known bugs; 0 unexpected bugs</em></p>
<p> <strong>Test GO</strong></p>
<p>Your go language system is now installed.Now let us test it.I had already placed a simple hello program (<em>hello.go</em>) inside <em>/usr/local/go/examples</em> directory.</p>
<p>You can check it using <em>vim</em> editor or <em>gedit</em>(with go syntax)</p>
<p><code>gedit /usr/local/go/examples/hello.go</code></p>
<p><img class="center" src="http://paultsr.in/images/hellogo.png" title="Google GO installation on windows image1" ></p>
<p>To compile hello.go</p>
<p><code>8g hello.go</code></p>
<p><em>8g is the Go compiler for 386; it will write the output in hello.8. The ‘8’ identifies files for the 386 architecture. The identifier letters for amd64 and arm are ‘6’ and ‘5’. That is, if you were compiling for amd, you would use 6g and the output would be named file.6</em></p>
<p>The above command produces an intermediate file <em>hello.8</em>.Next you have to link it.</p>
<p><code>8l hello.8</code></p>
<p>The executable is placed as <em>8.out</em>. Finally run the executable using</p>
<p><code>./8.out</code></p>
<p><strong>Keeping up with releases</strong></p>
<p>New releases are announced on the Go Nuts mailing list. To update an existing tree to the latest release, you can run:</p>
<p><code>cd $GOROOT/src</code></p>
<p><code>hg pull</code></p>
<p><code>hg update release</code></p>
<p><code>make all</code></p>
<p>To know more about GO programming language, visit :</p>
<p><em>GO Official Site</em></p>
<p><em>GO Google Group</em></p>
<p>There is an <em>unofficial</em> Windows port available, you can download it from <em>GO-windows</em>.</p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software!</em></p>
<p><em>Tested in Ubuntu 11.10 and JOSS Linux 1.10.3</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Windows 7 Keyboard Shortcuts]]></title>
<link href="http://paultsr.in/blog/2013/02/14/windows-7-keyboard-shortcuts/"/>
<updated>2013-02-14T11:37:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/windows-7-keyboard-shortcuts</id>
<content type="html"><![CDATA[<p>Windows 7 boasts a lot of great new shortcuts for switching between apps, moving windows around your screen, moving them to another monitor altogether, and much more. But I’m focusing on several of my favorites.</p>
<p><img class="center" src="http://paultsr.in/images/windows_7.jpg" title="Windows7 image1" ></p>
<p><strong>Window Management Shortcuts</strong></p>
<p><code>Win+Home</code> Clear all but the active window.</p>
<p><code>Win+Space</code> All windows become transparent so you can see through to the desktop.</p>
<p><code>Win+Up arrow</code> Maximize the active window.</p>
<p><code>Shift+Win+Up arrow</code> Maximize the active window vertically.</p>
<p><code>Win+Down arrow</code> Minimize the window/Restore the window if it’s maximized.</p>
<p><code>Win+Left/Right arrows</code> Dock the window to each side of the monitor.</p>
<p><code>Shift+Win+Left/Right arrows</code> Move the window to the monitor on the left or right.</p>
<p><code>Win+P</code> Adjust presentation settings for your display.</p>
<p><code>Win+(+/-)</code> Zoom in/out.</p>
<p><code>Win+G</code> Cycle between the Windows Gadgets on your screen.</p>
<p><code>Win+X</code> Mobility Center.</p>
<p><code>Win+U</code> Ease of Access.</p>
<!-- more -->
<p><strong>Taskbar Shortcuts</strong></p>
<p><code>Win+number (1-9)</code> Starts the application pinned to the taskbar in that position, or switches to that program.</p>
<p><code>Shift+Win+number (1-9)</code> Starts a new instance of the application pinned to the taskbar in that position.</p>
<p><code>Ctrl+Win+number (1-9)</code> Cycles through open windows for the application pinned to the taskbar in that position.</p>
<p><code>Alt+Win+number (1-9)</code> Opens the Jump List for the application pinned to the taskbar.</p>
<p><code>Win+T</code> Focus and scroll through items on the taskbar.</p>
<p><code>Win+B</code> Focuses the System Tray icons</p>
<p><strong>Windows Explorer Shortcuts</strong></p>
<p><code>Ctrl+Shift+N</code> Creates a new folder in Windows Explorer.</p>
<p><code>Alt+Up</code> Goes up a folder level in Windows Explorer.</p>
<p><code>Alt+P</code> Toggles the preview pane in Windows Explorer.</p>
<p><code>Shift+Right-Click on a file</code> Adds Copy as Path, which copies the path of a file to the clipboard.</p>
<p><code>Shift+Right-Click on a file</code> Adds extra hidden items to the Send To menu.</p>
<p><code>Shift+Right-Click on a folder</code> Adds Command Prompt Here, which lets you easily open a command prompt in that folder.</p>
<p><em>Share your favorite keyboard shortcuts in the comments</em></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Windows 7</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[MAC ID Spoofing in Linux]]></title>
<link href="http://paultsr.in/blog/2013/02/14/blmac-id-spoofing/"/>
<updated>2013-02-14T11:27:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/blmac-id-spoofing</id>
<content type="html"><![CDATA[<p>To change the mac id of your network interface card in Linux, you hav to edit <em>/etc/rc.local</em> file.If the file rc.local is not present in the <em>/etc</em> directory, create a new file of the same name.</p>
<p>Open the <em>rc.local</em> file in a terminal :-</p>
<p><code>sudo gedit /etc/rc.local</code></p>
<p>Then add the following lines before <em>exit 0</em> line:-</p>
<p><code>/etc/init.d/networking stop</code></p>
<p><code>ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx</code></p>
<p><code>/etc/init.d/networking start</code></p>
<p>Save the file and Restart the machine.Now you mac id will be the new mac id you had assigned.To verify, type the following command in a terminal</p>
<p><code>ifconfig</code></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software!</em></p>
<p><em>Tested in Ubuntu 11.10 and JOSS Linux 1.10.3</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Blogging in Malayalam using Wordpress]]></title>
<link href="http://paultsr.in/blog/2013/02/14/blogging-in-malayalam-using-wordpress/"/>
<updated>2013-02-14T11:15:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/blogging-in-malayalam-using-wordpress</id>
<content type="html"><![CDATA[<p>To write blogs in malayalam, you can use the Google <em>transliteration</em> service.After that you can copy the content and paste it to the wordpress editor.</p>
<p>To read your malayalam blogs, you have to edit <em>wp-config.php</em>, which will be present in the root directory of the web hosting server, where you had installed the wordpress.
Look for the following line :</p>
<p><code>define(‘DB_CHARSET’, ‘utf8′);</code></p>
<p>Comment the above line :</p>
<p><code>//define(‘DB_CHARSET’, ‘utf8′);</code></p>
<p>Save the file in the server and publish your blog.Now everyone can read your malayalam blogs.</p>
<p>Check below :-</p>
<p>” പൊക്കമില്ലായ്മയാനെന്റെ പൊക്കം ” — കുഞ്ഞുണ്ണി മാഷ്</p>
<p>” ഒരു വളപ്പോട്ടുന്ടെന് കയ്യില് , ഒരു മയില് പീലി ഉണ്ടുള്ളില് , വിരസ നിമിഷങ്ങള് സരസമാക്കനിവ ധാരലമാനെനിക്കെന്നും ” — കുഞ്ഞുണ്ണി മാഷ്</p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Ubuntu and JOSS Linux</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Mannasim Installation in Windows]]></title>
<link href="http://paultsr.in/blog/2013/02/14/mannasim-installation-on-windows/"/>
<updated>2013-02-14T10:52:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/mannasim-installation-on-windows</id>
<content type="html"><![CDATA[<p>More than half of my pg mates are doing their project work in sensor networks.I had seen my friends struggling to install Mannasim on their laptops.But, iam doing my project on Grid Security. So i thought to write a blog for my friends who all are keen to simulate WSN.</p>
<p>Mannasim is a module which extends NS2 to simulate different Wireless Sensor Networks (WSN) applications.
I had patched the NS2.29 with mannasim module and is available <em>here</em>.I had installed it in my Vista OS.It will also work in Windows XP.</p>
<h2>Installation Steps</h2>
<p>Before installing mannasim, you should install cygwin.You can check my <em>previous post</em> for cygwin installation.After installing cygwin, install the ns2.29 as described in the same post.The only difference is the ns2 version which we are using here is ns-allinone-mannasim-2.29.tbz.</p>
<p>After installing mannasim, copy the ns2.sh file to <em>/etc/profile.d</em> folder</p>
<p><code>cp /usr/local/ns-allinone-2.29/paulson/.set/ns2.sh /etc/profile.d/.</code></p>
<p>Then type the following command in the terminal</p>
<p><code>source /etc/profile.d/ns2.sh</code></p>
<!-- more -->
<p>You can find the sample codes in the folder</p>
<p><em>C:\cygwin\usr\local\ns-allinone-2.29\paulson\sample-codes\mannasim</em></p>
<p><strong>Mannasim Script Generator(MSG)</strong> comes with the mannasim module.It can be used to create ns2 simulation scripts(.tcl) easily and that too with a gui interface.It is very simple to use.You can find the tool in the folder</p>
<p><em>C:\cygwin\usr\local\ns-allinone-2.29\ns-2.29\mannasim\scriptGeneratorTool</em></p>
<p>Double click the <em>msg-win32</em> batch file.
or
type the following command in the cygwin terminal</p>
<p><code>cd /usr/local/ns-allinone-2.29/ns-2.29/mannasim/scriptGeneratorTool/
./msg-linux.sh</code></p>
<p>some screen shots are given below :</p>
<p><img class="center" src="http://paultsr.in/images/ns2-mannasim2.jpg" title="mannasim installation on windows image1" >
<img class="center" src="http://paultsr.in/images/ns2-mannasim4.jpg" title="mannasim installation on windows image2" >
<img class="center" src="http://paultsr.in/images/ns2-mannasim5.jpg" title="mannasim installation on windows image5" ></p>
<p><em>NOTE : For any installation problems, read the comments for this blog.</em></p>
<h2>License</h2>
<p>Paul S</p>
<p><em>Free Software Supporter!</em></p>
<p><em>Tested in Windows XP, Windows Vista SP1 and Windows 7</em></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Ns2 Installation in Windows]]></title>
<link href="http://paultsr.in/blog/2013/02/14/ns2-installation-on-windows/"/>
<updated>2013-02-14T10:32:00+05:30</updated>
<id>http://paultsr.in/blog/2013/02/14/ns2-installation-on-windows</id>
<content type="html"><![CDATA[<p>I have heard from my friends that installing ns2 on windows is like a nightmare.Actually it is not so difficult to install NS2 on windows.In this article I will show you how to install NS2.34 (latest version as for today)on Windows Vista SP1.You can install it on Windows XP also.</p>
<h2>Installation Steps</h2>
<p>Follow the below steps for an easy installation of NS2 on Windows
Download the Cygwin setup from here</p>