OS: ubuntu-16.04.3-desktop-amd64


※ java 의 jdk 가 설치되어 있어야 합니다.

 -> java 설치


1. eclipse.org 로 접속합니다.

* DOWNLOAD 버튼을 클릭합니다.



2. DOWNLOAD 버튼을 클릭합니다.



3. 다운로드를 클릭 후 아래의 페이지가 출력됩니다.



4. 별도의 경로를 지정하지 않을 경우 로그인된 계정의 홈 디렉터리 이하 Download 디렉터리에 다운로드됩니다.

1
2
3
4
5
6
$ ll ~/Downloads/
total 46908
drwxr-xr-x  2 user user     4096 10월 24 12:15 ./
drwxr-xr-x 18 user user     4096 10월 24 11:10 ../
-rw-rw-r--  1 user user 48022873 10월 24 12:15 eclipse-inst-linux64.tar.gz
 
cs



5. eclipse-inst-linux64.tar.gz 파일을 압축 해제합니다.

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
$ tar -xvzf ~/Downloads/eclipse-inst-linux64.tar.gz
eclipse-installer/
eclipse-installer/p2/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1497422274845.profile.gz
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1497422274847.profile.gz
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1497422276301.profile.gz
eclipse-installer/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1497422276693.profile.gz
eclipse-installer/p2/org.eclipse.equinox.p2.engine/.settings/
eclipse-installer/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
eclipse-installer/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
eclipse-installer/p2/org.eclipse.equinox.p2.core/
eclipse-installer/p2/org.eclipse.equinox.p2.core/cache/
eclipse-installer/p2/org.eclipse.equinox.p2.core/cache/binary/
eclipse-installer/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.7.0.v20170612-1255
eclipse-installer/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.oomph.setup.installer.product.executable.gtk.linux.x86_64_1.7.0.v20170612-1255
eclipse-installer/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
eclipse-installer/plugins/
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/META-INF/
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/META-INF/MANIFEST.MF
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/META-INF/ECLIPSE_.SF
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/META-INF/ECLIPSE_.RSA
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/launcher.gtk.linux.x86_64.properties
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/eclipse_1624.so
eclipse-installer/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.500.v20170531-1133/about.html
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/META-INF/
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/META-INF/MANIFEST.MF
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/META-INF/ECLIPSE_.SF
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/META-INF/ECLIPSE_.RSA
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_migrate48.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/ov_wbbasics48.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_updates48.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_eclplatform48.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/arrow.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_eclcommunity48_hov.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_eclplatform48_hov.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/ov_wbbasics48_hov.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_eclcommunity48.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_updates48_hov.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/topiclabel/wn_migrate48_hov.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winXPOlive.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winXPTSFrame.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winXPBluHandle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/macGrey.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/gtkHandle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/macTSFrame.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winClassicHandle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/win7.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/dragHandle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winXPBluTSFrame.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winClassicTSFrame.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/win7Handle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/win7TSFrame.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/gtkTSFrame.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/macHandle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winXPBlue.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/images/winXPHandle.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/overview.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/overview.properties
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/migrate.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/whatsnew.properties
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/migrate.properties
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/css/whatsnew.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/whatsnewExtensionContent2.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/migrateExtensionContent.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/whatsnewExtensionContent3.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/whatsnewExtensionContent1.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro/overviewExtensionContent.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/plugin_customization.properties
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse16.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse48.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/macosx_narrow_book.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/plugin.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/narrow_book.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse512.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse32.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse_lg.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/introData.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/intro-eclipse.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/plugin_customization.ini
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/about.properties
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse24.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse32.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse48.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/platform.jar
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/disabled_book.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/splash.bmp
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/about.mappings
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/about.ini
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/book.css
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse128.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse64.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/plugin.properties
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse256.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/about.html
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/LegacyIDE.e4xmi
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse1024.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/helpData.xml
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse256.png
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse16.gif
eclipse-installer/plugins/org.eclipse.platform_4.7.0.v20170612-0950/eclipse22.png
eclipse-installer/plugins/org.eclipse.oomph.setup.installer_1.8.0.v20170327-1117.jar
eclipse-installer/plugins/org.eclipse.oomph.p2.edit_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.ui.questionnaire_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.p2_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.edit_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.setup_1.8.0.v20170408-0745.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.core_1.8.0.v20170531-0903.jar
eclipse-installer/plugins/org.eclipse.oomph.base.edit_1.8.0.v20170318-0624.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.doc_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.jreinfo_1.8.0.v20170318-0624.jar
eclipse-installer/plugins/org.eclipse.oomph.base_1.8.0.v20170318-0624.jar
eclipse-installer/plugins/org.eclipse.oomph.p2.ui_1.8.0.v20170327-1117.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.p2.edit_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.preferences_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.util.doc_1.8.0.v20170318-0624.jar
eclipse-installer/plugins/org.eclipse.oomph.p2.core_1.8.0.v20170410-0909.jar
eclipse-installer/plugins/org.eclipse.oomph.ui_1.8.0.v20170327-1117.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.p2_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.p2.doc_1.8.0.v20170318-0419.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.ui_1.8.0.v20170530-1735.jar
eclipse-installer/plugins/com.ibm.icu_58.2.0.v20170418-1837.jar
eclipse-installer/plugins/com.jcraft.jsch_0.1.54.v20170116-1932.jar
eclipse-installer/plugins/javax.annotation_1.2.0.v201602091430.jar
eclipse-installer/plugins/javax.inject_1.0.0.v20091030.jar
eclipse-installer/plugins/org.apache.batik.css_1.8.0.v20170214-1941.jar
eclipse-installer/plugins/org.apache.batik.util_1.8.0.v20170214-1941.jar
eclipse-installer/plugins/org.apache.batik.util.gui_1.8.0.v20170214-1941.jar
eclipse-installer/plugins/org.apache.commons.codec_1.9.0.v20170208-1614.jar
eclipse-installer/plugins/org.apache.commons.jxpath_1.3.0.v200911051830.jar
eclipse-installer/plugins/org.apache.commons.logging_1.1.1.v201101211721.jar
eclipse-installer/plugins/org.apache.felix.gogo.command_0.10.0.v201209301215.jar
eclipse-installer/plugins/org.apache.felix.gogo.runtime_0.10.0.v201209301036.jar
eclipse-installer/plugins/org.apache.felix.gogo.shell_0.10.0.v201212101605.jar
eclipse-installer/plugins/org.apache.felix.scr_2.0.10.v20170501-2007.jar
eclipse-installer/plugins/org.apache.httpcomponents.httpclient_4.5.2.v20170210-0925.jar
eclipse-installer/plugins/org.apache.httpcomponents.httpcore_4.4.6.v20170210-0925.jar
eclipse-installer/plugins/org.eclipse.core.commands_3.9.0.v20170530-1048.jar
eclipse-installer/plugins/org.eclipse.core.contenttype_3.6.0.v20170207-1037.jar
eclipse-installer/plugins/org.eclipse.core.databinding_1.6.100.v20170515-1119.jar
eclipse-installer/plugins/org.eclipse.core.databinding.beans_1.4.0.v20170210-0856.jar
eclipse-installer/plugins/org.eclipse.core.databinding.observable_1.6.100.v20170515-1119.jar
eclipse-installer/plugins/org.eclipse.core.databinding.property_1.6.100.v20170515-1119.jar
eclipse-installer/plugins/org.eclipse.core.expressions_3.6.0.v20170207-1037.jar
eclipse-installer/plugins/org.eclipse.core.filebuffers_3.6.100.v20170203-1130.jar
eclipse-installer/plugins/org.eclipse.core.filesystem_1.7.0.v20170406-1337.jar
eclipse-installer/plugins/org.eclipse.core.jobs_3.9.0.v20170322-0013.jar
eclipse-installer/plugins/org.eclipse.core.net_1.3.100.v20170516-0820.jar
eclipse-installer/plugins/org.eclipse.core.net.linux.x86_64_1.2.0.v20160323-1650.jar
eclipse-installer/plugins/org.eclipse.core.runtime_3.13.0.v20170207-1030.jar
eclipse-installer/plugins/org.eclipse.e4.core.commands_0.12.100.v20170513-0428.jar
eclipse-installer/plugins/org.eclipse.e4.core.contexts_1.6.0.v20170322-1144.jar
eclipse-installer/plugins/org.eclipse.e4.core.di_1.6.100.v20170421-1418.jar
eclipse-installer/plugins/org.eclipse.e4.core.di.annotations_1.6.0.v20170119-2002.jar
eclipse-installer/plugins/org.eclipse.e4.core.di.extensions_0.15.0.v20170228-1728.jar
eclipse-installer/plugins/org.eclipse.e4.core.di.extensions.supplier_0.15.0.v20170407-0928.jar
eclipse-installer/plugins/org.eclipse.e4.core.services_2.1.0.v20170407-0928.jar
eclipse-installer/plugins/org.eclipse.e4.emf.xpath_0.2.0.v20160630-0728.jar
eclipse-installer/plugins/org.eclipse.e4.ui.bindings_0.12.0.v20170312-2302.jar
eclipse-installer/plugins/org.eclipse.e4.ui.css.core_0.12.100.v20170526-1635.jar
eclipse-installer/plugins/org.eclipse.e4.ui.css.swt_0.13.0.v20170516-1617.jar
eclipse-installer/plugins/org.eclipse.e4.ui.css.swt.theme_0.11.0.v20170312-2302.jar
eclipse-installer/plugins/org.eclipse.e4.ui.di_1.2.100.v20170414-1137.jar
eclipse-installer/plugins/org.eclipse.e4.ui.dialogs_1.1.100.v20170104-1425.jar
eclipse-installer/plugins/org.eclipse.e4.ui.model.workbench_2.0.0.v20170228-1842.jar
eclipse-installer/plugins/org.eclipse.e4.ui.services_1.3.0.v20170307-2032.jar
eclipse-installer/plugins/org.eclipse.e4.ui.swt.gtk_1.0.200.v20170513-0428.jar
eclipse-installer/plugins/org.eclipse.e4.ui.widgets_1.2.0.v20160630-0736.jar
eclipse-installer/plugins/org.eclipse.e4.ui.workbench_1.5.0.v20170412-0908.jar
eclipse-installer/plugins/org.eclipse.e4.ui.workbench.addons.swt_1.3.1.v20170319-1442.jar
eclipse-installer/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.14.100.v20170612-1255.jar
eclipse-installer/plugins/org.eclipse.e4.ui.workbench.swt_0.14.100.v20170519-1601.jar
eclipse-installer/plugins/org.eclipse.e4.ui.workbench3_0.14.0.v20160630-0740.jar
eclipse-installer/plugins/org.eclipse.ecf_3.8.0.v20170104-0657.jar
eclipse-installer/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20160817-1024.jar
eclipse-installer/plugins/org.eclipse.ecf.identity_3.8.0.v20161203-2153.jar
eclipse-installer/plugins/org.eclipse.ecf.provider.filetransfer_3.2.300.v20161203-1840.jar
eclipse-installer/plugins/org.eclipse.ecf.provider.filetransfer.httpclient4_1.1.200.v20170314-0133.jar
eclipse-installer/plugins/org.eclipse.ecf.provider.filetransfer.httpclient4.ssl_1.1.0.v20160817-1024.jar
eclipse-installer/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20160817-1024.jar
eclipse-installer/plugins/org.eclipse.ecf.ssl_1.2.0.v20160817-1024.jar
eclipse-installer/plugins/org.eclipse.emf.common_2.13.0.v20170503-0428.jar
eclipse-installer/plugins/org.eclipse.emf.common.ui_2.12.0.v20170504-0807.jar
eclipse-installer/plugins/org.eclipse.emf.ecore_2.13.0.v20170503-0428.jar
eclipse-installer/plugins/org.eclipse.emf.ecore.change_2.11.0.v20170503-0428.jar
eclipse-installer/plugins/org.eclipse.emf.ecore.xmi_2.13.0.v20170503-0428.jar
eclipse-installer/plugins/org.eclipse.emf.edit_2.12.0.v20170504-0807.jar
eclipse-installer/plugins/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807.jar
eclipse-installer/plugins/org.eclipse.equinox.app_1.3.400.v20150715-1528.jar
eclipse-installer/plugins/org.eclipse.equinox.bidi_1.1.0.v20160728-1031.jar
eclipse-installer/plugins/org.eclipse.equinox.common_3.9.0.v20170207-1454.jar
eclipse-installer/plugins/org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar
eclipse-installer/plugins/org.eclipse.equinox.console_1.1.300.v20170512-2111.jar
eclipse-installer/plugins/org.eclipse.equinox.ds_1.5.0.v20170307-1429.jar
eclipse-installer/plugins/org.eclipse.equinox.event_1.4.0.v20170105-1446.jar
eclipse-installer/plugins/org.eclipse.equinox.frameworkadmin_2.0.300.v20160504-1450.jar
eclipse-installer/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.800.v20170524-1345.jar
eclipse-installer/plugins/org.eclipse.equinox.launcher_1.4.0.v20161219-1356.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.600.v20170511-1106.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.console_1.0.600.v20170511-1106.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.core_2.4.100.v20160419-0834.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.director_2.3.300.v20160504-1450.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.director.app_1.0.500.v20160419-0834.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.engine_2.5.0.v20170319-2002.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.300.v20160504-1450.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.500.v20160504-1450.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.metadata_2.3.200.v20170511-1106.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.400.v20170511-1106.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.operations_2.4.300.v20170511-1106.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.publisher_1.4.200.v20170511-1216.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.2.200.v20170511-1216.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.repository_2.3.300.v20170511-1216.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.repository.tools_2.1.400.v20170511-1216.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.500.v20170516-0526.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.2.200.v20170511-1216.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.transport.ecf_1.1.300.v20161004-0244.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.ui_2.5.0.v20170505-1031.jar
eclipse-installer/plugins/org.eclipse.equinox.p2.updatesite_1.0.600.v20160504-1450.jar
eclipse-installer/plugins/org.eclipse.equinox.preferences_3.7.0.v20170126-2132.jar
eclipse-installer/plugins/org.eclipse.equinox.registry_3.7.0.v20170222-1344.jar
eclipse-installer/plugins/org.eclipse.equinox.security_1.2.300.v20170505-1235.jar
eclipse-installer/plugins/org.eclipse.equinox.security.linux.x86_64_1.0.100.v20170504-1307.jar
eclipse-installer/plugins/org.eclipse.equinox.security.ui_1.1.400.v20170505-1235.jar
eclipse-installer/plugins/org.eclipse.equinox.simpleconfigurator_1.2.0.v20170110-1705.jar
eclipse-installer/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.300.v20170515-0721.jar
eclipse-installer/plugins/org.eclipse.equinox.util_1.0.500.v20130404-1337.jar
eclipse-installer/plugins/org.eclipse.help_3.8.0.v20160823-1530.jar
eclipse-installer/plugins/org.eclipse.jface_3.13.0.v20170503-1507.jar
eclipse-installer/plugins/org.eclipse.jface.databinding_1.8.100.v20170503-1507.jar
eclipse-installer/plugins/org.eclipse.jface.text_3.12.0.v20170523-1043.jar
eclipse-installer/plugins/org.eclipse.jsch.core_1.3.0.v20160422-1917.jar
eclipse-installer/plugins/org.eclipse.jsch.ui_1.3.0.v20160323-1650.jar
eclipse-installer/plugins/org.eclipse.nebula.widgets.tablecombo_1.0.0.201706132015.jar
eclipse-installer/plugins/org.eclipse.osgi_3.12.0.v20170512-1932.jar
eclipse-installer/plugins/org.eclipse.osgi.compatibility.state_1.1.0.v20170516-1513.jar
eclipse-installer/plugins/org.eclipse.osgi.services_3.6.0.v20170228-1906.jar
eclipse-installer/plugins/org.eclipse.osgi.util_3.4.0.v20170111-1608.jar
eclipse-installer/plugins/org.eclipse.rcp_4.7.0.v20170612-0950.jar
eclipse-installer/plugins/org.eclipse.swt_3.106.0.v20170608-0516.jar
eclipse-installer/plugins/org.eclipse.swt.gtk.linux.x86_64_3.106.0.v20170608-0516.jar
eclipse-installer/plugins/org.eclipse.text_3.6.100.v20170203-0814.jar
eclipse-installer/plugins/org.eclipse.ui_3.109.0.v20170411-1742.jar
eclipse-installer/plugins/org.eclipse.ui.forms_3.7.100.v20170517-1755.jar
eclipse-installer/plugins/org.eclipse.ui.ide_3.13.0.v20170516-1223.jar
eclipse-installer/plugins/org.eclipse.ui.intro_3.5.100.v20170418-0710.jar
eclipse-installer/plugins/org.eclipse.ui.net_1.3.100.v20170516-0820.jar
eclipse-installer/plugins/org.eclipse.ui.views_3.9.0.v20170226-1833.jar
eclipse-installer/plugins/org.eclipse.ui.workbench_3.110.0.v20170612-1255.jar
eclipse-installer/plugins/org.eclipse.update.configurator_3.3.400.v20160506-0750.jar
eclipse-installer/plugins/org.eclipse.userstorage_1.1.0.v20170328-0205.jar
eclipse-installer/plugins/org.eclipse.userstorage.oauth_1.0.0.v20170529-1750.jar
eclipse-installer/plugins/org.eclipse.userstorage.ui_1.0.2.v20170526-1605.jar
eclipse-installer/plugins/org.sat4j.core_2.3.5.v201308161310.jar
eclipse-installer/plugins/org.sat4j.pb_2.3.5.v201404071733.jar
eclipse-installer/plugins/org.tukaani.xz_1.5.0.v20170111-1717.jar
eclipse-installer/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
eclipse-installer/plugins/org.w3c.dom.events_3.0.0.draft20060413_v201105210656.jar
eclipse-installer/plugins/org.w3c.dom.smil_1.0.1.v200903091627.jar
eclipse-installer/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar
eclipse-installer/plugins/org.eclipse.oomph.jreinfo.ui_1.8.0.v20170327-1117.jar
eclipse-installer/plugins/org.eclipse.oomph.setup.sync_1.8.0.v20170530-1735.jar
eclipse-installer/plugins/org.eclipse.oomph.extractor.lib_1.3.0.v20161116-0647.jar
eclipse-installer/plugins/org.eclipse.oomph.util_1.8.0.v20170327-1117.jar
eclipse-installer/features/
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/META-INF/
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/rootfiles/
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/rootfiles/about.html
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/rootfiles/epl-v10.html
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/rootfiles/notice.html
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/about.html
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/epl-v10.html
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/license.html
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/feature.xml
eclipse-installer/features/org.eclipse.oomph.p2_1.8.0.v20170410-0909/feature.properties
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/META-INF/
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/icons/
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/icons/window-bad.ico
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/icons/window.icns
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/icons/window.ico
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/icons/window.xpm
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/about.html
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/epl-v10.html
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/feature.xml
eclipse-installer/features/org.eclipse.oomph.setup.installer_1.8.0.v20170612-1255/feature.properties
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/META-INF/
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/feature.xml
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/epl-v10.html
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/feature.properties
eclipse-installer/features/org.eclipse.e4.rcp_1.6.0.v20170612-1255/license.html
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/META-INF/
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/feature.xml
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/epl-v10.html
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/feature.properties
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/about.html
eclipse-installer/features/org.eclipse.ecf.core.feature_1.4.0.v20170516-2248/license.html
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.core.ssl.feature/
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.core.ssl.feature/pom.xml
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.core.ssl.feature/pom.properties
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/feature.xml
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/epl-v10.html
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/feature.properties
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/about.html
eclipse-installer/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20170110-1317/license.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/META-INF/
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/asl-v20.txt
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/feature.xml
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/epl-v10.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/feature.properties
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/about.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.feature_3.13.7.v20170516-2248/license.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/META-INF/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/asl-v20.txt
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/feature.xml
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/epl-v10.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/feature.properties
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/about.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.7.v20170516-2248/license.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature/
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature/pom.xml
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature/pom.properties
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/asl-v20.txt
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/feature.xml
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/epl-v10.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/feature.properties
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/about.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20170110-1317/license.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.filetransfer.ssl.feature/
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.filetransfer.ssl.feature/pom.xml
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/maven/org.eclipse.ecf/org.eclipse.ecf.filetransfer.ssl.feature/pom.properties
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/feature.xml
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/epl-v10.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/feature.properties
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/about.html
eclipse-installer/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20170110-1317/license.html
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/META-INF/
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/META-INF/eclipse.inf
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/epl-v10.html
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/feature.properties
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/feature.xml
eclipse-installer/features/org.eclipse.emf.common_2.13.0.v20170503-0428/license.html
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/META-INF/
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/META-INF/eclipse.inf
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/epl-v10.html
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/feature.properties
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/feature.xml
eclipse-installer/features/org.eclipse.emf.common.ui_2.12.0.v20170504-0807/license.html
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/META-INF/
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/META-INF/eclipse.inf
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/epl-v10.html
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/feature.properties
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/feature.xml
eclipse-installer/features/org.eclipse.emf.ecore_2.13.0.v20170503-0428/license.html
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/META-INF/
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/META-INF/eclipse.inf
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/epl-v10.html
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/feature.properties
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/feature.xml
eclipse-installer/features/org.eclipse.emf.edit_2.12.0.v20170504-0807/license.html
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/META-INF/
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/META-INF/eclipse.inf
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/epl-v10.html
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/feature.properties
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/feature.xml
eclipse-installer/features/org.eclipse.emf.edit.ui_2.13.0.v20170504-0807/license.html
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/META-INF/
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/feature.xml
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/epl-v10.html
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/feature.properties
eclipse-installer/features/org.eclipse.equinox.p2.core.feature_1.4.0.v20170524-1345/license.html
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/META-INF/
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/META-INF/MANIFEST.MF
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/META-INF/ECLIPSE_.SF
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/META-INF/ECLIPSE_.RSA
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/feature.xml
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/epl-v10.html
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/feature.properties
eclipse-installer/features/org.eclipse.rcp_4.7.0.v20170612-1255/license.html
eclipse-installer/readme/
eclipse-installer/readme/readme_eclipse.html
eclipse-installer/configuration/
eclipse-installer/configuration/org.eclipse.equinox.simpleconfigurator/
eclipse-installer/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info
eclipse-installer/configuration/org.eclipse.update/
eclipse-installer/configuration/org.eclipse.update/platform.xml
eclipse-installer/configuration/config.ini
eclipse-installer/artifacts.xml
eclipse-installer/icon.xpm
eclipse-installer/eclipse-inst
eclipse-installer/eclipse-inst.ini
 
