Advertisement
Guest User

Untitled

a guest
Nov 12th, 2011
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # Enable first user as sudo user
  2. d-i passwd/root-login boolean false
  3. # Disable loading firmware, provided post install
  4. d-i hw-detect/load_firmware boolean false
  5. # Disable networking set-up, this is a live cd, so not needed as self-contained
  6. d-i netcfg/enable boolean false
  7. # Change default hostname to Shard Linux
  8. d-i netcfg/get_hostname string shardlinux
  9. d-i netcfg/get_hostname seen false
  10. # Change default filesystem from ext3 to ext4
  11. d-i partman/default_filesystem string ext4
  12. # Run final commands in target install
  13. # Copy across default apt sources
  14. d-i preseed/late_command string \
  15. in-target mv -f /etc/apt/sources-list-post-preseed /etc/apt/sources.list ;\
  16. in-target rm /etc/apt/sources-list-post-preseed ;\
  17. in-target rm /etc/apt/sources.list.d/* ;\
  18. in-target cb-fstabfix ;
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement