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
。