Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Raspberry Pi でMac のTimeMachineサーバを作ってみる
Search
kenkino
January 16, 2025
Technology
0
12
Raspberry Pi でMac のTimeMachineサーバを作ってみる
kenkino
January 16, 2025
Tweet
Share
More Decks by kenkino
See All by kenkino
狩猟免許を取ってみた
kenkino
0
46
OSCについて2024 -ウィズコロナのOSCについて
kenkino
0
44
4Kディスプレイを買ってみた。
kenkino
0
25
Intel Macで雑にローカルLLM
kenkino
0
440
デジタルビデオの動画をMacのターミナルだけでmp4に変換する話
kenkino
0
97
自宅J-COMが繋がらなくなったので色々試して復旧した話
kenkino
0
230
手前味噌なOODAループの話.pdf
kenkino
0
250
2022/11 ssmjp OSC Online その後
kenkino
0
77
自宅FreeBSD VMにxrdpを入れてみた
kenkino
0
280
Other Decks in Technology
See All in Technology
Zero Data Loss Autonomous Recovery Service サービス概要
oracle4engineer
PRO
1
5k
comilioとCloudflare、そして未来へと向けて
oliver_diary
5
400
12 Days of OpenAIから読み解く、生成AI 2025年のトレンド
shunsukeono_am
0
1.1k
テストを書かないためのテスト/ Tests for not writing tests
sinsoku
1
160
Bring Your Own Container: When Containers Turn the Key to EDR Bypass/byoc-avtokyo2024
tkmru
0
770
チームが毎日小さな変化と適応を続けたら1年間でスケール可能なアジャイルチームができた話 / Building a Scalable Agile Team
kakehashi
1
190
20240522 - 躍遷創作理念 @ PicCollage Workshop
dpys
0
310
シフトライトなテスト活動を適切に行うことで、無理な開発をせず、過剰にテストせず、顧客をビックリさせないプロダクトを作り上げているお話 #RSGT2025 / Shift Right
nihonbuson
3
1.9k
効率的な技術組織が作れる!書籍『チームトポロジー』要点まとめ
iwamot
2
200
JAWS-UG20250116_iOSアプリエンジニアがAWSreInventに行ってきた(真面目編)
totokit4
0
110
Visual StudioとかIDE関連小ネタ話
kosmosebi
1
330
Fearsome File Formats
ange
0
580
Featured
See All Featured
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.2k
Building Adaptive Systems
keathley
38
2.3k
How STYLIGHT went responsive
nonsquared
96
5.3k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
Agile that works and the tools we love
rasmusluckow
328
21k
Raft: Consensus for Rubyists
vanstee
137
6.7k
Writing Fast Ruby
sferik
628
61k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
33
2.7k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
490
Transcript
Raspberry piで Time Machineサーバを作る
このスライド Raspberry piを使ってMacのTime Machineバック アップサーバを作るという話。
自己紹介 • 名前:木下兼一 • 趣味:家のネットワークいじり FreeBSD、Linux、Raspberry Piいじり サイクリング、キャンプ、 ドローン(屋外で飛ばせるのが欲しい&資格取らんと)
Macのバックアップどうしてます? • 普通はUSB HDDを繋いでバックアップ? – 据え置きならいいけど持ち運びが面倒 • NASもあるけどどうなんですかね • 昔はTime
Capsuleなんてありましたが • まぁ作ってみますか
材料 • Raspberry Pi 4 : LANが1Gbpsフル対応、USB3 にも対応したので使える • USB接続HDD
: 自分が使っているMacのスト レージの2倍の容量のモノを用意
下準備 • Raspberry pi 4 : – microSDにraspberry pi OSを書き込んで起動
– セキュリティやら諸々設定 • USB接続HDD : Macに接続してフォーマット – フォーマットはHFS Plus • フォーマット後 – HDDのパーミッションを変更 • 「everyone」 • 「読み/書き」 にセットしてアンマウント
Raspberry Pi パッケージインストー ル • Raspberry pi 4で下記のパッケージをインス トール –
$ apt install netatalk – $ apt install avahi-daemon – $ apt install hfsprogs hfsplus
USB HDD設定 • USB HDDマウント用ディレクトリを作成 • USB HDDを接続 • 下記コマンドでUSB
HDDのIDを確認 – $ blkid • /etc/fstab に記述 – UUID=USB HDDのID マウントするディレクトリ hfsplus force,rw,user,auto,nofail 0 0 • マウント
設定ファイル等を作成 • 下記設定ファイルを作成 – /etc/netatalk/afp.conf – /etc/nsswitch.conf • サービス起動ファイルを作成 –
/etc/avahi/services/afpd.service
サービス起動 • 下記コマンドでサービスを起動 – # service avahi-daemon start – #
service netatalk start • Raspberry Pi起動時にサービスを立ち上げてお きたい場合は下記も設定 – # systemctl enable avahi-daemon – # systemctl enable netatalk
Macの設定 • Macの「システム設定」→「一般」→「Time Machine」でバックアップの設定を開く • +をクリックしてRaspberry Piにマウントした ディスクが出てくるのでバックアップ用に設定
ということで ご静聴ありがとうございました!!