반응형 기타/Linux36 [우분투] 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. [우분투] Docker 이미지 관리하기 우분투 이미지 Docker container 생성하고 관리하기 Docker 이미지 관리하기 우분투 Docker image 에서 container 를 생성하고, 수정하고, 저장해본다. Docker hub 에 등록된 최신 우분투 이미지 내려받기 아래 위치에 우분투 이미지가 공유 되어 있다. https://hub.docker.com/_/ubuntu Ubuntu - Official Image | Docker Hub Quick reference Supported tags and respective Dockerfile links 18.04, bionic-20210930, bionic 20.04, focal-20211006, focal, latest 21.04, hirsute-20210917, hirsute 21.1.. 2021. 11. 8. [우분투] parted 를 이용한 대용량 파티션 관리 Ubuntu parted 를 이용한 파티션 관리 대용량 하드디스크 파티션 리눅스 부트로더 Lilo 또는 grub 은 MSDOS disk partition label 을 인식한다. MSDOS 는 최대 2GB 의 파티션을 지원한다. 반면에, 대용량 파티션을 위해 GPT partition 은 2TB 이상의 크기를 지원한다. parted 를 사용하여 2TB 이상의 GPT 파티션 만들기 fdisk 명령으로 하드디스크 정보를 확인한다. 아래의 하드디스크의 크기는 약 4TB 이고, Disklabel 은 DOS 형식이다. $ sudo fdisk -l /dev/sdb Disk /dev/sdb: 3.65 TiB, 4000787030016 bytes, 7814037168 sectors Disk model: ST4000DM0.. 2021. 10. 20. [우분투] Ubuntu 20.04 Gitlab CE Push 오류 Gitlab CE 버전에서 Push operation timed out 문제 Gitlab Push operation timed out error Push fail 오류 현상 Git history 가 포함된 Linux Kernel Code 를 Gitlab 에 강제 push 하는 과정에서 발생 push 하려는 commit 이 매우 클 경우, "Push operation timed out error" 가 발생하는 것으로 보임 (1 GByte 이상) $ git push new --all Enumerating objects: 5197863, done. Counting objects: 100% (5197863/5197863), done. Delta compression using up to 12 threads Co.. 2021. 10. 16. [GIT] git log 포함하여 remote 에 강제로 push 하기 git history log 포함해서 강제로 push 하기 All branch 를 포함한 전체 push bare 와 mirror 옵션으로 git 을 복제한다. 복제된 git 에 새로운 URL 를 추가한다. 새로운 URL 에 강제 push 한다. (모든 branch 를 push 하기 위해 --all 옵션 추가) git clone --bare --mirror git remote add new git push new —all 특정 branch 만 push bare 와 mirror 옵션으로 git 을 복제한다. 복제된 git 에 새로운 URL 를 추가한다. 새로운 URL 에 강제 push 한다. git clone -b devel git remote add new git push new devel 관련자료 htt.. 2021. 10. 16. 이전 1 2 3 4 5 6 다음 반응형