diff options
author | Zhang Qiang <qiang.z.zhang@intel.com> | 2011-12-19 16:29:48 +0800 |
---|---|---|
committer | Zhang Qiang <qiang.z.zhang@intel.com> | 2011-12-19 16:29:48 +0800 |
commit | e8081c1ae35c9e3a15cef7564d7c62c3009d66b8 (patch) | |
tree | 4c4cd17b37f177681b6561ada308eaff88eaef98 /README.rst | |
parent | b39d5659113a454ef006af389d55d40d2347c2c4 (diff) | |
download | mic-e8081c1ae35c9e3a15cef7564d7c62c3009d66b8.tar.gz mic-e8081c1ae35c9e3a15cef7564d7c62c3009d66b8.tar.bz2 mic-e8081c1ae35c9e3a15cef7564d7c62c3009d66b8.zip |
doc: Add proxy and multi-instance introduce
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -273,3 +273,23 @@ debug/verbose output to get more details in the process by adding `-d/-v`. And it's recommended to add `-d/--debug` or `-v/--verbose` like: :: $ sudo mic -d cr fs test.ks + +Advance Features +================ + +Proxy support +------------- +proxy setting in mic.conf is not enabled, but you can set proxy in repo section +of ks file, example as follows: :: + + repo --name=1.2-oss --baseurl=http://repo.meego.com/MeeGo/releases/1.2.0/repos/oss/ia32/packages/ --proxy=http://host:port --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego + +Multiple running instances support +---------------------------------- +mic support running multi-instance, but cache dir can't be shared between instances, +so you should specify different cachedir for different instance using `--cachedir`. +Also outdir should be specified to a different directory for each instance using +`--outdir`, example as follows: :: + + mic cr fs netbook1.ks --cachedir=/var/tmp/cache/mic1 --outdir=out1 + mic cr fs netbook2.ks --cachedir=/var/tmp/cache/mic2 --outdir=out2 |