pip는 python 관련 패키지를 설치할 때 사용하는 툴로써 python 설치 시 포함되지 않기 때문에 별도로 설치해야 합니다.

* 참고 사항: python이 먼저 설치되어 있어야 합니다.

1. wget 으로 압축 파일을 내려받습니다.

1
2
3
4
5
6
7
8
9
10
11
12
$ wget https://pypi.python.org/packages/5f/ad/1fde06877a8d7d5c9b60eff7de2d452f639916ae1d48f0b8f97bf97e570a/distribute-0.7.3.zip
--2017-11-06 13:43:41--  https://pypi.python.org/packages/5f/ad/1fde06877a8d7d5c9b60eff7de2d452f639916ae1d48f0b8f97bf97e570a/distribute-0.7.3.zip
Resolving pypi.python.org (pypi.python.org)... 151.101.72.223, 2a04:4e42:11::223
Connecting to pypi.python.org (pypi.python.org)|151.101.72.223|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 145378 (142K) [application/octet-stream]
Saving to: ‘distribute-0.7.3.zip’
 
distribute-0.7.3.zip          100%[==============================================>] 141.97K  --.-KB/s    in 0.1s
 
2017-11-06 13:43:41 (1.04 MB/s) - ‘distribute-0.7.3.zip’ saved [145378/145378]
 
cs

* distribute-0.7.3.zip 의 링크 주소는 아래와 같습니다.

 : https://pypi.python.org/packages/5f/ad/1fde06877a8d7d5c9b60eff7de2d452f639916ae1d48f0b8f97bf97e570a/distribute-0.7.3.zip



2. 압축 파일 확인

1
2
3
$ ll |grep distribute-0.7.3.zip
-rw-rw-r--  1 user user   145378  4월 24  2016 distribute-0.7.3.zip
 
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
51
52
53
54
55
56
57
58
59
60
$ unzip distribute-0.7.3.zip
Archive:  distribute-0.7.3.zip
  inflating: distribute-0.7.3/MANIFEST.in
  inflating: distribute-0.7.3/PKG-INFO
  inflating: distribute-0.7.3/pkg_resources.py
  inflating: distribute-0.7.3/setup.cfg
  inflating: distribute-0.7.3/setup.py
  inflating: distribute-0.7.3/distribute.egg-info/dependency_links.txt
  inflating: distribute-0.7.3/distribute.egg-info/PKG-INFO
  inflating: distribute-0.7.3/distribute.egg-info/requires.txt
  inflating: distribute-0.7.3/distribute.egg-info/SOURCES.txt
  inflating: distribute-0.7.3/distribute.egg-info/top_level.txt
  inflating: distribute-0.7.3/distribute.egg-info/zip-safe
  inflating: distribute-0.7.3/setuptools/archive_util.py
  inflating: distribute-0.7.3/setuptools/compat.py
  inflating: distribute-0.7.3/setuptools/depends.py
  inflating: distribute-0.7.3/setuptools/dist.py
  inflating: distribute-0.7.3/setuptools/extension.py
  inflating: distribute-0.7.3/setuptools/package_index.py
  inflating: distribute-0.7.3/setuptools/py24compat.py
  inflating: distribute-0.7.3/setuptools/py27compat.py
  inflating: distribute-0.7.3/setuptools/sandbox.py
  inflating: distribute-0.7.3/setuptools/script template (dev).py
  inflating: distribute-0.7.3/setuptools/script template.py
  inflating: distribute-0.7.3/setuptools/site-patch.py
  inflating: distribute-0.7.3/setuptools/ssl_support.py
  inflating: distribute-0.7.3/setuptools/__init__.py
  inflating: distribute-0.7.3/setuptools/command/alias.py
  inflating: distribute-0.7.3/setuptools/command/bdist_egg.py
  inflating: distribute-0.7.3/setuptools/command/bdist_rpm.py
  inflating: distribute-0.7.3/setuptools/command/bdist_wininst.py
  inflating: distribute-0.7.3/setuptools/command/build_ext.py
  inflating: distribute-0.7.3/setuptools/command/build_py.py
  inflating: distribute-0.7.3/setuptools/command/develop.py
  inflating: distribute-0.7.3/setuptools/command/easy_install.py
  inflating: distribute-0.7.3/setuptools/command/egg_info.py
  inflating: distribute-0.7.3/setuptools/command/install.py
  inflating: distribute-0.7.3/setuptools/command/install_egg_info.py
  inflating: distribute-0.7.3/setuptools/command/install_lib.py
  inflating: distribute-0.7.3/setuptools/command/install_scripts.py
  inflating: distribute-0.7.3/setuptools/command/launcher manifest.xml
  inflating: distribute-0.7.3/setuptools/command/register.py
  inflating: distribute-0.7.3/setuptools/command/rotate.py
  inflating: distribute-0.7.3/setuptools/command/saveopts.py
  inflating: distribute-0.7.3/setuptools/command/sdist.py
  inflating: distribute-0.7.3/setuptools/command/setopt.py
  inflating: distribute-0.7.3/setuptools/command/test.py
  inflating: distribute-0.7.3/setuptools/command/upload.py
  inflating: distribute-0.7.3/setuptools/command/upload_docs.py
  inflating: distribute-0.7.3/setuptools/command/__init__.py
  inflating: distribute-0.7.3/setuptools.egg-info/dependency_links.txt
  inflating: distribute-0.7.3/setuptools.egg-info/entry_points.txt
  inflating: distribute-0.7.3/setuptools.egg-info/entry_points.txt.orig
  inflating: distribute-0.7.3/setuptools.egg-info/PKG-INFO
  inflating: distribute-0.7.3/setuptools.egg-info/requires.txt
  inflating: distribute-0.7.3/setuptools.egg-info/requires.txt.orig
  inflating: distribute-0.7.3/setuptools.egg-info/SOURCES.txt
  inflating: distribute-0.7.3/setuptools.egg-info/top_level.txt
  inflating: distribute-0.7.3/setuptools.egg-info/zip-safe
 
