2 Answers
- Newest
- Most votes
- Most comments
0
How to install necessary driver to can run on AWS Hypervisor?
And in my issue cannot ssh into freebsd(from marketplace) ec2 instance, error permission denied, and if i sudo its private key too open, error public key.
How to fix this issue?
answered a year ago
0
FreeBSD is not a supported OS by VM Import.
Instead, you can do a snapshot import. Command is something like
aws ec2 import-snapshot --description "FreeBSD" --disk-container "file://file.json"
Do ensure that your FreeBSD image has necessary drivers to run on AWS hypervisor. This can be nvme driver, ENA driver and Xen PV drivers. After import is done, go to EC2 console, snapshots to create AMI image and launch it.
Alternatively, you can launch a FreeBSD instance from AWS Marketplace
Relevant content
- asked 2 years ago
- asked a year ago
- asked 3 months ago
- AWS OFFICIALUpdated 4 years ago
- AWS OFFICIALUpdated 4 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
You need to restrict private key file permission to yourself only, e.g. "chmod 600 <private_keyfile>" on Linux/MacOS