cs



6. 압축을 해제 후 GUI 환경으로 돌아가서 해당 파일을 찾아 실행합니다.

* 홈 디렉터리 내에 Downloads 를 더블 클릭합니다.



7. eclipse-installer 를 더블 클릭합니다.



8. eclipse-inst 실행 파일을 더블 클릭합니다.



9. 해당 사양에 맞는 패키지를 선택하여 설치를 진행합니다.

* Eclipse IDE for Java Developers 를 설치하겠습니다.



10. INSTALL 버튼을 클릭합니다.



11. 설치를 진행 중입니다.



12. 아래와 같은 팝업창이 나올 경우 Accept 버튼을 눌러 동의하고 진행을 계속합니다.

* 동의 여부를 묻는 창이 하나 이상 나올 수 있는 경우 "Remember accepted licenses" 를 체크 후 동의합니다.



13. 설치가 완료된 후에 아래와 같이 LAUNCH 버튼을 눌러 eclipse 를 실행합니다.



14-1. eclipse 실행



14-2. 다음과 같이 Workspace 디렉터리를 지정한 후 Launch 버튼을 클릭합니다.

* 위 설정에 대해서 시작할 때마다 다시 묻는 것을 방지하려면 "Use this as the default and do not ask again" 을 체크 후 Launch 를 클릭합니다.



