mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-21 05:43:10 +00:00
84 lines
1.4 KiB
ReStructuredText
84 lines
1.4 KiB
ReStructuredText
Packer for TinyCore GNS3 appliance
|
|
==================================
|
|
|
|
For building a MicroCore / TinyCore appliance.
|
|
|
|
http://tinycorelinux.net/
|
|
|
|
Clean core Linux installation
|
|
*****************************
|
|
|
|
The only added packages are:
|
|
* ipv6
|
|
* iptables
|
|
* iproute2
|
|
|
|
.. code:: bash
|
|
|
|
packer build core-linux.json
|
|
|
|
|
|
BIRD
|
|
'''''
|
|
|
|
A build of Core with BIRD Internet Routing Daemon preinstalled.
|
|
|
|
.. code:: bash
|
|
|
|
packer build -var-file=bird.json core64-linux.json
|
|
|
|
|
|
Openvswitch
|
|
''''''''''''
|
|
|
|
A build of Core with Openvswitch preinstalled.
|
|
|
|
.. code:: bash
|
|
|
|
packer build -var-file=openvswitch.json core64-linux.json
|
|
|
|
|
|
Internet
|
|
''''''''
|
|
An appliance for simulating a domestic modem. eth0 as a dhcp and eth1 should be a nat interface.
|
|
|
|
.. code:: bash
|
|
|
|
packer build -var-file=core-linux-internet.json core-linux.json
|
|
|
|
|
|
|
|
Tiny Core Linux installation
|
|
****************************
|
|
|
|
Tiny Core is Micro Core with a light GUI installed.
|
|
|
|
.. code:: bash
|
|
|
|
packer build tinycore-linux.json
|
|
|
|
Firefox
|
|
'''''''''
|
|
|
|
A build of Tiny Core with Firefox preinstalled.
|
|
|
|
.. code:: bash
|
|
|
|
packer build -var-file=tinycore-linux-firefox.json tinycore-linux.json
|
|
|
|
|
|
Ostinato
|
|
'''''''''
|
|
|
|
A build of Tiny Core with Ostinato GUI + drone preinstalled.
|
|
|
|
.. code:: bash
|
|
|
|
packer build -var-file=ostinato.json tinycore-linux.json
|
|
|
|
A drone-only VM without GUI can be build with:
|
|
|
|
.. code:: bash
|
|
|
|
packer build -var-file=ostinato-drone.json core-linux.json
|