1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Raspberry Pi をAFPサーバーにする

Last updated at Posted at 2020-05-02

コレは何?

ラズパイの/home/pi/shareフォルダを、Macに共有するための設定です。

ラズパイのフォルダーからMacへのファイルの移動は、rcpを使用していましたがさすがに面倒になったので共有フォルダを作成しました。
Sambaも試してみたのですが、ファイルのパーミッションまわりが気に入らなかったのでAFPにしました。

必要な準備 for Raspberry Pi

sh
$ sudo apt-get install netatalk
$ dpkg -l | grep netatalk
ii  netatalk                              3.1.12~ds-3                         armhf        Apple Filing Protocol servic

バージョンが、2と3で挙動が異なるようです。

3の場合は、/etc/netatalk/afp.confの編集が必要です。

sh
sudo vi /etc/netatalk/afp.conf
sh
;
; Netatalk 3.x configuration file
;

[Raspi4]
 path = /home/pi/share

こんな感じです。

詳細は、こちらで確認して下さい。

再起動します。

sh
$ sudo systemctl restart netatalk

Mac側の操作

image.png

から、

image.png

Raspberry Piの接続先を設定します。

以上で終了です。

サービスの停止

sh
$ sudo systemctl stop netatalk
$ sudo systemctl disable netatalk
Synchronizing state of netatalk.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install disable netatalk
Removed /etc/systemd/system/multi-user.target.wants/netatalk.service.
1
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?