14-3. eclipse



'Operating System > Linux' 카테고리의 다른 글

ubuntu zip 설치, 압축 및 압축 해제  (0) 2017.11.06
ruby 설치  (0) 2017.10.31
ubuntu 자바 설치  (0) 2017.10.19
ubuntu 패키지 목록 확인  (0) 2017.10.19
ubuntu git 설치  (0) 2017.10.19


1. 자바 설치 여부를 확인합니다.

1
2
3
4
5
6
7
8
9
10
$ java -version
The program 'java' can be found in the following packages:
 * default-jre
 * gcj-5-jre-headless
 * openjdk-8-jre-headless
 * gcj-4.8-jre-headless
 * gcj-4.9-jre-headless
 * openjdk-9-jre-headless
Try: sudo apt install <selected package>
 
cs

* java -version 혹은 javac -version 으로 확인합니다.



2. 패키지 인덱스를 업데이트합니다.

1
2
3
4
5
6
7
8
9
10
$ sudo apt-get update
Hit:1 http://kr.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 http://kr.archive.ubuntu.com/ubuntu xenial-backports InRelease
Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Hit:5 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease
Hit:6 https://download.docker.com/linux/ubuntu xenial InRelease
Fetched 102 kB in 2s (39.2 kB/s)
Reading package lists... Done
 
cs



3. apt 리포지토리에 개인 패키지 저장소 정보를 추가합니다.

1
2
3
4
5
6
7
8
9
10
11
$ sudo add-apt-repository -y ppa:webupd8team/java
gpg: keyring `/tmp/tmpioqd13si/secring.gpg' created
gpg: keyring `/tmp/tmpioqd13si/pubring.gpg' created
gpg: requesting key EEA14886 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpioqd13si/trustdb.gpg: trustdb created
gpg: key EEA14886: public key "Launchpad VLC" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK
 
cs



4. 패키지 인덱스 정보를 업데이트합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
$ sudo apt update
Hit:1 http://kr.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 https://download.docker.com/linux/ubuntu xenial InRelease
Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Hit:5 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease
Hit:6 http://kr.archive.ubuntu.com/ubuntu xenial-backports InRelease
Fetched 102 kB in 2s (48.3 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
100 packages can be upgraded. Run 'apt list --upgradable' to see them.
 
cs



5. java 설치

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
$ sudo apt install -y oracle-java8-installer
Reading package lists... Done
Building dependency tree
Reading state information... Done
Suggested packages:
  binfmt-support visualvm ttf-baekmuk | ttf-unfonts | ttf-unfonts-core ttf-kochi-gothic | ttf-sazanami-gothic
  ttf-kochi-mincho | ttf-sazanami-mincho ttf-arphic-uming
Recommended packages:
  gsfonts-x11 oracle-java8-set-default
The following packages will be upgraded:
  oracle-java8-installer
1 upgraded, 0 newly installed, 0 to remove and 99 not upgraded.
1 not fully installed or removed.
Need to get 32.9 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial/main amd64 oracle-java8-installer all 8u151-1~webupd8~0 [32.9 kB]
Fetched 32.9 kB in 1s (31.9 kB/s)
Preconfiguring packages ...
(Reading database ... 215673 files and directories currently installed.)
Preparing to unpack .../oracle-java8-installer_8u151-1~webupd8~0_all.deb ...
oracle-license-v1-1 license has already been accepted
Unpacking oracle-java8-installer (8u151-1~webupd8~0) over (8u144-1~webupd8~0) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160824-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Processing triggers for shared-mime-info (1.5-2ubuntu0.1) ...
Setting up oracle-java8-installer (8u151-1~webupd8~0) ...
Using wget settings from /var/cache/oracle-jdk8-installer/wgetrc
Downloading Oracle Java 8...
--2017-10-24 10:17:08--  http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e                                     758a0de34e24606bca991d704f6dcbf/jdk-8u151-linux-x64.tar.gz
Resolving download.oracle.com (download.oracle.com)... 121.254.136.10, 121.254.1                                     36.18
Connecting to download.oracle.com (download.oracle.com)|121.254.136.10|:80... co                                     nnected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://edelivery.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e246                                     06bca991d704f6dcbf/jdk-8u151-linux-x64.tar.gz [following]
--2017-10-24 10:17:08--  https://edelivery.oracle.com/otn-pub/java/jdk/8u151-b12                                     /e758a0de34e24606bca991d704f6dcbf/jdk-8u151-linux-x64.tar.gz
Resolving edelivery.oracle.com (edelivery.oracle.com)... 104.74.178.67, 2600:141                                     7:e:28e::2d3e, 2600:1417:e:28b::2d3e
Connecting to edelivery.oracle.com (edelivery.oracle.com)|104.74.178.67|:443...                                      connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/jdk-8u151-linux-x64.tar.gz?AuthParam=1508807949_4547063169aa1d1617794b8b2df71b41 [following]
--2017-10-24 10:17:09--  http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/jdk-8u151-linux-x64.tar.gz?AuthParam=1508807949_4547063169aa1d1617794b8b2df71b41
Connecting to download.oracle.com (download.oracle.com)|121.254.136.10|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 189736377 (181M) [application/x-gzip]
Saving to: ‘jdk-8u151-linux-x64.tar.gz’
 
     0K ........ ........ ........ ........ ........ ........  1% 10.8M 17s
  3072K ........ ........ ........ ........ ........ ........  3% 11.3M 16s
  6144K ........ ........ ........ ........ ........ ........  4% 11.4M 15s
  9216K ........ ........ ........ ........ ........ ........  6% 11.3M 15s
 12288K ........ ........ ........ ........ ........ ........  8% 11.3M 15s
 15360K ........ ........ ........ ........ ........ ........  9% 11.3M 15s
 18432K ........ ........ ........ ........ ........ ........ 11% 11.3M 14s
 21504K ........ ........ ........ ........ ........ ........ 13% 11.3M 14s
 24576K ........ ........ ........ ........ ........ ........ 14% 11.3M 14s
 27648K ........ ........ ........ ........ ........ ........ 16% 11.3M 13s
 30720K ........ ........ ........ ........ ........ ........ 18% 11.3M 13s
 33792K ........ ........ ........ ........ ........ ........ 19% 11.3M 13s
 36864K ........ ........ ........ ........ ........ ........ 21% 11.3M 13s
 39936K ........ ........ ........ ........ ........ ........ 23% 11.3M 12s
 43008K ........ ........ ........ ........ ........ ........ 24% 11.3M 12s
 46080K ........ ........ ........ ........ ........ ........ 26% 11.2M 12s
 49152K ........ ........ ........ ........ ........ ........ 28% 11.3M 12s
 52224K ........ ........ ........ ........ ........ ........ 29% 11.3M 11s
 55296K ........ ........ ........ ........ ........ ........ 31% 11.3M 11s
 58368K ........ ........ ........ ........ ........ ........ 33% 11.3M 11s
 61440K ........ ........ ........ ........ ........ ........ 34% 11.3M 10s
 64512K ........ ........ ........ ........ ........ ........ 36% 11.3M 10s
 67584K ........ ........ ........ ........ ........ ........ 38% 11.3M 10s
 70656K ........ ........ ........ ........ ........ ........ 39% 11.2M 10s
 73728K ........ ........ ........ ........ ........ ........ 41% 11.3M 9s
 76800K ........ ........ ........ ........ ........ ........ 43% 11.3M 9s..]
 79872K ........ ........ ........ ........ ........ ........ 44% 11.3M 9s
 82944K ........ ........ ........ ........ ........ ........ 46% 11.3M 9s
 86016K ........ ........ ........ ........ ........ ........ 48% 11.3M 8s
 89088K ........ ........ ........ ........ ........ ........ 49% 11.3M 8s
 92160K ........ ........ ........ ........ ........ ........ 51% 11.3M 8s
 95232K ........ ........ ........ ........ ........ ........ 53% 10.5M 8s
 98304K ........ ........ ........ ........ ........ ........ 54% 12.2M 7s
