version 1.25, 2011/02/22 22:47:51
|
version 1.27, 2011/02/23 19:14:34
|
Line 116 Under */mnt/ec2*, edit the files to add
|
Line 116 Under */mnt/ec2*, edit the files to add
|
[[!template id=filecontent name=etc/rc.conf text=""" |
[[!template id=filecontent name=etc/rc.conf text=""" |
rc_configured=YES |
rc_configured=YES |
|
|
|
ec2_init=YES |
sshd=YES # for remote shell access to instance |
sshd=YES # for remote shell access to instance |
"""]] |
"""]] |
|
|
Line 126 PermitRootLogin without-password
|
Line 127 PermitRootLogin without-password
|
|
|
This file is needed if you want to login via the EC2 SSH key pair created previously: |
This file is needed if you want to login via the EC2 SSH key pair created previously: |
|
|
[[!template id=filecontent name=etc/rc.d/ec2-init text=""" |
[[!template id=filecontent name=etc/rc.d/ec2_init text=""" |
#!/bin/sh |
#!/bin/sh |
# |
# |
# PROVIDE: amazon-ec2 |
# PROVIDE: ec2_init |
# REQUIRE: NETWORKING |
# REQUIRE: NETWORKING |
# BEFORE: LOGIN |
# BEFORE: LOGIN |
|
|
$_rc_subr_loaded . /etc/rc.subr |
$_rc_subr_loaded . /etc/rc.subr |
|
|
name="ec2_init" |
name="ec2_init" |
|
rcvar=${name} |
start_cmd="ec2_init" |
start_cmd="ec2_init" |
stop_cmd=":" |
stop_cmd=":" |
|
|
Line 196 ptyfs /dev/pts ptyfs rw
|
Line 198 ptyfs /dev/pts ptyfs rw
|
procfs /proc procfs rw |
procfs /proc procfs rw |
EOF |
EOF |
# EC2 startup script (if you installed it) |
# EC2 startup script (if you installed it) |
if [ -f etc/rc.d/ec2-init ]; then |
if [ -f etc/rc.d/ec2_init ]; then |
chmod 755 etc/rc.d/ec2-init |
chmod 755 etc/rc.d/ec2_init |
fi |
fi |
"""]] |
"""]] |
|
|
Line 375 IMAGE <strong>ami-74d0231d</strong>
|
Line 377 IMAGE <strong>ami-74d0231d</strong>
|
You can now start your own NetBSD instance, via: |
You can now start your own NetBSD instance, via: |
|
|
[[!template id=programlisting text=""" |
[[!template id=programlisting text=""" |
$ ec2-run-instances ami-74d0231d -t t1.micro -z us-east-1c |
$ ec2-run-instances ami-74d0231d -t t1.micro -z us-east-1c -k $EC2_SSH_KEYNAME |
RESERVATION r-08218465 983624114127 default |
RESERVATION r-08218465 983624114127 default |
INSTANCE <strong>i-953d72f9</strong> ami-74d0231d pending 0 t1.micro 2011-02-18T02:05:46+0000 us-east-1c aki-4e7d9527 monitoring-disabled |
INSTANCE <strong>i-953d72f9</strong> ami-74d0231d pending 0 t1.micro 2011-02-18T02:05:46+0000 us-east-1c aki-4e7d9527 monitoring-disabled |
*** Wait a few minutes, micro instances take time to start *** |
*** Wait a few minutes, micro instances take time to start *** |