我已经为 Linux Mint 14 的用户制作了这个安装后脚本(也可以在 Ubuntu 12.10 上使用),现在我正在为 Linux Mint 15 和 'echo -ne "\n" | 测试它。sudo add-apt-repository ppa:some-ppa-to-add' 命令不适用于 Linux Mint 15,但仍适用于 Mint 14。我想为新版本的 Linux Mint 更新此脚本。
这是我的安装后 scipt 的链接:The Minty Developer
Mint 14 的输出如下所示:
$ echo -ne "\n" | sudo add-apt-repository ppa:apt-fast/stable
You are about to add the following PPA to your system:
This PPA contains tested (stable) builds of apt-fast.
More info: https://launchpad.net/~apt-fast/+archive/stable
gpg: keyring `/tmp/tmpddxueh/secring.gpg' created
gpg: requesting key CA8DA16B from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpddxueh/trustdb.gpg: trustdb created
gpg: key CA8DA16B: public key "Launchpad PPA for apt-fast" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
OK
这是 Mint 15 的输出:
$ echo -ne "\n" | sudo add-apt-repository ppa:apt-fast/stable
You are about to add the following PPA to your system:
This PPA contains tested (stable) builds of apt-fast.
More info: https://launchpad.net/~apt-fast/+archive/stable
就是这样。什么都没发生。我也测试过只做 echo | ppa:some-ppa-to-add 结果是一样的。
谁能帮我弄清楚如何使这行代码/命令工作,以便可以为那些有兴趣在新版本的系统中使用它的人更新脚本?
谢谢你。