Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.92 KB | None | 0 0
  1. -----------------------boot-----------------------------------------
  2. default oem
  3. label oem
  4. menu label ^OEM install
  5. kernel /install/vmlinuz
  6. append file=/cdrom/preseed/oem.seed debian-installer/locale=ru_RU.UTF-8 console-setup/layoutcode=ru localechooser/translation/warn-light=true localechooser/translation/warn-severe=true console-setup/toggle=Alt+Shift initrd=/install/initrd.gz quiet --
  7.  
  8. ----------------------------------------------------------------------
  9.  
  10.  
  11. ### Localization
  12. # Preseeding only locale sets language, country and locale.
  13. d-i debian-installer/locale string ru_RU
  14.  
  15. # The values can also be preseeded individually for greater flexibility.
  16. d-i debian-installer/language string ru
  17. d-i debian-installer/country string RU
  18. d-i debian-installer/locale string ru_RU.UTF-8
  19. # Optionally specify additional locales to be generated.
  20. d-i localechooser/supported-locales multiselect en_US.UTF-8,ru_RU.UTF-8
  21.  
  22. # Keyboard selection.
  23. d-i keyboard-configuration/xkb-keymap select ru
  24. # d-i keyboard-configuration/toggle select No toggling
  25.  
  26. ### Network configuration
  27. # Disable network configuration entirely. This is useful for cdrom
  28. # installations on non-networked devices where the network questions,
  29. # warning and long timeouts are a nuisance.
  30. #d-i netcfg/enable boolean false
  31.  
  32. # netcfg will choose an interface that has link if possible. This makes it
  33. # skip displaying a list if there is more than one interface.
  34. #d-i netcfg/choose_interface select auto
  35.  
  36. # To pick a particular interface instead:
  37. #d-i netcfg/choose_interface select eth1
  38.  
  39. # To set a different link detection timeout (default is 3 seconds).
  40. # Values are interpreted as seconds.
  41. #d-i netcfg/link_wait_timeout string 10
  42.  
  43. # If you have a slow dhcp server and the installer times out waiting for
  44. # it, this might be useful.
  45. #d-i netcfg/dhcp_timeout string 60
  46. #d-i netcfg/dhcpv6_timeout string 60
  47.  
  48. # If you prefer to configure the network manually, uncomment this line and
  49. # the static network configuration below.
  50. #d-i netcfg/disable_autoconfig boolean true
  51.  
  52. # If you want the preconfiguration file to work on systems both with and
  53. # without a dhcp server, uncomment these lines and the static network
  54. # configuration below.
  55. #d-i netcfg/dhcp_failed note
  56. #d-i netcfg/dhcp_options select Configure network manually
  57.  
  58. # Static network configuration.
  59. #
  60. # IPv4 example
  61. #d-i netcfg/get_ipaddress string 192.168.1.42
  62. #d-i netcfg/get_netmask string 255.255.255.0
  63. #d-i netcfg/get_gateway string 192.168.1.1
  64. #d-i netcfg/get_nameservers string 192.168.1.1
  65. #d-i netcfg/confirm_static boolean true
  66. #
  67. # IPv6 example
  68. #d-i netcfg/get_ipaddress string fc00::2
  69. #d-i netcfg/get_netmask string ffff:ffff:ffff:ffff::
  70. #d-i netcfg/get_gateway string fc00::1
  71. #d-i netcfg/get_nameservers string fc00::1
  72. #d-i netcfg/confirm_static boolean true
  73.  
  74. # Any hostname and domain names assigned from dhcp take precedence over
  75. # values set here. However, setting the values still prevents the questions
  76. # from being shown, even if values come from dhcp.
  77. d-i netcfg/get_hostname string unassigned-hostname
  78. d-i netcfg/get_domain string unassigned-domain
  79.  
  80. # If you want to force a hostname, regardless of what either the DHCP
  81. # server returns or what the reverse DNS entry for the IP is, uncomment
  82. # and adjust the following line.
  83. #d-i netcfg/hostname string somehost
  84.  
  85. # Disable that annoying WEP key dialog.
  86. d-i netcfg/wireless_wep string
  87. # The wacky dhcp hostname that some ISPs use as a password of sorts.
  88. #d-i netcfg/dhcp_hostname string radish
  89.  
  90. # If non-free firmware is needed for the network or other hardware, you can
  91. # configure the installer to always try to load it, without prompting. Or
  92. # change to false to disable asking.
  93. #d-i hw-detect/load_firmware boolean true
  94.  
  95. ### Network console
  96. # Use the following settings if you wish to make use of the network-console
  97. # component for remote installation over SSH. This only makes sense if you
  98. # intend to perform the remainder of the installation manually.
  99. #d-i anna/choose_modules string network-console
  100. #d-i network-console/authorized_keys_url string http://10.0.0.1/openssh-key
  101. #d-i network-console/password password r00tme
  102. #d-i network-console/password-again password r00tme
  103.  
  104. ### Mirror settings
  105. # If you select ftp, the mirror/country string does not need to be set.
  106. #d-i mirror/protocol string ftp
  107. #d-i mirror/country string manual
  108. #d-i mirror/http/hostname string http.us.debian.org
  109. #d-i mirror/http/directory string /debian
  110. #d-i mirror/http/proxy string
  111.  
  112. # Suite to install.
  113. #d-i mirror/suite string testing
  114. # Suite to use for loading installer components (optional).
  115. #d-i mirror/udeb/suite string testing
  116.  
  117. ### Account setup
  118. # Skip creation of a root account (normal user account will be able to
  119. # use sudo).
  120. d-i passwd/root-login boolean false
  121. # Alternatively, to skip creation of a normal user account.
  122. d-i passwd/make-user boolean true
  123.  
  124. # Root password, either in clear text
  125. #d-i passwd/root-password password r00tme
  126. #d-i passwd/root-password-again password r00tme
  127. # or encrypted using an MD5 hash.
  128. #d-i passwd/root-password-crypted password [MD5 hash]
  129.  
  130. # To create a normal user account.
  131. d-i passwd/user-fullname string Debian User
  132. #d-i passwd/username string user
  133. # Normal user's password, either in clear text
  134. d-i passwd/user-password password insecure
  135. d-i passwd/user-password-again password insecure
  136. # or encrypted using an MD5 hash.
  137. #d-i passwd/user-password-crypted password [MD5 hash]
  138. # Create the first user with the specified UID instead of the default.
  139. #d-i passwd/user-uid string 1010
  140.  
  141. # The user account will be added to some standard initial groups. To
  142. # override that, use this.
  143. #d-i passwd/user-default-groups string audio cdrom video
  144.  
  145. ### Clock and time zone setup
  146. # Controls whether or not the hardware clock is set to UTC.
  147. d-i clock-setup/utc boolean true
  148.  
  149. # You may set this to any valid setting for $TZ; see the contents of
  150. # /usr/share/zoneinfo/ for valid values.
  151. d-i time/zone string EU/Moscow
  152.  
  153. # Controls whether to use NTP to set the clock during the install
  154. d-i clock-setup/ntp boolean true
  155. # NTP server to use. The default is almost always fine here.
  156. #d-i clock-setup/ntp-server string ntp.example.com
  157.  
  158. ### Partitioning
  159. ## Partitioning example
  160. # If the system has free space you can choose to only partition that space.
  161. # This is only honoured if partman-auto/method (below) is not set.
  162. #d-i partman-auto/init_automatically_partition select biggest_free
  163.  
  164. # Alternatively, you may specify a disk to partition. If the system has only
  165. # one disk the installer will default to using that, but otherwise the device
  166. # name must be given in traditional, non-devfs format (so e.g. /dev/sda
  167. # and not e.g. /dev/discs/disc0/disc).
  168. # For example, to use the first SCSI/SATA hard disk:
  169. d-i partman-auto/disk string /dev/sda
  170. # In addition, you'll need to specify the method to use.
  171. # The presently available methods are:
  172. # - regular: use the usual partition types for your architecture
  173. # - lvm: use LVM to partition the disk
  174. # - crypto: use LVM within an encrypted partition
  175. #d-i partman-auto/method string lvm
  176.  
  177. # If one of the disks that are going to be automatically partitioned
  178. # contains an old LVM configuration, the user will normally receive a
  179. # warning. This can be preseeded away...
  180. #d-i partman-lvm/device_remove_lvm boolean true
  181. # The same applies to pre-existing software RAID array:
  182. d-i partman-md/device_remove_md boolean true
  183. # And the same goes for the confirmation to write the lvm partitions.
  184. #d-i partman-lvm/confirm boolean true
  185. #d-i partman-lvm/confirm_nooverwrite boolean true
  186.  
  187. # You can choose one of the three predefined partitioning recipes:
  188. # - atomic: all files in one partition
  189. # - home: separate /home partition
  190. # - multi: separate /home, /var, and /tmp partitions
  191. #d-i partman-auto/choose_recipe select atomic
  192.  
  193. # Or provide a recipe of your own...
  194. # If you have a way to get a recipe file into the d-i environment, you can
  195. # just point at it.
  196. #d-i partman-auto/expert_recipe_file string /hd-media/recipe
  197.  
  198. # If not, you can put an entire recipe into the preconfiguration file in one
  199. # (logical) line. This example creates a small /boot partition, suitable
  200. # swap, and uses the rest of the space for the root partition:
  201. #d-i partman-auto/expert_recipe string \
  202. # boot-root :: \
  203. # 40 50 100 ext3 \
  204. # $primary{ } $bootable{ } \
  205. # method{ format } format{ } \
  206. # use_filesystem{ } filesystem{ ext3 } \
  207. # mountpoint{ /boot } \
  208. # . \
  209. # 500 10000 1000000000 ext3 \
  210. # method{ format } format{ } \
  211. # use_filesystem{ } filesystem{ ext3 } \
  212. # mountpoint{ / } \
  213. # . \
  214. # 64 512 300% linux-swap \
  215. # method{ swap } format{ } \
  216. # .
  217.  
  218. # The full recipe format is documented in the file partman-auto-recipe.txt
  219. # included in the 'debian-installer' package or available from D-I source
  220. # repository. This also documents how to specify settings such as file
  221. # system labels, volume group names and which physical devices to include
  222. # in a volume group.
  223.  
  224. # This makes partman automatically partition without confirmation, provided
  225. # that you told it what to do using one of the methods above.
  226. #d-i partman-partitioning/confirm_write_new_label boolean true
  227. #d-i partman/choose_partition select finish
  228. #d-i partman/confirm boolean true
  229. #d-i partman/confirm_nooverwrite boolean true
  230.  
  231. ## Partitioning using RAID
  232. # The method should be set to "raid".
  233. #d-i partman-auto/method string raid
  234. # Specify the disks to be partitioned. They will all get the same layout,
  235. # so this will only work if the disks are the same size.
  236. #d-i partman-auto/disk string /dev/sda /dev/sdb
  237.  
  238. # Next you need to specify the physical partitions that will be used.
  239. #d-i partman-auto/expert_recipe string \
  240. # multiraid :: \
  241. # 1000 5000 4000 raid \
  242. # $primary{ } method{ raid } \
  243. # . \
  244. # 64 512 300% raid \
  245. # method{ raid } \
  246. # . \
  247. # 500 10000 1000000000 raid \
  248. # method{ raid } \
  249. # .
  250.  
  251. # Last you need to specify how the previously defined partitions will be
  252. # used in the RAID setup. Remember to use the correct partition numbers
  253. # for logical partitions. RAID levels 0, 1, 5, 6 and 10 are supported;
  254. # devices are separated using "#".
  255. # Parameters are:
  256. # <raidtype> <devcount> <sparecount> <fstype> <mountpoint> \
  257. # <devices> <sparedevices>
  258.  
  259. #d-i partman-auto-raid/recipe string \
  260. # 1 2 0 ext3 / \
  261. # /dev/sda1#/dev/sdb1 \
  262. # . \
  263. # 1 2 0 swap - \
  264. # /dev/sda5#/dev/sdb5 \
  265. # . \
  266. # 0 2 0 ext3 /home \
  267. # /dev/sda6#/dev/sdb6 \
  268. # .
  269.  
  270. # For additional information see the file partman-auto-raid-recipe.txt
  271. # included in the 'debian-installer' package or available from D-I source
  272. # repository.
  273.  
  274. # This makes partman automatically partition without confirmation.
  275. #d-i partman-md/confirm boolean true
  276. #d-i partman-partitioning/confirm_write_new_label boolean true
  277. #d-i partman/choose_partition select finish
  278. #d-i partman/confirm boolean true
  279. #d-i partman/confirm_nooverwrite boolean true
  280.  
  281. ## Controlling how partitions are mounted
  282. # The default is to mount by UUID, but you can also choose "traditional" to
  283. # use traditional device names, or "label" to try filesystem labels before
  284. # falling back to UUIDs.
  285. d-i partman/mount_style select uuid
  286.  
  287. ### Base system installation
  288. # Configure APT to not install recommended packages by default. Use of this
  289. # option can result in an incomplete system and should only be used by very
  290. # experienced users.
  291. #d-i base-installer/install-recommends boolean false
  292.  
  293. # The kernel image (meta) package to be installed; "none" can be used if no
  294. # kernel is to be installed.
  295. #d-i base-installer/kernel/image string linux-image-586
  296.  
  297. ### Apt setup
  298. #3 You can choose to install non-free and contrib software.
  299. #d-i apt-setup/non-free boolean true
  300. #d-i apt-setup/contrib boolean true
  301. # Uncomment this if you don't want to use a network mirror.
  302. #d-i apt-setup/use_mirror boolean false
  303. # Select which update services to use; define the mirrors to be used.
  304. # Values shown below are the normal defaults.
  305. #d-i apt-setup/services-select multiselect security, updates
  306. #d-i apt-setup/security_host string security.debian.org
  307.  
  308. # Additional repositories, local[0-9] available
  309. #d-i apt-setup/local0/repository string \
  310. # http://local.server/debian stable main
  311. #d-i apt-setup/local0/comment string local server
  312. # Enable deb-src lines
  313. #d-i apt-setup/local0/source boolean true
  314. # URL to the public key of the local repository; you must provide a key or
  315. # apt will complain about the unauthenticated repository and so the
  316. # sources.list line will be left commented out
  317. #d-i apt-setup/local0/key string http://local.server/key
  318.  
  319. # By default the installer requires that repositories be authenticated
  320. # using a known gpg key. This setting can be used to disable that
  321. # authentication. Warning: Insecure, not recommended.
  322. #d-i debian-installer/allow_unauthenticated boolean true
  323.  
  324. # Uncomment this to add multiarch configuration for i386
  325. #d-i apt-setup/multiarch string i386
  326.  
  327.  
  328. ### Package selection
  329. #tasksel tasksel/first multiselect standard, web-server, kde-desktop
  330.  
  331. # Individual additional packages to install
  332. #d-i pkgsel/include string openssh-server build-essential
  333. # Whether to upgrade packages after debootstrap.
  334. # Allowed values: none, safe-upgrade, full-upgrade
  335. #d-i pkgsel/upgrade select none
  336.  
  337. # Some versions of the installer can report back on what software you have
  338. # installed, and what software you use. The default is not to report back,
  339. # but sending reports helps the project determine what software is most
  340. # popular and include it on CDs.
  341. #popularity-contest popularity-contest/participate boolean false
  342.  
  343. ### Boot loader installation
  344. # Grub is the default boot loader (for x86). If you want lilo installed
  345. # instead, uncomment this:
  346. #d-i grub-installer/skip boolean true
  347. # To also skip installing lilo, and install no bootloader, uncomment this
  348. # too:
  349. #d-i lilo-installer/skip boolean true
  350.  
  351.  
  352. # This is fairly safe to set, it makes grub install automatically to the MBR
  353. # if no other operating system is detected on the machine.
  354. d-i grub-installer/only_debian boolean true
  355.  
  356. # This one makes grub-installer install to the MBR if it also finds some other
  357. # OS, which is less safe as it might not be able to boot that other OS.
  358. #d-i grub-installer/with_other_os boolean true
  359.  
  360. # Due notably to potential USB sticks, the location of the MBR can not be
  361. # determined safely in general, so this needs to be specified:
  362. #d-i grub-installer/bootdev string /dev/sda
  363. # To install to the first device (assuming it is not a USB stick):
  364. #d-i grub-installer/bootdev string default
  365.  
  366. # Alternatively, if you want to install to a location other than the mbr,
  367. # uncomment and edit these lines:
  368. #d-i grub-installer/only_debian boolean false
  369. #d-i grub-installer/with_other_os boolean false
  370. #d-i grub-installer/bootdev string (hd0,1)
  371. # To install grub to multiple disks:
  372. #d-i grub-installer/bootdev string (hd0,1) (hd1,1) (hd2,1)
  373.  
  374. # Optional password for grub, either in clear text
  375. #d-i grub-installer/password password r00tme
  376. #d-i grub-installer/password-again password r00tme
  377. # or encrypted using an MD5 hash, see grub-md5-crypt(8).
  378. #d-i grub-installer/password-crypted password [MD5 hash]
  379.  
  380. # Use the following option to add additional boot parameters for the
  381. # installed system (if supported by the bootloader installer).
  382. # Note: options passed to the installer will be added automatically.
  383. #d-i debian-installer/add-kernel-opts string nousb
  384.  
  385. ### Finishing up the installation
  386. # During installations from serial console, the regular virtual consoles
  387. # (VT1-VT6) are normally disabled in /etc/inittab. Uncomment the next
  388. # line to prevent this.
  389. #d-i finish-install/keep-consoles boolean true
  390.  
  391. # Avoid that last message about the install being complete.
  392. d-i finish-install/reboot_in_progress note
  393.  
  394. # This will prevent the installer from ejecting the CD during the reboot,
  395. # which is useful in some situations.
  396. #d-i cdrom-detect/eject boolean false
  397.  
  398. # This is how to make the installer shutdown when finished, but not
  399. # reboot into the installed system.
  400. #d-i debian-installer/exit/halt boolean true
  401. # This will power off the machine instead of just halting it.
  402. #d-i debian-installer/exit/poweroff boolean true
  403.  
  404. ### Preseeding other packages
  405. # Depending on what software you choose to install, or if things go wrong
  406. # during the installation process, it's possible that other questions may
  407. # be asked. You can preseed those too, of course. To get a list of every
  408. # possible question that could be asked during an install, do an
  409. # installation, and then run these commands:
  410. # debconf-get-selections --installer > file
  411. # debconf-get-selections >> file
  412.  
  413.  
  414. #### Advanced options
  415. ### Running custom commands during the installation
  416. # d-i preseeding is inherently not secure. Nothing in the installer checks
  417. # for attempts at buffer overflows or other exploits of the values of a
  418. # preconfiguration file like this one. Only use preconfiguration files from
  419. # trusted locations! To drive that home, and because it's generally useful,
  420. # here's a way to run any shell command you'd like inside the installer,
  421. # automatically.
  422.  
  423. # This first command is run as early as possible, just after
  424. # preseeding is read.
  425. #d-i preseed/early_command string anna-install some-udeb
  426. # This command is run immediately before the partitioner starts. It may be
  427. # useful to apply dynamic partitioner preseeding that depends on the state
  428. # of the disks (which may not be visible when preseed/early_command runs).
  429. #d-i partman/early_command \
  430. # string debconf-set partman-auto/disk "$(list-devices disk | head -n1)"
  431. # This command is run just before the install finishes, but when there is
  432. # still a usable /target directory. You can chroot to /target and use it
  433. # directly, or use the apt-install and in-target commands to easily install
  434. # packages and run commands in the target system.
  435. #d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh
  436.  
  437. # The Lubuntu seeds assume that installation of Recommends is disabled.
  438. d-i base-installer/install-recommends boolean true
  439. # Enable extras.ubuntu.com.
  440. d-i apt-setup/extras boolean true
  441. # Install the Lubuntu desktop.
  442. tasksel tasksel/first multiselect lubuntu-core
  443. d-i preseed/early_command string . /usr/share/debconf/confmodule; db_get debconf/priority; case $RET in low|medium) db_fset tasksel/first seen false; echo 'tasksel tasksel/first seen false' >>/var/lib/preseed/log ;; esac
  444. # No LXDE translation packages yet.
  445. d-i pkgsel/language-pack-patterns string
  446. # Individual additional packages to install
  447. #d-i pkgsel/include string # Individual additional packages to install
  448. d-i pkgsel/include string abiword alsamixergui apport-gtk audacious audacious-plugins blueman desktop-file-utils dmz-cursor-theme evince fcitx fcitx-config-gtk2 fcitx-frontend-gtk2 fcitx-ui-classic ffmpegthumbnailer file-roller firefox fonts-nanum fonts-noto-cjk galculator gdebi gnome-disk-utility gnome-keyring gnome-mplayer gnome-system-tools gnome-time-admin gpicview gucharmap guvcview gvfs-backends gvfs-fuse hardinfo indicator-application-gtk2 language-selector-gnome leafpad libfm-modules libgtk2-perl libmtp-runtime light-locker light-locker-settings lightdm-gtk-greeter-settings lubuntu-default-session lubuntu-software-center lxappearance lxappearance-obconf lxinput lxlauncher lxpanel-indicator-applet-plugin lxrandr lxsession-default-apps lxsession-logout lxshortcut lxtask lxterminal mobile-broadband-provider-info modemmanager network-manager-gnome ntp obconf pinentry-gtk2 pm-utils python3-aptdaemon.pkcompat scrot software-properties-gtk synaptic transmission ubuntu-release-upgrader-gtk update-notifier usb-modeswitch whoopsie wvdial x11-utils xdg-user-dirs xdg-user-dirs-gtk xfce4-notifyd xfce4-power-manager xfce4-power-manager-plugins xpad xz-utils
  449.  
  450. # Whether to upgrade packages after debootstrap.
  451. # Allowed values: none, safe-upgrade, full-upgrade
  452. #d-i pkgsel/upgrade select none
  453. -------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement