반응형 Life108 ubuntu gui package 설치 ubuntu 사용 중 gui 환경이 필요할 경우 ## firefox나 다른 프로그램을 함께 설치하고자 하는 경우 전체 설치 권장 그 이외의 경우는 최소 설치만 해도 됨 $ apt-get update $ apt-get upgrade ## 최소 설치 $ apt-get install --no-install-recommends ubuntu-desktop ## 전체 설치 $ apt-get install ubuntu-desktop ## 기타 추가 설치 (필요시) $ apt-get install indicator-appmenu-tools (hud service not connected 오류 해결) $ apt-get install indicator-session ( 계정, 세션 아이콘 추가 ) $ apt-get ins.. 2023. 2. 6. Ubuntu 20.04 kubernetes install kubernetes 구축과 container에 대한 학습을 위해 간단히 설치부터 테스트 했습니다. 참고하면서 봤던 글들이 너무 뒤죽박죽이어서 나름데로 정리를 다시 했으나 그럼에도 미흡한 부분이 있을 수 있습니다. * 모두 root 계정으로 구성하였습니다. hostname ip role resource k8s-master 192.168.130.131/23 control-plane, master Disk 30GB, 2Core, 4GB M k8s-worker1 192.168.130.132/23 worker Disk 30GB, 2Core, 4GB M k8s-worker2 192.168.130.133/23 worker Disk 30GB, 2Core, 4GB M master node hosts 설정 $ hostna.. 2023. 2. 3. chrony를 이용한 시간 동기화 chrony 는 NTP(Network Time Protocol)을 구현한 server/client로 기존 리눅스의 ntpd를 대체 하며 RHEL 8에는 기본 설치, RHEL 7 에서는 설치 필요하다. (yum install chrony) 예제에서는 테스트할때 자주 사용하는 공용 NTP서버(time.bora.net 203.248.240.103)를 사용했다. # vi /etc/chrony.conf # server 0.centos.pool.ntp.org iburst # server 1.centos.pool.ntp.org iburst # server 2.centos.pool.ntp.org iburst # server 3.centos.pool.ntp.org iburst server time.bora.net ibu.. 2023. 2. 3. ubuntu network 설정 OS : Ubuntu 20.04 root 계정으로 구성하였음 config 파일을 확인 $ ls -al /etc/netplan/ total 12 drwxr-xr-x 2 root root 4096 Jan 26 15:31 . drwxr-xr-x 88 root root 4096 Jan 26 16:04 .. -rw-r--r-- 1 root root 194 Jan 26 15:31 01-netcfg.yaml ## ubuntu 18.04 live version은 50-cloud-init.yaml ## 기본적으로 아무 설정이 되어 있지 않다. $ cat /etc/netplan/01-netcfg.yaml # This file describes the network interfaces available on your sys.. 2023. 2. 3. 이전 1 ··· 21 22 23 24 25 26 27 다음 반응형