BTSync:在 Ubuntu Server 14 上无需任何提示即可静默安装 Bittorent Sync

BTSync:在 Ubuntu Server 14 上无需任何提示即可静默安装 Bittorent Sync

尝试安装btsync以全自动模式进行安装 - 静默,无需任何提示。

我尝试使用assume yes功能aptDEBIAN_FRONTEND环境变量,但没有成功:

export DEBIAN_FRONTEND=noninteractive
sudo add-apt-repository -y ppa:tuxpoldo/btsync
sudo apt-get update
sudo apt-get --assume-yes -y install btsync

我还发现本文关于mysql密码,但问题类似。他们通过工具解决了debconf-set-selections

在哪里可以得到这些工具的选择debconf-set-selections,以便我可以预定义它们或任何其他方式来自动化安装?

答案1

apt不用这个也可以:

echo "deb http://archive.ubuntu.com/ubuntu trusty main universe" > /etc/apt/sources.list
apt-get update

# Download and extract the executable to /usr/bin
curl -o /usr/bin/btsync.tar.gz http://download-new.utorrent.com/endpoint/btsync/os/linux-x64/track/stable
cd /usr/bin && tar -xzvf btsync.tar.gz && rm btsync.tar.gz

btsync

通过 Dockerfile

相关内容