-
Notifications
You must be signed in to change notification settings - Fork 48
/
AskUbuntuCorpus.json
2786 lines (2786 loc) · 238 KB
/
AskUbuntuCorpus.json
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
{
"name": "AskUbuntuCorpus",
"desc": "Visit https://github.com/sebischair/NLU-Evaluation-Corpora for more information",
"lang": "en",
"sentences": [
{
"author": "Olivier Lalonde",
"url": "http://askubuntu.com/questions/14378/what-software-can-i-use-to-view-epub-documents",
"text": "What software can I use to view epub documents?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>You can use calibre software for viewing .epub documents.</p>\n\n<p>To install calibre from terminal:</p>\n\n<pre><code>sudo apt-get install calibre\n</code></pre>\n\n<p>Or click the icon below.</p>\n\n<h1><a href=\"http://packages.ubuntu.com/calibre\" rel=\"nofollow noreferrer\">calibre</a> <a href=\"http://apt.ubuntu.com/p/calibre\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install calibre\"></a></h1>\n\n<hr>\n\n<p>If you don't want to launch the full <code>calibre</code> client just to view your ebook files you can add a <code>.desktop</code> launcher to <code>calibre</code>'s inbuilt ebook viewer:</p>\n\n<ol>\n<li><p>Create a new <code>.desktop</code> file in <code>~/.local/share/applications</code>:</p>\n\n<pre><code>gedit ~/.local/share/applications/calibre-ebook-viewer.desktop\n</code></pre></li>\n<li><p>Copy and paste the following passage into the file:</p>\n\n<pre><code>#!/usr/bin/env xdg-open\n\n[Desktop Entry]\nVersion=1.0\nType=Application\nTerminal=false\nIcon=calibre\nExec=ebook-viewer\nName=Calibre Ebook Viewer\nComment=Display .epub files and other ebook formats\nMimeType=application/x-mobipocket-ebook;application/epub+zip;\nStartupWMClass=calibre-ebook-viewer\n</code></pre></li>\n<li><p>Save the file. You should now be able to launch Calibre's inbuilt ebook viewer both from the dash and through the right click \"Open with\" menu.</p></li>\n</ol>\n",
"author": "karthick87"
},
"training": false
},
{
"author": "NES",
"url": "http://askubuntu.com/questions/18495/which-pdf-viewer-would-you-recommend",
"text": "Which PDF Viewer would you recommend?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>Here are some well known PDF readers:</p>\n\n<ul>\n<li><a href=\"https://www.foxitsoftware.com/products/pdf-reader/\" rel=\"noreferrer\"><strong>Foxit Reader</strong></a> - View, create, convert, annotate, print, collaborate, share, fill forms and sign.</li>\n<li><a href=\"http://packages.ubuntu.com/xpdf\" rel=\"noreferrer\"><strong>xpdf</strong></a> - <a href=\"http://apt.ubuntu.com/p/xpdf\" rel=\"noreferrer\">Install xpdf</a> \"Xpdf is a small and efficient program which uses standard X fonts\". Lightweight, but with outdated interface.</li>\n<li><a href=\"http://packages.ubuntu.com/evince\" rel=\"noreferrer\"><strong>evince</strong></a> - <a href=\"http://apt.ubuntu.com/p/evince\" rel=\"noreferrer\">Install evince</a> Evince is a document viewer for multiple document formats. Used by default on Gnome.</li>\n<li><a href=\"http://packages.ubuntu.com/kpdf\" rel=\"noreferrer\"><strong>kpdf</strong></a> - <a href=\"http://apt.ubuntu.com/p/kpdf\" rel=\"noreferrer\">Install kpdf</a> KPDF is a pdf viewer based on xpdf for KDE 3.</li>\n<li><a href=\"http://packages.ubuntu.com/gv\" rel=\"noreferrer\"><strong>gv</strong></a> - <a href=\"http://apt.ubuntu.com/p/gv\" rel=\"noreferrer\">Install gv</a> - an old lightweight pdf viewer with an old interface. Size of the package is only 580k. gv is an X front-end for the Ghostscript PostScript(TM) interpreter.</li>\n<li><a href=\"http://packages.ubuntu.com/okular\" rel=\"noreferrer\"><strong>okular</strong></a> - <a href=\"http://apt.ubuntu.com/p/okular\" rel=\"noreferrer\">Install okular</a> - KDE pdf viewer, requires many KDE prerequisites. Can easily copy text and images.</li>\n<li>acroread - Adobe Acrobat Reader, no longer supported for Linux by Adobe, seems to be no longer supported by Ubuntu.</li>\n</ul>\n\n<p>Note that most Linux PDF viewers <a href=\"https://www.linux.com/news/software/applications/792447-3-alternatives-to-the-adobe-pdf-reader-on-linux/\" rel=\"noreferrer\">don't provide</a> the advanced capabilities of PDF.</p>\n",
"author": "karthick87"
},
"training": false
},
{
"author": "RolandiXor",
"url": "http://askubuntu.com/questions/48299/what-ides-are-available-for-ubuntu",
"text": "What IDEs are available for Ubuntu?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<h1><a href=\"http://www.geany.org/\" rel=\"nofollow noreferrer\">Geany</a> <a href=\"https://apps.ubuntu.com/cat/applications/geany\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install geany\"></a></h1>\n\n<blockquote>\n <p>[Geany] is a text editor using the GTK2 toolkit with basic features of an integrated development environment. It was developed to provide a small and fast IDE, which has only a few dependencies from other packages. It supports many filetypes and has some nice features. My favorite so far. </p>\n</blockquote>\n\n<p><a href=\"http://www.geany.org/Main/AllFiletypes\" rel=\"nofollow noreferrer\">Supported File Types</a></p>\n\n<p><img src=\"https://i.stack.imgur.com/gT8HU.png\" alt=\"enter image description here\"></p>\n",
"author": "wojox"
},
"training": false
},
{
"author": "Mark Davidson",
"url": "http://askubuntu.com/questions/622/whats-the-best-mind-mapping-software",
"text": "What's the best Mind Mapping Software?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>I like <a href=\"https://apps.ubuntu.com/cat/applications/freemind\">FreeMind <img src=\"https://i.stack.imgur.com/WMz4X.png\" alt=\"Install freemind\"></a> very much, which is a Java mindmapping tool. Colleagues of me like <a href=\"http://www.xmind.net/\">XMind</a> most.</p>\n",
"author": "ddeimeke"
},
"training": false
},
{
"author": "Benjamin",
"url": "http://askubuntu.com/questions/22871/software-to-read-a-qr-code",
"text": "Software to read a QR code?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><strong>FOR QR CODE</strong></p>\n\n<p>Install <a href=\"https://launchpad.net/ubuntu/+source/libdecodeqr-examples\" rel=\"nofollow noreferrer\">libdecodeqr-examples</a> from the repositories,</p>\n\n<p>Use the program, <code>libdecodeqr-simpletest</code> provided by the package to read your QR encoded image</p>\n\n<p>EXAMPLE:</p>\n\n<p>running this command to read one of the test samples in the examples img folder</p>\n\n<pre><code>libdecodeqr-simpletest /usr/share/doc/libdecodeqr-examples/img/debian.or.jp.qr.jpg\n</code></pre>\n\n<p>Gives the decoded output in the console.</p>\n\n<pre><code>libdecodeqr version 0.9.3 ($Rev: 42 $)\nSTATUS=2080\n\n\nhttp://www.debian.or.jp \n\nMEBKM:TITLE:DebianJP;URL:http\\://www.debian.or.jp;;\n</code></pre>\n\n<p>as can be seen a url was encoded in the file</p>\n\n<p>There is also a sample application that works with your webcam called libdecodeqr-webcam\nyou need a webcam to use this, I have not tested it.</p>\n\n<p>IF you would like to generate QR code you can install qrencode from the repositories.</p>\n\n<pre><code>cat input.txt | qrencode -s 10 -o test.png\n</code></pre>\n\n<p>The above will encode the information in the input.txt file in an image file called test.png.</p>\n\n<p>or you can input text from the console with;</p>\n\n<pre><code>qrencode -s 10 -o ubuntu.png http://www.ubuntu.com\n</code></pre>\n\n<p>The above will generate a QR encoded image called ubuntu.png with the url <a href=\"http://www.ubuntu.com\" rel=\"nofollow noreferrer\">http://www.ubuntu.com</a> encoded in it. </p>\n\n<p><strong>FOR DATAMATRIX</strong></p>\n\n<p>Install <a href=\"https://launchpad.net/ubuntu/+source/libdmtx-utils\" rel=\"nofollow noreferrer\">libdmtx-utils</a> from the repository and try using the tools it provides.</p>\n\n<p>Libdmtx is a library for reading and writing Data Matrix 2D barcodes,\ntwo-dimensional symbols that hold a dense pattern of data with built-in error\ncorrection.</p>\n\n<pre><code>dmtxwrite - create Data Matrix barcodes, simple example;\n\ndmtxwrite -o image.png input.txt\n</code></pre>\n\n<p>This will encode text contained in input.txt in current directory to an image, image.png in current directory.</p>\n\n<p>dmtxread - scan Data Matrix barcodes, simple example;</p>\n\n<pre><code>dmtxread image.png\n</code></pre>\n\n<p>Reads the encoded image.png and writes the decoded messages to\nstandard output.</p>\n\n<ul>\n<li>See some tips here: <a href=\"http://libdmtx.wikidot.com/helpful-tips\" rel=\"nofollow noreferrer\">http://libdmtx.wikidot.com/helpful-tips</a></li>\n<li>Home page: <a href=\"http://www.libdmtx.org/\" rel=\"nofollow noreferrer\">http://www.libdmtx.org/</a></li>\n<li>Resources: <a href=\"http://www.libdmtx.org/resources.php\" rel=\"nofollow noreferrer\">http://www.libdmtx.org/resources.php</a></li>\n</ul>\n",
"author": "Sabacon"
},
"training": false
},
{
"author": "Vijay",
"url": "http://askubuntu.com/questions/37548/pdf-to-word-conversion-software",
"text": "PDF to word conversion software?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><code>openoffice</code> (or alternatively the <code>libreoffice</code> fork) both have pdf import plugins and .doc export functionality... though both aspects suffer from conversion issues AFAIK. \nBy this I mean that the conversion fidelity isn't always 100%. </p>\n\n<p><strong>Abiword</strong> also works in a similar way, if OpenOffice doesn't work on your system.</p>\n",
"author": "jmetz"
},
"training": false
},
{
"author": "Alaukik",
"url": "http://askubuntu.com/questions/48700/is-there-software-that-can-view-dwg-files",
"text": "Is there software that can view .dwg files?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://www.3ds.com/products/draftsight/free-cad-software/\" rel=\"nofollow noreferrer\">DraftSight</a>. It doesn't cost money and they'll give you a nice .deb installer... but it's not open source or free software.</p>\n\n<p>On the upside, it will also let you create and edit <code>.dwg</code> files.</p>\n\n<p><img src=\"https://i.stack.imgur.com/8v1ra.jpg\" alt=\"enter image description here\"></p>\n",
"author": "Oli"
},
"training": false
},
{
"author": "Noah Goodrich",
"url": "http://askubuntu.com/questions/4246/what-are-some-good-php-editors",
"text": "What are some good PHP editors?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>Netbeans is a great IDE with lots of PHP support. I can't even start to name all the features I use but there are a fair amount. Check it out here: </p>\n\n<ul>\n<li><a href=\"http://netbeans.org/features/scripting/index.html\" rel=\"nofollow noreferrer\">http://netbeans.org/features/scripting/index.html</a> </li>\n<li><a href=\"http://netbeans.org/features/php/index.html\" rel=\"nofollow noreferrer\">http://netbeans.org/features/php/index.html</a> </li>\n</ul>\n\n<p>I've used both Eclipse for Java and Netbeans for PHP and I feel Netbeans is a bit stronger for PHP as well as XHTML and CSS. That's my personal preference anyways. </p>\n\n<p>Looking at <a href=\"http://www.jetbrains.com/phpstorm/\" rel=\"nofollow noreferrer\">PHPStorm</a> I assume you're looking for something similar to it, so a full IDE.\nNetbeans and Eclipse are the closest to that as far as I'm familiar with. </p>\n\n<p>Netbeans has most, if not all, the features that PhpStorm has on that page plus a whole lot more.</p>\n\n<p><img src=\"https://i.stack.imgur.com/rHbe3.png\" alt=\"Netbeans IDE\"></p>\n",
"author": "WalterJ89"
},
"training": false
},
{
"author": "Ivan",
"url": "http://askubuntu.com/questions/9248/is-there-a-software-utility-to-adjust-screen-gamma-brightness-contrast",
"text": "Is there a software utility to adjust screen gamma/brightness/contrast?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://jonls.dk/redshift/\" rel=\"nofollow\">Redshift</a><br>\nI have been using this. Its very nice.</p>\n\n<pre><code>sudo apt-get install redshift\n</code></pre>\n\n<p>To use it just type in the terminal <code>redshift</code></p>\n\n<p>gtk-redshift is just the gui, not required.</p>\n\n<hr>\n\n<p><a href=\"http://www.stereopsis.com/flux/\" rel=\"nofollow\">f.lux</a> is also an option.</p>\n",
"author": "N 1.1"
},
"training": false
},
{
"author": "aviran",
"url": "http://askubuntu.com/questions/344642/please-recommend-a-hex-editor-for-shell",
"text": "Please recommend a hex editor for shell",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><code>emacs</code> has a hexl-mode for hex editing.</p>\n",
"author": "psusi"
},
"training": false
},
{
"author": "Paco Porras",
"url": "http://askubuntu.com/questions/279705/is-there-lan-topology-mapping-software-available-in-ubuntu",
"text": "Is there LAN topology mapping software available in Ubuntu?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>To my knowledge, there are few comparable software packages available, free and out-of-the-box, for Ubuntu that don't require quite a bit of manual configuration.</p>\n\n<p><a href=\"http://www.opennms.org/get-opennms/\" rel=\"nofollow noreferrer\">OpenNMS</a> might come close for your needs.</p>\n\n<p>The Network Topology Mapper(and the SolarWinds Tool Suite, in general) is a <em>very</em> good, mid-level, network management tool. Unfortunately, it is Windows only and comes with a significant price tag. Without a great deal of customization, you will be hard-pressed to find a comparable solution. If you have the budget and run a heterogeneous shop, I can strongly recommend using this piece of software. Also, their IPAM and NetFlow tools are quite solid, as well.</p>\n\n<p>That said, I know of three pieces of software that run on Linux and might give you a start dynamically mapping your network: <a href=\"http://cheops-ng.sourceforge.net/\" rel=\"nofollow noreferrer\">Cheops</a>, <a href=\"https://www.manageengine.com/network-performance-management.html\" rel=\"nofollow noreferrer\">OPManager</a>, and <a href=\"http://www.opennms.org/get-opennms/\" rel=\"nofollow noreferrer\">OpenNMS</a>.</p>\n\n<p>I would also recommend looking at the <a href=\"http://www.slac.stanford.edu/xorg/nmtf/nmtf-tools.html\" rel=\"nofollow noreferrer\">SLAC page</a> to see if there are any more recent developments in the network management space.</p>\n\n<p>The following applications are listed, in ascending order, in terms of cost, complexity, and feature-sets. </p>\n\n<p><strong>Cheops</strong></p>\n\n<p>Cheops is a free network mapping solution that will go out and discover and graphically display the servers and network nodes for you. It is old, and possibly no longer under development. But, it is a simple tool to use for network discovery.</p>\n\n<p><a href=\"http://cheops-ng.sourceforge.net/images/cheops.jpg\" rel=\"nofollow noreferrer\">http://cheops-ng.sourceforge.net/images/cheops.jpg</a></p>\n\n<p>You can download Cheops, <a href=\"http://cheops-ng.sourceforge.net/download.php\" rel=\"nofollow noreferrer\">here</a></p>\n\n<p><strong>OpenNMS</strong></p>\n\n<p>OpenNMS is able to do network discovery, event management, and performance management. It is available as a .deb package as well.</p>\n\n<p><a href=\"http://www.opennms.org/w/images/a/a9/Example.jpg\" rel=\"nofollow noreferrer\">http://www.opennms.org/w/images/a/a9/Example.jpg</a></p>\n\n<p>Core features:</p>\n\n<ul>\n<li>Automatic Layer-2 and Layer-3 link discovery</li>\n<li>Automatic Network / Node Discovery and Provisioning</li>\n<li>Automatic Service Discovery and Provisioning</li>\n<li>IPv6 support throughout (new)</li>\n<li>Manual Node and Service Provisioning Requisitions</li>\n<li>Path Outage support</li>\n</ul>\n\n<p><a href=\"http://www.opennms.org/wiki/Features_List\" rel=\"nofollow noreferrer\">Feature list</a></p>\n\n<p>OpenNMS <a href=\"http://www.opennms.org/get-opennms/\" rel=\"nofollow noreferrer\">download</a></p>\n\n<p><a href=\"http://www.opennms.org/wiki/Installation:Debian\" rel=\"nofollow noreferrer\">Installation instructions</a> for deb/apt-get.</p>\n\n<p><strong>OPManager</strong></p>\n\n<p>OpManager, on the other hand, is a commercial tool. It has a similar feature-set of the SolarWinds solution. In my experience, it is very robust and customizable. That said, you will have to pay for it. It does run on Debian-based systems, though it is not custom-tailored for Ubuntu. YMMV.</p>\n\n<p><img src=\"https://www.manageengine.com/network-monitoring/images/screenshot/network-mapping.gif\" alt=\"\"></p>\n\n<p>In terms of network management functionality, it supports:</p>\n\n<ul>\n<li>Availability and Uptime Monitoring</li>\n<li>Traffic and Utilization Monitoring</li>\n<li>Cisco Monitoring</li>\n<li>Network Device Health Monitoring\n(Router, Switch, Firewall, wireless access points)</li>\n<li>Network Mapping</li>\n<li>Custom Network Maps / Network Traffic Maps</li>\n<li>WAN RTT Monitoring</li>\n<li>Network Traffic Analysis (NetFlow, sFlow)</li>\n<li>VoIP Monitoring</li>\n<li>Network Configuration Management</li>\n<li>IP Address Management</li>\n<li>Switch Port Mapper</li>\n</ul>\n\n<p>For a full list of features, see:\n<a href=\"https://www.manageengine.com/network-monitoring/features.html\" rel=\"nofollow noreferrer\">here</a></p>\n\n<p>You can download a free trial of OPManager <a href=\"https://www.manageengine.com/network-monitoring/download.html\" rel=\"nofollow noreferrer\">here</a></p>\n\n<p>I would be very interested in hearing from others in regards to using a <strong>free</strong>, unified network management solution in Ubuntu that does not require in-house development and a great deal of care and feeding. </p>\n\n<p>In the mean time, when it's unreasonable to use OPManager, or OpenNMS, I will have to make due with my own custom Nagios/Cacti/SmokePing/Rancid/IPPlan solution for smaller networks.</p>\n",
"author": "Kevin Bowen"
},
"training": false
},
{
"author": "kmassada",
"url": "http://askubuntu.com/questions/237777/is-there-a-tool-like-wifi-analyzer-for-ubuntu",
"text": "Is there a tool like wifi analyzer for ubuntu?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>There is one more tool In Ubuntu software Centre named as <code>Kismet</code>.</p>\n\n<blockquote>\n <p>Kismet is a 802.11b wireless network sniffer. It is capable of\n sniffing using almost any supported wireless card using the Airo,\n HostAP, Wlan-NG, and Orinoco (with a kernel patch) drivers.</p>\n \n <p>Can make use of sox and festival to play audio alarms for network\n events and speak out network summary on discovery. Optionally works\n with gpsd to map scanning.</p>\n</blockquote>\n\n<p>you can install it from terminal( <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>T</kbd>) also with </p>\n\n<pre><code>sudo apt-get install kismet\n</code></pre>\n",
"author": "Ten-Coin"
},
"training": false
},
{
"author": "nixnotwin",
"url": "http://askubuntu.com/questions/31450/tool-for-recovering-deleted-data-from-a-flash-drive",
"text": "Tool for recovering deleted data from a flash drive",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<ol>\n<li><a href=\"http://www.cgsecurity.org/wiki/TestDisk_Download\" rel=\"noreferrer\"><strong>TestDisk</strong></a></li>\n</ol>\n\n<blockquote>\n <p>find lost partitions and data for\n External and Internal Drive for all of\n these file systems, ext2, ext3, ext4\n and encrypted partition. for windows\n FAT12/FAT16/FAT32 and NTFS boot\n sector.</p>\n</blockquote>\n\n<p><strong>For Recovering data from external Hard drive</strong><br>\nType <code>testdisk</code> on your terminal and follow this well written step <a href=\"http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step\" rel=\"noreferrer\">TestDisk Step-By-Step</a></p>\n\n<p><strong>For Recovering files from internal and External hard drives</strong> there is <a href=\"http://www.cgsecurity.org/wiki/PhotoRec\" rel=\"noreferrer\">PhotoRec</a> which comes with TestDisk.</p>\n\n<p>type <code>photorec</code> on your terminal</p>\n\n<p><img src=\"https://i.stack.imgur.com/3Riip.gif\" alt=\"enter image description here\"></p>\n\n<p>Select your drive and hit enter to proceed and follow the instruction.</p>\n\n<ol start=\"2\">\n<li><a href=\"http://extundelete.sourceforge.net/\" rel=\"noreferrer\">Extundelete</a>\n\n<blockquote>\n <p>extundelete is a utility that can\n recover deleted files from an ext3 or\n ext4 partition</p>\n</blockquote></li>\n</ol>\n",
"author": "Achu"
},
"training": false
},
{
"text": "What's a simple \"colour picker\" app for GNOME?",
"intent": "Software Recommendation",
"entities": [],
"training": false
},
{
"author": "Ashwin Nanjappa",
"url": "http://askubuntu.com/questions/279409/any-app-that-tells-me-to-take-regular-breaks-from-working",
"text": "Any app that tells me to take regular breaks from working?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://www.workrave.org/\" rel=\"nofollow noreferrer\">WorkRave</a> is probably what you want</p>\n\n<blockquote>\n <p>Workrave is a program that assists in the recovery and prevention of\n Repetitive Strain Injury (RSI). The program frequently alerts you to\n take micro-pauses, rest breaks and restricts you to your daily limit.</p>\n</blockquote>\n\n<p><img src=\"https://i.stack.imgur.com/vPCvO.png\" alt=\"break\"></p>\n\n<p><a href=\"http://www.workrave.org/screenshots/\" rel=\"nofollow noreferrer\">More screenshots</a></p>\n",
"author": "Flint"
},
"training": false
},
{
"author": "karthick87",
"url": "http://askubuntu.com/questions/16837/what-are-some-good-ascii-art-generators",
"text": "What are some good ASCII art generators?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"https://apps.ubuntu.com/cat/applications/toilet\" rel=\"nofollow noreferrer\">TOIlet</a> <a href=\"https://apps.ubuntu.com/cat/applications/toilet\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install TOIlet\"></a></p>\n\n<p>I've seen <a href=\"http://caca.zoy.org/wiki/toilet\" rel=\"nofollow noreferrer\"><strong>TOIlet</strong></a>, I think that is what you're looking for.</p>\n",
"author": "antivirtel"
},
"training": false
},
{
"author": "Olivier Lalonde",
"url": "http://askubuntu.com/questions/19479/what-are-some-good-gui-binary-viewers-editors",
"text": "What are some good GUI binary viewers/editors?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<ul>\n<li><p><a href=\"http://apt.ubuntu.com/p/ghex\" rel=\"nofollow noreferrer\"><strong>GHEX</strong> <img src=\"https://hostmar.co/software-large\" alt=\"Install ghex\"></a> </p>\n\n<p><img src=\"https://i.stack.imgur.com/tCT7x.png\" alt=\"alt text\"></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/lfhex\" rel=\"nofollow noreferrer\"><strong>LFHEX</strong> <img src=\"https://hostmar.co/software-large\" alt=\"Install lfhex\"></a> </p>\n\n<p><img src=\"https://i.stack.imgur.com/fRE4F.png\" alt=\"alt text\"></p></li>\n<li><p><strong><a href=\"http://wxhexeditor.sourceforge.net/\" rel=\"nofollow noreferrer\">WXHEXEDITOR</a></strong> </p>\n\n<p><img src=\"https://i.stack.imgur.com/9ybeQ.png\" alt=\"alt text\"></p></li>\n</ul>\n",
"author": "karthick87"
},
"training": false
},
{
"author": "Sahil Grover",
"url": "http://askubuntu.com/questions/401114/which-is-the-best-pdf-metadata-viewer-for-ubuntu",
"text": "Which is the best PDF metadata viewer for Ubuntu?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<ol>\n<li><p>View pdf metadata for a file called Example.pdf: </p>\n\n<pre><code>pdfinfo Example.pdf \n</code></pre></li>\n<li><p>Edit existing metadata in the terminal using nano editor: </p>\n\n<pre><code>pdftk Example.pdf dump_data output Metadata-output.txt\nnano Metadata-output.txt \n</code></pre></li>\n<li><p>Update metadata: </p>\n\n<pre><code>pdftk Example.pdf update_info Metadata-output.txt output Example-new.pdf\n</code></pre></li>\n</ol>\n\n<p><sub><strong>Nano editor keyboard shortcuts</strong></sub><br>\n<sub>Use the keyboard combination <kbd>Ctrl</kbd> + <kbd>O</kbd> and after that press <kbd>Enter</kbd> to save the file to its current location.</sub><br>\n<sub>Use the keyboard combination <kbd>Ctrl</kbd> + <kbd>X</kbd> to exit nano.</sub> </p>\n",
"author": "karel"
},
"training": false
},
{
"author": "o_o_o--",
"url": "http://askubuntu.com/questions/339125/is-there-a-linux-file-manager-with-a-proper-drop-down-tree-view-like-finder-in",
"text": "Is there a Linux file manager with a proper drop-down tree view? (like finder in OS X)",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://dolphin.kde.org/features.html\" rel=\"nofollow noreferrer\">Dolphin</a> appears to have this capability.</p>\n\n<p><img src=\"https://i.imgur.com/hmTslUv.png\" alt=\"dophin\"></p>\n",
"author": "evilsoup"
},
"training": false
},
{
"author": "NES",
"url": "http://askubuntu.com/questions/20204/which-application-do-you-recommend-for-watching-tv-dvb",
"text": "Which application do you recommend for watching TV (DVB)?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<h2><a href=\"https://apps.ubuntu.com/cat/applications/vlc\" rel=\"nofollow noreferrer\">VLC <img src=\"https://hostmar.co/software-small\" alt=\"Install vlc\"></a></h2>\n\n<p>I'm using VLC. It works pretty good for what I do. Pause/resume feature works out of the box.</p>\n\n<p>You will have to scan for channels first. Use <a href=\"http://edafe.org/vdr/w_scan/\" rel=\"nofollow noreferrer\"><code>w_scan</code></a> (<a href=\"http://apt.ubuntu.com/p/w-scan\" rel=\"nofollow noreferrer\">install it</a> if necessary) and launch the following command : </p>\n\n<pre><code>w_scan -c FR -X > channels.conf\n</code></pre>\n\n<p>Replace FR with your country (<code>w_scan -c ?</code> to get the list). Now, each time you want to watch the tv, just launch this command :</p>\n\n<pre><code>vlc channels.conf\n</code></pre>\n\n<p>You can start recording with <kbd>Shift</kbd>+<kbd>R</kbd>, again to stop it. Pause a live program with <kbd>Space</kbd>.</p>\n\n<p>There is a good wiki about DVB in french : <a href=\"http://doc.ubuntu-fr.org/tnt\" rel=\"nofollow noreferrer\">http://doc.ubuntu-fr.org/tnt</a> (has a list of compatible hardware). </p>\n\n<h2>Others</h2>\n\n<p>Other softwares are <a href=\"https://apps.ubuntu.com/cat/applications/kaffeine\" rel=\"nofollow noreferrer\">kaffeine <img src=\"https://hostmar.co/software-small\" alt=\"Install kaffeine\"></a>, <a href=\"https://apps.ubuntu.com/cat/applications/totem\" rel=\"nofollow noreferrer\">totem <img src=\"https://hostmar.co/software-small\" alt=\"Install totem\"></a>, <a href=\"https://apps.ubuntu.com/cat/applications/gxine\" rel=\"nofollow noreferrer\">gxine <img src=\"https://hostmar.co/software-small\" alt=\"Install gxine\"></a> and <a href=\"https://apps.ubuntu.com/cat/applications/mplayer\" rel=\"nofollow noreferrer\">mplayer <img src=\"https://hostmar.co/software-small\" alt=\"Install mplayer\"></a> but I don't use them.</p>\n\n<p>I used to use Kaffeine but dropped it for vlc because I had some issues. Just retested it and it seems to work nicely. It is a good program for recording (instant or scheduled record as you want). Maybe should I reconsider my actual choice for watching DVB...</p>\n",
"author": "Maxime R."
},
"training": false
},
{
"author": "all4naija",
"url": "http://askubuntu.com/questions/121878/what-is-the-best-hdr-software",
"text": "What Is The Best HDR Software?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>Look at <a href=\"http://sourceforge.net/projects/qtpfsgui/\">Luminance HDR</a>.<br>\nThese <a href=\"http://wiki.panotools.org/Luminance_HDR\">notes</a> might be useful.<br>\nIt was called <a href=\"https://launchpad.net/ubuntu/precise/+source/qtpfsgui/\">Qtpfsgui</a> earlier.</p>\n\n<p>And <a href=\"http://kornelix.squarespace.com/fotoxx/\">fotoxx</a> (from the comments here) is also an Ubuntu package -- Looks promising, I'll try it too.</p>\n",
"author": "nik"
},
"training": false
},
{
"author": "Eric Johnson",
"url": "http://askubuntu.com/questions/32691/what-do-you-use-to-edit-microsoft-word-documents-docx",
"text": "What do you use to edit Microsoft Word documents (docx)?",
"entities": [
{
"text": "Word",
"entity": "SoftwareName",
"stop": 7,
"start": 7
}
],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://www.libreoffice.org/\">LibreOffice</a> is the replacement for OpenOffice and does the same job.</p>\n",
"author": "Ashfame"
},
"training": false
},
{
"author": "Strae",
"url": "http://askubuntu.com/questions/11588/whats-the-best-wireframing-tool",
"text": "What's the best Wireframing tool?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://wireframesketcher.com\" rel=\"nofollow noreferrer\">WireframeSketcher</a> is a rapid wireframing tool for Eclipse-based IDEs like Aptana, Zend Studio and the like. It also comes as a standalone version for all major platforms including Ubuntu. Give it a try.</p>\n\n<p><img src=\"https://i.stack.imgur.com/X1f0m.png\" alt=\"Sample WireframeSketcher mockup\"></p>\n",
"author": "Peter Severin"
},
"training": false
},
{
"author": "ændrük",
"url": "http://askubuntu.com/questions/16386/is-there-any-software-that-will-do-face-recognition-in-photos",
"text": "Is there any software that will do face recognition in photos?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://www.digikam.org/\" rel=\"nofollow noreferrer\"><strong>Digikam</strong></a>\n<br>\n(...will in the next release, very soon. there may be a beta/development version that does now. please read:)</p>\n\n<p><em>\"Aditya Bhatt added face detection and recognition to digiKam. He says: 'Because of my project, digiKam can now automatically detect faces in photographs. It allows you to tag these faces with People Tags, and can also identify unknown faces and automatically tag them. My work also introduced a wrapper library called libkface that can be used by other KDE apps. Right now everything works okay, but it needs a bit of usability and GUI work, as well as some tweaks to libkface. <strong>Hopefully my work will make it in time for the Christmas release, which will be 2.0!</strong>'\"</em></p>\n\n<p>this is taken from the latest google summer of code update on kde.org, here:\n<a href=\"http://dot.kde.org/2010/12/14/kdegoogle-summer-code-2010-part-1-2\" rel=\"nofollow noreferrer\"><strong>http://dot.kde.org/2010/12/14/kdegoogle-summer-code-2010-part-1-2</strong></a>\n<img src=\"https://i.stack.imgur.com/r43TY.png\" alt=\"alt text\"></p>\n",
"author": "Ike"
},
"training": false
},
{
"author": "teo96",
"url": "http://askubuntu.com/questions/5537/applications-to-replace-itunes-for-ipod-synchronization",
"text": "Applications to replace iTunes for iPod synchronization?",
"entities": [
{
"text": "iTunes",
"entity": "SoftwareName",
"stop": 3,
"start": 3
}
],
"intent": "Software Recommendation",
"answer": {
"text": "<p>After many tests, i found a solution to my problem : </p>\n\n<ul>\n<li>Rhythmbox <strong>or</strong> Banshee for music </li>\n<li><strong>gPodder</strong> for podcasts</li>\n</ul>\n\n<p>This configuration works fine with iPod Nano 5th generation</p>\n\n<hr>\n\n<p>Details :</p>\n\n<ul>\n<li>Banshee corrupts iPod library if you synchronize podcasts (3 times the same podcast, podcast in music and music in podcast, wrong covers ...) </li>\n<li>Rhythmbox synchronize every podcasts but convert video podcasts into audio podcasts (very long synchronization process with high CPU usage)</li>\n<li><a href=\"http://gpodder.org/\" rel=\"nofollow\">gPodder</a> version 2.9 works fine with audio and video podcasts (add gPodder ppa for the 2.9 version : deb <a href=\"http://ppa.launchpad.net/thp/gpodder/ubuntu\" rel=\"nofollow\">http://ppa.launchpad.net/thp/gpodder/ubuntu</a> maverick main )</li>\n</ul>\n",
"author": "teo96"
},
"training": false
},
{
"author": "German Rumm",
"url": "http://askubuntu.com/questions/21971/is-there-an-ssh-connection-manager",
"text": "Is there an SSH connection manager?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>I'm glad you ask that question. Please, take a look at PAC Manager, a Perl/Gtk app that pretends to be Ubuntu/General Linux SecureCRT equivalent, but with much more options!</p>\n\n<p>FEATURES (by now):</p>\n\n<ul>\n<li>Simple GUI to manage/launch connections to remote machines.</li>\n<li>Configurable [Pre|Post]-connection local commands execution.</li>\n<li>Configurable list of macros (commands) to send to connected client.</li>\n<li>Configurable list of macros (commands) to execute locally when connected.</li>\n<li>Configurable list of conditional executions on connected machine via 'Expect':\n . forget about SSH certificates\n . chain multiple ssh connections\n . automate tunnels creation\n . etc</li>\n<li>Ability to connect to machines through a Proxy server!</li>\n<li>CLUSTER connections.</li>\n<li>TABBED/WINDOWED terminals</li>\n<li>Wake On LAN capabilities</li>\n<li>Local and Global variables, eg.: write down a password once, use it ANY where, centralizing its modification for faster changes! use them for:\n . password vault\n . reusing connection strings\n . etc</li>\n<li>Seamless Gnome/Gtk integration.</li>\n<li>Tray icon for 'right button' quick launching of managed connections.</li>\n<li>Written in Perl/Gtk (wait, <em>is</em> that a feature? Well, it is for me! ;=)</li>\n<li>DEB, RPM & .TAR.GZ packages available!!</li>\n<li>It is FREE (as in freedom)!! and licensed under GNU GPLv3.</li>\n</ul>\n\n<p>The following packages are required prior to installation of PAC:</p>\n\n<pre><code>libgnome2-gconf-perl\nlibexpect-perl\nlibnet-proxy-perl\nlibcrypt-cbc-perl\nlibcrypt-blowfish-perl\nlibgtk2-gladexml-perl\nlibgtk2-ex-simple-list-perl\nlibnet-arp-perl\nlibossp-uuid-perl\nlibcrypt-rijndael-perl\nlibgtk2-uniqu\n</code></pre>\n\n<p><a href=\"http://sourceforge.net/projects/pacmanager/\" rel=\"nofollow noreferrer\">http://sourceforge.net/projects/pacmanager/</a></p>\n",
"author": "perseo22"
},
"training": false
},
{
"author": "halflings",
"url": "http://askubuntu.com/questions/124159/a-light-alternative-to-gnome-system-monitor",
"text": "A light alternative to gnome-system-monitor?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>You can try </p>\n\n<ul>\n<li><a href=\"http://goodies.xfce.org/projects/applications/xfce4-taskmanager\">xfce4-taskmanager</a> from Xfce or </li>\n<li><a href=\"http://lxde.org/lxtask_task_manager\">lxtask</a> from LXDE.</li>\n</ul>\n\n<p>Neither of them pull any specific dependencies.</p>\n",
"author": "Reinis"
},
"training": false
},
{
"author": "DisgruntledGoat",
"url": "http://askubuntu.com/questions/21768/software-to-create-a-video-slideshow",
"text": "Software to create a video slideshow?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>You can try <a href=\"http://packages.ubuntu.com/imagination\" rel=\"nofollow noreferrer\">imagination</a> from the repository.</p>\n\n<pre><code>sudo apt-get install imagination\n</code></pre>\n\n<p>Imagination is a lightweight and user-friendly DVD slide show maker with\na clean interface and few dependencies. It only requires the ffmpeg encoder\nto produce a movie to be burned with another application.</p>\n\n<p>It currently features over 50 transition effects. Exporting the slideshow in FLV format is supported as well.</p>\n",
"author": "Sabacon"
},
"training": false
},
{
"author": "Tom Brito",
"url": "http://askubuntu.com/questions/102675/is-there-a-project-management-software-for-ubuntu-like-microsoft-project",
"text": "Is there a project management software for Ubuntu like Microsoft Project?",
"entities": [
{
"text": "Project",
"entity": "SoftwareName",
"stop": 10,
"start": 10
}
],
"intent": "Software Recommendation",
"answer": {
"text": "<p>I can also suggest <a href=\"http://apt.ubuntu.com/p/planner\" rel=\"nofollow noreferrer\">planner</a> <a href=\"http://apt.ubuntu.com/p/planner\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install planner\"></a>. It's available in Ubuntu software-center.</p>\n\n<p><a href=\"http://www.taskjuggler.org/\" rel=\"nofollow noreferrer\">TaskJuggler</a> is really powerful but also a bit harder to use and is not available in Software Center.</p>\n",
"author": "roadmr"
},
"training": false
},
{
"author": "Amey Jah",
"url": "http://askubuntu.com/questions/41601/is-there-any-recovery-software-available-for-ext4",
"text": "Is there any recovery software available for ext4?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>Take a look at this:</p>\n\n<p><a href=\"http://askubuntu.com/questions/25311/best-tool-to-recover-removed-files/25364#25364\">Best tool to recover removed files</a></p>\n\n<p><a href=\"http://askubuntu.com/questions/32685/formatted-and-lost-6-years-worth-of-photo-memories-any-way-to-get-this-back/32711#32711\">Formatted and lost 6 years worth of photo memories.. any way to get this back?</a></p>\n\n<p><a href=\"http://askubuntu.com/questions/13030/how-to-recover-ubuntu-partition-after-computer-failure/25366#25366\">How to recover Ubuntu partition after computer failure?</a></p>\n\n<p>Where the answers of some other people under those questions may also be helpful for you.</p>\n\n<p>Good luck!</p>\n",
"author": "Geppettvs D'Constanzo"
},
"training": false
},
{
"author": "Vassilis",
"url": "http://askubuntu.com/questions/11317/what-blog-editor-software-are-available",
"text": "What blog editor software are available?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p><a href=\"http://www.scribefire.com/\">http://www.scribefire.com/</a> - Extension for FireFox and Chrome</p>\n",
"author": "StalkerNOVA"
},
"training": false
},
{
"author": "Ivan",
"url": "http://askubuntu.com/questions/11633/can-you-recommend-a-good-modern-gui-download-manager-wget-wrapper",
"text": "Can you recommend a good modern GUI download manager (wget wrapper?)",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<h1><a href=\"http://projects.gnome.org/gwget/\" rel=\"nofollow noreferrer\">Gwget</a> <a href=\"http://apt.ubuntu.com/p/gwget\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install gwget\"></a></h1>\n\n<blockquote>\n <p>Gwget is a free graphical frontend for of Wget. GWget supports all of the main features that Wget does, as well as parallel downloads. Its name is derived from GUI - Graphical user interface, and Wget.</p>\n</blockquote>\n\n<p>You can also install it by</p>\n\n<pre><code>sudo apt-get install gwget\n</code></pre>\n\n<p><br /></p>\n\n<h1><a href=\"http://multiget.sourceforge.net/\" rel=\"nofollow noreferrer\">Multiget</a> <a href=\"http://apt.ubuntu.com/p/multiget\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install multiget\"></a></h1>\n\n<blockquote>\n <p>MultiGet is an easy-to-use GUI file\n downloader. It's programmed in C++\n and has a GUI based on wxWidgets. It\n supports HTTP/FTP protocols which\n covers the requirements of most users.\n It supports multi-task with\n multi-thread on multi-server. It\n supports resuming downloads if the Web\n server supports it, and if you like,\n you can reconfig the thread number\n without stopping the current task.\n It's also support SOCKS 4,4a,5 proxy,\n ftp proxy, http proxy.\n In v0.8.0, a new feature was introduced, that is so called P2SP, or in other words, get file from multiple servers, and combine the data from different site into one file. This makes downloads complete much faster.</p>\n</blockquote>\n\n<p>You can also install it by</p>\n\n<pre><code>sudo apt-get install multiget\n</code></pre>\n\n<p><br /></p>\n\n<h1><a href=\"http://fatrat.dolezel.info/\" rel=\"nofollow noreferrer\">Fatrat</a> <a href=\"http://apt.ubuntu.com/p/fatrat\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install fatrat\"></a></h1>\n\n<blockquote>\n <p>Fatrat is an open source download manager for Linux written in C++ and built on top of the Trolltech Qt 4 library. It is rich in features and is continuously extended.</p>\n</blockquote>\n\n<p>You can also install it by</p>\n\n<pre><code>sudo apt-get install fatrat\n</code></pre>\n\n<p><br /></p>\n\n<h1><a href=\"http://urlget.sourceforge.net/\" rel=\"nofollow noreferrer\">Uget</a> <a href=\"http://apt.ubuntu.com/p/uget\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install uget\"></a></h1>\n\n<blockquote>\n <p>Uget (formerly urlgfe) is a Free and Open Source download manager written in GTK+ , it has many of features like easy-to-use , cross-platform (Windows & GNU/Linux) , support pause and resume , classify download , every category has an independent configuration , and more ...</p>\n</blockquote>\n\n<p>You can also install it by</p>\n\n<pre><code>sudo apt-get install uget\n</code></pre>\n",
"author": "LFC_fan"
},
"training": false
},
{
"author": "c0rp",
"url": "http://askubuntu.com/questions/753608/is-there-any-program-for-fuzzy-string-matching-which-provides-a-match-score",
"text": "Is there any program for fuzzy string matching which provides a match score?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>I found <a href=\"https://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#Bash\">this page</a> which provides implementations of the Levenshtein distance algorithm in different languages. So, for example in bash, you could do:</p>\n\n<pre class=\"lang-bash prettyprint-override\"><code>#!/bin/bash\nfunction levenshtein {\n if [ \"$#\" -ne \"2\" ]; then\n echo \"Usage: $0 word1 word2\" >&2\n elif [ \"${#1}\" -lt \"${#2}\" ]; then\n levenshtein \"$2\" \"$1\"\n else\n local str1len=$((${#1}))\n local str2len=$((${#2}))\n local d i j\n for i in $(seq 0 $(((str1len+1)*(str2len+1)))); do\n d[i]=0\n done\n for i in $(seq 0 $((str1len))); do\n d[$((i+0*str1len))]=$i\n done\n for j in $(seq 0 $((str2len))); do\n d[$((0+j*(str1len+1)))]=$j\n done\n\n for j in $(seq 1 $((str2len))); do\n for i in $(seq 1 $((str1len))); do\n [ \"${1:i-1:1}\" = \"${2:j-1:1}\" ] && local cost=0 || local cost=1\n local del=$((d[(i-1)+str1len*j]+1))\n local ins=$((d[i+str1len*(j-1)]+1))\n local alt=$((d[(i-1)+str1len*(j-1)]+cost))\n d[i+str1len*j]=$(echo -e \"$del\\n$ins\\n$alt\" | sort -n | head -1)\n done\n done\n echo ${d[str1len+str1len*(str2len)]}\n fi\n}\n\nwhile read str1; do\n while read str2; do\n lev=$(levenshtein \"$str1\" \"$str2\");\n printf '%s / %s : %s\\n' \"$str1\" \"$str2\" \"$lev\"\n done < \"$2\"\ndone < \"$1\"\n</code></pre>\n\n<p>Save that as <code>~/bin/levenshtein.sh</code>, make it executable (<code>chmod a+x ~/bin/levenshtein.sh</code>) and run it on your two files. For example:</p>\n\n<pre class=\"lang-none prettyprint-override\"><code>$ cat fileA\nfoo\nzoo\nbar\nfob\nbaar\n$ cat fileB\nfoo\nloo\nbaar\nbob\ngaf\n$ a.sh fileA fileB\nfoo / foo : 0\nfoo / loo : 1\nfoo / baar : 4\nfoo / bob : 2\nfoo / gaf : 3\nzoo / foo : 1\nzoo / loo : 1\nzoo / baar : 4\nzoo / bob : 2\nzoo / gaf : 3\nbar / foo : 3\nbar / loo : 3\nbar / baar : 1\nbar / bob : 2\nbar / gaf : 2\nfob / foo : 1\nfob / loo : 2\nfob / baar : 4\nfob / bob : 1\nfob / gaf : 3\nbaar / foo : 4\nbaar / loo : 4\nbaar / baar : 0\nbaar / bob : 3\nbaar / gaf : 3\n</code></pre>\n\n<p>That's fine for a few patterns but will get <em>very</em> slow for larger files. If that's an issue, try one of the implementations in other languages. For example Perl:</p>\n\n<pre class=\"lang-perl prettyprint-override\"><code>#!/usr/bin/perl \nuse List::Util qw(min);\n\nsub levenshtein\n{\n my ($str1, $str2) = @_;\n my @ar1 = split //, $str1;\n my @ar2 = split //, $str2;\n\n my @dist;\n $dist[$_][0] = $_ foreach (0 .. @ar1);\n $dist[0][$_] = $_ foreach (0 .. @ar2);\n\n foreach my $i (1 .. @ar1) {\n foreach my $j (1 .. @ar2) {\n my $cost = $ar1[$i - 1] eq $ar2[$j - 1] ? 0 : 1;\n $dist[$i][$j] = min(\n $dist[$i - 1][$j] + 1, \n $dist[$i][$j - 1] + 1, \n $dist[$i - 1][$j - 1] + $cost\n );\n }\n }\n\n return $dist[@ar1][@ar2];\n}\nopen(my $fh1, \"$ARGV[0]\");\nopen(my $fh2, \"$ARGV[1]\");\nchomp(my @strings1=<$fh1>);\nchomp(my @strings2=<$fh2>);\n\nforeach my $str1 (@strings1) {\n foreach my $str2 (@strings2) {\n my $lev=levenshtein($str1, $str2);\n print \"$str1 / $str2 : $lev\\n\";\n }\n}\n</code></pre>\n\n<p>As above, save the script as <code>~/bin/levenshtein.pl</code> and make it executable and run it with the two files as arguments:</p>\n\n<pre><code>~/bin/levenstein.pl fileA fileB\n</code></pre>\n\n<p>Even in the very small files used here, the Perl approach is 10 times faster than the bash one:</p>\n\n<pre><code>$ time levenshtein.sh fileA fileB > /dev/null\n\nreal 0m0.965s\nuser 0m0.070s\nsys 0m0.057s\n\n$ time levenshtein.pl fileA fileB > /dev/null\nreal 0m0.011s\nuser 0m0.010s\nsys 0m0.000s\n</code></pre>\n",
"author": "terdon"
},
"training": false
},
{
"author": "Giorgio",
"url": "http://askubuntu.com/questions/109935/are-there-any-hardware-diagnostic-tools",
"text": "Are there any hardware diagnostic tools?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>What you ask is not specific for Linux/Ubuntu and can be achieved with 3rd party software. For instance: <a href=\"http://www.ultimatebootcd.com/\" rel=\"nofollow noreferrer\">Ultimate boot CD</a> might be helpful.</p>\n\n<p><img src=\"https://i.stack.imgur.com/s80p1.gif\" alt=\"enter image description here\"></p>\n\n<p>See the link for a long long list of tools that it has. Amongst it are BIOS, CPU, Hard Disk Information & Management, Hard Disk Diagnosis and memory tools. It also includes gparted and a resize program.</p>\n",
"author": "Rinzwind"
},
"training": false
},
{
"author": "Tim",
"url": "http://askubuntu.com/questions/31260/recommendation-for-regex-editor",
"text": "Recommendation for Regex editor?",
"entities": [],
"intent": "Software Recommendation",
"answer": {
"text": "<p>By far, the best tool for the job is <a href=\"http://gskinner.com/RegExr/\" rel=\"nofollow noreferrer\">RegExr</a>.</p>\n\n<p>The link above will take you to the online version, which is awesome and definitely the best RegEx tool I've ever used.</p>\n\n<p>If you're looking for something you can install in Ubuntu, then try the <a href=\"http://www.gskinner.com/RegExr/desktop/\" rel=\"nofollow noreferrer\">desktop version</a>, which is an Adobe Air application:</p>\n\n<p><img src=\"https://i.stack.imgur.com/jQwMT.jpg\" alt=\"enter image description here\"></p>\n",
"author": "Nathan Osman"
},
"training": false
},
{
"author": "Pitto",
"url": "http://askubuntu.com/questions/53222/is-there-a-document-scanning-and-archiving-software",
"text": "Is there a Document scanning and archiving software?",
"entities": [],
"intent": "None",
"answer": {
"text": "<p><a href=\"http://www.logicaldoc.com/download-logicaldoc-community.html\">LogicalDOC Community</a> could be used for this purpose.\nAllows you to catalog and tag many file types and has a built-in free OCR.</p>\n\n<p>One of the features that I really like about this package is the full-text search engine that can run natively language specific searches.</p>\n\n<p>There is a good documentation for installation on Ubuntu, which doesn't involve special difficulties</p>\n",
"author": "Marcello Picchi"
},
"training": false
},
{
"author": "DK Bose",
"url": "http://askubuntu.com/questions/423114/keyboard-shortcut-to-shutdown",
"text": "Keyboard shortcut to shutdown?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>Yes, you can assign a specific, non-used key-combination as a shortcut to shut-down. To assign <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Esc</kbd> (or any other key combination) as the shortcut, go to <strong>System settings > Keyboard > Shortcuts > Custom shortcut</strong> and then add a new shortcut.</p>\n\n<p>The command should be</p>\n\n<pre><code>dbus-send --system --print-reply --dest=org.freedesktop.ConsoleKit /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop\n</code></pre>\n\n<p>I am not pretty sure why you have <code>--system</code> twice in the command, but a single one works on Ubuntu 13.10(have tested, confirmed to work).</p>\n",
"author": "jobin"
},
"training": false
},
{
"text": "My system doesn't go shutdown",
"intent": "Shutdown Computer",
"entities": [],
"training": false
},
{
"author": "wim",
"url": "http://askubuntu.com/questions/369613/how-to-troubleshoot-slow-shutdown",
"text": "How to troubleshoot slow shutdown?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>Turn on reporting for misbehaving applications:</p>\n\n<ol>\n<li><p>Open <code>/etc/init.d/sendsigs</code> in your favourite text editor, with root privileges (e.g <code>sudo vi /etc/init.d/sendsigs</code> or <code>gksu /etc/init.d/sendsigs</code>). Search for the line <code>#report_unkillable</code> and uncomment it (i.e. remove the <code>#</code> tag). Save the file.</p></li>\n<li><p>Make sure that apport is enabled: Edit the file <code>/etc/default/apport</code> so it reads <code>enabled=1</code>. (If it was <code>enabled=0</code> then reboot, so apport can start.)</p></li>\n<li><p>Shutdown.</p></li>\n<li><p>Upon the next boot <code>apport</code> should come up with a message telling you that there was some kind of problem with a program. That is the one causing the delay. And there should be a crash report in <code>/var/crash</code> . (If apport doesn't report the name, then just look in the crash file, in the end of the file there will be something like <code>Title: MISBEHAVING_PROGRAMNAME does not terminate at computer shutdown</code>)</p></li>\n</ol>\n",
"author": "falconer"
},
"training": false
},
{
"author": "lucacerone",
"url": "http://askubuntu.com/questions/174169/how-can-i-shutdown-the-computer-when-a-certain-process-ends",
"text": "How can I shutdown the computer when a certain process ends?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>This should do the trick:</p>\n\n<p><a href=\"http://www.makeuseof.com/tag/cuttlefish-set-actions-reactions-automate-ubuntu/\" rel=\"nofollow\">http://www.makeuseof.com/tag/cuttlefish-set-actions-reactions-automate-ubuntu/</a></p>\n",
"author": "Mrokii"
},
"training": false
},
{
"author": "Surfer",
"url": "http://askubuntu.com/questions/377384/ubuntu-shut-down-app",
"text": "Ubuntu Shut down app",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>You can add an entry to the <em>root</em> crontab, roughly like this (<a href=\"http://ubuntuforums.org/showthread.php?t=925450\" rel=\"nofollow\">original discussion</a>)<br>\n<code>sudo crontab -e</code></p>\n\n<pre><code># Shutdown every day at 02:00 am\n0 2 * * * /sbin/shutdown -h now\n</code></pre>\n",
"author": "Eero Aaltonen"
},
"training": false
},
{
"text": "What does my computer do when I click 'Shut Down'?",
"intent": "Shutdown Computer",
"entities": [],
"training": false
},
{
"author": "vrcmr",
"url": "http://askubuntu.com/questions/14794/how-do-i-shut-down-without-the-confirmation-prompt",
"text": "How do I shut down without the confirmation prompt?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<h3>For 12.04 an later</h3>\n\n<p>Settings for the indicator session and logout menu are found by running <strong>dconf-editor</strong> (from <a href=\"http://apt.ubuntu.com/p/dconf-tools\" rel=\"nofollow noreferrer\">dconf-tools</a> <a href=\"http://apt.ubuntu.com/p/dconf-tools\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install dconf-tools\"></a>) </p>\n\n<p><img src=\"https://i.stack.imgur.com/FlKXp.png\" alt=\"enter image description here\"></p>\n",
"author": "Takkat"
},
"training": false
},
{
"author": "thonixx",
"url": "http://askubuntu.com/questions/95746/no-action-when-shutdown-pressed",
"text": "No action when shutdown pressed",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>Ok - I don't know if You like it, but it is a somewhat solution:</p>\n\n<p>create a text file PowerOff.sh (with gedit for example) and write there (if Your default shell is bash - if other You'll probably know what to do):</p>\n\n<pre><code>#!/bin/bash \nsudo shutdown -h now\n</code></pre>\n\n<p>Click it with Your right mouse button and in proerties: allow to execute as program.</p>\n\n<p>It would be comfy to copy this file in some hidden location (i mean not to leave it on desktop).</p>\n\n<p>After that You need to modify a file /etc/sudoers:</p>\n\n<pre><code>sudo gedit /etc/sudoers\n</code></pre>\n\n<p>at the end of this file add:</p>\n\n<pre><code>user ALL = NOPASSWD: /sbin/shutdown\n</code></pre>\n\n<p>where user is Your user name f.ex. thonixx if that is how you log in Ubuntu</p>\n\n<p>OK, now create an activator on Your panel, click it with right mouse button, and choose:add to panel -> add activator -> your own activator -> type: program in terminal and choose Your created file PowerOff.sh</p>\n\n<p>Now it should be possible to shutdown Your PC by clicking the activator on Your panel. if You wish You could even give it an icon of Your choice</p>\n\n<p>In that manner You could possibly make other commands. Or even write a simple python wrapper to show a form letting You to choose if You want to reboot, shutdown, logout etc.\nI gave You the solution without poping out the shutdown dialog, because You didn't really mention which shutdown button makes this errors. You could make identical solution using the command:</p>\n\n<pre><code>gnome-session-save --shutdown-dialog\n</code></pre>\n\n<p>in bash file instead shutdown. In such case You would probably not need to edit /etc/sudoers</p>\n\n<p>Regards</p>\n\n<p>PS: for now it looks like a bug in Unity. try to google: org.ayatana.bamf.view</p>\n\n<p>a few links:</p>\n\n<p><a href=\"http://ubuntuforums.org/showthread.php?t=1328994\" rel=\"nofollow\">using logout dialog from terminal or bash script</a></p>\n\n<p><a href=\"http://askubuntu.com/questions/15795/how-can-you-log-out-via-the-terminal\">how to logout</a></p>\n\n<p><a href=\"http://linux.byexamples.com/archives/315/how-to-shutdown-and-reboot-without-sudo-password/\" rel=\"nofollow\">how to edit permissions</a></p>\n\n<p><a href=\"http://www.linuxjournal.com/article/3946\" rel=\"nofollow\">how to write scripts in python</a></p>\n",
"author": "Misery"
},
"training": false
},
{
"author": "muyiscoi",
"url": "http://askubuntu.com/questions/263255/what-is-the-right-way-to-shutdown-ubuntu-using-the-command-line",
"text": "what is the right way to shutdown ubuntu using the command line?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>The right way to shutdown Ubuntu using the CLI(Command Line Interface) is <code>sudo shutdown now</code>.</p>\n",
"author": "gabemai"
},
"training": false
},
{
"author": "Alvin Row",
"url": "http://askubuntu.com/questions/1190/how-can-i-make-shutdown-not-require-admin-password",
"text": "How can I make shutdown not require admin password?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p><strong>You do not need a workaround, just change the policy to allow you to shut down without authenticating as admin for shutdown and reboot when multiple users are logged in.</strong></p>\n\n<p>Edit the file /usr/share/polkit-1/actions/org.freedesktop.consolekit.policy using your favorite text editor. You will need root permissions.</p>\n\n<p>Change the section relating to shutdown when others are logged in from</p>\n\n<pre class=\"lang-xml prettyprint-override\"><code> <action id=\"org.freedesktop.consolekit.system.stop-multiple-users\">\n <description>Stop the system when multiple users are logged in</description>\n <message>System policy prevents stopping the system when other users are logged in</message>\n <defaults>\n <allow_inactive>no</allow_inactive>\n <allow_active>auth_admin_keep</allow_active>\n </defaults>\n </action>\n</code></pre>\n\n<p>to</p>\n\n<pre class=\"lang-xml prettyprint-override\"><code> <action id=\"org.freedesktop.consolekit.system.stop-multiple-users\">\n <description>Stop the system when multiple users are logged in</description>\n <message>System policy prevents stopping the system when other users are logged in</message>\n <defaults>\n <allow_inactive>no</allow_inactive>\n <allow_active>yes</allow_active>\n </defaults>\n </action>\n</code></pre>\n\n<p>and the section relating to rebooting when others are logged in from </p>\n\n<pre class=\"lang-xml prettyprint-override\"><code> <action id=\"org.freedesktop.consolekit.system.restart-multiple-users\">\n <description>Restart the system when multiple users are logged in</description>\n <message>System policy prevents restarting the system when other users are logged in</message>\n <defaults>\n <allow_inactive>no</allow_inactive>\n <allow_active>auth_admin_keep</allow_active>\n </defaults>\n </action>\n</code></pre>\n\n<p>to </p>\n\n<pre class=\"lang-xml prettyprint-override\"><code> <action id=\"org.freedesktop.consolekit.system.restart-multiple-users\">\n <description>Restart the system when multiple users are logged in</description>\n <message>System policy prevents restarting the system when other users are logged in</message>\n <defaults>\n <allow_inactive>no</allow_inactive>\n <allow_active>yes</allow_active>\n </defaults>\n </action>\n</code></pre>\n\n<p>And that will allow you shutdown and reboot the PC when multiple users are logged in.\nWhether you want to do that is a different question.</p>\n",
"author": "Richard Holloway"
},
"training": false
},
{
"author": "greg",
"url": "http://askubuntu.com/questions/129366/shutdown-in-specific-way-if-no-one-uses-computer",
"text": "shutdown in specific way if no-one uses computer",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>That's a working script of what you want to do:</p>\n\n<pre><code>#!/bin/bash\nwhile true; do\n sleep 59m\n zenity --question --text \"Are you using the pc (click anything)?\"&\n zenity_id=$!\n #the user has 1 minute to answer, otherwise PC will shut down\n sleep 1m\n if kill $zenity_id 2> /dev/null; then \n #zenity was still running, shutdown the pc\n dbus-send --print-reply --dest=org.gnome.SessionManager /org/gnome/SessionManager org.gnome.SessionManager.RequestShutdown\n fi\ndone\n</code></pre>\n\n<p>Every once an hour it displays a pop-up asking 'Are you still here?', if the user clicks on something, then it doesn't shutdown for another one hour (in one hour the pop-up is shown again), but if more than 1 minute passes without interaction with the dialog, then the PC automatically shuts down.\nIn order to start this on startup, create a file with the above code and make it executable (right click->properties->permissions->allow executing file as program) and click on the power button to the top right of your screen, select startup applications and add this script.</p>\n",
"author": "hakermania"
},
"training": false
},
{
"author": "Alvin Row",
"url": "http://askubuntu.com/questions/65965/what-is-the-command-to-open-the-shutdown-dialog",
"text": "What is the command to open the shutdown dialog?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p><code>/usr/lib/indicator-session/gtk-logout-helper</code> can be used to open the following dialogs:</p>\n\n<ul>\n<li><p>Log Out (<code>/usr/lib/indicator-session/gtk-logout-helper --logout</code>)</p>\n\n<p><img src=\"https://i.stack.imgur.com/d4nEY.png\" alt=\"enter image description here\"></p></li>\n<li><p>Restart (<code>/usr/lib/indicator-session/gtk-logout-helper --restart</code>)</p>\n\n<p><img src=\"https://i.stack.imgur.com/iKJDK.png\" alt=\"enter image description here\"></p></li>\n<li><p>Shutdown (<code>/usr/lib/indicator-session/gtk-logout-helper --shutdown</code>)</p>\n\n<p><img src=\"https://i.stack.imgur.com/qoVFc.png\" alt=\"enter image description here\"></p></li>\n</ul>\n",
"author": "Alvin Row"
},
"training": false
},
{
"author": "Madhav Nikam",
"url": "http://askubuntu.com/questions/717206/how-to-shut-down-ubuntu-by-using-keyboard",
"text": "How to Shut down Ubuntu by using keyboard?",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>Well you could open terminal by pressing <code>CTRL+ALT+T</code></p>\n\n<p>then simply type :</p>\n\n<p>-for shutdown:</p>\n\n<pre><code>sudo shutdown\n</code></pre>\n\n<p>or </p>\n\n<pre><code>sudo poweroff\n</code></pre>\n\n<p>-for restart: </p>\n\n<pre><code>sudo reboot\n</code></pre>\n\n<p>As far as I am aware, there isn't a system shortcut for shutdown, but you could create one. Read <a href=\"http://askubuntu.com/questions/91501/are-there-any-keyboard-shortcuts-to-shutdown\">Are there any Keyboard Shortcuts to Shutdown?</a></p>\n",
"author": "Geo"
},
"training": false
},
{
"author": "Thufir",
"url": "http://askubuntu.com/questions/538639/shutdown-530pm-every-day",
"text": "shutdown 5:30pm every day",
"entities": [],
"intent": "Shutdown Computer",
"answer": {
"text": "<p>Yes, that's correct. Note that only root can run the shutdown command by default. So, if you have not done any tweaking with the permission of running the command just put the cron entry in the root user's cron (<code>sudo crontab -e</code>) or add the entry in <code>/etc/crontab</code> mentioning the user as root.</p>\n\n<p><strong>EDIT (Regarding Anacron):</strong> Absolutely bad idea. generally anacron is used while you want to run a command daily but you are not sure whether your computer will be On or Off. So lets say you have added an anacron entry to run a command. Then if the computer is On anacron checks and runs the command, if the computer was Off on that specified time the instant you turn On the computer next time anacron will run that command. </p>\n\n<p>So, in a nutshell anacron is used while you are not sure your computer is gonna be On or Off. In your case you are shutting down the computer so if you put that to run by anacron your computer will be shut down by anacron if it was off and when you will turn it On after the specified time. </p>\n\n<p>Your command</p>\n\n<pre><code>30 7 * * * root start -q anacron || : 30 17 * * * root /sbin/shutdown -h now\n</code></pre>\n\n<p>means that run <code>30 7 * * * root start -q anacron</code> first, if that fails run <code>30 17 * * * root /sbin/shutdown -h now</code> makes no sense i think. Just add the entry in crontab and that'll do the job.</p>\n",
"author": "heemayl"
},
"training": false
},
{
"author": "roma",
"url": "http://askubuntu.com/questions/128182/upgrading-from-11-10-to-12-04",
"text": "Upgrading from 11.10 to 12.04",
"entities": [
{
"text": "11.10",
"entity": "UbuntuVersion",
"stop": 4,
"start": 2
},
{
"text": "12.04",
"entity": "UbuntuVersion",
"stop": 8,
"start": 6
}
],
"intent": "Make Update",
"answer": {
"text": "<p>The volume of comments about issues in upgrading to 12.04 seems pretty scary.</p>\n\n<p>Personally I would make sure all your <strong>data stays in the cloud</strong> (Dropbox, UbuntuOne, etc) and is backed up on <strong>external drives</strong> (cheap now) and <strong>CD/DVD</strong> if possible. and when you are ready to go to 12.xx, do a clean install, install your key programs again and resync the data back in.</p>\n\n<p>If you have a fair sized disk one good option (that I actually did) was to partition off another 100GB and just put it on that and have that be the new default first item to boot (which it will normally be with this install process) (actually a pretty good way to get several consequitive Ubuntu versions out of 1 machine !!!</p>\n",
"author": "Michael Durrant"
},
"training": false
},
{
"author": "oledog",
"url": "http://askubuntu.com/questions/757023/how-do-i-upgrade-to-the-release-version-of-16-04-if-i-am-running-beta",
"text": "How do I upgrade to the release version of 16.04 if I am running Beta?",
"entities": [
{
"text": "16.04",
"entity": "UbuntuVersion",
"stop": 11,
"start": 9
}
],
"intent": "Make Update",
"answer": {
"text": "<p>Once 16.04 is released running:</p>\n\n<pre><code>sudo apt-get update\nsudo apt-get dist-upgrade\n</code></pre>\n\n<p>Will do the trick, no need for <code>do-release-upgrade</code> (that won't actually do anything because you are already using 16.04, so there is nowhere to upgrade to). There shouldn't need to be anything else to change, anything that does need changing should be done for you automatically.</p>\n\n<p>And just as a side note, <code>sudo apt-get dist-upgrade</code> upgrades many things in addition to all that <code>sudo apt-get upgrade</code> does, so no need to run both, the <code>dist-upgrade</code> option covers both of them as stated in the manpage (<code>man apt-get</code>):</p>\n\n<pre><code>dist-upgrade in addition to performing the function of upgrade,\n also intelligently handles changing dependencies with new versions\n of packages; apt-get has a \"smart\" conflict resolution system, and\n it will attempt to upgrade the most important packages at the\n expense of less important ones if necessary. The dist-upgrade\n command may therefore remove some packages. The\n /etc/apt/sources.list file contains a list of locations from which\n to retrieve desired package files. See also apt_preferences(5) for\n a mechanism for overriding the general settings for individual\n packages.\n</code></pre>\n",
"author": "Paranoid Panda"
},
"training": false
},
{
"author": "Carlos",
"url": "http://askubuntu.com/questions/549419/doubts-regarding-the-15-04-upgrade-is-it-inevitable-and-unavoidable",
"text": "Doubts regarding the 15.04 upgrade (is it inevitable and unavoidable?)",
"entities": [
{
"text": "15.04",
"entity": "UbuntuVersion",
"stop": 5,
"start": 3
}
],
"intent": "Make Update",
"answer": {
"text": "<p>Ubuntu 14.10 will go <a href=\"https://wiki.ubuntu.com/Releases\" rel=\"nofollow\">End-of-Life</a> on May, 2015. Support for the release will end, and updates will be sparse, perhaps.</p>\n\n<p>On the otherhand, 14.04 is a long-term release, and will be supported and downloadable until April 2019</p>\n\n<p>You can always stay on an old release, and possibly suffer from security issues or lack of updates, or you can go with Ubuntu 15 (which will be short term, only 6 to 12 months of support), or revert at some point to 14.04</p>\n",
"author": "Charles Green"
},
"training": false
},
{
"author": "d3vid",
"url": "http://askubuntu.com/questions/453453/is-any-offline-upgrade-from-13-10-to-14-04-possible",
"text": "Is any offline upgrade from 13.10 to 14.04 possible?",
"entities": [
{
"text": "13.10",
"entity": "UbuntuVersion",
"stop": 7,
"start": 5
},
{
"text": "14.04",
"entity": "UbuntuVersion",
"stop": 11,
"start": 9
}
],
"intent": "Make Update",
"answer": {
"text": "<p>It appears that the answer is no, an offline upgrade is not possible.</p>\n\n<blockquote>\n <p>The reason behind this move, is enourmous amount of support cases of broken and partial upgrades since newer installation media will be missing manual additionally installed packages; packages that have now transitioned to new names; packages that have been removed from the default installation. Thus default install media for next release simply doesn't contain everything one will reasonably need to upgrade, hence the internet connectivity requirement.</p>\n</blockquote>\n\n<p>(from <a href=\"https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1170531\" rel=\"nofollow\">bug 1170531</a> via <a href=\"http://askubuntu.com/a/283296/7146\">Alexandre P.</a> - see that answer for suggestions on creating a mirror on your local network - this way one machine can perform downloads and other machines use it as a local cache)</p>\n\n<p>I confirmed this by attempting a number of variations on the old offline instructions, none of which worked. In the end I could upgrade using:</p>\n\n<ul>\n<li>network only</li>\n<li>ISO on CD/USB + network for additional downloads (network connectivity required for upgrade to start)</li>\n</ul>\n\n<p>but I couldn't figure out how to do it from a mounted ISO.</p>\n",
"author": "d3vid"
},
"training": false
},
{
"author": "user93",
"url": "http://askubuntu.com/questions/322252/upgrading-from-ubuntu-12-04-to-13-10",
"text": "Upgrading from ubuntu 12.04 to 13.10",
"entities": [
{
"text": "12.04",
"entity": "UbuntuVersion",
"stop": 5,
"start": 3
},
{
"text": "13.10",
"entity": "UbuntuVersion",
"stop": 9,
"start": 7
}
],
"intent": "Make Update",
"answer": {
"text": "<p>It'll be better if you don't move from 12.04 to 13.10 directly. The package scripts are responsible for conversion and creation of new settings which will be messed up if you jump releases like that. You may end up with a buggy system that'll ruin your experience with the new release. It'll be better if you upgrade to 12.10 and then to 13.04. The releases are made that way so you can go from one version to another or from one LTS version to another LTS version. </p>\n\n<p>When you've got 13.04, you can further upgrade to 13.10, but I'd really not recommend that. It is still under development, and is not suggested for regular use.</p>\n\n<p>If you do wish to use 13.10, my suggestion would be to download the .iso of the file from <a href=\"http://cdimage.ubuntu.com/daily-live/current/\" rel=\"nofollow\">here</a>, and boot it from a LiveUSB or on a virtual machine on Ubuntu itself. VirtualBox is a great tool for this, and you can run 13.10 without the risk of your system crashing and consequent data loss.</p>\n",
"author": "Projjol"
},
"training": false
},
{
"author": "Shon Top",
"url": "http://askubuntu.com/questions/286752/ubuntu-upgrade-failed",
"text": "Ubuntu upgrade failed",
"entities": [],
"intent": "Make Update",
"answer": {
"text": "<p>The installation of Ubuntu allows you to upgrade 12.10. If you want to delete your current version select Erase Ubuntu 12.10 and install 13.04. If you just want to upgrade use the \"upgrade\" option</p>\n\n<p><img src=\"https://i.stack.imgur.com/r77MH.png\" alt=\"enter image description here\"></p>\n",
"author": "duxk.gh"
},
"training": false
},
{
"author": "user258864",
"url": "http://askubuntu.com/questions/435046/upgrading-from-12-04-to-13-10-unanswered-questions",
"text": "Upgrading from 12.04 to 13.10 ( Unanswered questions )",
"entities": [
{
"text": "12.04",
"entity": "UbuntuVersion",
"stop": 4,
"start": 2
},
{
"text": "13.10",
"entity": "UbuntuVersion",
"stop": 8,
"start": 6
}
],
"intent": "Make Update",
"answer": {
"text": "<p>Unfortunately you can not upgrade directly from 12.04 to 13.10.\nYou have to do all the steps in between as this answer explains: <a href=\"http://askubuntu.com/questions/34430/can-i-skip-over-releases-when-upgrading\">Can I skip over releases when upgrading?</a></p>\n\n<p>So in your case from 12.04 to 12.10 to 13.04 to 13.10.\nAs this is neither practical nor desirable I would suggest that you either make a backup of your <code>/home/YOUR_USERNAME</code> folder to keep all your music and other personal files save and then download the Ubuntu 13.10 image to make a fresh install.\nOr the other thing you could do is wait till Ubuntu 14.04 LTS comes out in april and then do an update.</p>\n\n<p>The good thing about the second possibility is that you don't have to reinstall your system because you can do direct system upgrades between LTS (Long-Term Support) releases.</p>\n",
"author": "Daniel W."
},
"training": false
},
{
"author": "Neo",
"url": "http://askubuntu.com/questions/498603/upgrading-to-ubuntu-13-10-from-ubuntu-13-04",
"text": "upgrading to Ubuntu 13.10 from Ubuntu 13.04",
"entities": [
{
"text": "13.10",
"entity": "UbuntuVersion",
"stop": 5,
"start": 3
},
{
"text": "13.04",
"entity": "UbuntuVersion",
"stop": 10,
"start": 8
}
],
"intent": "Make Update",
"answer": {
"text": "<p>You should upgrade to 14.04 because 13.10.support will end tomorrow(after 9 Months of support).</p>\n",
"author": "Pabi"
},
"training": false
},
{
"author": "wb9688",
"url": "http://askubuntu.com/questions/622327/is-it-recommended-to-upgrade-to-lubuntu-15-04",
"text": "Is it recommended to upgrade to Lubuntu 15.04?",
"entities": [
{
"text": "Lubuntu 15.04",
"entity": "UbuntuVersion",
"stop": 9,
"start": 6
}
],
"intent": "Software Recommendation",
"answer": {
"text": "<p>Lubuntu 14.10 is not an LTS release. It is supported 9 months. So less than in 3 months the support will be dropped. So it is recomended to upgrade. If you do not want to upgrade frequently consider installng an LTS release. It is supported for 3 years. Current LTS release is 14.04.</p>\n",
"author": "Pilot6"
},
"training": false
},
{
"author": "Sankalp",
"url": "http://askubuntu.com/questions/299198/force-upgrade-12-10-to-13-04",
"text": "Force upgrade 12.10 to 13.04",
"entities": [
{
"text": "12.10",
"entity": "UbuntuVersion",
"stop": 4,
"start": 2
},
{
"text": "13.04",
"entity": "UbuntuVersion",
"stop": 8,
"start": 6
}
],
"intent": "Make Update",
"answer": {
"text": "<p>To upgrade from 12.10 to 13.04, just press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>T</kbd> on your keyboard to open Terminal. When it opens, run the command(s) below:</p>\n\n<pre><code>sudo apt-get update && sudo apt-get dist-upgrade\nsudo update-manager -d\n</code></pre>\n\n<p>Once that is done, a window will open, just click on Upgrade.</p>\n",
"author": "Mitch"
},
"training": false
},
{
"author": "C.S Oren",
"url": "http://askubuntu.com/questions/95328/how-to-partially-upgrade-ubuntu-11-10-from-ubuntu-11-04",
"text": "How to partially upgrade Ubuntu 11.10 from Ubuntu 11.04?",
"entities": [
{
"text": "11.10",
"entity": "UbuntuVersion",
"stop": 7,
"start": 5
},
{
"text": "11.04",
"entity": "UbuntuVersion",
"stop": 12,
"start": 10
}
],
"intent": "Make Update",
"answer": {
"text": "<p>Upgrade using alternate-ubuntu iso \nit is better for slower connections\nit may solve your problem</p>\n",
"author": "Tachyons"
},
"training": false
},
{
"author": "PMV",
"url": "http://askubuntu.com/questions/55575/problem-upgrading-ubuntu-9-10",
"text": "Problem upgrading Ubuntu 9.10",
"entities": [
{
"text": "Ubuntu 9.10",
"entity": "UbuntuVersion",
"stop": 5,
"start": 3
}
],
"intent": "Make Update",
"answer": {
"text": "<p>I'd try removing the Gutsy CD line:</p>\n\n<pre><code>deb cdrom:[Ubuntu-Server 7.10 _Gutsy Gibbon_ - Release i386 (20071016)]/ gutsy main restricted\n</code></pre>\n",
"author": "mikewhatever"
},
"training": false
},
{
"author": "SHK",
"url": "http://askubuntu.com/questions/813168/is-it-necessary-to-upgrade-to-15-10-from-14-04",
"text": "Is it necessary to upgrade to 15.10 from 14.04?",
"entities": [
{
"text": "15.10",
"entity": "UbuntuVersion",
"stop": 8,
"start": 6
},
{
"text": "14.04",
"entity": "UbuntuVersion",
"stop": 12,
"start": 10
}
],
"intent": "Make Update",
"answer": {
"text": "<p>The answer is 100% NO. Do not upgrade to 15.10. 14.04 is an LTS release which means you'll have full support till 2019. 15.10 is not LTS and support for it has already ended since July 28.</p>\n\n<p>The only release you could consider upgrading to is 16.04 but if you're ok with 14.04, you can definitely continue using it without hesitation. </p>\n",
"author": "Stormlord"
},
"training": false
},
{
"author": "made_in_india",
"url": "http://askubuntu.com/questions/269064/how-do-i-update-xubuntu-11-10-to-xubuntu-12-04-lts",
"text": "How do I update Xubuntu 11.10 to Xubuntu 12.04 LTS?",
"entities": [
{
"text": "Xubuntu 11.10",
"entity": "UbuntuVersion",
"stop": 7,
"start": 4
},
{
"text": "Xubuntu 12.04 LTS?",
"entity": "UbuntuVersion",
"stop": 13,
"start": 9
}
],
"intent": "Make Update",
"answer": {
"text": "<p>If you have Xubuntu installed, the upgrade to Ubuntu 12.04 option will upgrade to Xubuntu 12.04.</p>\n",
"author": "laurent"
},
"training": false
},
{
"author": "Jared",
"url": "http://askubuntu.com/questions/120268/why-did-the-upgrade-from-11-10-to-12-04-ruin-my-system",
"text": "Why did the upgrade from 11.10 to 12.04 ruin my system?",
"entities": [
{
"text": "11.10",
"entity": "UbuntuVersion",
"stop": 7,
"start": 5
},
{
"text": "12.04",
"entity": "UbuntuVersion",
"stop": 11,
"start": 9
}
],
"intent": "Make Update",
"answer": {
"text": "<p>No you cannot go back to 11.10 easily and even if you do , it might cause more issues. Better solution is to fix what went wrong. As a first step can you try resetting unity to default values </p>\n\n<pre><code>unity --reset\n\nunity --reset-icons\n</code></pre>\n",
"author": "mac"
},
"training": false
},
{
"author": "Fi Whitchelo",
"url": "http://askubuntu.com/questions/510946/problems-upgrading-from-12-04-to-14-04",
"text": "Problems upgrading from 12.04 to 14.04",
"entities": [
{
"text": "12.04",
"entity": "UbuntuVersion",
"stop": 5,
"start": 3
},
{
"text": "14.04",
"entity": "UbuntuVersion",
"stop": 9,
"start": 7
}
],
"intent": "Make Update",
"answer": {
"text": "<p>You are in a bit of a bind: Your root partition is only ~8GB, so making space in it is hard. What I suggest is that you set up a temporary mount from a folder in your home directory to <code>/var/cache/apt/archives/</code>, so that the space in your home directory partition is available for apt:</p>\n\n<pre><code>mkdir ~/tmp\nsudo mount -o bind ~/tmp /var/cache/apt/archives/\n</code></pre>\n\n<p>This should give <code>apt</code> plenty of room.</p>\n",
"author": "muru"
},
"training": false
},
{
"author": "Lee",
"url": "http://askubuntu.com/questions/392317/problems-upgrading-ubuntu-12-10-to-13-04",
"text": "Problems upgrading Ubuntu 12.10 to 13.04",
"entities": [
{
"text": "12.10",
"entity": "UbuntuVersion",
"stop": 5,
"start": 3
},
{
"text": "13.04",
"entity": "UbuntuVersion",
"stop": 9,
"start": 7
}
],
"intent": "Make Update",
"answer": {
"text": "<p>You have to use <code>update-manager-core</code> from <code>quantal-updates</code> instead of <code>quantal-proposed</code>.</p>\n\n<p>See: <a href=\"http://askubuntu.com/questions/390587/i-dont-know-how-to-upgrade-12-10-to-13-04-or-13-10/393066#393066\">I don't know how to upgrade 12.10 to 13.04 or 13.10</a></p>\n",
"author": "Andreas Schaeffer"
},
"training": false
},
{
"author": "William Baldwin",
"url": "http://askubuntu.com/questions/227770/upgrade-from-12-04-to-12-10-without-losing-files",
"text": "Upgrade from 12.04 to 12.10 without losing files?",