如何将 mount_afp 添加到系统启动

如何将 mount_afp 添加到系统启动

我觉得这是一个非常愚蠢的问题,但是......

我正在运行 Ubuntu 13.04,并且正在运行以下命令来连接到我的苹果时间胶囊

    mount_afp afp://user:password@server_host_or_ip/Data ~/capsule

我目前在登录后从终端运行它,但我想在启动时自动运行它

作为一个 Ubuntu 新手,我不知道该去哪里找

任何/所有帮助表示感谢

@thefourtheye - 这是 rc.local 的内容

    #!/bin/sh -e
    mount_afp afp://user:password@server_host_or_ip/Data ~/capsule
    exit 0

答案1

添加

mount_afp afp://user:password@server_host_or_ip/Data ~/capsule

/etc/rc.local

文件。这将确保每次登录时都会执行 mount_afp 命令。

相关内容