![rsync: 해당 파일이나 디렉터리가 없습니다 (2)](https://linux55.com/image/211183/rsync%3A%20%ED%95%B4%EB%8B%B9%20%ED%8C%8C%EC%9D%BC%EC%9D%B4%EB%82%98%20%EB%94%94%EB%A0%89%ED%84%B0%EB%A6%AC%EA%B0%80%20%EC%97%86%EC%8A%B5%EB%8B%88%EB%8B%A4%20(2).png)
Remindfox.ics가 복사되었음에도 이 메시지가 나타납니다.
해결책이 있나요?
rsync: link_stat "/home/andy/.mozilla/seamonkey/dsgt0f2o.default/reminderfox.ics" failed: No such file or directory (2)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1196) [sender=3.1.2]
#!/bin/bash
Seamonkey_Dir="/home/andy/.mozilla/seamonkey/dsgt0f2o.default/"
Backup_Directory="/media/storagedrive/Ubuntu_Mate_18.04/"
Seamonkey_Reminder_Dir="/home/andy/.mozilla/seamonkey/dsgt0f2o.default/reminderfox/"
UbuntuMate_20_04_ReminderFox_Dir="/media/andy/5b4b2ae5-9aaa-4559-9f41-afb313998c75/home/andy/.mozilla/seamonkey/7g4136n1.default/reminderfox/"
# Backup reminderfox reminders This WORKS
cd $Seamonkey_Dir
rsync --progress -r -u -q reminderfox.ics $Backup_Directory
#
# Copy reminderfox .ics file to the 20.04 installation
# This WORKS despite any rsync errors.
#
rsync --progress -r -u -q $Seamonkey_Reminder_Dir/reminderfox.ics $UbuntuMate_20_04_ReminderFox_Dir