101376K ........ ........ ........ ........ ........ ........ 56% 11.1M 7s
104448K ........ ........ ........ ........ ........ ........ 58% 10.9M 7s
107520K ........ ........ ........ ........ ........ ........ 59% 11.3M 6s
110592K ........ ........ ........ ........ ........ ........ 61% 10.4M 6s
113664K ........ ........ ........ ........ ........ ........ 63% 10.5M 6s
116736K ........ ........ ........ ........ ........ ........ 64% 11.0M 6s
119808K ........ ........ ........ ........ ........ ........ 66% 11.3M 5s
122880K ........ ........ ........ ........ ........ ........ 67% 11.3M 5s
125952K ........ ........ ........ ........ ........ ........ 69% 11.3M 5s
129024K ........ ........ ........ ........ ........ ........ 71% 11.3M 5s
132096K ........ ........ ........ ........ ........ ........ 72% 11.3M 4s
135168K ........ ........ ........ ........ ........ ........ 74% 11.4M 4s
138240K ........ ........ ........ ........ ........ ........ 76% 11.3M 4s
141312K ........ ........ ........ ........ ........ ........ 77% 11.3M 4s
144384K ........ ........ ........ ........ ........ ........ 79% 10.6M 3s
147456K ........ ........ ........ ........ ........ ........ 81% 12.1M 3s
150528K ........ ........ ........ ........ ........ ........ 82% 11.3M 3s
153600K ........ ........ ........ ........ ........ ........ 84% 11.3M 2s
156672K ........ ........ ........ ........ ........ ........ 86% 11.3M 2s
159744K ........ ........ ........ ........ ........ ........ 87% 11.3M 2s
162816K ........ ........ ........ ........ ........ ........ 89% 10.5M 2s
165888K ........ ........ ........ ........ ........ ........ 91% 12.0M 1s
168960K ........ ........ ........ ........ ........ ........ 92% 11.3M 1s
172032K ........ ........ ........ ........ ........ ........ 94% 10.8M 1s
175104K ........ ........ ........ ........ ........ ........ 96% 11.3M 1s
178176K ........ ........ ........ ........ ........ ........ 97% 11.3M 0s
181248K ........ ........ ........ ........ ........ ........ 99% 11.3M 0s
184320K ........ .......                                     100% 11.4M=16s
 
2017-10-24 10:17:25 (11.2 MB/s) - ‘jdk-8u151-linux-x64.tar.gz’ saved [189736377/189736377]
 
