Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
vagrant [2016/01/08 04:12]
admin [Custom Vagrant Box Using Veewee]
vagrant [2016/01/08 04:40]
admin [Custom Vagrant Box Using Veewee]
Line 107: Line 107:
 At this stage we have a //​**definitions**//​ directory that was created under //​**/​home/​user/​Vagrant**//​ (our workdir). Inside this directory is another one named //​**debian-8.2-amd64**//​ after our previous ''​%%veewee vbox define%%''​ command options. Inside this //​definitions//​ directory we'll look at two files: At this stage we have a //​**definitions**//​ directory that was created under //​**/​home/​user/​Vagrant**//​ (our workdir). Inside this directory is another one named //​**debian-8.2-amd64**//​ after our previous ''​%%veewee vbox define%%''​ command options. Inside this //​definitions//​ directory we'll look at two files:
  
-//​**definition.rb**//​+__//​**definition.rb**//​__
  
 Change the following lines: Change the following lines:
Line 133: Line 133:
 The **iso_md5** parameter is commented out as I couldn'​t figure out where to find this for Debian releases :-\ The **iso_md5** parameter is commented out as I couldn'​t figure out where to find this for Debian releases :-\
  
-//​**preseed.cfg**//​+__//​**preseed.cfg**//​__
  
-Change the following ​line:+Change the following ​lines:
 <​code>​ <​code>​
 +...
 +# Keyboard selection.
 +#d-i keymap select us
 +d-i keyboard-configuration/​xkb-keymap select us
 +...
 +d-i partman/​default_filesystem string ext3
 ... ...
 # Individual additional packages to install # Individual additional packages to install
 d-i pkgsel/​include string openssh-server ntp acpid  sudo bzip2 rsync d-i pkgsel/​include string openssh-server ntp acpid  sudo bzip2 rsync
 +...
 +#d-i grub-installer/​bootdev ​ string (hd0,0)
 ... ...
 </​code>​ </​code>​
Line 145: Line 153:
 To this: To this:
 <​code>​ <​code>​
 +...
 +# Keyboard selection.
 +#d-i keymap select us
 +d-i keyboard-configuration/​xkb-keymap select fr
 +...
 +d-i partman/​default_filesystem string ext4
 +...
 # Individual additional packages to install # Individual additional packages to install
 d-i pkgsel/​include string openssh-server ntp acpid sudo bzip2 rsync ruby-dev d-i pkgsel/​include string openssh-server ntp acpid sudo bzip2 rsync ruby-dev
 +...
 +d-i grub-installer/​bootdev ​ string /dev/sda
 +...
 </​code>​ </​code>​