-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
948 lines (473 loc) · 28.5 KB
/
index.html
File metadata and controls
948 lines (473 loc) · 28.5 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
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Paul Shaiju</title>
<meta name="author" content="Your Name">
<meta name="description" content="Installation Steps ( open up the terminal and paste the following commands one by one ) cd
sudo apt-get update && sudo apt-get install build- …">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://paultsr.in/">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="/javascripts/ender.js"></script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<link href="/atom.xml" rel="alternate" title="Paul Shaiju" type="application/atom+xml">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
</head>
<body >
<header role="banner"><hgroup>
<div id="logo">
<div id="logoLeft">{</div>
<div id="logoText">mob</div>
<div id="logoRight">}</div>
<div class="clear"></div>
</div>
<h1><a href="/">Paul Shaiju</a></h1>
<h2>My Blog</h2>
<div class="clear"></div>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="Paul Shaiju" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:paultsr.in" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li><a href="/">Blog</a></li>
<li><a href="/blog/archives">Archives</a></li>
<li><a href="http://tumblr.paultsr.in">Gallery</a></li>
<li><a href="https://github.com/paultsr">Repos</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/05/19/how-to-install-ns2-dot-35-with-mannasim-in-ubuntu-13-dot-04/">How to Install NS2.35 With Mannasim in Ubuntu 13.04</a></h1>
<p class="meta">
<time datetime="2013-05-19T23:20:00+05:30" pubdate data-updated="true">May 19<span>th</span>, 2013</time>
| <a href="/blog/2013/05/19/how-to-install-ns2-dot-35-with-mannasim-in-ubuntu-13-dot-04/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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="/images/mannasim/ns1.png" title="ns2.35 with mannasim installation on ubuntu13.04 image1" >
<img class="center" src="/images/mannasim/ns2.png" title="ns2.35 with mannasim installation on ubuntu13.04 image2" >
<img class="center" src="/images/mannasim/ns3.png" title="ns2.35 with mannasim installation on ubuntu13.04 image3" >
<img class="center" src="/images/mannasim/ns4.png" title="ns2.35 with mannasim installation on ubuntu13.04 image4" >
<img class="center" src="/images/mannasim/ns5.png" title="ns2.35 with mannasim installation on ubuntu13.04 image5" >
<img class="center" src="/images/mannasim/ns6.png" title="ns2.35 with mannasim installation on ubuntu13.04 image6" >
<img class="center" src="/images/mannasim/ns7.png" title="ns2.35 with mannasim installation on ubuntu13.04 image7" >
<img class="center" src="/images/mannasim/ns8.png" title="ns2.35 with mannasim installation on ubuntu13.04 image8" >
<img class="center" src="/images/mannasim/ns9.png" title="ns2.35 with mannasim installation on ubuntu13.04 image9" >
<img class="center" src="/images/mannasim/ns10.png" title="ns2.35 with mannasim installation on ubuntu13.04 image10" >
<img class="center" src="/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>
</div>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/24/how-to-unlock-idea-3g-netsetter/">How to Unlock Idea 3G Netsetter</a></h1>
<p class="meta">
<time datetime="2013-02-24T11:59:00+05:30" pubdate data-updated="true">Feb 24<span>th</span>, 2013</time>
| <a href="/blog/2013/02/24/how-to-unlock-idea-3g-netsetter/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><h2>STEP BY STEP GUIDE TO UNLOCK IDEA 3G NETSETTER</h2>
<p><img class="center" src="/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="/images/idea_unlock/1.jpg" title="unlock idea 3g netsetter image1" ></p>
</div>
<footer>
<a rel="full-article" href="/blog/2013/02/24/how-to-unlock-idea-3g-netsetter/">Read on →</a>
</footer>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/24/joss-linux-1-dot-10-dot-3/">JOSS Linux 1.10.3</a></h1>
<p class="meta">
<time datetime="2013-02-24T11:29:00+05:30" pubdate data-updated="true">Feb 24<span>th</span>, 2013</time>
| <a href="/blog/2013/02/24/joss-linux-1-dot-10-dot-3/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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="/images/joss_linux_0.png" title="joss linux image1" ></p>
<p><img class="center" src="/images/joss_linux_1.png" title="joss linux image2" ></p>
</div>
<footer>
<a rel="full-article" href="/blog/2013/02/24/joss-linux-1-dot-10-dot-3/">Read on →</a>
</footer>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/16/paulson-dot-in-to-paultsr-dot-in/">paulson. In to paultsr.in</a></h1>
<p class="meta">
<time datetime="2013-02-16T22:45:00+05:30" pubdate data-updated="true">Feb 16<span>th</span>, 2013</time>
| <a href="/blog/2013/02/16/paulson-dot-in-to-paultsr-dot-in/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/14/how-to-crack-slash-hack-passwords/">How to Crack/Hack Passwords</a></h1>
<p class="meta">
<time datetime="2013-02-14T18:21:00+05:30" pubdate data-updated="true">Feb 14<span>th</span>, 2013</time>
| <a href="/blog/2013/02/14/how-to-crack-slash-hack-passwords/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<footer>
<a rel="full-article" href="/blog/2013/02/14/how-to-crack-slash-hack-passwords/">Read on →</a>
</footer>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/14/madeveloping-web-services-in-linux/">Developing Web Services in Linux</a></h1>
<p class="meta">
<time datetime="2013-02-14T17:40:00+05:30" pubdate data-updated="true">Feb 14<span>th</span>, 2013</time>
| <a href="/blog/2013/02/14/madeveloping-web-services-in-linux/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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="/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>
</div>
<footer>
<a rel="full-article" href="/blog/2013/02/14/madeveloping-web-services-in-linux/">Read on →</a>
</footer>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/14/malayalam-fonts-in-firefox/">Malayalam Fonts in Firefox</a></h1>
<p class="meta">
<time datetime="2013-02-14T17:33:00+05:30" pubdate data-updated="true">Feb 14<span>th</span>, 2013</time>
| <a href="/blog/2013/02/14/malayalam-fonts-in-firefox/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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="/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>
</div>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/14/rumy-favourite-quotes/">My Favourite Quotes</a></h1>
<p class="meta">
<time datetime="2013-02-14T16:56:00+05:30" pubdate data-updated="true">Feb 14<span>th</span>, 2013</time>
| <a href="/blog/2013/02/14/rumy-favourite-quotes/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<footer>
<a rel="full-article" href="/blog/2013/02/14/rumy-favourite-quotes/">Read on →</a>
</footer>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/14/run-windows-applications-in-linux/">Run Windows Applications in Linux</a></h1>
<p class="meta">
<time datetime="2013-02-14T16:33:00+05:30" pubdate data-updated="true">Feb 14<span>th</span>, 2013</time>
| <a href="/blog/2013/02/14/run-windows-applications-in-linux/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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>
</div>
<footer>
<a rel="full-article" href="/blog/2013/02/14/run-windows-applications-in-linux/">Read on →</a>
</footer>
</article>
<article>
<header>
<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
<h1 class="entry-title"><a href="/blog/2013/02/14/ns2-installation-on-ubuntu-9-dot-10-and-above/">NS2 Installation in Ubuntu 9.10 and Above</a></h1>
<p class="meta">
<time datetime="2013-02-14T16:26:00+05:30" pubdate data-updated="true">Feb 14<span>th</span>, 2013</time>
| <a href="/blog/2013/02/14/ns2-installation-on-ubuntu-9-dot-10-and-above/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><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="/images/ns2-linux2.png" title="ns2 installation on linux image2" ></p>
<p><img class="center" src="/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>
</div>
</article>
<div class="pagination">
<a class="prev" href="/blog/page/2/">← Older</a>
<a href="/blog/archives">Blog Archives</a>
</div>
</div>
<aside class="sidebar">
<section>
<h1>About Paul S</h1>
<img src="/about/shaiju_paul_me.jpg" title="Shaiju Paul" >
<br>Presently Working as Asst. Professor in Department of CSE at Jyothi Engg. College, Thrissur.
<br><a href="http://about.me/paulson">Know More..</a>
</section>
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="/blog/2013/05/19/how-to-install-ns2-dot-35-with-mannasim-in-ubuntu-13-dot-04/">How to install NS2.35 with Mannasim in Ubuntu 13.04</a>
</li>
<li class="post">
<a href="/blog/2013/02/24/how-to-unlock-idea-3g-netsetter/">How to Unlock Idea 3G Netsetter</a>
</li>
<li class="post">
<a href="/blog/2013/02/24/joss-linux-1-dot-10-dot-3/">JOSS Linux 1.10.3</a>
</li>
<li class="post">
<a href="/blog/2013/02/16/paulson-dot-in-to-paultsr-dot-in/">paulson.in to paultsr.in</a>
</li>
<li class="post">
<a href="/blog/2013/02/14/how-to-crack-slash-hack-passwords/">How to Crack/Hack Passwords</a>
</li>
</ul>
</section>
<section>
<h1>Latest Tweets</h1>
<a class="twitter-timeline" href="https://twitter.com/spaul" data-widget-id="364588590530981888">Tweets by @spaul</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</section>
<section>
<h1>GitHub Repos</h1>
<ul id="gh_repos">
<li class="loading">Status updating…</li>
</ul>
<a href="https://github.com/paultsr">@paultsr</a> on GitHub
<script type="text/javascript">
$.domReady(function(){
if (!window.jXHR){
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = '/javascripts/libs/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
github.showRepos({
user: 'paultsr',
count: 0,
skip_forks: true,
target: '#gh_repos'
});
});
</script>
<script src="/javascripts/github.js" type="text/javascript"> </script>
</section>
<section>
<h1>On Delicious</h1>
<div id="delicious"></div>
<script type="text/javascript" src="http://feeds.delicious.com/v2/json/paultsr?count=3&sort=date&callback=renderDeliciousLinks"></script>
<p><a href="http://delicious.com/paultsr">My Delicious Bookmarks »</a></p>
</section>
<section>
<h1>My Pinboard</h1>
<ul id="pinboard_linkroll">Fetching linkroll…</ul>
<p><a href="http://pinboard.in/u:paultsr">My Pinboard Bookmarks »</a></p>
</section>
<script type="text/javascript">
var linkroll = 'pinboard_linkroll'; //id target for pinboard list
var pinboard_user = "paultsr"; //id target for pinboard list
var pinboard_count = 3; //id target for pinboard list
(function(){
var pinboardInit = document.createElement('script');
pinboardInit.type = 'text/javascript';
pinboardInit.async = true;
pinboardInit.src = '/javascripts/pinboard.js';
document.getElementsByTagName('head')[0].appendChild(pinboardInit);
})();
</script>
<section class="googleplus">
<h1>
<a href="https://plus.google.com/108213546397373031952?rel=author">
<img src="http://www.google.com/images/icons/ui/gprofile_button-32.png" width="32" height="32">
Google+
</a>
</h1>
</section>
</aside>
</div>
</div>
<footer role="contentinfo"><p>
Copyright © 2013 - Your Name -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript">
var disqus_shortname = 'shaijupaul';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#appId=212934732101925&xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script type="text/javascript">
(function() {
var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
script.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
})();
</script>
<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
</body>
</html>