페도라에서 Bit Torrent Sync 자동 시작 방법?


3

Bit Torrent Sync와 Fedora를 처음 접했습니다. 내 컴퓨터가 시작될 때 BT Sync가 어떻게 시작될 수 있습니까? 브라우저 클라이언트를 통해 동기화 할 수 있지만 컴퓨터가 부팅 될 때 자동 시작되지 않습니다.

감사.

답변:


3

거기에 훌륭한 가이드가 있습니다. BitTorrent 공개 토론 . 본질적으로 systemd 부팅 및 종료시 BTsync 데몬의 시작 및 종료를 처리하는 장치 파일입니다.

/etc/systemd/system/btsync@.service:

[Unit]
Description=BitTorrent Sync for %i

[Service]
Type=simple
User=%i
ExecStart=/path/to/btsync --nodaemon --config %h/.sync/sync.conf
WorkingDirectory=%h

[Install]
WantedBy=multi-user.target

사용 시작 : systemctl start btsync@username.service 다음을 사용하여 부팅 할 때 시작 : systemctl enable btsync@username.service

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.