우분투에서 어떠한 기능을 서비스로 돌리기 위해 systemd에 등록할 수 있다. ## service 파일 등록/etc/systemd/system 위치에 파일명 {service name}.service 로 아래와 같이 생성 후 저장한다.[Unit]Description=My Test Service[Service]Type=simpleWorkingDirectory=/home/yunikim/dev/study/cpp_testing/cmake-build-debugExecStart=/home/yunikim/dev/study/cpp_testing/cmake-build-debug/ipc_exam_serverStandardOutput=ttyTTYPath=/dev/pts/0[Install]WantedBy=multi-user...