Download done.
Removing outdated cached downloads...
update-alternatives: error: no alternatives for java
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/ControlPanel to provide /usr/bin/ControlPanel (ControlPanel) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/java to provide /usr/bin/java (java) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/javaws to provide /usr/bin/javaws (javaws) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/jcontrol to provide /usr/bin/jcontrol (jcontrol) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/jjs to provide /usr/bin/jjs (jjs) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/orbd to provide /usr/bin/orbd (orbd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/policytool to provide /usr/bin/policytool (policytool) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/servertool to provide /usr/bin/servertool (servertool) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/tnameserv to provide /usr/bin/tnameserv (tnameserv) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/appletviewer to provide /usr/bin/appletviewer (appletviewer) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/extcheck to provide /usr/bin/extcheck (extcheck) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/idlj to provide /usr/bin/idlj (idlj) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jar to provide /usr/bin/jar (jar) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jarsigner to provide /usr/bin/jarsigner (jarsigner) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/javac to provide /usr/bin/javac (javac) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/javadoc to provide /usr/bin/javadoc (javadoc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/javafxpackager to provide /usr/bin/javafxpackager (javafxpackager) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/javah to provide /usr/bin/javah (javah) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/javap to provide /usr/bin/javap (javap) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/javapackager to provide /usr/bin/javapackager (javapackager) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jcmd to provide /usr/bin/jcmd (jcmd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jconsole to provide /usr/bin/jconsole (jconsole) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jdb to provide /usr/bin/jdb (jdb) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jdeps to provide /usr/bin/jdeps (jdeps) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jhat to provide /usr/bin/jhat (jhat) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jinfo to provide /usr/bin/jinfo (jinfo) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jmap to provide /usr/bin/jmap (jmap) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jmc to provide /usr/bin/jmc (jmc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jps to provide /usr/bin/jps (jps) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jrunscript to provide /usr/bin/jrunscript (jrunscript) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jsadebugd to provide /usr/bin/jsadebugd (jsadebugd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jstack to provide /usr/bin/jstack (jstack) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jstat to provide /usr/bin/jstat (jstat) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jstatd to provide /usr/bin/jstatd (jstatd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/jvisualvm to provide /usr/bin/jvisualvm (jvisualvm) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/native2ascii to provide /usr/bin/native2ascii (native2ascii) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/rmic to provide /usr/bin/rmic (rmic) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/schemagen to provide /usr/bin/schemagen (schemagen) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/serialver to provide /usr/bin/serialver (serialver) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/wsgen to provide /usr/bin/wsgen (wsgen) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/wsimport to provide /usr/bin/wsimport (wsimport) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/bin/xjc to provide /usr/bin/xjc (xjc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libnpjp2.so to provide /usr/lib/mozilla/plugins/libjavaplugin.so (mozilla-javaplugin.so) in auto mode
Oracle JDK 8 installed
 
#####Important########
To set Oracle JDK8 as default, install the "oracle-java8-set-default" package.
E.g.: sudo apt install oracle-java8-set-default
On Ubuntu systems, oracle-java8-set-default is most probably installed
automatically with this package.
######################
 
cs

* -y 옵션은 설치 여부를 묻지 않고 자동으로 y 처리할 경우 사용합니다.



6. 아래 화면은 -y 옵션을 주었을 경우 출력되지 않습니다.

6-1. license 동의서


6-2. license 동의서

* 위와 같이 Yes 를 선택하고 다음으로 넘어갑니다.



7. 설치 후 java 버전 출력 여부 확인

1
2
3
4
5
$ java -version
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
 
cs



8. java 설치 및 확인 작업이 끝나면 환경 변수를 설정합니다.

8-1. /etc/environment 파일을 편집합니다.

1
2
$ sudo vi /etc/environment
 
cs


8-2. 하단에 아래와 같이 추가 후 저장합니다.

1
2
JAVA_HOME="/usr/lib/jvm/java-8-oracle"
 
cs


8-3. 해당 부분을 반영합니다.

1
2
$ source /etc/environment
 
cs


8-4. /etc/profile 파일을 편집합니다.

1
2
$ sudo vi /etc/profile
 
cs


8-5. 하단에 아래와 같이 추가 후 저장합니다.

1
2
3
4
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
export CLASSPATH=.:$JAVA_HOME/jre/lib/ext:$JAVA_HOME/lib/tools.jar
PATH=$PATH:$JAVA_HOME/bin
 
cs


8-6. 해당 부분을 반영합니다.

1
2
$ source /etc/profile
 
cs


8-7. ~/.bashrc 파일을 편집합니다.

1
2
$ vi ~/.bashrc
 
cs


8-8. 하단에 아래와 같이 추가 후 저장합니다.

1
2
export PATH=$PATH:$JAVA_HOME/bin
 
cs


8-9. 해당 부분을 반영합니다.

1
2
$ source ~/.bashrc
 
cs



'Operating System > Linux' 카테고리의 다른 글

ruby 설치  (0) 2017.10.31
ubuntu desktop eclipse 설치  (0) 2017.10.24
ubuntu 패키지 목록 확인  (0) 2017.10.19
ubuntu git 설치  (0) 2017.10.19
ubuntu vim 설치  (0) 2017.10.19


1. 설치된 패키지 목록을 확인합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ dpkg -l
Desired=Unknown/Install/Remove/Purge/Hold
 Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
/ Name                    Version          Architecture     Description
+++-=======================-================-================-===================================================
ii  a11y-profile-manager-in 0.1.10-0ubuntu3  amd64            Accessibility Profile Manager - Unity desktop indic
ii  account-plugin-facebook 0.12+16.04.20160 all              GNOME Control Center account plugin for single sign
ii  account-plugin-flickr   0.12+16.04.20160 all              GNOME Control Center account plugin for single sign
ii  account-plugin-google   0.12+16.04.20160 all              GNOME Control Center account plugin for single sign
 
...
 
ii  zerofree                1.0.3-1          amd64            zero free blocks from ext2, ext3 and ext4 file-syst
ii  zip                     3.0-11           amd64            Archiver for .zip files
ii  zlib1g:amd64            1:1.2.8.dfsg-2ub amd64            compression library - runtime
 
cs



2. 원하는 패키지만 선별적으로 보고 싶을 경우 grep 명령어를 이용합니다.

예를 들어 vsftp가 설치되어 있는지 확인해보겠습니다.

1
2
3
$ dpkg -l |grep vsftpd
ii  vsftpd                                     3.0.3-3ubuntu2                               amd64        lightweight, efficient FTP server written for security
 
cs

* 위와 같은 방식으로 해당 패키지가 설치되어 있는지 여부를 손쉽게 확인할 수 있습니다.



'Operating System > Linux' 카테고리의 다른 글

ubuntu desktop eclipse 설치  (0) 2017.10.24
ubuntu 자바 설치  (0) 2017.10.19
ubuntu git 설치  (0) 2017.10.19
ubuntu vim 설치  (0) 2017.10.19
ubuntu 버전 확인  (0) 2017.10.19


1. git 설치

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
$ sudo apt-get install -y git
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  ca-certificates git-man ifupdown iproute2 isc-dhcp-client isc-dhcp-common krb5-locales less libasn1-8-heimdal
  libatm1 libbsd0 libcurl3-gnutls libdns-export162 libedit2 liberror-perl libexpat1 libffi6 libgdbm3 libgmp10
  libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal
  libhogweed4 libhx509-5-heimdal libidn11 libisc-export160 libk5crypto3 libkeyutils1 libkrb5-26-heimdal libkrb5-3
  libkrb5support0 libldap-2.4-2 libmnl0 libnettle6 libp11-kit0 libperl5.22 libpopt0 libroken18-heimdal librtmp1
  libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0 libtasn1-6 libwind0-heimdal libx11-6
  libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxmuu1 libxtables11 netbase openssh-client openssl patch perl
  perl-modules-5.22 rename rsync xauth
Suggested packages:
  gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-arch git-cvs
  git-mediawiki git-svn ppp rdnssd iproute2-doc resolvconf avahi-autoipd isc-dhcp-client-ddns apparmor gnutls-bin
  krb5-doc krb5-user libsasl2-modules-otp libsasl2-modules-ldap libsasl2-modules-sql libsasl2-modules-gssapi-mit
  | libsasl2-modules-gssapi-heimdal ssh-askpass libpam-ssh keychain monkeysphere ed diffutils-doc perl-doc
  libterm-readline-gnu-perl | libterm-readline-perl-perl make openssh-server
The following NEW packages will be installed:
  ca-certificates git git-man ifupdown iproute2 isc-dhcp-client isc-dhcp-common krb5-locales less libasn1-8-heimdal
  libatm1 libbsd0 libcurl3-gnutls libdns-export162 libedit2 liberror-perl libexpat1 libffi6 libgdbm3 libgmp10
  libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal
  libhogweed4 libhx509-5-heimdal libidn11 libisc-export160 libk5crypto3 libkeyutils1 libkrb5-26-heimdal libkrb5-3
  libkrb5support0 libldap-2.4-2 libmnl0 libnettle6 libp11-kit0 libperl5.22 libpopt0 libroken18-heimdal librtmp1
  libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0 libtasn1-6 libwind0-heimdal libx11-6
  libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxmuu1 libxtables11 netbase openssh-client openssl patch perl
  perl-modules-5.22 rename rsync xauth
0 upgraded, 67 newly installed, 0 to remove and 0 not upgraded.
Need to get 19.3 MB of archives.
After this operation, 98.3 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libatm1 amd64 1:2.5.1-1.5 [24.2 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmnl0 amd64 1.0.3-5 [12.0 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpopt0 amd64 1.16-10 [26.0 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgdbm3 amd64 1.8.3-13.1 [16.9 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxau6 amd64 1:1.0.8-1 [8376 B]
Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxdmcp6 amd64 1:1.1.2-1.1 [11.0 kB]
Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb1 amd64 1.11.1-1ubuntu1 [40.0 kB]
Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 libx11-data all 2:1.6.3-1ubuntu2 [113 kB]
Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 libx11-6 amd64 2:1.6.3-1ubuntu2 [571 kB]
Get:10 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 perl-modules-5.22 all 5.22.1-9 [2641 kB]
Get:12 http://archive.ubuntu.com/ubuntu xenial/main amd64 libperl5.22 amd64 5.22.1-9 [3371 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial/main amd64 perl amd64 5.22.1-9 [237 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 iproute2 amd64 4.3.0-1ubuntu3.16.04.1 [522 kB]
Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ifupdown amd64 0.8.10ubuntu1.2 [54.9 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libisc-export160 amd64 1:9.10.3.dfsg.P4-8ubuntu1.8 [153 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdns-export162 amd64 1:9.10.3.dfsg.P4-8ubuntu1.8 [666 kB]
Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-client amd64 4.3.3-5ubuntu12.7 [223 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-common amd64 4.3.3-5ubuntu12.7 [105 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 less amd64 481-2.1ubuntu0.2 [110 kB]
Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 libbsd0 amd64 0.8.2-1 [41.7 kB]
Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1 amd64 2.1.0-7ubuntu0.16.04.3 [71.2 kB]
Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 libffi6 amd64 3.2.1-4 [17.8 kB]
Get:24 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgmp10 amd64 2:6.1.0+dfsg-2 [240 kB]
Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libnettle6 amd64 3.2-1ubuntu0.16.04.1 [93.5 kB]
Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhogweed4 amd64 3.2-1ubuntu0.16.04.1 [136 kB]
Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libidn11 amd64 1.32-3ubuntu1.2 [46.5 kB]
Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libp11-kit0 amd64 0.23.2-5~ubuntu16.04.1 [105 kB]
Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtasn1-6 amd64 4.7-3ubuntu0.16.04.2 [43.3 kB]
Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgnutls30 amd64 3.4.10-4ubuntu1.3 [548 kB]
Get:31 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsqlite3-0 amd64 3.11.0-1ubuntu1 [396 kB]
Get:32 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl1.0.0 amd64 1.0.2g-1ubuntu4.8 [1081 kB]
Get:33 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxtables11 amd64 1.6.0-2ubuntu3 [27.2 kB]
Get:34 http://archive.ubuntu.com/ubuntu xenial/main amd64 netbase all 5.3 [12.9 kB]
Get:35 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssl amd64 1.0.2g-1ubuntu4.8 [492 kB]
Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ca-certificates all 20170717~16.04.1 [168 kB]
Get:37 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 krb5-locales all 1.13.2+dfsg-5ubuntu2 [13.2 kB]
Get:38 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libroken18-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [41.4 kB]
Get:39 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasn1-8-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [174 kB]
Get:40 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5support0 amd64 1.13.2+dfsg-5ubuntu2 [30.8 kB]
Get:41 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libk5crypto3 amd64 1.13.2+dfsg-5ubuntu2 [81.2 kB]
Get:42 http://archive.ubuntu.com/ubuntu xenial/main amd64 libkeyutils1 amd64 1.5.9-8ubuntu1 [9904 B]
Get:43 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-3 amd64 1.13.2+dfsg-5ubuntu2 [273 kB]
Get:44 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi-krb5-2 amd64 1.13.2+dfsg-5ubuntu2 [120 kB]
Get:45 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhcrypto4-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [85.0 kB]
Get:46 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimbase1-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [29.3 kB]
Get:47 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwind0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [47.8 kB]
Get:48 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhx509-5-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [107 kB]
Get:49 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-26-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [202 kB]
Get:50 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimntlm0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [15.1 kB]
Get:51 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi3-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [96.1 kB]
Get:52 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsasl2-modules-db amd64 2.1.26.dfsg1-14build1 [14.5 kB]
Get:53 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsasl2-2 amd64 2.1.26.dfsg1-14build1 [48.7 kB]
Get:54 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libldap-2.4-2 amd64 2.4.42+dfsg-2ubuntu3.2 [160 kB]
Get:55 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d-1ubuntu0.1 [54.4 kB]
Get:56 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcurl3-gnutls amd64 7.47.0-1ubuntu2.3 [185 kB]
Get:57 http://archive.ubuntu.com/ubuntu xenial/main amd64 libedit2 amd64 3.1-20150325-1ubuntu2 [76.5 kB]
Get:58 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsasl2-modules amd64 2.1.26.dfsg1-14build1 [47.5 kB]
Get:59 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxmuu1 amd64 2:1.1.2-2 [9674 B]
Get:60 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssh-client amd64 1:7.2p2-4ubuntu2.2 [587 kB]
Get:61 http://archive.ubuntu.com/ubuntu xenial/main amd64 rsync amd64 3.1.1-3ubuntu1 [325 kB]
Get:62 http://archive.ubuntu.com/ubuntu xenial/main amd64 xauth amd64 1:1.0.9-1ubuntu2 [22.7 kB]
Get:63 http://archive.ubuntu.com/ubuntu xenial/main amd64 liberror-perl all 0.17-1.2 [19.6 kB]
Get:64 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 git-man all 1:2.7.4-0ubuntu1.3 [736 kB]
Get:65 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 git amd64 1:2.7.4-0ubuntu1.3 [3102 kB]
Get:66 http://archive.ubuntu.com/ubuntu xenial/main amd64 patch amd64 2.7.5-1 [90.4 kB]
Get:67 http://archive.ubuntu.com/ubuntu xenial/main amd64 rename all 0.20-4 [12.0 kB]
Fetched 19.3 MB in 8min 22s (38.4 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libatm1:amd64.
(Reading database ... 4768 files and directories currently installed.)
Preparing to unpack .../libatm1_1%3a2.5.1-1.5_amd64.deb ...
Unpacking libatm1:amd64 (1:2.5.1-1.5) ...
Selecting previously unselected package libmnl0:amd64.
Preparing to unpack .../libmnl0_1.0.3-5_amd64.deb ...
Unpacking libmnl0:amd64 (1.0.3-5) ...
Selecting previously unselected package libpopt0:amd64.
Preparing to unpack .../libpopt0_1.16-10_amd64.deb ...
Unpacking libpopt0:amd64 (1.16-10) ...
Selecting previously unselected package libgdbm3:amd64.
Preparing to unpack .../libgdbm3_1.8.3-13.1_amd64.deb ...
Unpacking libgdbm3:amd64 (1.8.3-13.1) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../libxau6_1%3a1.0.8-1_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.8-1) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../libxdmcp6_1%3a1.1.2-1.1_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-1.1) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../libxcb1_1.11.1-1ubuntu1_amd64.deb ...
Unpacking libxcb1:amd64 (1.11.1-1ubuntu1) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../libx11-data_2%3a1.6.3-1ubuntu2_all.deb ...
Unpacking libx11-data (2:1.6.3-1ubuntu2) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../libx11-6_2%3a1.6.3-1ubuntu2_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.6.3-1ubuntu2) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../libxext6_2%3a1.3.3-1_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.3-1) ...
Selecting previously unselected package perl-modules-5.22.
Preparing to unpack .../perl-modules-5.22_5.22.1-9_all.deb ...
Unpacking perl-modules-5.22 (5.22.1-9) ...
Selecting previously unselected package libperl5.22:amd64.
Preparing to unpack .../libperl5.22_5.22.1-9_amd64.deb ...
Unpacking libperl5.22:amd64 (5.22.1-9) ...
Selecting previously unselected package perl.
Preparing to unpack .../perl_5.22.1-9_amd64.deb ...
Unpacking perl (5.22.1-9) ...
Selecting previously unselected package iproute2.
Preparing to unpack .../iproute2_4.3.0-1ubuntu3.16.04.1_amd64.deb ...
Unpacking iproute2 (4.3.0-1ubuntu3.16.04.1) ...
Selecting previously unselected package ifupdown.
Preparing to unpack .../ifupdown_0.8.10ubuntu1.2_amd64.deb ...
Unpacking ifupdown (0.8.10ubuntu1.2) ...
Selecting previously unselected package libisc-export160.
Preparing to unpack .../libisc-export160_1%3a9.10.3.dfsg.P4-8ubuntu1.8_amd64.deb ...
Unpacking libisc-export160 (1:9.10.3.dfsg.P4-8ubuntu1.8) ...
Selecting previously unselected package libdns-export162.
Preparing to unpack .../libdns-export162_1%3a9.10.3.dfsg.P4-8ubuntu1.8_amd64.deb ...
Unpacking libdns-export162 (1:9.10.3.dfsg.P4-8ubuntu1.8) ...
Selecting previously unselected package isc-dhcp-client.
Preparing to unpack .../isc-dhcp-client_4.3.3-5ubuntu12.7_amd64.deb ...
Unpacking isc-dhcp-client (4.3.3-5ubuntu12.7) ...
Selecting previously unselected package isc-dhcp-common.
Preparing to unpack .../isc-dhcp-common_4.3.3-5ubuntu12.7_amd64.deb ...
Unpacking isc-dhcp-common (4.3.3-5ubuntu12.7) ...
Selecting previously unselected package less.
Preparing to unpack .../less_481-2.1ubuntu0.2_amd64.deb ...
Unpacking less (481-2.1ubuntu0.2) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../libbsd0_0.8.2-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.8.2-1) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.1.0-7ubuntu0.16.04.3_amd64.deb ...
Unpacking libexpat1:amd64 (2.1.0-7ubuntu0.16.04.3) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.2.1-4_amd64.deb ...
Unpacking libffi6:amd64 (3.2.1-4) ...
Selecting previously unselected package libgmp10:amd64.
Preparing to unpack .../libgmp10_2%3a6.1.0+dfsg-2_amd64.deb ...
Unpacking libgmp10:amd64 (2:6.1.0+dfsg-2) ...
Selecting previously unselected package libnettle6:amd64.
Preparing to unpack .../libnettle6_3.2-1ubuntu0.16.04.1_amd64.deb ...
Unpacking libnettle6:amd64 (3.2-1ubuntu0.16.04.1) ...
Selecting previously unselected package libhogweed4:amd64.
Preparing to unpack .../libhogweed4_3.2-1ubuntu0.16.04.1_amd64.deb ...
Unpacking libhogweed4:amd64 (3.2-1ubuntu0.16.04.1) ...
Selecting previously unselected package libidn11:amd64.
Preparing to unpack .../libidn11_1.32-3ubuntu1.2_amd64.deb ...
Unpacking libidn11:amd64 (1.32-3ubuntu1.2) ...
Selecting previously unselected package libp11-kit0:amd64.
Preparing to unpack .../libp11-kit0_0.23.2-5~ubuntu16.04.1_amd64.deb ...
Unpacking libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.1) ...
Selecting previously unselected package libtasn1-6:amd64.
Preparing to unpack .../libtasn1-6_4.7-3ubuntu0.16.04.2_amd64.deb ...
Unpacking libtasn1-6:amd64 (4.7-3ubuntu0.16.04.2) ...
Selecting previously unselected package libgnutls30:amd64.
Preparing to unpack .../libgnutls30_3.4.10-4ubuntu1.3_amd64.deb ...
Unpacking libgnutls30:amd64 (3.4.10-4ubuntu1.3) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.11.0-1ubuntu1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.11.0-1ubuntu1) ...
Selecting previously unselected package libssl1.0.0:amd64.
Preparing to unpack .../libssl1.0.0_1.0.2g-1ubuntu4.8_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.2g-1ubuntu4.8) ...
Selecting previously unselected package libxtables11:amd64.
Preparing to unpack .../libxtables11_1.6.0-2ubuntu3_amd64.deb ...
Unpacking libxtables11:amd64 (1.6.0-2ubuntu3) ...
Selecting previously unselected package netbase.
Preparing to unpack .../archives/netbase_5.3_all.deb ...
Unpacking netbase (5.3) ...
Selecting previously unselected package openssl.
Preparing to unpack .../openssl_1.0.2g-1ubuntu4.8_amd64.deb ...
Unpacking openssl (1.0.2g-1ubuntu4.8) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../ca-certificates_20170717~16.04.1_all.deb ...
Unpacking ca-certificates (20170717~16.04.1) ...
Selecting previously unselected package krb5-locales.
Preparing to unpack .../krb5-locales_1.13.2+dfsg-5ubuntu2_all.deb ...
Unpacking krb5-locales (1.13.2+dfsg-5ubuntu2) ...
Selecting previously unselected package libroken18-heimdal:amd64.
Preparing to unpack .../libroken18-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libasn1-8-heimdal:amd64.
Preparing to unpack .../libasn1-8-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../libkrb5support0_1.13.2+dfsg-5ubuntu2_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../libk5crypto3_1.13.2+dfsg-5ubuntu2_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../libkeyutils1_1.5.9-8ubuntu1_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.5.9-8ubuntu1) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../libkrb5-3_1.13.2+dfsg-5ubuntu2_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../libgssapi-krb5-2_1.13.2+dfsg-5ubuntu2_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2) ...
Selecting previously unselected package libhcrypto4-heimdal:amd64.
Preparing to unpack .../libhcrypto4-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libheimbase1-heimdal:amd64.
Preparing to unpack .../libheimbase1-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libwind0-heimdal:amd64.
Preparing to unpack .../libwind0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libhx509-5-heimdal:amd64.
Preparing to unpack .../libhx509-5-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libkrb5-26-heimdal:amd64.
Preparing to unpack .../libkrb5-26-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libheimntlm0-heimdal:amd64.
Preparing to unpack .../libheimntlm0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libgssapi3-heimdal:amd64.
Preparing to unpack .../libgssapi3-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ...
Unpacking libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../libsasl2-modules-db_2.1.26.dfsg1-14build1_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.26.dfsg1-14build1) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../libsasl2-2_2.1.26.dfsg1-14build1_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.26.dfsg1-14build1) ...
Selecting previously unselected package libldap-2.4-2:amd64.
Preparing to unpack .../libldap-2.4-2_2.4.42+dfsg-2ubuntu3.2_amd64.deb ...
Unpacking libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.2) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../librtmp1_2.4+20151223.gitfa8646d-1ubuntu0.1_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ...
Selecting previously unselected package libcurl3-gnutls:amd64.
Preparing to unpack .../libcurl3-gnutls_7.47.0-1ubuntu2.3_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.3) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../libedit2_3.1-20150325-1ubuntu2_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20150325-1ubuntu2) ...
Selecting previously unselected package libsasl2-modules:amd64.
Preparing to unpack .../libsasl2-modules_2.1.26.dfsg1-14build1_amd64.deb ...
Unpacking libsasl2-modules:amd64 (2.1.26.dfsg1-14build1) ...
Selecting previously unselected package libxmuu1:amd64.
Preparing to unpack .../libxmuu1_2%3a1.1.2-2_amd64.deb ...
Unpacking libxmuu1:amd64 (2:1.1.2-2) ...
Selecting previously unselected package openssh-client.
Preparing to unpack .../openssh-client_1%3a7.2p2-4ubuntu2.2_amd64.deb ...
Unpacking openssh-client (1:7.2p2-4ubuntu2.2) ...
Selecting previously unselected package rsync.
Preparing to unpack .../rsync_3.1.1-3ubuntu1_amd64.deb ...
Unpacking rsync (3.1.1-3ubuntu1) ...
Selecting previously unselected package xauth.
Preparing to unpack .../xauth_1%3a1.0.9-1ubuntu2_amd64.deb ...
Unpacking xauth (1:1.0.9-1ubuntu2) ...
Selecting previously unselected package liberror-perl.
Preparing to unpack .../liberror-perl_0.17-1.2_all.deb ...
Unpacking liberror-perl (0.17-1.2) ...
Selecting previously unselected package git-man.
Preparing to unpack .../git-man_1%3a2.7.4-0ubuntu1.3_all.deb ...
Unpacking git-man (1:2.7.4-0ubuntu1.3) ...
Selecting previously unselected package git.
Preparing to unpack .../git_1%3a2.7.4-0ubuntu1.3_amd64.deb ...
Unpacking git (1:2.7.4-0ubuntu1.3) ...
Selecting previously unselected package patch.
Preparing to unpack .../patch_2.7.5-1_amd64.deb ...
Unpacking patch (2.7.5-1) ...
Selecting previously unselected package rename.
Preparing to unpack .../archives/rename_0.20-4_all.deb ...
Unpacking rename (0.20-4) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Setting up libatm1:amd64 (1:2.5.1-1.5) ...
Setting up libmnl0:amd64 (1.0.3-5) ...
Setting up libpopt0:amd64 (1.16-10) ...
Setting up libgdbm3:amd64 (1.8.3-13.1) ...
Setting up libxau6:amd64 (1:1.0.8-1) ...
Setting up libxdmcp6:amd64 (1:1.1.2-1.1) ...
Setting up libxcb1:amd64 (1.11.1-1ubuntu1) ...
Setting up libx11-data (2:1.6.3-1ubuntu2) ...
Setting up libx11-6:amd64 (2:1.6.3-1ubuntu2) ...
Setting up libxext6:amd64 (2:1.3.3-1) ...
Setting up perl-modules-5.22 (5.22.1-9) ...
Setting up libperl5.22:amd64 (5.22.1-9) ...
Setting up perl (5.22.1-9) ...
update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode
Setting up iproute2 (4.3.0-1ubuntu3.16.04.1) ...
Setting up ifupdown (0.8.10ubuntu1.2) ...
Creating /etc/network/interfaces.
Setting up libisc-export160 (1:9.10.3.dfsg.P4-8ubuntu1.8) ...
Setting up libdns-export162 (1:9.10.3.dfsg.P4-8ubuntu1.8) ...
Setting up isc-dhcp-client (4.3.3-5ubuntu12.7) ...
Setting up isc-dhcp-common (4.3.3-5ubuntu12.7) ...
Setting up less (481-2.1ubuntu0.2) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
debconf: falling back to frontend: Readline
Setting up libbsd0:amd64 (0.8.2-1) ...
Setting up libexpat1:amd64 (2.1.0-7ubuntu0.16.04.3) ...
Setting up libffi6:amd64 (3.2.1-4) ...
Setting up libgmp10:amd64 (2:6.1.0+dfsg-2) ...
Setting up libnettle6:amd64 (3.2-1ubuntu0.16.04.1) ...
Setting up libhogweed4:amd64 (3.2-1ubuntu0.16.04.1) ...
Setting up libidn11:amd64 (1.32-3ubuntu1.2) ...
Setting up libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.1) ...
Setting up libtasn1-6:amd64 (4.7-3ubuntu0.16.04.2) ...
Setting up libgnutls30:amd64 (3.4.10-4ubuntu1.3) ...
Setting up libsqlite3-0:amd64 (3.11.0-1ubuntu1) ...
Setting up libssl1.0.0:amd64 (1.0.2g-1ubuntu4.8) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
debconf: falling back to frontend: Readline
Setting up libxtables11:amd64 (1.6.0-2ubuntu3) ...
Setting up netbase (5.3) ...
Setting up openssl (1.0.2g-1ubuntu4.8) ...
Setting up ca-certificates (20170717~16.04.1) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
debconf: falling back to frontend: Readline
Setting up krb5-locales (1.13.2+dfsg-5ubuntu2) ...
Setting up libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2) ...
Setting up libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2) ...
Setting up libkeyutils1:amd64 (1.5.9-8ubuntu1) ...
Setting up libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2) ...
Setting up libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2) ...
Setting up libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libsasl2-modules-db:amd64 (2.1.26.dfsg1-14build1) ...
Setting up libsasl2-2:amd64 (2.1.26.dfsg1-14build1) ...
Setting up libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.2) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ...
Setting up libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.3) ...
Setting up libedit2:amd64 (3.1-20150325-1ubuntu2) ...
Setting up libsasl2-modules:amd64 (2.1.26.dfsg1-14build1) ...
Setting up libxmuu1:amd64 (2:1.1.2-2) ...
Setting up openssh-client (1:7.2p2-4ubuntu2.2) ...
Setting up rsync (3.1.1-3ubuntu1) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of restart.
Setting up xauth (1:1.0.9-1ubuntu2) ...
Setting up liberror-perl (0.17-1.2) ...
Setting up git-man (1:2.7.4-0ubuntu1.3) ...
Setting up git (1:2.7.4-0ubuntu1.3) ...
Setting up patch (2.7.5-1) ...
Setting up rename (0.20-4) ...
update-alternatives: using /usr/bin/file-rename to provide /usr/bin/rename (rename) in auto mode
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Processing triggers for ca-certificates (20170717~16.04.1) ...
Updating certificates in /etc/ssl/certs...
148 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
 
