livecd 1.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG +2 -0
- data/README.md +25 -3
- data/bin/livecd +1 -1
- data/lib/livecd.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe582020f5995fd99489242b191e90c5e3e441af
|
4
|
+
data.tar.gz: 3cf7ec2439a2f8f54f52caa0b690b9b1ae2a6dbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2326d17402fed544550a93071ad487424997565913404b95d4f39b22114b3f5e8c45d25a08e61ff2d26227add3c195f81211fcccf826d329c0446455e2868fe9
|
7
|
+
data.tar.gz: 7ee554a0414158c72ae557f32a1144ce82b425696683eb1c55c537cdabd4c1dc542c9202cbb3d9ff6e40580ea31f841ceb78e97fa332605e9ad206d19870bea1
|
data/.travis.yml
CHANGED
data/CHANGELOG
CHANGED
data/README.md
CHANGED
@@ -5,6 +5,14 @@ livecd
|
|
5
5
|
|
6
6
|
Run a livecd quickly and easily. Uses virtualbox for magic.
|
7
7
|
|
8
|
+
installation
|
9
|
+
------------
|
10
|
+
|
11
|
+
gem install livecd
|
12
|
+
|
13
|
+
usage
|
14
|
+
-----
|
15
|
+
|
8
16
|
```bash
|
9
17
|
livecd start myos.iso
|
10
18
|
|
@@ -14,6 +22,20 @@ livecd list
|
|
14
22
|
livecd stop
|
15
23
|
```
|
16
24
|
|
25
|
+
Quickstart:
|
26
|
+
|
27
|
+
```bash
|
28
|
+
# download damn small linux (http://www.damnsmalllinux.org/)
|
29
|
+
wget http://distro.ibiblio.org/damnsmall/release_candidate/dsl-4.11.rc2.iso
|
30
|
+
livecd start --memory 512 dsl-4.11.rc2.iso
|
31
|
+
```
|
32
|
+
|
33
|
+
Configure the memory. The default is 128 MB, but you can change it.
|
34
|
+
|
35
|
+
```bash
|
36
|
+
livecd start --memory 512 myos.iso
|
37
|
+
```
|
38
|
+
|
17
39
|
Run multiple livecds at the same time:
|
18
40
|
|
19
41
|
```bash
|
@@ -31,7 +53,7 @@ livecd stop cd_a
|
|
31
53
|
livecd stop
|
32
54
|
```
|
33
55
|
|
34
|
-
|
35
|
-
|
56
|
+
kudos / contributions
|
57
|
+
---------------------
|
36
58
|
|
37
|
-
|
59
|
+
* chris-rock
|
data/bin/livecd
CHANGED
@@ -6,7 +6,7 @@ require 'livecd'
|
|
6
6
|
class LivecdCLI < Thor
|
7
7
|
include Livecd
|
8
8
|
|
9
|
-
desc "start <mycd.iso>", "start the iso livecd"
|
9
|
+
desc "start [--memory 128] <mycd.iso>", "start the iso livecd"
|
10
10
|
option :memory, type: :numeric, banner: 'how much memory the vm should get'
|
11
11
|
def start(file)
|
12
12
|
iso = File::expand_path( file )
|
data/lib/livecd.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: livecd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominik Richter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -61,8 +61,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
version: '0'
|
62
62
|
requirements: []
|
63
63
|
rubyforge_project:
|
64
|
-
rubygems_version: 2.0.
|
64
|
+
rubygems_version: 2.0.14
|
65
65
|
signing_key:
|
66
66
|
specification_version: 4
|
67
67
|
summary: run livecds easily
|
68
68
|
test_files: []
|
69
|
+
has_rdoc:
|