cs



4. 압축 해제 후 distribute-0.7.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
$ sudo python setup.py install
running install
running bdist_egg
running egg_info
writing requirements to distribute.egg-info/requires.txt
writing distribute.egg-info/PKG-INFO
writing top-level names to distribute.egg-info/top_level.txt
writing dependency_links to distribute.egg-info/dependency_links.txt
reading manifest file 'distribute.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'distribute.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
warning: install_lib: 'build/lib' does not exist -- no Python modules to install
 
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying distribute.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying distribute.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying distribute.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying distribute.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying distribute.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying distribute.egg-info/zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
creating 'dist/distribute-0.7.3-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing distribute-0.7.3-py2.7.egg
Removing /usr/lib/python2.7/site-packages/distribute-0.7.3-py2.7.egg
Copying distribute-0.7.3-py2.7.egg to /usr/lib/python2.7/site-packages
Removing distribute 0.7.3 from easy-install.pth file
distribute 0.7.3 is already the active version in easy-install.pth
 
Installed /usr/lib/python2.7/site-packages/distribute-0.7.3-py2.7.egg
Processing dependencies for distribute==0.7.3
Searching for setuptools==0.8b2
Best match: setuptools 0.8b2
Adding setuptools 0.8b2 to easy-install.pth file
Installing easy_install script to /usr/bin
Installing easy_install-2.7 script to /usr/bin
 
Using /test/distribute-0.7.3
Finished processing dependencies for distribute==0.7.3
 
cs



5. pip 설치

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 easy_install pip
Searching for pip
Reading https://pypi.python.org/simple/pip/
Best match: pip 9.0.1
Downloading https://pypi.python.org/packages/11/b6/abcb525026a4be042b486df43905d6893fb04f05aac21c32c638e939e447/pip-9.0.1.tar.gz#md5=35f01da33009719497f01a4ba69d63c9
Processing pip-9.0.1.tar.gz
Writing /tmp/easy_install-cBl1k_/pip-9.0.1/setup.cfg
Running pip-9.0.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-cBl1k_/pip-9.0.1/egg-dist-tmp-pFMi63
/usr/lib64/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'python_requires'
  warnings.warn(msg)
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching '.landscape.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
warning: no previously-included files found matching 'appveyor.yml'
no previously-included directories found matching '.github'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
Adding pip 9.0.1 to easy-install.pth file
Installing pip script to /usr/bin
Installing pip2.7 script to /usr/bin
Installing pip2 script to /usr/bin
 
Installed /usr/lib/python2.7/site-packages/pip-9.0.1-py2.7.egg
Processing dependencies for pip
Finished processing dependencies for pip
 
cs



6. python 설치 확인 및 실행

1
2
3
4
5
6
$ python
Python 2.7.5 (default, Aug  4 2017, 00:39:18)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
 
cs



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

centos user 추가  (0) 2017.11.06
ubuntu 설치된 패키지 목록 확인  (0) 2017.11.06
centos zip 설치, 압축 및 압축 해제  (0) 2017.11.06
centos wget 설치  (0) 2017.11.06
ubuntu python pip 설치  (0) 2017.11.06


1. zip 설치

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
$ sudo yum install zip
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
 * base: ftp.daumkakao.com
 * extras: ftp.kaist.ac.kr
 * updates: ftp.kaist.ac.kr
Resolving Dependencies
--> Running transaction check
---> Package zip.x86_64 0:3.0-11.el7 will be installed
--> Finished Dependency Resolution
 
Dependencies Resolved
 
=====================================================================================================================
 Package                 Arch                       Version                           Repository                Size
=====================================================================================================================
Installing:
 zip                     x86_64                     3.0-11.el7                        base                     260 k
 
Transaction Summary
=====================================================================================================================
Install  1 Package
 
Total download size: 260 k
Installed size: 796 k
Is this ok [y/d/N]: y
Downloading packages:
zip-3.0-11.el7.x86_64.rpm                                                                     | 260 kB  00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : zip-3.0-11.el7.x86_64                                                                             1/1
  Verifying  : zip-3.0-11.el7.x86_64                                                                             1/1
 
Installed:
  zip.x86_64 0:3.0-11.el7
 
Complete!
 
cs



2. unzip 설치

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
$ sudo yum install unzip
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
 * base: ftp.daumkakao.com
 * extras: ftp.kaist.ac.kr
 * updates: ftp.kaist.ac.kr
