본문 바로가기
반응형

기타76

[우분투] Ubuntu 20.04 터미네이터 설치 및 설정하기 Ubuntu 20.04 Teminator 설치 및 설정하기 터미네이터 Terminator 터미네이터(Teminator)는 GNOME Terminal 기반의 하나의 창에서 탭과 여러 개 (크기 조정 가능한) 터미널 패널을 지원하는 터미널 에뮬레이터이다. (GNU GPL v2 라이선스) 터미네이터 Teminator 설치하기 우분투 apt-get install 명령어로 설치한다. $ sudo apt-get install terminator 터미네이터 Teminator 설정하기 Teminator 의 주요 기능은 창분할, 투명도 설정 등이다. Teminator 실행 후 마우스 우측 클릭해서 Preference 로 들어가서 설정 변경한다. 터미네이터 Teminator 단축키 # 단축키 기능 1 Ctrl + Shif.. 2022. 4. 3.
[우분투] Docker-Compose 설치하기 Ubuntu 20.04 Docker-Compose 설치하기 Ubuntu 20.04 에서 curl 를 이용한 Docker-compose 설치 curl 을 사용해서 github 에서 docker-compose 바이너리를 설치한다. sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 664 100 664 0 0 2486 .. 2021. 12. 16.
[우분투] Ubuntu 20.04 노트북 덮개 닫기 파워 설정 방법 Ubuntu 20.04 노트북 덮개 닫기 동작 설정 Ubuntu 20.04 노트북 덮개 동작 systemd 전원 설정방법 Ubuntu 20.04 설치된 노트북에서 덮개가 닫힌 상태에서도 전원을 유지해도록 설정한다. 터미널 창에서 /etc/systemd/logind.conf 파일을 sudo 권한으로 수정한다. # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version .. 2021. 12. 13.
[우분투] Docker 설치하기 Ubuntu 20.04 Docker 설치하기 Ubuntu 20.04 에서 apt 를 이용한 Docker 설치 Docker 설치 사전작업 apt 명령어를 이용하여 Docker 설치에 필요한 패키지들을 설치한다. apt-get -y install apt-transport-https ca-certificates curl gnupg lsb-release curl 명령어를 이용하여 Docker gpg 키를 호스트 시스템에 등록한다. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg apt 의 source.list 에 docker 저장소를 .. 2021. 12. 1.
[우분투] Ubuntu 20.04 호스트 이름 확인하기 Ubuntu 20.04 호스트 이름 관리하는 방법 우분투 Hostname Hostname 확인하기 우분투 터미널에서 hostname 명령어로 이름을 확인할 수 있다. microserver:~$ hostname microserver 또는 /etc/hostname 을 읽어서 이름을 확인할 수 있다. microserver:~$ cat /etc/hostname microserver Hostname 바꾸기 우분투 터미널에서 hostnamectl 명령어로 이름을 바꿀 수 있다. microserver:~$ cat /etc/hostname microserver microserver:~$ hostnamectl set-hostname webserver ==== AUTHENTICATING FOR org.freedesktop.. 2021. 11. 30.
[우분투] Ubuntu 20.04 Gitlab IP 주소 변경하기 Ubuntu 20.04 Gitlab IP 주소 변경하기 깃랩 서버 IP 주소 바꾸기 Gitlab 서버 IP 주소를 변경하였다면! Gitlab 서버 IP 주소를 바꾸고, 아무런 조치를 취하지 않았다면 아래와 같은 timed out 가 발생한다. $ git clone git@이전IP주소:test/example.git Cloning into 'example'... ssh: connect to host 이전IP주소 port 22: Connection timed out fatal: Could not read from remote repository. Gitlab 서버 IP 주소 변경 방법 Gitlab 서버 에 접속하여 sudo 권한으로 /etc/gitlab/gitlab.rb 를 수정한다. ## GitLab URL.. 2021. 11. 29.
반응형