- Instant Debian:Build a Web Server
- Jose Miguel Parrella
- 258字
- 2021-08-04 10:11:39
How to do it…
Preseeding is one of the faster ways to save time during Debian installation. As with remastering, you install one system, and you extract the answers to the configuration prompts handled through the debconf
program in order for them to be reused in a new installation.
- You can also create your own preseed files by specifying as many answers as you need using standard tools:
apt-get install debconf-utils debconf-get-selections –installer >preseed.cfg
- Inspect the contents of this file with your favorite editor (
editor preseed.cfg
). You will find that questions that were asked on the installer are preceded by # and your answers are below. Some answers, such as password, are not included. Also, there are a lot of answers that you don't even remember to be asked about—those are defaults. Finally, you will notice that there is no answer for your partitioning elections, on the basis that you might have different servers with different hardware and different storage to address. - Once you have a preseed file that works, instead of selecting the Install option of Debian, you can choose Advanced options, and then Automated install to specify the URL of your preseed file. Probably, you will find the easiest way to do this is to serve it from another web server.
- You can also feed broader choices, not only install-time choices, using
debconf-get-selections
without the–installer
flag. It is useful to capture these choices at the end of your configuration process (that is, when you're done with this book).debconf-get-selections> package-choices.log
推薦閱讀
- vSphere High Performance Cookbook
- iOS開發實戰:從零基礎到App Store上架
- Servlet/JSP深入詳解
- Learning Linux Binary Analysis
- 小程序,巧運營:微信小程序運營招式大全
- Python算法指南:程序員經典算法分析與實現
- 編程與類型系統
- QGIS Python Programming Cookbook(Second Edition)
- Modern C++ Programming Cookbook
- JSP程序設計與案例實戰(慕課版)
- AMP:Building Accelerated Mobile Pages
- LabVIEW數據采集
- ASP.NET Core and Angular 2
- Kohana 3.0 Beginner's Guide
- Visual C++網絡編程教程(Visual Studio 2010平臺)