cs



2. git 버전 확인

1
2
3
$ git --version
git version 2.7.4
 
cs



'Operating System > Linux' 카테고리의 다른 글

ubuntu 자바 설치  (0) 2017.10.19
ubuntu 패키지 목록 확인  (0) 2017.10.19
ubuntu vim 설치  (0) 2017.10.19
ubuntu 버전 확인  (0) 2017.10.19
ubuntu group  (0) 2017.10.19


1. 설치에 앞서 패키지 인덱스를 업데이트합니다.

1
2
3
4
5
6
7
8
$ sudo apt-get update
Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease
Get:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [102 kB]
Fetched 306 kB in 3s (86.4 kB/s)
Reading package lists... Done
 
cs



2. apt-get을 통해서 vim을 설치합니다.

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
$ sudo apt-get install vim
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  vim-runtime
Suggested packages:
  ctags vim-doc vim-scripts vim-gnome-py2 | vim-gtk-py2 | vim-gtk3-py2 | vim-athena-py2 | vim-nox-py2
The following NEW packages will be installed:
  vim vim-runtime
0 upgraded, 2 newly installed, 0 to remove and 90 not upgraded.
Need to get 6,199 kB of archives.
After this operation, 30.0 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 vim-runtime all 2:7.4.1689-3ubuntu1.2 [5,164 kB]
Get:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 vim amd64 2:7.4.1689-3ubuntu1.2 [1,036 kB]
Fetched 6,199 kB in 2s (2,685 kB/s)
Selecting previously unselected package vim-runtime.
(Reading database ... 213928 files and directories currently installed.)
Preparing to unpack .../vim-runtime_2%3a7.4.1689-3ubuntu1.2_all.deb ...
Adding 'diversion of /usr/share/vim/vim74/doc/help.txt to /usr/share/vim/vim74/doc/help.txt.vim-tiny by vim-runtime'
Adding 'diversion of /usr/share/vim/vim74/doc/tags to /usr/share/vim/vim74/doc/tags.vim-tiny by vim-runtime'
Unpacking vim-runtime (2:7.4.1689-3ubuntu1.2) ...
Selecting previously unselected package vim.
Preparing to unpack .../vim_2%3a7.4.1689-3ubuntu1.2_amd64.deb ...
Unpacking vim (2:7.4.1689-3ubuntu1.2) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up vim-runtime (2:7.4.1689-3ubuntu1.2) ...
Setting up vim (2:7.4.1689-3ubuntu1.2) ...
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode
 
