Linux Dolphin備份數據方法如下:
rsync
命令,格式為rsync -av --progress /path/to/source /path/to/destination
,可備份文件或目錄,支持增量備份。~/.config/dolphin
,數據在~/.local/share/dolphin
,可用tar
命令打包備份,如tar cvpf /tmp/dolphin_backup.tar.gz ~/.config/dolphin ~/.local/share/dolphin
。