使用 RSync 将 Thunderbird 从一台笔记本电脑备份到另一台笔记本电脑?

使用 RSync 将 Thunderbird 从一台笔记本电脑备份到另一台笔记本电脑?

我在另一台想要备份的笔记本电脑上安装了 Ubuntu。

我运行这个:

ole@mkt:~$ rsync -vaz /home/ole/.thunderbird [email protected]:/~
[email protected]'s password: 
sending incremental file list
rsync: mkdir "/~" failed: Permission denied (13)
rsync error: error in file IO (code 11) at main.c(682) [Receiver=3.1.3]
rsync: [sender] write error: Broken pipe (32)

而且显然不允许.thunderbird在备份目标上创建目录。

有什么想法吗?

答案1

显然 rsync 无法解决/~。如果我将示例更改为以下内容:

rsync -vaz /home/ole/.thunderbird [email protected]:/home/ole/

有用。

相关内容