Raspberry Pi 3 64bit OS openSUSE: Service 관리
Raspberry Pi 3 64bit OS openSUSE 는 이글은 3개 글타래로 구성되며, openSUSE 설치 및 사용에 대해 작성한다.
Opensuse 에서 Raspberry Pi 3를 위한 64bit OS openSESE Leap 42.3 을 제공하고 있다.
- Install 64bit openSUSE Leap 42.3 / JeOS
- openSUSE: Managing Service daemon
- openSUSE: Basic OS Security for Server
- Install & Configuration - Nginx, Node JS
- Build MongoDB 3.4.x
openSUSE: Basic OS Security for Server
openSUSE는 systemd
를 사용한 서비스/데몬 시작/종료/활성화/비활성화 작업을 할 수 있다. 서비스에 대한 작업은 systemctl
CLI 혹은 YaST에서 가능하다.
yast
openSUSE는 yast 로 서비스 데몬도 설치/실행/멈춤 을 할 수 있다.
{:width=”640”}
서비스는
{:width=”640”}
systemd
https://doc.opensuse.org/documentation/leap/reference/html/book.opensuse.reference/cha.systemd.html
1 | systemctl list-unit-files --type=service #현재 사용 가능한 모든 서비스 |
이 작업은
1 | systemctl stop SuSEfirewall2 |
ssmtp
sSMTP is a simple MTA to deliver mail from a computer to a mail hub (SMTP server). sSMTP is simple and lightweight, there are no daemons or anything hogging up CPU; Just sSMTP. Unlike Exim4, sSMTP does not receive mail, expand aliases, or manage a queue.
42.3, 15.0 에 ssmtp가 포함되지 않았다.
https://build.opensuse.org/package/binaries/home:jloehel/ssmtp/openSUSE_Factory_ARM
mail utitlity
1 | $ sudo zypper install mail |
Then try to send email from command line with:
1 | $ echo "Message Body" | mail -s "Message Subject" receiver@example.com |
참조
Raspberry Pi 3 64bit OS openSUSE: Service 관리