Compare commits

...

10 Commits

Author SHA1 Message Date
John Davidson (Ivan Davidov)
0cd3096b97
Update README.md 2022-06-14 15:15:00 +03:00
John Davidson
d27e51777a
Merge pull request #19 from minimal-container-linux/master
update sources
2021-03-15 13:05:52 +02:00
Adınız
92f3672cc9 update sources 2021-03-13 23:38:33 +00:00
John Davidson
bc3dd6fc86
Added 'PayPal donation' paragraph and button. 2020-03-30 11:51:42 +03:00
John Davidson
f82634fa25
Remove the 'travis' badge. 2019-03-27 18:38:20 +02:00
John Davidson
3c967a4d7e
kernel=5.0.2 bysybox=1.30.1 2019-03-15 17:39:20 +02:00
John Davidson
6035ee37e2
Update .travis.yml 2019-01-22 15:21:58 +02:00
John Davidson
de3f9fc228
Cloud Foundry installation (test) 2019-01-22 15:09:28 +02:00
John Davidson
8e991e86ee
Cloud Foundry installation (test) 2019-01-22 15:00:09 +02:00
John Davidson
56873c0a0b
Cloud Foundry installation (test) 2019-01-22 14:52:47 +02:00
3 changed files with 6 additions and 11 deletions

View File

@ -7,10 +7,5 @@ sudo: required
script:
- sudo apt-get update
- sudo apt-get -y dist-upgrade
#- sudo apt-get -y install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
#- ./minimal.sh
- wget -O ~/bosh https://github.com/cloudfoundry/bosh-cli/releases/download/v5.4.0/bosh-cli-5.4.0-linux-amd64
- chmod +x ~/bosh
- git clone https://github.com/cloudfoundry/bosh-deployment
- mkdir -p ~/deployments/vbox
- cd ~/deployments/vbox && ~/bosh create-env ~/bosh-deployment/bosh.yml --state ./state.json -o ~/bosh-deployment/virtualbox/cpi.yml -o ~/bosh-deployment/virtualbox/outbound-network.yml -o ~/bosh-deployment/bosh-lite.yml -o ~/bosh-deployment/bosh-lite-runc.yml -o ~/bosh-deployment/uaa.yml -o ~/bosh-deployment/credhub.yml -o ~/bosh-deployment/jumpbox-user.yml --vars-store ./creds.yml -v director_name=bosh-lite -v internal_ip=192.168.50.6 -v internal_gw=192.168.50.1 -v internal_cidr=192.168.50.0/24 -v outbound_network_name=NatNetwork
- sudo apt-get -y install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
- ./minimal.sh

View File

@ -1,4 +1,4 @@
# Minimal Linux Script [<img align="right" src="https://travis-ci.org/ivandavidov/minimal-linux-script.svg?branch=master">](https://travis-ci.org/ivandavidov/minimal-linux-script)
# Minimal Linux Script
One script which generates fully functional live Linux ISO image with minimal effort. This is based on the first published version of [Minimal Linux Live](http://github.com/ivandavidov/minimal) with some improvements taken from the next releases. All empty lines and comments have been removed and the script has been modified to reduce the overall length.

View File

@ -1,9 +1,9 @@
#!/bin/sh
set -ex
KERNEL_VERSION=4.19.12
BUSYBOX_VERSION=1.29.3
KERNEL_VERSION=5.11.6
BUSYBOX_VERSION=1.33.0
SYSLINUX_VERSION=6.03
wget -O kernel.tar.xz http://kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
wget -O kernel.tar.xz http://kernel.org/pub/linux/kernel/v5.x/linux-${KERNEL_VERSION}.tar.xz
wget -O busybox.tar.bz2 http://busybox.net/downloads/busybox-${BUSYBOX_VERSION}.tar.bz2
wget -O syslinux.tar.xz http://kernel.org/pub/linux/utils/boot/syslinux/syslinux-${SYSLINUX_VERSION}.tar.xz
tar -xvf kernel.tar.xz