我的目标是每月将我的 ubuntu/home/
目录备份到外部驱动器,将其连接到计算机后,我就可以在 中看到它/media/ironman/Elements
。为此,我使用rsync
。
外部驱动器并不总是挂载的,所以我制作了一个交互式脚本,当驱动器没有挂载时,它会提示我挂载驱动器。我想安排这个脚本,anacron
因为我的笔记本电脑经常关机。我认为我的设置不起作用是因为交互式部分:当我从命令行运行脚本时,我自然可以在同一命令行中看到它的输出。但是,anacron 不是从命令行运行的。
这是脚本/home/ironman/scripts/backup_anacron.sh
#!/bin/bash
# Variables
SOURCE_DIR="/home/ironman"
TARGET_DIR="/media/ironman/Elements/backup_$(date +%Y%m%d)"
EXCLUDES="--exclude=\"lost+found\" --exclude=\".cache\""
RSYNC_CMD="rsync -a --info=progress2 $EXCLUDES $SOURCE_DIR/ $TARGET_DIR"
# Function to check if the drive is mounted
check_mount() {
if grep -qs "/media/ironman/Elements " /proc/mounts; then
echo "Backup drive is mounted."
return 0
else
return 1
fi
}
# Check whether backup drive has enough free space
check_space() {
# Get available space on target drive in kilobytes
available_space=$(df --output=avail "/media/ironman/Elements" | tail -1)
# Get required space for the source directory in kilobytes
required_space=$(du -sk "$SOURCE_DIR" | cut -f1)
if [ "$available_space" -ge "$required_space" ]; then
echo "Enough space on backup drive. Required: $required_space KB, Available: $available_space KB."
return 0
else
echo "Not enough space on backup drive. Required: $required_space KB, Available: $available_space KB. Manual backup necessary"
echo $RSYNC_CMD
exit 1
fi
}
# Initial check
check_mount
if [ $? -eq 1 ]; then
# If the drive is not mounted, prompt the user
echo "Please mount drive within one minute."
# Wait for up to 60 seconds for the drive to be mounted
for i in {1..60}; do
# check every second if drive is mounted
sleep 1
check_mount
if [ $? -eq 0 ]; then
# if enough space available, execute rsync, else print error message
check_space
if [ $? -eq 0 ]; then
eval $RSYNC_CMD
exit 0
fi
fi
done
fi
# If the drive is still not mounted after 60 seconds, print an error message
if [ $? -eq 1 ]; then
echo "Backup drive is not mounted. Could not backup /home/ironman/. Command for manual backup:"
echo $RSYNC_CMD
exit 1
fi
# if enough space available, execute rsync, else exit script
check_space
if [ $? -eq 0 ]; then
eval $RSYNC_CMD
exit 0
fi
我在末尾添加了以下行/etc/anacrontab
:
@monthly 15 backup.monthly nice /home/ironman/scripts/backup_anacron.sh
当我强制运行每月任务时/usr/sbin/anacron -n -f cron.monthly
,什么也没发生。我做错了什么?
[Ana]cron 不会在您的(或任何其他)交互式会话中运行。
它旨在在后台深处运行,远离任何可能“干扰”它的东西,例如[永远]等待用户响应提示。
您最好编写脚本来继续执行工作 - 安装设备,然后进行备份并再次卸载设备 - 当然,还要处理在此过程中可能发生的所有错误。
正如 Phil 所说,从 [ana]cron 运行的内容不会在您的交互式会话中运行。您没有说明交互式会话是什么样子。如果您正在运行 Linux 桌面环境,它可能会支持通知发送, 这允许您发送提示 - 但仅仅是通知(不提供让您告诉脚本继续的方法)。
如果你创建单独的脚本来
检查上次备份是否在 N 天前结束 / 驱动器是否已安装 / 如果合适则启动备份 / 发送备份已过期或需要启动的通知
执行备份
那么您可能在这里有一个可行的工作流程。
(提示:https://man.archlinux.org/man/mountpoint.1,https : //man.archlinux.org/man/core/util-linux/lsblk.8.en)
非常感谢大家的回复。我现在更清楚我的幼稚方法的缺点/误解。我将 symcbean 的帖子标记为正确答案,因为所描述的例程最能模拟我想要的交互性。