aptitude install mysql-server
同时弹出一个提示,要求我设置 root 密码。我想通过在初始命令中指定密码来避免这种情况。我该怎么做?
答案1
看一下debconf-set-selections
手册页 - 它应该能够满足您的要求。
您应该能够进入已经安装了 MySQL 的机器,然后执行以下操作:-
debconf-get-selections | grep "^mysql-server" >mysql-server-sel.txt
然后将其复制到目标框并运行:-
debconf-set-selections mysql-server-sel.txt
apt-get install mysql-server