Resolving Dependencies
--> Running transaction check
---> Package unzip.x86_64 0:6.0-16.el7 will be installed
--> Finished Dependency Resolution
 
Dependencies Resolved
 
=====================================================================================================================
 Package                   Arch                       Version                         Repository                Size
=====================================================================================================================
Installing:
 unzip                     x86_64                     6.0-16.el7                      base                     169 k
 
Transaction Summary
=====================================================================================================================
Install  1 Package
 
Total download size: 169 k
Installed size: 365 k
Is this ok [y/d/N]: y
Downloading packages:
unzip-6.0-16.el7.x86_64.rpm                                                                   | 169 kB  00:00:01
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : unzip-6.0-16.el7.x86_64                                                                           1/1
  Verifying  : unzip-6.0-16.el7.x86_64                                                                           1/1
 
Installed:
  unzip.x86_64 0:6.0-16.el7
 
Complete!
 
cs



3. zip 및 unzip 설치 확인

1
2
3
4
5
6
# rpm -qa |grep zip
unzip-6.0-16.el7.x86_64
bzip2-libs-1.0.6-13.el7.x86_64
gzip-1.5-9.el7.x86_64
zip-3.0-11.el7.x86_64
 
cs



4. 아래와 같이 압축을 진행합니다.

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
$ zip -r distribute-0.7.3.zip ./distribute-0.7.3/*
  adding: distribute-0.7.3/MANIFEST.in (deflated 32%)
  adding: distribute-0.7.3/PKG-INFO (deflated 62%)
  adding: distribute-0.7.3/distribute.egg-info/ (stored 0%)
  adding: distribute-0.7.3/distribute.egg-info/zip-safe (stored 0%)
  adding: distribute-0.7.3/distribute.egg-info/requires.txt (stored 0%)
  adding: distribute-0.7.3/distribute.egg-info/top_level.txt (stored 0%)
  adding: distribute-0.7.3/distribute.egg-info/dependency_links.txt (stored 0%)
  adding: distribute-0.7.3/distribute.egg-info/SOURCES.txt (deflated 74%)
  adding: distribute-0.7.3/distribute.egg-info/PKG-INFO (deflated 62%)
  adding: distribute-0.7.3/pkg_resources.py (deflated 72%)
  adding: distribute-0.7.3/setup.cfg (deflated 19%)
  adding: distribute-0.7.3/setup.py (deflated 59%)
  adding: distribute-0.7.3/setuptools/ (stored 0%)
  adding: distribute-0.7.3/setuptools/depends.py (deflated 64%)
  adding: distribute-0.7.3/setuptools/command/ (stored 0%)
  adding: distribute-0.7.3/setuptools/command/egg_info.py (deflated 69%)
  adding: distribute-0.7.3/setuptools/command/bdist_wininst.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/command/bdist_rpm.py (deflated 62%)
  adding: distribute-0.7.3/setuptools/command/install_scripts.py (deflated 64%)
  adding: distribute-0.7.3/setuptools/command/build_ext.py (deflated 73%)
  adding: distribute-0.7.3/setuptools/command/register.py (deflated 43%)
  adding: distribute-0.7.3/setuptools/command/test.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/command/upload.py (deflated 67%)
  adding: distribute-0.7.3/setuptools/command/install_lib.py (deflated 65%)
  adding: distribute-0.7.3/setuptools/command/__init__.py (deflated 52%)
  adding: distribute-0.7.3/setuptools/command/upload_docs.py (deflated 66%)
  adding: distribute-0.7.3/setuptools/command/alias.py (deflated 66%)
  adding: distribute-0.7.3/setuptools/command/install_egg_info.py (deflated 65%)
  adding: distribute-0.7.3/setuptools/command/install.py (deflated 65%)
  adding: distribute-0.7.3/setuptools/command/develop.py (deflated 69%)
  adding: distribute-0.7.3/setuptools/command/easy_install.py (deflated 73%)
  adding: distribute-0.7.3/setuptools/command/saveopts.py (deflated 51%)
  adding: distribute-0.7.3/setuptools/command/launcher manifest.xml (deflated 45%)
  adding: distribute-0.7.3/setuptools/command/sdist.py (deflated 68%)
  adding: distribute-0.7.3/setuptools/command/bdist_egg.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/command/build_py.py (deflated 72%)
  adding: distribute-0.7.3/setuptools/command/setopt.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/command/rotate.py (deflated 63%)
  adding: distribute-0.7.3/setuptools/__init__.py (deflated 58%)
  adding: distribute-0.7.3/setuptools/script template (dev).py (deflated 29%)
  adding: distribute-0.7.3/setuptools/package_index.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/archive_util.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/site-patch.py (deflated 63%)
  adding: distribute-0.7.3/setuptools/extension.py (deflated 62%)
  adding: distribute-0.7.3/setuptools/py24compat.py (deflated 32%)
  adding: distribute-0.7.3/setuptools/dist.py (deflated 73%)
  adding: distribute-0.7.3/setuptools/compat.py (deflated 70%)
  adding: distribute-0.7.3/setuptools/script template.py (deflated 31%)
  adding: distribute-0.7.3/setuptools/py27compat.py (deflated 41%)
  adding: distribute-0.7.3/setuptools/ssl_support.py (deflated 66%)
  adding: distribute-0.7.3/setuptools/sandbox.py (deflated 71%)
  adding: distribute-0.7.3/setuptools.egg-info/ (stored 0%)
  adding: distribute-0.7.3/setuptools.egg-info/requires.txt.orig (deflated 32%)
  adding: distribute-0.7.3/setuptools.egg-info/zip-safe (stored 0%)
  adding: distribute-0.7.3/setuptools.egg-info/requires.txt (deflated 33%)
  adding: distribute-0.7.3/setuptools.egg-info/top_level.txt (stored 0%)
  adding: distribute-0.7.3/setuptools.egg-info/dependency_links.txt (deflated 54%)
  adding: distribute-0.7.3/setuptools.egg-info/SOURCES.txt (deflated 75%)
  adding: distribute-0.7.3/setuptools.egg-info/entry_points.txt.orig (deflated 75%)
  adding: distribute-0.7.3/setuptools.egg-info/entry_points.txt (deflated 76%)
  adding: distribute-0.7.3/setuptools.egg-info/PKG-INFO (deflated 74%)
 
cs

* distribute-0.7.3.zip : 압축을 진행 후 생성될 zip 파일. zip 파일 이름은 임의로 지정해도 상관없습니다.

* ./distribute-0.7.3/* : distribute 디렉터리 이하의 모든 파일을 압축합니다.

* -r 옵션은 ./distribute-0.7.3 디렉터리 내의 존재하는 하위 디렉터리의 파일 및 디렉터리를 압축한다는 의미입니다.



5. 압축 확인

1
2
3
4
$ ll |grep distribute-0.7.3
drwxr-xr-x   5 root root   4096 Nov  6 05:58 distribute-0.7.3
-rw-r--r--   1 root root 149061 Nov  6 06:06 distribute-0.7.3.zip
 
cs



6. distribute-0.7.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
$ unzip ./distribute-0.7.3.zip -d ./test
Archive:  ./distribute-0.7.3.zip
  inflating: ./test/distribute-0.7.3/MANIFEST.in
  inflating: ./test/distribute-0.7.3/PKG-INFO
   creating: ./test/distribute-0.7.3/distribute.egg-info/
 extracting: ./test/distribute-0.7.3/distribute.egg-info/zip-safe
 extracting: ./test/distribute-0.7.3/distribute.egg-info/requires.txt
 extracting: ./test/distribute-0.7.3/distribute.egg-info/top_level.txt
 extracting: ./test/distribute-0.7.3/distribute.egg-info/dependency_links.txt
  inflating: ./test/distribute-0.7.3/distribute.egg-info/SOURCES.txt
  inflating: ./test/distribute-0.7.3/distribute.egg-info/PKG-INFO
  inflating: ./test/distribute-0.7.3/pkg_resources.py
  inflating: ./test/distribute-0.7.3/setup.cfg
  inflating: ./test/distribute-0.7.3/setup.py
   creating: ./test/distribute-0.7.3/setuptools/
  inflating: ./test/distribute-0.7.3/setuptools/depends.py
   creating: ./test/distribute-0.7.3/setuptools/command/
  inflating: ./test/distribute-0.7.3/setuptools/command/egg_info.py
  inflating: ./test/distribute-0.7.3/setuptools/command/bdist_wininst.py
  inflating: ./test/distribute-0.7.3/setuptools/command/bdist_rpm.py
  inflating: ./test/distribute-0.7.3/setuptools/command/install_scripts.py
  inflating: ./test/distribute-0.7.3/setuptools/command/build_ext.py
  inflating: ./test/distribute-0.7.3/setuptools/command/register.py
  inflating: ./test/distribute-0.7.3/setuptools/command/test.py
  inflating: ./test/distribute-0.7.3/setuptools/command/upload.py
  inflating: ./test/distribute-0.7.3/setuptools/command/install_lib.py
  inflating: ./test/distribute-0.7.3/setuptools/command/__init__.py
  inflating: ./test/distribute-0.7.3/setuptools/command/upload_docs.py
  inflating: ./test/distribute-0.7.3/setuptools/command/alias.py
  inflating: ./test/distribute-0.7.3/setuptools/command/install_egg_info.py
  inflating: ./test/distribute-0.7.3/setuptools/command/install.py
  inflating: ./test/distribute-0.7.3/setuptools/command/develop.py
  inflating: ./test/distribute-0.7.3/setuptools/command/easy_install.py
  inflating: ./test/distribute-0.7.3/setuptools/command/saveopts.py
  inflating: ./test/distribute-0.7.3/setuptools/command/launcher manifest.xml
  inflating: ./test/distribute-0.7.3/setuptools/command/sdist.py
  inflating: ./test/distribute-0.7.3/setuptools/command/bdist_egg.py
  inflating: ./test/distribute-0.7.3/setuptools/command/build_py.py
  inflating: ./test/distribute-0.7.3/setuptools/command/setopt.py
  inflating: ./test/distribute-0.7.3/setuptools/command/rotate.py
  inflating: ./test/distribute-0.7.3/setuptools/__init__.py
  inflating: ./test/distribute-0.7.3/setuptools/script template (dev).py
  inflating: ./test/distribute-0.7.3/setuptools/package_index.py
  inflating: ./test/distribute-0.7.3/setuptools/archive_util.py
  inflating: ./test/distribute-0.7.3/setuptools/site-patch.py
  inflating: ./test/distribute-0.7.3/setuptools/extension.py
  inflating: ./test/distribute-0.7.3/setuptools/py24compat.py
  inflating: ./test/distribute-0.7.3/setuptools/dist.py
  inflating: ./test/distribute-0.7.3/setuptools/compat.py
  inflating: ./test/distribute-0.7.3/setuptools/script template.py
  inflating: ./test/distribute-0.7.3/setuptools/py27compat.py
  inflating: ./test/distribute-0.7.3/setuptools/ssl_support.py
  inflating: ./test/distribute-0.7.3/setuptools/sandbox.py
   creating: ./test/distribute-0.7.3/setuptools.egg-info/
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/requires.txt.orig
 extracting: ./test/distribute-0.7.3/setuptools.egg-info/zip-safe
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/requires.txt
 extracting: ./test/distribute-0.7.3/setuptools.egg-info/top_level.txt
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/dependency_links.txt
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/SOURCES.txt
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/entry_points.txt.orig
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/entry_points.txt
  inflating: ./test/distribute-0.7.3/setuptools.egg-info/PKG-INFO
 
cs

* -d 옵션은 임의의 디렉터리에 압축을 해제하고 싶은 경우 사용하며, 현재는 test 디렉터리 이하에 압축이 해제됩니다.



7. 압축 해제 확인

1
2
3
4
5
$ ll |grep "test\|distribute"
drwxr-xr-x   5 root root   4096 Nov  6 05:58 distribute-0.7.3
-rw-r--r--   1 root root 149061 Nov  6 06:06 distribute-0.7.3.zip
drwxr-xr-x   3 root root   4096 Nov  6 06:15 test
 
cs



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

ubuntu 설치된 패키지 목록 확인  (0) 2017.11.06
centos python pip 설치  (0) 2017.11.06
centos wget 설치  (0) 2017.11.06
ubuntu python pip 설치  (0) 2017.11.06
ubuntu zip 설치, 압축 및 압축 해제  (0) 2017.11.06


wget이란 인터넷의 파일을 다운로드 받는 리눅스 명령어 중 하나입니다.


1. 아래와 같이 yum을 통해 wget을 설치합니다.

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
$ sudo yum install wget
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
 * base: mirror.navercorp.com
 * extras: mirror.navercorp.com
 * updates: mirror.navercorp.com
Resolving Dependencies
--> Running transaction check
---> Package wget.x86_64 0:1.14-15.el7_4.1 will be installed
--> Finished Dependency Resolution
 
Dependencies Resolved
 
=====================================================================================================================
 Package                Arch                     Version                             Repository                 Size
=====================================================================================================================
Installing:
 wget                   x86_64                   1.14-15.el7_4.1                     updates                   547 k
 
Transaction Summary
=====================================================================================================================
Install  1 Package
 
Total download size: 547 k
Installed size: 2.0 M
Is this ok [y/d/N]: y
Downloading packages:
warning: /var/cache/yum/x86_64/7/updates/packages/wget-1.14-15.el7_4.1.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for wget-1.14-15.el7_4.1.x86_64.rpm is not installed
wget-1.14-15.el7_4.1.x86_64.rpm                                                               | 547 kB  00:00:01
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 Package    : centos-release-7-4.1708.el7.centos.x86_64 (@CentOS)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Is this ok [y/N]: y
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : wget-1.14-15.el7_4.1.x86_64                                                                       1/1
install-info: No such file or directory for /usr/share/info/wget.info.gz
  Verifying  : wget-1.14-15.el7_4.1.x86_64                                                                       1/1
 
Installed:
  wget.x86_64 0:1.14-15.el7_4.1
 
Complete!
 
cs



2. 설치 여부 확인

1
2
3
4
5
6
$ wget
wget: missing URL
Usage: wget [OPTION]... [URL]...
 
Try `wget --help' for more options.
 
cs



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

centos python pip 설치  (0) 2017.11.06
centos zip 설치, 압축 및 압축 해제  (0) 2017.11.06
ubuntu python pip 설치  (0) 2017.11.06
ubuntu zip 설치, 압축 및 압축 해제  (0) 2017.11.06
ruby 설치  (0) 2017.10.31


pip는 python 관련 패키지를 설치할 때 사용하는 툴로써 python 설치 시 포함되지 않기 때문에 별도로 설치해야 합니다.

* 참고 사항: python이 먼저 설치되어 있어야 합니다.


1. $ sudo apt-get install python-pip 명령어를 실행합니다.

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
$ sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-4.10.0-28 linux-headers-4.10.0-28-generic linux-image-4.10.0-28-generic
  linux-image-extra-4.10.0-28-generic
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libexpat1-dev libpython-all-dev libpython-dev libpython2.7-dev python-all python-all-dev python-dev
  python-pip-whl python-pkg-resources python-setuptools python-wheel python2.7-dev
Suggested packages:
  python-setuptools-doc
The following NEW packages will be installed:
  libexpat1-dev libpython-all-dev libpython-dev libpython2.7-dev python-all python-all-dev python-dev python-pip
  python-pip-whl python-pkg-resources python-setuptools python-wheel python2.7-dev
0 upgraded, 13 newly installed, 0 to remove and 14 not upgraded.
Need to get 29.8 MB of archives.
After this operation, 45.1 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1-dev amd64 2.1.0-7ubuntu0.16.04.3 [115 kB]
Get:2 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-dev amd64 2.7.12-1ubuntu0~16.04.1 [27.8 MB]
Get:3 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 libpython-dev amd64 2.7.11-1 [7,728 B]
Get:4 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 libpython-all-dev amd64 2.7.11-1 [992 B]
Get:5 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 python-all amd64 2.7.11-1 [978 B]
Get:6 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-dev amd64 2.7.12-1ubuntu0~16.04.1 [276 kB]
Get:7 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 python-dev amd64 2.7.11-1 [1,160 B]
Get:8 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 python-all-dev amd64 2.7.11-1 [1,000 B]
Get:9 http://kr.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-pip-whl all 8.1.1-2ubuntu0.4 [1,110 kB]
Get:10 http://kr.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-pip all 8.1.1-2ubuntu0.4 [144 kB]
Get:11 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 python-pkg-resources all 20.7.0-1 [108 kB]
Get:12 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 python-setuptools all 20.7.0-1 [169 kB]
Get:13 http://kr.archive.ubuntu.com/ubuntu xenial/universe amd64 python-wheel all 0.29.0-1 [48.0 kB]
Fetched 29.8 MB in 10s (2,890 kB/s)
Selecting previously unselected package libexpat1-dev:amd64.
(Reading database ... 251464 files and directories currently installed.)
Preparing to unpack .../libexpat1-dev_2.1.0-7ubuntu0.16.04.3_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.1.0-7ubuntu0.16.04.3) ...
Selecting previously unselected package libpython2.7-dev:amd64.
Preparing to unpack .../libpython2.7-dev_2.7.12-1ubuntu0~16.04.1_amd64.deb ...
Unpacking libpython2.7-dev:amd64 (2.7.12-1ubuntu0~16.04.1) ...
Selecting previously unselected package libpython-dev:amd64.
Preparing to unpack .../libpython-dev_2.7.11-1_amd64.deb ...
Unpacking libpython-dev:amd64 (2.7.11-1) ...
Selecting previously unselected package libpython-all-dev:amd64.
Preparing to unpack .../libpython-all-dev_2.7.11-1_amd64.deb ...
Unpacking libpython-all-dev:amd64 (2.7.11-1) ...
Selecting previously unselected package python-all.
Preparing to unpack .../python-all_2.7.11-1_amd64.deb ...
Unpacking python-all (2.7.11-1) ...
Selecting previously unselected package python2.7-dev.
Preparing to unpack .../python2.7-dev_2.7.12-1ubuntu0~16.04.1_amd64.deb ...
Unpacking python2.7-dev (2.7.12-1ubuntu0~16.04.1) ...
Selecting previously unselected package python-dev.
Preparing to unpack .../python-dev_2.7.11-1_amd64.deb ...
Unpacking python-dev (2.7.11-1) ...
Selecting previously unselected package python-all-dev.
Preparing to unpack .../python-all-dev_2.7.11-1_amd64.deb ...
Unpacking python-all-dev (2.7.11-1) ...
Selecting previously unselected package python-pip-whl.
Preparing to unpack .../python-pip-whl_8.1.1-2ubuntu0.4_all.deb ...
Unpacking python-pip-whl (8.1.1-2ubuntu0.4) ...
Selecting previously unselected package python-pip.
Preparing to unpack .../python-pip_8.1.1-2ubuntu0.4_all.deb ...
Unpacking python-pip (8.1.1-2ubuntu0.4) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../python-pkg-resources_20.7.0-1_all.deb ...
Unpacking python-pkg-resources (20.7.0-1) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../python-setuptools_20.7.0-1_all.deb ...
Unpacking python-setuptools (20.7.0-1) ...
Selecting previously unselected package python-wheel.
Preparing to unpack .../python-wheel_0.29.0-1_all.deb ...
Unpacking python-wheel (0.29.0-1) ...
Processing triggers for doc-base (0.10.7) ...
Processing 1 added doc-base file...
Processing triggers for man-db (2.7.5-1) ...
Setting up libexpat1-dev:amd64 (2.1.0-7ubuntu0.16.04.3) ...
Setting up libpython2.7-dev:amd64 (2.7.12-1ubuntu0~16.04.1) ...
Setting up libpython-dev:amd64 (2.7.11-1) ...
Setting up libpython-all-dev:amd64 (2.7.11-1) ...
Setting up python-all (2.7.11-1) ...
Setting up python2.7-dev (2.7.12-1ubuntu0~16.04.1) ...
Setting up python-dev (2.7.11-1) ...
Setting up python-all-dev (2.7.11-1) ...
Setting up python-pip-whl (8.1.1-2ubuntu0.4) ...
Setting up python-pip (8.1.1-2ubuntu0.4) ...
Setting up python-pkg-resources (20.7.0-1) ...
Setting up python-setuptools (20.7.0-1) ...
Setting up python-wheel (0.29.0-1) ...
 
cs



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

centos zip 설치, 압축 및 압축 해제  (0) 2017.11.06
centos wget 설치  (0) 2017.11.06
ubuntu zip 설치, 압축 및 압축 해제  (0) 2017.11.06
ruby 설치  (0) 2017.10.31
ubuntu desktop eclipse 설치  (0) 2017.10.24


1. zip 혹은 unzip 설치

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
$ sudo apt-get install zip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-4.10.0-28 linux-headers-4.10.0-28-generic linux-image-4.10.0-28-generic
  linux-image-extra-4.10.0-28-generic
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  unzip
The following NEW packages will be installed:
  unzip zip
0 upgraded, 2 newly installed, 0 to remove and 14 not upgraded.
Need to get 317 kB of archives.
After this operation, 1,117 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 unzip amd64 6.0-20ubuntu1 [158 kB]
Get:2 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 zip amd64 3.0-11 [158 kB]
Fetched 317 kB in 0s (1,714 kB/s)
Selecting previously unselected package unzip.
(Reading database ... 251479 files and directories currently installed.)
Preparing to unpack .../unzip_6.0-20ubuntu1_amd64.deb ...
Unpacking unzip (6.0-20ubuntu1) ...
Selecting previously unselected package zip.
Preparing to unpack .../archives/zip_3.0-11_amd64.deb ...
Unpacking zip (3.0-11) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up unzip (6.0-20ubuntu1) ...
Setting up zip (3.0-11) ...
 
cs



2. 설치 확인

1
2
3
4
5
6
7
8
$ dpkg -l |grep zip
ii  bzip2                                      1.0.6-8                                      amd64        high-quality block-sorting file compressor - utilities
ii  gzip                                       1.6-4ubuntu1                                 amd64        GNU compression utilities
ii  libarchive-zip-perl                        1.56-2                                       all          Perl module for manipulation of ZIP archives
ii  libperlio-gzip-perl                        0.19-1build1                                 amd64        module providing a PerlIO layer to gzip/gunzip
ii  unzip                                      6.0-20ubuntu1                                amd64        De-archiver for .zip files
ii  zip                                        3.0-11                                       amd64        Archiver for .zip files
 
cs



3. zip 압축

1
2
3
4
$ zip test.zip ./Downloads/*
  adding: Downloads/eclipse-installer/ (stored 0%)
  adding: Downloads/eclipse-inst-linux64.tar.gz (deflated 0%)
 
cs

* Downloads.zip : 압축 후 생성될 파일

* ./Downloads/* : 압축할 대상 파일 혹은 디렉터리

* 현재 디렉터리 이하의 하위 디렉터리도 모두 압축하려면 -r 옵션을 추가해서 사용합니다.



4. 압축 확인

1
2
3
$ ll -l |grep test
-rw-rw-r--  1 user user 48028337 11월  6 14:00 test.zip
 
cs



5. 압축 해제

1
2
3
4
5
$ unzip ./test.zip
Archive:  ./test.zip
   creating: Downloads/eclipse-installer/
  inflating: Downloads/eclipse-inst-linux64.tar.gz
 
cs

* ./test.zip : 현재 디렉터리의 test.zip 파일을 압축 해제한다는 의미입니다.


6. 압축 해제 확인

1
2
3
4
5
6
7
$ ll
total 46916
drwxrwxr-x  3 user user     4096 11월  6 14:07 ./
drwxr-xr-x 26 user user     4096 11월  6 14:05 ../
drwxrwxr-x  3 user user     4096 11월  6 14:07 Downloads/
-rw-rw-r--  1 user user 48028337 11월  6 14:00 test.zip
 
cs



7. 특정 디렉터리에 압축 해제

1
2
3
4
5
$ unzip test.zip -d ./test
Archive:  test.zip
   creating: ./test/Downloads/eclipse-installer/
  inflating: ./test/Downloads/eclipse-inst-linux64.tar.gz
 
cs

* -d 옵션을 사용하게 될 경우 이하 ./test 디렉터리에 압축을 해제합니다.

* ./test 디렉터리가 존재하지 않을 경우 자동으로 생성 후 압축을 진행합니다.



8. 특정 디렉터리에 압축 해제 확인

1
2
3
4
$ ll |grep test
drwxrwxr-x  3 user user     4096 11월  6 14:08 test/
-rw-rw-r--  1 user user 48028337 11월  6 14:00 test.zip
 
cs



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

centos wget 설치  (0) 2017.11.06
ubuntu python pip 설치  (0) 2017.11.06
ruby 설치  (0) 2017.10.31
ubuntu desktop eclipse 설치  (0) 2017.10.24
ubuntu 자바 설치  (0) 2017.10.19


1. ruby 설치

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
$ sudo apt-get install ruby
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-4.10.0-28 linux-headers-4.10.0-28-generic linux-image-4.10.0-28-generic
  linux-image-extra-4.10.0-28-generic
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  fonts-lato javascript-common libjs-jquery libruby2.3 rake ruby-did-you-mean ruby-minitest ruby-net-telnet
  ruby-power-assert ruby-test-unit ruby2.3 rubygems-integration
Suggested packages:
  apache2 | lighttpd | httpd ri ruby-dev bundler
The following NEW packages will be installed:
  fonts-lato javascript-common libjs-jquery libruby2.3 rake ruby ruby-did-you-mean ruby-minitest ruby-net-telnet
  ruby-power-assert ruby-test-unit ruby2.3 rubygems-integration
0 upgraded, 13 newly installed, 0 to remove and 1 not upgraded.
Need to get 6,043 kB of archives.
After this operation, 27.5 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/main amd64 fonts-lato all 2.0-1 [2,693 kB]
Get:2 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 javascript-common all 11 [6,066 B]
Get:3 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 libjs-jquery all 1.11.3+dfsg-4 [161 kB]
Get:4 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 rubygems-integration all 1.10 [4,966 B]
Get:5 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 ruby-did-you-mean all 1.0.0-2 [8,390 B]
Get:6 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 ruby-minitest all 5.8.4-2 [36.6 kB]
Get:7 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 ruby-net-telnet all 0.1.1-2 [12.6 kB]
Get:8 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 ruby-power-assert all 0.2.7-1 [7,668 B]
Get:9 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 ruby-test-unit all 3.1.7-2 [60.3 kB]
Get:10 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libruby2.3 amd64 2.3.1-2~16.04.2 [2,958 kB]
Get:11 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 ruby2.3 amd64 2.3.1-2~16.04.2 [41.0 kB]
Get:12 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 ruby all 1:2.3.0+1 [5,530 B]
Get:13 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 rake all 10.5.0-2 [48.2 kB]
Fetched 6,043 kB in 2s (2,523 kB/s)
Selecting previously unselected package fonts-lato.
(Reading database ... 250199 files and directories currently installed.)
Preparing to unpack .../fonts-lato_2.0-1_all.deb ...
Unpacking fonts-lato (2.0-1) ...
Selecting previously unselected package javascript-common.
Preparing to unpack .../javascript-common_11_all.deb ...
Unpacking javascript-common (11) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../libjs-jquery_1.11.3+dfsg-4_all.deb ...
Unpacking libjs-jquery (1.11.3+dfsg-4) ...
Selecting previously unselected package rubygems-integration.
Preparing to unpack .../rubygems-integration_1.10_all.deb ...
Unpacking rubygems-integration (1.10) ...
Selecting previously unselected package ruby-did-you-mean.
Preparing to unpack .../ruby-did-you-mean_1.0.0-2_all.deb ...
Unpacking ruby-did-you-mean (1.0.0-2) ...
Selecting previously unselected package ruby-minitest.
Preparing to unpack .../ruby-minitest_5.8.4-2_all.deb ...
Unpacking ruby-minitest (5.8.4-2) ...
Selecting previously unselected package ruby-net-telnet.
Preparing to unpack .../ruby-net-telnet_0.1.1-2_all.deb ...
Unpacking ruby-net-telnet (0.1.1-2) ...
Selecting previously unselected package ruby-power-assert.
Preparing to unpack .../ruby-power-assert_0.2.7-1_all.deb ...
Unpacking ruby-power-assert (0.2.7-1) ...
Selecting previously unselected package ruby-test-unit.
Preparing to unpack .../ruby-test-unit_3.1.7-2_all.deb ...
Unpacking ruby-test-unit (3.1.7-2) ...
Selecting previously unselected package libruby2.3:amd64.
Preparing to unpack .../libruby2.3_2.3.1-2~16.04.2_amd64.deb ...
Unpacking libruby2.3:amd64 (2.3.1-2~16.04.2) ...
Selecting previously unselected package ruby2.3.
Preparing to unpack .../ruby2.3_2.3.1-2~16.04.2_amd64.deb ...
Unpacking ruby2.3 (2.3.1-2~16.04.2) ...
Selecting previously unselected package ruby.
Preparing to unpack .../ruby_1%3a2.3.0+1_all.deb ...
Unpacking ruby (1:2.3.0+1) ...
Selecting previously unselected package rake.
Preparing to unpack .../archives/rake_10.5.0-2_all.deb ...
Unpacking rake (10.5.0-2) ...
Processing triggers for fontconfig (2.11.94-0ubuntu1.1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up fonts-lato (2.0-1) ...
Setting up javascript-common (11) ...
Setting up libjs-jquery (1.11.3+dfsg-4) ...
Setting up rubygems-integration (1.10) ...
Setting up ruby-did-you-mean (1.0.0-2) ...
Setting up ruby-minitest (5.8.4-2) ...
Setting up ruby-net-telnet (0.1.1-2) ...
Setting up ruby-power-assert (0.2.7-1) ...
Setting up ruby-test-unit (3.1.7-2) ...
Setting up libruby2.3:amd64 (2.3.1-2~16.04.2) ...
Setting up ruby2.3 (2.3.1-2~16.04.2) ...
Setting up ruby (1:2.3.0+1) ...
Setting up rake (10.5.0-2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
 
cs



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

ubuntu python pip 설치  (0) 2017.11.06
ubuntu zip 설치, 압축 및 압축 해제  (0) 2017.11.06
ubuntu desktop eclipse 설치  (0) 2017.10.24
ubuntu 자바 설치  (0) 2017.10.19
ubuntu 패키지 목록 확인  (0) 2017.10.19


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

+ Recent posts