cs



3. vim 버전을 확인합니다.

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
$ vim --version
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 24 2016 16:44:48)
Included patches: 1-1689
Extra patches: 8.0.0056
Modified by pkg-vim-maintainers@lists.alioth.debian.org
Compiled by pkg-vim-maintainers@lists.alioth.debian.org
Huge version without GUI.  Features included (+) or not (-):
+acl             +farsi           +mouse_netterm   +tag_binary
+arabic          +file_in_path    +mouse_sgr       +tag_old_static
+autocmd         +find_in_path    -mouse_sysmouse  -tag_any_white
-balloon_eval    +float           +mouse_urxvt     -tcl
-browse          +folding         +mouse_xterm     +terminfo
++builtin_terms  -footer          +multi_byte      +termresponse
+byte_offset     +fork()          +multi_lang      +textobjects
+channel         +gettext         -mzscheme        +timers
+cindent         -hangul_input    +netbeans_intg   +title
-clientserver    +iconv           +packages        -toolbar
-clipboard       +insert_expand   +path_extra      +user_commands
+cmdline_compl   +job             -perl            +vertsplit
+cmdline_hist    +jumplist        +persistent_undo +virtualedit
+cmdline_info    +keymap          +postscript      +visual
+comments        +langmap         +printer         +visualextra
+conceal         +libcall         +profile         +viminfo
+cryptv          +linebreak       -python          +vreplace
+cscope          +lispindent      +python3         +wildignore
+cursorbind      +listcmds        +quickfix        +wildmenu
+cursorshape     +localmap        +reltime         +windows
+dialog_con      -lua             +rightleft       +writebackup
+diff            +menu            -ruby            -X11
+digraphs        +mksession       +scrollbind      -xfontset
-dnd             +modify_fname    +signs           -xim
-ebcdic          +mouse           +smartindent     -xsmp
+emacs_tags      -mouseshape      +startuptime     -xterm_clipboard
+eval            +mouse_dec       +statusline      -xterm_save
+ex_extra        +mouse_gpm       -sun_workshop    -xpm
+extra_search    -mouse_jsbterm   +syntax
   system vimrc file: "$VIM/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/share/vim"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H   -Wdate-time  -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Linking: gcc   -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -o vim        -lm -ltinfo -lnsl  -lselinux  -lacl -lattr -lgpm -ldl     -L/usr/lib/python3.5/config-3.5m-x86_64-linux-gnu -lpython3.5m -lpthread -ldl -lutil -lm
 
cs



'Operating System > Linux' 카테고리의 다른 글

ubuntu 패키지 목록 확인  (0) 2017.10.19
ubuntu git 설치  (0) 2017.10.19
ubuntu 버전 확인  (0) 2017.10.19
ubuntu group  (0) 2017.10.19
ubuntu docker 설치  (0) 2017.10.19


방법1.

1
2
3
$ cat /etc/issue
Ubuntu 16.04.3 LTS \n \l
 
cs



