본문 바로가기

놀기136

Static IP 설정 - Ubuntu 20.04 기본 명령어를 사용하면 간단히 IP를 설정할 수 있지만, 리부팅하면 해당 정보가 사라진다. 이와 같은 문제를 해결하기 위해 netplan을 사용하여 설정한다. 물론, UI 상에서 해결할 수 있는데 간혹 설정에서 이더넷 메뉴가 사라져 난감한 경우도 있다. 1. 먼저, 기본 명령어를 사용하여 IP를 설정한다. IP를 설정하는 이유는 단지 01-network-manager-all.yaml에 넣을 값을 보기 위함이니 하지 않아도 된다. $ sudo ifconfig ens33 10.10.0.242 netmask 255.255.0.0 up $ sudo route add default gw 10.10.0.1 2. /etc/netplan/01-network-manager-all.yaml 파일을 수정하여 고정 IP를 설.. 2022. 1. 14.
git 접속을 위한 ssh key 생성 목차 1. ssh key 만들기 $ ssh-keygen -t rsa -b 2048 -C "busyman@email.com" Generating public/private rsa key pair. Enter file in which to save the key (/home/busyman/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/busyman/.ssh/id_rsa Your public key has been saved in /home/busyman/.ssh/id_rsa.pub The key fingerprint is:.. 2022. 1. 14.
QT5에서 QFTP 사용하기 목차 설치 및 빌드 시, 경로 상에 공백이 있을 경우 빌드에 오류가 발생함. 아니면 공백이 처리되게 끔 프로젝트 파일 및 명령어 실행 시에 공백 처리 추가 QFtp는 QT4에는 포함되어 있으나 QT5부터는 빠져 있어 별도로 추가해야 한다. 1. qtftp 다운로드 qtftp는 github에서 다운로드 할 수 있다. https://github.com/qt/qtftp GitHub - qt/qtftp Contribute to qt/qtftp development by creating an account on GitHub. github.com qtftp를 빌드하기 위해서는 perl이 필요하다. 만약 처리되어 있지 않다면 아래를 참조하여 설치한다. https://strawberryperl.com/download/.. 2022. 1. 14.
SSH 설치하기 (Ubuntu 20.04) Ubunut에 SSH 설치하기. 긴말 필요 없고. 일단, openssh-server 설치하고 $ sudo apt update $ sudo apt install openssh-server 아래와 같이 해주면 끝. $ sudo systemctl enable ssh $ sudo systemctl start ssh $ sudo ufw allow ssh 2022. 1. 14.