1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-dev] automatic chroot install using urpmi
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20automatic%20chroot%20install%20using%20urpmi&In-Reply-To=%3C1307542327.26948.19.camel%40akroma.ephaone.org%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="005202.html">
<LINK REL="Next" HREF="005235.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-dev] automatic chroot install using urpmi</H1>
<B>Michael Scherer</B>
<A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20automatic%20chroot%20install%20using%20urpmi&In-Reply-To=%3C1307542327.26948.19.camel%40akroma.ephaone.org%3E"
TITLE="[Mageia-dev] automatic chroot install using urpmi">misc at zarb.org
</A><BR>
<I>Wed Jun 8 16:12:06 CEST 2011</I>
<P><UL>
<LI>Previous message: <A HREF="005202.html">[Mageia-dev] automatic chroot install using urpmi
</A></li>
<LI>Next message: <A HREF="005235.html">[Mageia-dev] automatic chroot install using urpmi
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#5203">[ date ]</a>
<a href="thread.html#5203">[ thread ]</a>
<a href="subject.html#5203">[ subject ]</a>
<a href="author.html#5203">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Le mercredi 08 juin 2011 à 17:19 +0400, Vasiliy G Tolstov a écrit :
><i> On Wed, 2011-06-08 at 16:26 +0400, Vasiliy G Tolstov wrote:
</I>><i> > On Wed, 2011-06-08 at 15:23 +0300, Thomas Backlund wrote:
</I>><i> > > Vasiliy G Tolstov skrev 8.6.2011 15:14:
</I>><i> > > > Hello. I'm glad to announce, that mageia linux is in testing mode on our
</I>><i> > > > cloud vps hosting (clodo.ru).
</I>><i> > > > After build image i have one question - is that possible to do fully
</I>><i> > > > automatic install with this script:
</I>><i> > > >
</I>><i> > > > #!/bin/bash
</I>><i> > > >
</I>><i> > > > export LC_ALL=C
</I>><i> > > >
</I>><i> > > > ROOT=$1
</I>><i> > > > ARCH=$2
</I>><i> > > > VERSION=$3
</I>><i> > > >
</I>><i> > > > mount -o bind /dev ${ROOT}/dev/
</I>><i> > > > mount -o bind /sys ${ROOT}/sys/
</I>><i> > > > mount -t proc none ${ROOT}/proc/
</I>><i> > > >
</I>><i> > > > if [ "x${ARCH}" != "xx86_64" ] ; then
</I>><i> > > > ARCH="i586"
</I>><i> > > > fi
</I>><i> > > >
</I>><i> > > > urpmi.addmedia --urpmi-root ${ROOT} --distrib
</I>><i> > > > <A HREF="http://ftp.cc.uoc.gr/mirrors/linux/mageia/distrib/${VERSION">http://ftp.cc.uoc.gr/mirrors/linux/mageia/distrib/${VERSION</A>}/${ARCH}
</I>><i> > > > urpmi -v --replacefiles --ignoresize --urpmi-root ${ROOT} basesystem
</I>><i> > > > urpmi -v --replacefiles --ignoresize --urpmi-root ${ROOT} openssh-server
</I>><i> > > > ntpd
</I>><i> > >
</I>><i> > > No need to make it 2 steps, you can push all in one go...
</I>><i> > >
</I>><i> > >
</I>><i> > > >
</I>><i> > > > One problem is: urpmi try to get answers for installing default init
</I>><i> > > > system, default boot loader and some other questions.... How can i avoid
</I>><i> > > > it to do full unattended install?
</I>><i> > > >
</I>><i> > >
</I>><i> > > Either use --auto, or be specific (add all packages you get a question
</I>><i> > > about):
</I>><i> > > urpmi -v --replacefiles --ignoresize --urpmi-root ${ROOT} basesystem
</I>><i> > > openssh-server ntpd grub sysvinit
</I>><i> > >
</I>><i> > > And if you dont need the kernel, you can use basesystem-minimal and dont
</I>><i> > > need to specify grub
</I>><i> > >
</I>><i> > > --
</I>><i> > > Thomas
</I>><i> >
</I>><i> > Thank's for answer. Very well. If i use basesystem-minimal and append
</I>><i> > grub systemd ntpd openssh-server and kernel, does that system can
</I>><i> > boot-up ?
</I>><i> >
</I>><i>
</I>><i>
</I>><i> Hmm. I change cmd line to:
</I>><i> urpmi -v --replacefiles --ignoresize --urpmi-root ${ROOT}
</I>><i> basesystem-minimal openssh-server ntpd grub vim man rsyslog systemd
</I>><i> systemd-sysvinit
</I>><i>
</I>><i> But basesystem-minimal depends of polkit-gnome, pinentry-gtk2 why? this
</I>><i> is server... Or i need many stuff from X to run software under server?
</I>
Try with --no-suggests
--
Michael Scherer
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="005202.html">[Mageia-dev] automatic chroot install using urpmi
</A></li>
<LI>Next message: <A HREF="005235.html">[Mageia-dev] automatic chroot install using urpmi
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#5203">[ date ]</a>
<a href="thread.html#5203">[ thread ]</a>
<a href="subject.html#5203">[ subject ]</a>
<a href="author.html#5203">[ author ]</a>
</LI>
</UL>
<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
mailing list</a><br>
</body></html>
|