개발 블로그
close
프로필 사진

개발 블로그

github: @denev6

  • ALL
    • Troubleshooting
    • Network
      • NetWork
      • Linux
      • Rocky Linux
      • Ubuntu
      • Docker
      • Oracle VM Virtualbox
      • Windows
      • Raspberry Pi 5
      • Jenkins
      • ETC
    • Arduino
      • Linux
      • Windows
    • C++
    • Android
    • Spring
    • STS4
    • SSR
    • Javascript
    • Python
    • React
    [Network | Oracle VM Virtualbox] 가상머신 복제 후 IP 주소 변경 및 SSH 포트 변경

    [Network | Oracle VM Virtualbox] 가상머신 복제 후 IP 주소 변경 및 SSH 포트 변경

    안쓰는 노트북에 Oracle VM Virtualbox를 설치하고 가상머신 몇 개 만들어서 서버 돌리는 중인데 2개 더 필요해서 VM Virtualbox 내에서 복제를 해봤다. 바로 사용하면 외부에서 PuTTy와 같은 SSH 프로그램으로 접근도 불가능할 뿐더러 나는 복제했던 가상머신 내부에 고정 IP를 할당해놓은 터라 수정할 게 몇가지 있었다. 추후에 서버가 더 필요해서 복제하게 될 때 참고하기 위한 포스팅이다. 순서는 아래와 같다. MAC 주소 변경Hostname 변경고정 IP 변경SSH 접근 포트 변경방화벽 포트 등록포트포워딩 1. MAC 주소 변경복제해놓은 가상머신을 끈 상태에서 설정 창에 들어간다. 이렇게 있을텐데 어댑터1, 2, 3, 4 중 1만 빼놓고 네트워크 어댑터 활성화(E)에 체크박스가 ..

    • format_list_bulleted Network/Oracle VM Virtualbox
    • · 2025. 5. 24.
    [Raspberry Pi 5] GUI 데스크톱 세팅(VNC)

    [Raspberry Pi 5] GUI 데스크톱 세팅(VNC)

    1. raspi-config 설치apt updateapt install raspi-config -y2. raspi-config 실행raspi-config3. raspi-config 설정(VNC 활성화 작업)‘3 Interface Options Configure connections to peripherale’ 선택‘I3 VNC Enable/disable graphical remote access using RealVNC’ 활성화(엔터 누르면 활성화 할꺼냐고 묻는데 "yes" 누르면 된다)4. VNC Viewer 설치 Download VNC Viewer by RealVNC®RealVNC® Viewer is the original VNC Viewer and the most secure way to conne..

    • format_list_bulleted Network/Raspberry Pi 5
    • · 2025. 5. 14.

    [Raspberry Pi 5] Mosquitto 설치

    라즈베리파이에 아두이노 연결하고 mqtt 사용할거라 설치했다. 1. Mosquitto 설치apt install -y mosquitto mosquitto-clients2. Mosquitto 실행$ systemctl enable mosquittoSynchronizing state of mosquitto.service with SysV service script with /lib/systemd/systemd-sysv-install.Executing: /lib/systemd/systemd-sysv-install enable mosquitto$ systemctl start mosquitto$ systemctl status mosquitto● mosquitto.service - Mosquitto MQTT Broke..

    • format_list_bulleted Network/Raspberry Pi 5
    • · 2025. 3. 26.

    [Network | Rocky Linux] 고정 IP 할당하기

    안쓰는 노트북에 WAS-2, LB 서버 구축 중이며 브릿지 네트워크로 IP를 할당받았다. 해당 IP를 고정 IP로 할당하기 위해 작업을 진행했다. # 고정 IP를 할당할 디바이스 확인$ nmcli device statusDEVICE TYPE STATE CONNECTIONenp0s3 ethernet connected enp0s3 $ cd /etc/NetworkManager/system-connections$ system-connections]# ls -l-rw------- 1 root root 294 Mar 22 11:38 enp0s3.nmconnection nano enp0s3.nmconnection [connection]id=en..

    • format_list_bulleted Network/Rocky Linux
    • · 2025. 3. 22.
    [Network] D-Link DDNS 설정

    [Network] D-Link DDNS 설정

    원룸에서 포트포워딩 작업해야 할 때는 상관이 없는데 외부 카페같은데서 원룸 공유기에 접근해야 할 때는 접근이 안되니 불편함을 많이 느꼈었다. 집말고 외부에서 공유기를 건드려야 할 때를 대비해 나는 DDNS 설정으로 쉽게 접근할 수 있도록 하기 위해 작업을 진행했다.1. DDNS 서비스 가입하기https://www.noip.com/ 나는 구글로 회원가입 후 hostname을 등록했다.  hostname 등록 시에는 hostname에는 ddns로 접근할 url을 지정해주고 IP / Target에는 공인 IP를 입력해주면 된다.2. 공유기 DDNS 설정하기 전체 호스트 이름 : hostname 등록 시 지정했던 URL사용자 이름 및 사용자 비밀번호 : 알아서 입력하자..업데이트 주기 (분) : 뭘 참고한 게 ..

    • format_list_bulleted Network/NetWork
    • · 2025. 3. 15.
    [Raspberry Pi 5] jar 배포

    [Raspberry Pi 5] jar 배포

    토이 프로젝트 진행 중에 라즈베리파이 내부에 jar를 배포해야 했다. 처음에 war 방식으로 진행하다가 나중에 집와서 방식이 다르다는 것을 깨닫고 ‘아..’ 했다. 추후에 다시 작업할 일 있으면 참고할려고 메모용으로 남기는 포스팅이다. 선수 작업으로 해당 jar에 맞는 jdk가 설치되어 있어야 한다. 1. 포트포워딩 작업알아서 포트포워딩하자.2. Apache2 conf 파일 수정Apache2 기준으로 수정 파일 경로는 ‘/etc/apache2/sites-available/000-defeault.conf’이다.  ServerAdmin webmaster@localhost ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_..

    • format_list_bulleted Network/Raspberry Pi 5
    • · 2025. 3. 3.
    • navigate_before
    • 1
    • 2
    • 3
    • 4
    • ···
    • 9
    • navigate_next
    공지사항
    전체 카테고리
    • ALL
      • Troubleshooting
      • Network
        • NetWork
        • Linux
        • Rocky Linux
        • Ubuntu
        • Docker
        • Oracle VM Virtualbox
        • Windows
        • Raspberry Pi 5
        • Jenkins
        • ETC
      • Arduino
        • Linux
        • Windows
      • C++
      • Android
      • Spring
      • STS4
      • SSR
      • Javascript
      • Python
      • React
    인기 글
    전체 방문자
    오늘
    어제
    Copyright © 이주여이 모든 권리 보유.
    SKIN: Copyright © 쭈미로운 생활 All rights reserved. Designed by JJuum.
    and Current skin "dev-roo" is modified by Jin.

    티스토리툴바