ubuntu(12)
-
ubunbu nginx 설치
설치하면 자동으로 실행 됨설치위치: /etc/nginxsudo apt install nginx기동 명령어# 부팅시 자동시작sudo systemctl start nginxsudo systemctl status nginxsudo systemctl stop nginx# 환경설정 변경 후 무중단 적용sudo systemctl reload nginx# 환경설정 변경 후 문법확인sudo nginx -t# 서비스 포트 확인# sudo로 실행해야 PID/Program name 정보가 나옴sudo netstat -tnlpreverse proxy 설정https://velog.io/@prayme/ubuntu%EC%97%90%EC%84%9C-nginx-reverse-proxy-%EC%84%A4%EC%A0%95%ED%95%98..
2023.05.01 -
ubuntu 고정 IP 설정
/etc/netplan/00-installer-cinfig.yaml # asis network: ethernets: ens33: dhcp4: true version: 2 # tobe network: ethernets: ens33: dhcp4: no addresses: - 192.168.131.111/24 # 다중 IP 적용때 아래 내용처럼 추가 #- 192.168.131.200/24 nameservers: addresses: [8.8.8.8, 8.8.4.4] routes: - to : default via: 192.168.131.2 version: 2 적용 # 명령 수행후, vmware 재기동을 해야 외부에서 접속 가능 netplan apply
2023.04.29 -
ubunbu route 설정
# 조회 route netstat -rn # gateway 등록 route add default gw 192.168.0.1
2023.03.26 -
우분투 VMware network connection: Bridged 작동안하는 경우
https://barisein.tistory.com/342 우분투 dhcp IP 다시 받아오기 # IP 확인 ifconfig # 네트웍카드 초기화 sudo dhclient -r 네트웍카드이름 # 네트웍카드 dhcp IP 할당 sudo dhclient 네트웍카드이름 barisein.tistory.com VMware17에서 우분투를 설치할때, 기본으로 설치하면 네트웍이 NAT로 설정됨 NAT를 Bridged로 변경했는데, 정상적이 IP를 할당받지 못함(외부에서 접속이 안됨) 이런 경우, 수동으로 할당받은 IP를 초기화하고 다시 할당받아야 함 결국 방법을 찾지 못해서 VMware16으로 downgrade해서 해결함
2023.03.01 -
우분투에 Docker 설치하기
# 설치에 필요한 툴 설치 sudo apt-get udpate sudo apt-get install apt-transprot-https ca-certificates curl software-properties-common # Docker GPG Key 등록 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker.gpg # APT에 Docker repository 추가 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 또는..
2023.02.25 -
리눅스에 디스크 마운트하기
ntfs 마운트하기 # 마운트 대상 찾기 sudo fdisk -l # 마운트할 디렉토리 생성 sudo mkdir /mnt/usb1 # ntfs 마운트하기 sudo mount -t ntfs /dev/sdb1 /mnt/usb1 # 결과 확인 df -h 마운트가 안될 경우, # 에러 The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Falling back to read-only mount because the NTFS partition is in an unsafe state. Please resume and shutdown Windows fully (no hibernation or f..
2023.02.25