惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
G
Google Developers Blog
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
博客园 - Franky
S
SegmentFault 最新的问题
Jina AI
Jina AI
爱范儿
爱范儿
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
C
Check Point Blog
月光博客
月光博客
P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
Martin Fowler
Martin Fowler

博客园 - 茶猫的学习笔记

WSL2 中使用 Arch Linux Beyond Compare 4 便携版 添加右键菜单 [Ubuntu 20.04] 修复‘systemd-shutdown[1]: waiting for process: crond’需等待1分半钟的问题 解决Ubuntu 20.04升级后gnome-control-center设置程序无法打开问题 Canon LBP2900安装Linux驱动的方法 CentOS8 安装 simple-scan 的方法 CentOS8 缺少 libglade2 安装包的回避方法 CentOS8 使用 aliyun 阿里云 镜像站点的方法 CentOS7或CentOS8 开机自动启用网卡的设置方法 CentOS7或CentOS8 安装VirtualBox Guest Addon缺少kernel-headers的解决办法 KDE-解决.docx .xlsx .pptx文档默认由Ark打开的问题 树莓派-Ubuntu Mate开启ssh服务 树莓派-CentOS-Minimal arm版的设置 树莓派-Ubuntu Mate开启远程桌面xrdp服务 树莓派-为Ubuntu Mate更换国内源 [转] CentOS 5.x 键盘布局改为日语 Debian/Ubuntu安装WPS (转) Vmware中Linux或macOS客户端如何回收硬盘空间 OS X 10.11:如何完全停用Time Machine。
OS X 10.11:在exFAT分区的外置硬盘上使用Time Machine。
茶猫的学习笔记 · 2019-02-21 · via 博客园 - 茶猫的学习笔记

Time Machine默认需要使用HFS+分区的外置硬盘,但在网络硬盘上也可以使用单个的 .sparsebundle 镜像文件备份。在本地USB或Firewire等接口连接的外置硬盘,只有exFAT分区,能否用上Time Machine呢,答案是肯定的。按照下面的步骤操作即可。

1. 插入外置硬盘,打开终端Terminal,定位到外置硬盘。这里外置硬盘的盘符假定为'Removable'。

2. 使用 hdiutil 命令在外置硬盘创建一个500gb的Apple sparse bundle disk image(.sparsebundle文件)。根据实际情况设置镜像大小。

sudo hdiutil create -size 500g -type SPARSEBUNDLE -fs "HFS+J" work-backup.sparsebundle

3. 在Finder的外置硬盘窗口双击打开 work-backup.sparsebundle文件,或使用open命令打开。完成后Finder和桌面会多一个可移动设备work-backup盘符。

open work-backup.sparsebundle

4. 使用 diskutil list 命令列出当前系统的所有磁盘,得到work-bakup的ID:disk2s2将会在后续命令中用到。

/dev/disk2 (disk image):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        +xxx.x GB   disk2
   1:                        EFI EFI                     xxx.x MB   disk2s1
   2:                  Apple_HFS work-backup             500.0 GB   disk2s2

5. 使用 tmutil 命令设置Time Machine备份的磁盘:

sudo diskutil enableOwnership /dev/disk2s2
sudo tmutil setdestination '/Volumes/work-backup'

至此,Time Machine设置完成,可以操作开始备份了。备份完后可手动卸载work-bakup镜像。

参考文章:
https://en.wikipedia.org/wiki/Sparse_image#Sparse_bundle_disk_images
http://mybyways.com/blog/using-an-exfat-drive-for-time-machine-backups
http://hints.macworld.com/article.php?story=20140415132734925
https://forums.macrumors.com/threads/can-i-use-time-machine-on-a-exfat-volume.2079911/