방법2.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ cat /etc/*release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.3 LTS"
NAME="Ubuntu"
VERSION="16.04.3 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.3 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial
 
cs

* 위의 방법은 lsb-release 파일과 os-release 파일을 각각 불러와서 출력합니다.

1
2
3
4
$ ll /etc/ |grep release
-rw-r--r-- 1 root root     105 Jul 31 13:36 lsb-release
lrwxrwxrwx 1 root root      21 Jul 31 13:36 os-release -> ../usr/lib/os-release
 
cs



방법3.

1
2
3
$ uname -a
Linux 2a388618a88e 4.10.0-37-generic #41~16.04.1-Ubuntu SMP Fri Oct 6 22:42:59 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
 
cs



방법4.

1
2
3
4
5
6
7
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.3 LTS
Release:        16.04
Codename:       xenial
 
cs


'Operating System > Linux' 카테고리의 다른 글

ubuntu git 설치  (0) 2017.10.19
ubuntu vim 설치  (0) 2017.10.19
ubuntu group  (0) 2017.10.19
ubuntu docker 설치  (0) 2017.10.19
Ubuntu Desktop 설치  (0) 2017.10.18


1. 그룹 목록 확인

1
2
3
4
5
6
7
8
9
$ cat /etc/group
root:x:0:
 
...
 
user:x:1000:
sambashare:x:128:user
ftp:x:129:
 
cs

* 그룹 목록을 출력할 경우 위와 같은 형식으로 출력됩니다.



2. 그룹 생성 및 확인

2-1. 그룹 생성

1
2
$ sudo groupadd test
 
cs

* test 라는 그룹을 그룹 목록에 추가합니다.


2-2. 그룹 생성 여부 확인

1
2
3
$ cat /etc/group |grep test
test:x:1001:
 
cs



3. 소속된 그룹 확인

1
2
3
$ groups user
user : user sambashare docker
 
cs

* 사용자가 속한 그룹 목록을 출력합니다.

* user 를 제외하고 groups 명령어만 사용할 경우 현재 접속된 유저의 소속된 그룹 목록을 출력합니다.



4. 그룹 삭제

1
2
$ sudo groupdel test
 
cs

* test 는 삭제할 그룹명입니다.



'Operating System > Linux' 카테고리의 다른 글

ubuntu vim 설치  (0) 2017.10.19
ubuntu 버전 확인  (0) 2017.10.19
ubuntu docker 설치  (0) 2017.10.19
Ubuntu Desktop 설치  (0) 2017.10.18
Ubuntu ssh server 설치  (0) 2017.10.18


Docker 를 설치하는 몇 가지 방법이 있습니다.

도커를 설치하는 몇 가지 방법이 있습니다. 여기서 살펴볼 설치 방법은 아래와 같습니다.

 ㄴ 리포지토리를 이용한 설치

 ㄴ Docker CE 를 설치

 ㄴ 스크립트를 이용한 설치


1. 리포지토리를 이용한 설치

1-1. apt 패키지 인덱스를 업데이트

1
2
3
4
5
6
7
8
9
10
11
12
$ sudo apt-get update
Hit:1 http://kr.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 http://kr.archive.ubuntu.com/ubuntu xenial-backports InRelease
Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Get:5 http://security.ubuntu.com/ubuntu xenial-security/main amd64 DEP-11 Metadata [60.3 kB]
Get:6 http://security.ubuntu.com/ubuntu xenial-security/main DEP-11 64x64 Icons [62.6 kB]
Get:7 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 DEP-11 Metadata [49.7 kB]
Get:8 http://security.ubuntu.com/ubuntu xenial-security/universe DEP-11 64x64 Icons [80.0 kB]
Fetched 355 kB in 4s (73.7 kB/s)
Reading package lists... Done
 
cs


1-2. apt 가 https 를 통해 저장소를 사용할 수 있도록 패키지들을 설치

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
$ sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
Hit:1 http://kr.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 http://kr.archive.ubuntu.com/ubuntu xenial-backports InRelease
Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Fetched 102 kB in 1s (71.6 kB/s)
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
apt-transport-https is already the newest version (1.2.24).
ca-certificates is already the newest version (20170717~16.04.1).
software-properties-common is already the newest version (0.96.20.7).
The following NEW packages will be installed:
  curl
0 upgraded, 1 newly installed, 0 to remove and 90 not upgraded.
Need to get 138 kB of archives.
After this operation, 338 kB of additional disk space will be used.
Get:1 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 curl amd64 7.47.0-1ubuntu2.3 [138 kB]
Fetched 138 kB in 0s (714 kB/s)
Selecting previously unselected package curl.
(Reading database ... 212836 files and directories currently installed.)
Preparing to unpack .../curl_7.47.0-1ubuntu2.3_amd64.deb ...
Unpacking curl (7.47.0-1ubuntu2.3) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up curl (7.47.0-1ubuntu2.3) ...
 
cs


1-3. 도커의 공식적인 GPG key 를 추가

1
2
3
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
OK
 
cs


1-4. 지문 인식 키의 여부를 확인

1
2
3
$ sudo apt-key fingerprint 0EBFCD88 | grep docker@docker.com || exit 1
uid                  Docker Release (CE deb) <docker@docker.com>
 
cs

* "9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88" 의 마지막 8자리를 검색하여 지문 인식 키의 여부를 확인합니다.


1-5. 안정적으로 저장소를 구축하기 위한 설정

1
2
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
 
cs



2. 도커 CE 를 이용한 설치

2-1. 패키지 인덱스를 업데이트

1
2
3
4
5
6
7
8
9
10
$ sudo apt-get update
Hit:1 http://kr.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 http://kr.archive.ubuntu.com/ubuntu xenial-backports InRelease
Get:4 https://download.docker.com/linux/ubuntu xenial InRelease [49.8 kB]
Get:5 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Get:6 https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages [2,579 B]
Fetched 155 kB in 2s (66.9 kB/s)
Reading package lists... Done
 
cs


2-2. 설치 가능한 도커 버전을 확인

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ apt-cache madison docker-ce
 docker-ce | 17.10.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.09.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 docker-ce | 17.09.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.07.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.06.2~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 docker-ce | 17.06.2~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.06.1~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 docker-ce | 17.06.1~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.06.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 docker-ce | 17.06.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.05.0~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.04.0~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/edge amd64 Packages
 docker-ce | 17.03.2~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 docker-ce | 17.03.1~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 docker-ce | 17.03.0~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
 
cs


2-3. 가장 최근 버전의 도커 CE 를 설치

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
$ sudo apt-get install -y docker-ce
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  aufs-tools cgroupfs-mount git git-man liberror-perl
Suggested packages:
  git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-arch git-cvs git-mediawiki
  git-svn
The following NEW packages will be installed:
  aufs-tools cgroupfs-mount docker-ce git git-man liberror-perl
0 upgraded, 6 newly installed, 0 to remove and 90 not upgraded.
Need to get 25.0 MB of archives.
After this operation, 126 MB of additional disk space will be used.
Get:1 http://kr.archive.ubuntu.com/ubuntu xenial/universe amd64 aufs-tools amd64 1:3.2+20130722-1.1ubuntu1 [92.9 kB]
Get:2 http://kr.archive.ubuntu.com/ubuntu xenial/universe amd64 cgroupfs-mount all 1.2 [4,970 B]
Get:3 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 liberror-perl all 0.17-1.2 [19.6 kB]
Get:4 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 git-man all 1:2.7.4-0ubuntu1.3 [736 kB]
Get:5 https://download.docker.com/linux/ubuntu xenial/stable amd64 docker-ce amd64 17.09.0~ce-0~ubuntu [21.0 MB]
Get:6 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 git amd64 1:2.7.4-0ubuntu1.3 [3,102 kB]
Fetched 25.0 MB in 3s (7,596 kB/s)
Selecting previously unselected package aufs-tools.
(Reading database ... 212843 files and directories currently installed.)
Preparing to unpack .../aufs-tools_1%3a3.2+20130722-1.1ubuntu1_amd64.deb ...
Unpacking aufs-tools (1:3.2+20130722-1.1ubuntu1) ...
Selecting previously unselected package cgroupfs-mount.
Preparing to unpack .../cgroupfs-mount_1.2_all.deb ...
Unpacking cgroupfs-mount (1.2) ...
Selecting previously unselected package docker-ce.
Preparing to unpack .../docker-ce_17.09.0~ce-0~ubuntu_amd64.deb ...
Unpacking docker-ce (17.09.0~ce-0~ubuntu) ...
Selecting previously unselected package liberror-perl.
Preparing to unpack .../liberror-perl_0.17-1.2_all.deb ...
Unpacking liberror-perl (0.17-1.2) ...
Selecting previously unselected package git-man.
Preparing to unpack .../git-man_1%3a2.7.4-0ubuntu1.3_all.deb ...
Unpacking git-man (1:2.7.4-0ubuntu1.3) ...
Selecting previously unselected package git.
Preparing to unpack .../git_1%3a2.7.4-0ubuntu1.3_amd64.deb ...
Unpacking git (1:2.7.4-0ubuntu1.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu19) ...
Setting up aufs-tools (1:3.2+20130722-1.1ubuntu1) ...
Setting up cgroupfs-mount (1.2) ...
Setting up docker-ce (17.09.0~ce-0~ubuntu) ...
Setting up liberror-perl (0.17-1.2) ...
Setting up git-man (1:2.7.4-0ubuntu1.3) ...
Setting up git (1:2.7.4-0ubuntu1.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Processing triggers for ureadahead (0.100.0-19) ...
 
cs



3. 스크립트를 사용하여 도커를 설치

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
$ curl -fsSL https://get.docker.com/ |sudo sh
# Executing docker install script, commit: 490beaa
Warning: the "docker" command appears to already exist on this system.
 
If you already have Docker installed, this script can cause trouble, which is
why we're displaying this warning and provide the opportunity to cancel the
installation.
 
If you installed the current Docker package using this script and are using it
again to update Docker, you can safely ignore this message.
 
You may press Ctrl+C now to abort this script.
+ sleep 20
+ sudo -E sh -c apt-get update -qq >/dev/null
+ sudo -E sh -c apt-get install -y -qq apt-transport-https ca-certificates curl software-properties-common >/dev/null
+ sudo -E sh -c curl -fsSL "https://download.docker.com/linux/ubuntu/gpg" | apt-key add -qq - >/dev/null
+ sudo -E sh -c echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial edge" > /etc/apt/sources.list.d/docker.list
+ [ ubuntu = debian ]
+ sudo -E sh -c apt-get update -qq >/dev/null
+ sudo -E sh -c apt-get install -y -qq docker-ce >/dev/null
+ sudo -E sh -c docker version
Client:
 Version:      17.10.0-ce
 API version:  1.33
 Go version:   go1.8.3
 Git commit:   f4ffd25
 Built:        Tue Oct 17 19:04:16 2017
 OS/Arch:      linux/amd64
 
Server:
 Version:      17.10.0-ce
 API version:  1.33 (minimum version 1.12)
 Go version:   go1.8.3
 Git commit:   f4ffd25
 Built:        Tue Oct 17 19:02:56 2017
 OS/Arch:      linux/amd64
 Experimental: false
If you would like to use Docker as a non-root user, you should now consider
adding your user to the "docker" group with something like:
 
  sudo usermod -aG docker user
 
Remember that you will have to log out and back in for this to take effect!
 
WARNING: Adding a user to the "docker" group will grant the ability to run
         containers which can be used to obtain root privileges on the
         docker host.
         Refer to https://docs.docker.com/engine/security/security/#docker-daemon-attack-surface
         for more information.
 
cs



4. 도커 설치 후 확인

4-1. 도커 버전을 출력

1
2
3
$ docker -v
Docker version 17.10.0-ce, build f4ffd25
 
cs


4-2. hello-world 를 실행

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
$ sudo docker run --rm hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
5b0f327be733: Pull complete
Digest: sha256:07d5f7800dfe37b8c2196c7b1c524c33808ce2e0f74e7aa00e603295ca9a0972
Status: Downloaded newer image for hello-world:latest
 
Hello from Docker!
This message shows that your installation appears to be working correctly.
 
To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.
 
To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash
 
Share images, automate workflows, and more with a free Docker ID:
 https://cloud.docker.com/
 
For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/
 
cs

* 위의 --rm 옵션은 컨테이너 안의 프로세스가 종료되면 컨테이너를 자동으로 삭제합니다.

* 도커를 실행하기 위해선 루트에 해당하는 권한이 필요하기 때문에 앞에 sudo 를 붙여 실행합니다.



5. 루트가 아닌 사용자로서 도커를 관리할 계정과 그룹을 생성

5-1. 도커 그룹을 생성

1
2
$ sudo groupadd docker
 
cs

* 도커 그룹을 추가합니다.


5-2. 도커 그룹에 속할 유저를 추가

1
2
$ sudo usermod -aG docker $USER
 
cs

* 현재 접속 중인 사용자 혹은 도커를 관리할 사용자에게 권한을 부여합니다.

* 사용자가 접속해 있는 상태라면 재접속 후에 권한이 적용됩니다.


5-3. 도커 서비스를 재시작

1
2
$ sudo service docker restart
 
cs



6. sudo 를 사용하지 않고 도커 명령어를 실행

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$ docker run --rm hello-world
 
Hello from Docker!
This message shows that your installation appears to be working correctly.
 
To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.
 
To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash
 
Share images, automate workflows, and more with a free Docker ID:
 https://cloud.docker.com/
 
For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/
 
cs


'Operating System > Linux' 카테고리의 다른 글

ubuntu 버전 확인  (0) 2017.10.19
ubuntu group  (0) 2017.10.19
Ubuntu Desktop 설치  (0) 2017.10.18
Ubuntu ssh server 설치  (0) 2017.10.18
head 명령어  (0) 2017.10.16

1.



2.



3.



4.



5.



6.



7.



8.



9.

* 설치가 끝나면 재부팅되고 완료됩니다.



'Operating System > Linux' 카테고리의 다른 글

ubuntu group  (0) 2017.10.19
ubuntu docker 설치  (0) 2017.10.19
Ubuntu ssh server 설치  (0) 2017.10.18
head 명령어  (0) 2017.10.16
ubuntu 고정 ip 할당  (0) 2017.10.13


1. ssh server 설치

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
$ sudo apt-get install openssh-server
Reading package lists...
Building dependency tree...
Reading state information...
Suggested packages:
  ssh-askpass rssh molly-guard monkeysphere
The following NEW packages will be installed:
  openssh-server
Preconfiguring packages ...
0 upgraded, 1 newly installed, 0 to remove and 192 not upgraded.
Need to get 0 B/338 kB of archives.
After this operation, 912 kB of additional disk space will be used.
Selecting previously unselected package openssh-server.
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 177903 files and directories currently installed.)
Preparing to unpack .../openssh-server_1%3a7.2p2-4ubuntu2.2_amd64.deb ...
Unpacking openssh-server (1:7.2p2-4ubuntu2.2) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
Processing triggers for systemd (229-4ubuntu19) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up openssh-server (1:7.2p2-4ubuntu2.2) ...
Creating SSH2 RSA key; this may take some time ...
2048 SHA256:wEyh9ic/o5fsBTE/ifbruwvOVxCbtDsVnGFxU8IRMfM root@user-virtual-machine (RSA)
Creating SSH2 DSA key; this may take some time ...
1024 SHA256:REAzAFtTDlG3sOmCukZM1TncbAHVVNeG5ZUlkPAA5YM root@user-virtual-machine (DSA)
Creating SSH2 ECDSA key; this may take some time ...
256 SHA256:keUvMW7t3tT3j83ZK3TIYkPPn1sOiNCGzfWZu11OVL8 root@user-virtual-machine (ECDSA)
Creating SSH2 ED25519 key; this may take some time ...
256 SHA256:dZSXWO5UQ7YGTlr6cNfM3HGrMN4bW5ljNq3eG+RPqM0 root@user-virtual-machine (ED25519)
Processing triggers for systemd (229-4ubuntu19) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
 
cs



2. ssh 서비스 재시작

1
2
3
$ sudo /etc/init.d/ssh restart
[ ok ] Restarting ssh (via systemctl): ssh.service.
 
cs



3. ssh 접속 확인

3-1. 접속 정보 입력

* 접속을 위해 사용한 툴은 PuTTY 입니다. 다른 툴을 사용해도 무방합니다.



3-2. 접속 계정 정보 입력



'Operating System > Linux' 카테고리의 다른 글

ubuntu docker 설치  (0) 2017.10.19
Ubuntu Desktop 설치  (0) 2017.10.18
head 명령어  (0) 2017.10.16
ubuntu 고정 ip 할당  (0) 2017.10.13
FTP 설치 및 접속  (0) 2017.10.12

+ Recent posts