-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
953 lines (951 loc) · 41 KB
/
app.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
</title>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" href="my.css" />
<style>
/* App custom styles */
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.0/jquery.mobile-1.1.0.min.js">
</script>
<script src="my.js">
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="home">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Ubuntu is a complete system comparable to
Windows and OS X. Would you like to install Ubuntu?
</li>
<li data-theme="c">
<a href="#ubuntu" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#nonubuntu" data-transition="slide">
No
</a>
</li>
<li data-theme="c">
<a href="#linuxhelp" data-transition="slide">
What about Linux?
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Ubuntu -->
<div data-role="page" id="ubuntu">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Would you like to install a virtual machine?
</li>
<li data-theme="c">
<a href="#virtual" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#baremetal" data-transition="slide">
No
</a>
</li>
<li data-theme="c">
<a href="#virtualhelp" data-transition="slide">
What's the difference?
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Not Ubuntu -->
<div data-role="page" id="nonubuntu">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
I think you already know what you are doing
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- What about Linux? -->
<div data-role="page" id="linuxhelp">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Ubuntu is built on top of Linux. Linux is the
base component which talks to your machine. By installing Ubuntu, you
are installing Linux. Would you like to install Ubuntu?
</li>
<li data-theme="c">
<a href="#ubuntu" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#nonubuntu" data-transition="slide">
No
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- I have another question -->
<div data-role="page" id="help">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<div>
Please e-mail me at
<a id="emailhelp" href="mailto:[email protected]?subject=installfest%20helper" data-transition="fade">
</a>
so I can add your question to this helper. Thanks.<br />
In the mean time, ask someone else, or the internet.
</div>
</div>
</div>
<!-- Virtual Machine -->
<div data-role="page" id="virtual">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Are you using OS X or Windows?
</li>
<li data-theme="c">
<a href="#virtualosx" data-transition="slide">
Mac OS X
</a>
</li>
<li data-theme="c">
<a href="#virtualwin" data-transition="slide">
Microsoft Windows
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Not virtual -->
<div data-role="page" id="baremetal">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Do you have a Mac or a PC?
</li>
<li data-theme="c">
<a href="#baremetalmac" data-transition="slide">
Mac
</a>
</li>
<li data-theme="c">
<a href="#baremetalpc" data-transition="slide">
PC
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- What's the difference? -->
<div data-role="page" id="virtualhelp">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
A virtual machine is like a machine inside your
machine. The main advantage of a virtual machine is that you can run
two operating systems simultaneously (without rebooting). The main
disadvantage is resources. If you don't have enough memory to run both
simultaneously, it will be very slow. Would you like to install a
virtual machine?
</li>
<li data-theme="c">
<a href="#virtual" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#baremetal" data-transition="slide">
No
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Virtual Machine on OS X -->
<div data-role="page" id="virtualosx">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Which virtual machine software would you like to use?
</li>
<li data-theme="c">
<a href="#virtualbox" data-transition="slide">
VirtualBox
</a>
</li>
<li data-theme="c">
<a href="#osxvmware" data-transition="slide">
VMware
</a>
</li>
<li data-theme="c">
<a href="#osxparallels" data-transition="slide">
Parallels
</a>
</li>
<li data-theme="c">
<a href="#osxq" data-transition="slide">
Q
</a>
</li>
<li data-theme="c">
<a href="#osxvirtualcomparison" data-transition="slide">
What's the difference?
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Virtual Machine on Windows -->
<div data-role="page" id="virtualwin">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Which virtual machine software would you like to use?
</li>
<li data-theme="c">
<a href="#virtualbox" data-transition="slide">
VirtualBox
</a>
</li>
<li data-theme="c">
<a href="#winvmware" data-transition="slide">
VMware
</a>
</li>
<li data-theme="c">
<a href="#winparallels" data-transition="slide">
Parallels
</a>
</li>
<li data-theme="c">
<a href="#winvirtualpc" data-transition="slide">
Virtual PC
</a>
</li>
<li data-theme="c">
<a href="#winvirtualcomparison" data-transition="slide">
What's the difference?
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Not virtual - Mac -->
<div data-role="page" id="baremetalmac">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
This is not a recommended configuration. Would
you like to install a virtual machine?
</li>
<li data-theme="c">
<a href="#virtualosx" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#baremetalmac2" data-transition="slide">
No
</a>
</li>
<li data-theme="c">
<!-- TODO: This option may have been presented before -->
<!-- TODO: Taking this path will ask if you have OS X -->
<a href="#virtualhelp" data-transition="slide">
What's the difference?
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Not virtual - PC -->
<div data-role="page" id="baremetalpc">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Wubi allows you to install Ubuntu inside
Windows. The main advantage is that you don't have to repartition,
saving you time during the installation process. The main disadvantage
is that if you reinstall Windows, you will lose Ubuntu. Would you like
to use Wubi? You must use Wubi if you have <!--an MBR with a DOS
partition table and--> four primary partitions and you are unwilling to
remove a partition.
</li>
<li data-theme="c">
<a href="#wubi" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#raw" data-transition="slide">
No
</a>
</li>
<li data-theme="c">
<a href="#partitioncheck" data-transition="slide">
How do I check my partitions?
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- VirtualBox -->
<div data-role="page" id="virtualbox">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please download VirtualBox and the Extension
Pack from https://www.virtualbox.org/wiki/Downloads and ask for a DVD
with a virtual machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="https://www.virtualbox.org/wiki/Downloads" data-transition="slide">
https://www.virtualbox.org/wiki/Downloads
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- OS X VMware -->
<div data-role="page" id="osxvmware">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please purchase and download VMware Fusion from
https://www.vmware.com/au/vmwarestore and ask for a DVD with a virtual
machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="https://www.vmware.com/au/vmwarestore" data-transition="slide">
https://www.vmware.com/au/vmwarestore
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- OS X Parallels -->
<div data-role="page" id="osxparallels">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please purchase and download Parallels Desktop
from http://www.parallels.com/au/store/ and ask for a DVD with a virtual
machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="http://www.parallels.com/au/store/" data-transition="slide">
http://www.parallels.com/au/store/
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Q -->
<div data-role="page" id="osxq">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please download Q from http://www.kju-app.org/
and ask for a DVD with a virtual machine image or download a CD image
from http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="http://www.kju-app.org/" data-transition="slide">
http://www.kju-app.org/
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- OS X VM Comparison -->
<div data-role="page" id="osxvirtualcomparison">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Which virtual machine software would you like to use?
</li>
<li data-theme="c">
<a href="#virtualbox" data-transition="slide">
VirtualBox is a cross-platform, mostly open-source solution from Oracle. Cost: $0
</a>
</li>
<li data-theme="c">
<a href="#osxvmware" data-transition="slide">
VMware has been a major player in the virtual machine business for a long time. Cost: $50
</a>
</li>
<li data-theme="c">
<a href="#osxparallels" data-transition="slide">
Parallels was the first player in the MacTel virtual machine business. Cost: $90
</a>
</li>
<li data-theme="c">
<a href="#osxq" data-transition="slide">
Q is based on the cross-platform, open-source qemu. Cost: $0
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Windows VMware -->
<div data-role="page" id="winvmware">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please download VMware Player from
http://www.vmware.com/go/downloadplayer/ and ask for a DVD with a
virtual machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="http://www.vmware.com/go/downloadplayer/" data-transition="slide">
http://www.vmware.com/go/downloadplayer/
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Windows Parallels -->
<div data-role="page" id="winparallels">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please purchase and download Parallels
Workstation from http://www.parallels.com/au/store/ and ask for a DVD
with a virtual machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="http://www.parallels.com/au/store/" data-transition="slide">
http://www.parallels.com/au/store/
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Windows Virtual PC -->
<div data-role="page" id="winvirtualpc">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Which version of Windows are you running?
</li>
<li data-theme="c">
<a href="#virtualpcvista" data-transition="slide">
Vista
</a>
</li>
<li data-theme="c">
<a href="#virtualpc7" data-transition="slide">
7
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Virtual Machine on Windows Comparison -->
<div data-role="page" id="winvirtualcomparison">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Which virtual machine software would you like to use?
</li>
<li data-theme="c">
<a href="#virtualbox" data-transition="slide">
VirtualBox is a cross-platform, mostly open-source solution from Oracle. Cost: $0
</a>
</li>
<li data-theme="c">
<a href="#winvmware" data-transition="slide">
VMware has been a major player in the virtual machine business for a long time. Cost: $0
</a>
</li>
<li data-theme="c">
<a href="#winparallels" data-transition="slide">
Parallels was the first player in the MacTel virtual machine business. Cost: $50
</a>
</li>
<li data-theme="c">
<a href="#winvirtualpc" data-transition="slide">
Virtual PC is Microsoft's offering, which was originally made for Macs to run Windows. Not available for starter editions of Windows. Cost: $0
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Not virtual - Mac - Really -->
<div data-role="page" id="baremetalmac2">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please ask for a CD or USB, or connect to the
installfest network. When rebooting, hold down C for CD or USB or N for
network.
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Wubi -->
<div data-role="page" id="wubi">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please ask for a CD or USB, or download wubi
from http://www.ubuntu.com/download/desktop/windows-installer
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop/windows-installer" data-transition="slide">
http://www.ubuntu.com/download/desktop/windows-installer
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Raw - PC -->
<div data-role="page" id="raw">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please ask for a CD or USB, or connect to the
installfest network. When rebooting, press the key appropriate for your
system for getting a boot device menu. F8 and F12 are common.
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Not virtual - PC - Partition check -->
<div data-role="page" id="partitioncheck">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
From the start menu, search for "Disk
Management". (It may be called "Create and format hard disk
partitions".) Locate your hard disk in the lower panel (usually Disk
0). If you have four primary partitions (dark blue), you must use Wubi
or delete a partition. If you have fewer than four primary partitions,
you can shrink them at this time to make space for Ubuntu, which is
generally considered safer than shrinking them from the Ubuntu
installer. Would you like to use Wubi?
</li>
<li data-theme="c">
<a href="#wubi" data-transition="slide">
Yes
</a>
</li>
<li data-theme="c">
<a href="#raw" data-transition="slide">
No
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Virtual PC Vista -->
<div data-role="page" id="virtualpcvista">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please download Virtual PC 2007 from
http://www.microsoft.com/en-us/download/details.aspx?id=24439 and ask
for a DVD with a virtual machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="http://www.microsoft.com/en-us/download/details.aspx?id=24439" data-transition="slide">
http://www.microsoft.com/en-us/download/details.aspx?id=24439
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Virtual PC 7 -->
<div data-role="page" id="virtualpc7">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
Please download Windows Virtual PC from
http://www.microsoft.com/en-us/download/details.aspx?id=3702 . Ask for a
DVD with a virtual machine image or download a CD image from
http://www.ubuntu.com/download/desktop
</li>
<li data-theme="c">
<a href="http://www.microsoft.com/en-us/download/details.aspx?id=3702" data-transition="slide">
http://www.microsoft.com/en-us/download/details.aspx?id=3702
</a>
</li>
<li data-theme="c">
<a href="http://www.ubuntu.com/download/desktop" data-transition="slide">
http://www.ubuntu.com/download/desktop
</a>
</li>
</ul>
<a data-role="button" data-transition="fade" href="#installed">
A volunteer has helped me install linux
</a>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<!-- Installed -->
<div data-role="page" id="installed">
<div data-theme="a" data-role="header">
<h3>
Installfest Helper
</h3>
</div>
<div data-role="content" style="padding: 15px">
<div data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="vertical">
<legend>
Ask a volunteer to show you how to do the
following in Ubuntu
</legend>
<input name="checkbox1" id="checkbox1" type="checkbox">
<label for="checkbox1">
Open a local shell
</label>
<input name="checkbox2" id="checkbox2" type="checkbox">
<label for="checkbox2">
Open a remote shell on CSE
</label>
<input name="checkbox3" id="checkbox3" type="checkbox">
<label for="checkbox3">
Open a remote shell on CSE and launch gedit
</label>
<input name="checkbox4" id="checkbox4" type="checkbox">
<label for="checkbox4">
Open a remote folder on CSE
</label>
<input name="checkbox5" id="checkbox5" type="checkbox">
<label for="checkbox5">
Install software
</label>
<input name="checkbox6" id="checkbox6" type="checkbox">
<label for="checkbox6">
Connect to uniwide
</label>
</fieldset>
</div>
<a data-role="button" data-transition="fade" href="#help">
I have another question
</a>
</div>
</div>
<script>
//App custom javascript
$(document).ready(function() {
$("a").click(function() {
$("#emailhelp").attr('href', "mailto:[email protected]?subject=installfest%20helper%20-%20" + location.hash);
});
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11576720-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>