우분투(5)
-
docker 설치 및 정보 확인.
- OS : Ubuntu 16.04.2 - 인터넷 : 사용 가능 - 최소 조건 : kernel 버전이 3.10 이상이여야 한다. ( centos7 , ubuntu 16.04 이상 ) #1. Docker 설치 root@host01:~# apt-get update --> 설치 전 ubuntu package 업데이트. --> Done 으로 종료되면 상관이 없다. Error 발생시 rebooting 후 재시도. root@host01:~# apt-get update Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB] Hit:2 http://ftp.daumkakao.com/ubuntu xenial InRelease Hit:3 http..
2017.09.11 -
[우분투] 버전 확인
우분투에서 OS 버전 확인하는 명령어입니다. 명령어는 아래와 같이 2개가 있고 편하신 명령어 사용하시면 됩니다. 1. cat /etc/issue root@host01:~# cat /etc/issue Ubuntu 16.04.2 LTS \n \l 2. lsb_release -a root@host01:~# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04.2 LTS Release: 16.04 Codename: xenial
2017.09.11 -
[우분투] 부팅시 서비스 자동실행 등록
1. 서비스를 실행 할 스크립트 작성. - 위치 : /etc/init.d/ ex : /etc/init.d/auto_run.sh - 자동 실행 등록을 하면 해당 스크립트가 실행되어 서비스를 띄우게 된다. 2. 권한 부여 - chmod 777 /etc/init.d/[실행 스크립트이름] - ex : chmod 777 /etc/init.d/auto_run.sh 3. 서비스 등록 - update-rc.d [실행 스크립트 이름] defaults ex : update-rc.d auto_run.sh defaults defaults : runlevel 3, 5 4. 확인 - 재부팅하여 서비스 확인
2017.07.17 -
[우분투] root 계정 ssh 로그인 허용
1. /etc/ssh/sshd_config 수정 root@xen1:~# vim /etc/ssh/sshd_configPermitRootLogin yes --> PermitRootLogin 값을 yes로 변경 2. ssh 재시작 root@xen1:~# service ssh restart 3. root 로 ssh 접속 테스트
2017.07.10 -
[우분투]고정 IP 설정 (Ubuntu Static IP setup)
우분투는 처음 사용해 보는데 CentOS 계열과 명령어 및 세팅 방법이 많이 다른 것 같다. 1. vim /etc/network/interfaces ( CentOS의 /etc/sysconfig/network-scripts/ifcfg-eth0 와 비슷한 파일로 보면 된다.) root@xen1:~# cat /etc/network/interfaces# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface..
2017.07.10