สร้างและจัดการอัลไพน์ VMS ที่มีน้ำหนักเบาบน MacOS ด้วย:
- การส่งต่อพอร์ตที่ไร้รอยต่อ
การแชร์ไฟล์อัตโนมัติ
- เครือข่ายเชื่อม
Aarch64 และ X86_64 การจำลอง

เป้าหมายของโครงการนี้คือการเปิดใช้งานผู้ใช้ MACOS:
macpine มีไว้สำหรับใช้กับ macOS ที่ทันสมัย รองรับ MacOS รุ่นเก่าและ OSE อื่น ๆ อาจแตกต่างกันไป
brew install macpine # installs `alpine` command and `qemu` dependency automatically ดาวน์โหลดระบบไบนารีล่าสุดสำหรับระบบของคุณและเพิ่มไปยัง $PATH ของคุณโดยย้ายไปยัง EG /usr/local/bin/ :
arch= " $( [ ` uname -m ` = ' x86_64 ' ] && echo ' amd64 ' || echo ' arm64 ' ) " # detect architecture
wget " https://github.com/beringresearch/macpine/releases/latest/download/alpine_darwin_ $arch "
mv " alpine_darwin_ $arch " alpine
sudo chmod +x alpine
sudo mv alpine /usr/local/bin/
# export PATH="$PATH:/usr/local/bin"MacPine ขึ้นอยู่กับ QEMU> = 7.22.0:
brew install qemu นอกจากนี้คุณยังสามารถติดตั้ง macpine ผ่าน MacPorts:
sudo port install macpine การสร้างจากแหล่งที่มาต้องใช้คอมไพเลอร์ go ที่ใช้งานได้และการทำงานต้องใช้ qemu :
brew install go qemu
git clone https://github.com/beringresearch/macpine
cd macpine
make # compiles the project into a local bin/ directory
make install # installs binaries to /usr/local/bin
# PREFIX=/some/other/path make install installs to /some/other/pathในการสร้างและเริ่มอินสแตนซ์ใหม่:
alpine launch # launches with default parameters
alpine launch -a aarch64 # create an aarch64 instance
alpine launch -d 10G -c 4 -m 2048 # create an instance with a 10GB disk, 4 cpus, and 2GB of RAM
alpine launch -h # view all configuration options and defaultsการเข้าถึงอินสแตนซ์ผ่าน SSH:
alpine launch -s 22 # launch an instance and expose SSH port to host port 22
alpine ssh instance-name # attach shell to instance (replace `instance-name` as appropriate)เปิดเผยพอร์ตอินสแตนซ์เพิ่มเติมเพื่อโฮสต์:
# launch an instance, expose SSH to host port 2022 and forward host ports 8888 and 5432 to instance ports 8888 and 5432
alpine launch -s 2022 -p 8888,5432
# launch an instance, expose SSH to host port 8022, forward host port 8081 to instance port 8082, and forward
# host port 8083 to instance port 8083
alpine launch -s 8022 -p 8081:8082,8083
# launch an instance, expose SSH to host port 9022, forward host port 9091 UDP to instance port 9091 UDP,
# and forward host port 9092 UDP to instance port 9093 UDP
alpine launch -s 9023 -p 9091u,9092:9093u อินสแตนซ์สามารถบรรจุได้อย่างง่ายดายสำหรับการสำรองข้อมูลหรือแชร์เป็นไฟล์ .tar.gz :
alpine list
NAME STATUS SSH PORTS ARCH PID TAGS
cheerful-result Running 2022 aarch64 26568
glittering-swing Running 3022 x86_64 57206 emulation,intelalpine publish cheerful-result สิ่งนี้จะสร้างไฟล์ cheerful-result.tar.gz ซึ่งสามารถนำเข้าได้เป็น:
# alpine delete cheerful-result
alpine import cheerful-result.tar.gzดูเอกสารทั้งหมดสำหรับข้อมูลเพิ่มเติม:
Create, control, and connect to Alpine instances.
Usage:
alpine [command]
Available Commands:
completion Generate shell autocompletions.
delete Delete instances.
edit Edit instance configurations.
exec execute a command on an instance over ssh.
help Help about any command
import Imports an instance archived with `alpine publish`.
info Display information about instances.
launch Create and start an instance.
list List instances.
pause Pause instances.
publish Publish instances.
rename Rename an instance.
restart Stop and start instances.
resume Unpause instances.
ssh Attach an interactive shell to an instance via ssh.
start Start instances.
stop Stop instances.
tag Add or remove tags from an instance.
Flags:
-h, --help help for alpine
Use "alpine [command] --help" for more information about a command. หลายอินสแตนซ์ในคำสั่ง: บางคำสั่ง ( delete , edit , info , pause , publish , restart สตาร์ท, กลับ resume , start , stop ) ยอมรับชื่ออินสแตนซ์หลายชื่อและจะทำซ้ำการดำเนินการผ่านอินสแตนซ์ชื่อที่ไม่ซ้ำกันแต่ละครั้ง
แท็ก: การใช้ alpine tag แตนซ์สามารถติดแท็กได้ แท็กสามารถใช้ในคำสั่ง multi-instance (ดูด้านบน) เช่น alpine start +foobar จะเริ่มต้นทุกกรณีที่ได้รับการติดแท็ก foobar ด้วย alpine tag instance-name foobar โปรดทราบว่าแท็ก launchctl-autostart ใช้สำหรับอินสแตนซ์เริ่มต้นอัตโนมัติที่เข้าสู่ระบบ
การเติมเงินอัตโนมัติของเชลล์: ไฟล์คำสั่งเชลล์ที่สมบูรณ์ (ติดตั้งโดยอัตโนมัติด้วย brew install macpine ) สามารถสร้างขึ้นได้ด้วยการ alpine completion [bash|zsh|fish|powershell] ดู alpine completion -h หรือเอกสารที่เสร็จสมบูรณ์สำหรับข้อมูลเพิ่มเติม