1 | @comment -*-texinfo-*- |
---|
2 | @comment $Id: INSTALL_rpm.texi,v 1.15 2009-04-15 10:41:14 seelisch Exp $ |
---|
3 | @c FILE: INSTALL_rpm.texi |
---|
4 | @c PURPOSE: Installation instruction for Singular on RPM based Linux systems |
---|
5 | @c |
---|
6 | |
---|
7 | @ifclear VERSION |
---|
8 | @include version.texi |
---|
9 | @end ifclear |
---|
10 | |
---|
11 | @ifclear singularmanual |
---|
12 | @majorheading Installation of @sc{Singular} @value{RPM_VERSION} on @sc{rpm} based @sc{Linux} systems |
---|
13 | @end ifclear |
---|
14 | |
---|
15 | @sc{rpm} is a powerful package manager, which can be used to build, install, query, verify, update, and erase individual software packages. |
---|
16 | @sc{Singular} can be installed on an @sc{rpm} based @sc{Linux} system. |
---|
17 | The installation of @sc{Singular} on a general @sc{Unix} system is described in @code{INSTALL_unix}. |
---|
18 | |
---|
19 | @heading @sc{Singular} @sc{rpm} packages |
---|
20 | |
---|
21 | The following @sc{Singular} @sc{rpm} packages are available. |
---|
22 | |
---|
23 | @table @code |
---|
24 | @item @uref{Singular-@value{RPM_VERSION}-1.i386.rpm} |
---|
25 | contains architecture-dependent executables like the @sc{Singular} program. |
---|
26 | @item @uref{Singular-static-@value{RPM_VERSION}-1.i386.rpm} |
---|
27 | contains the static version of the architecture dependend executables. |
---|
28 | @item @uref{Singular-share-@value{RPM_VERSION}-1.noarch.rpm} |
---|
29 | contains architecture independend data like documentation and libraries. |
---|
30 | @item @uref{Singular-desktop-@value{RPM_VERSION}-1.noarch.rpm} |
---|
31 | contains icons and menues for @sc{gnome} and @sc{kde}. |
---|
32 | @end table |
---|
33 | |
---|
34 | The above @sc{rpm} packages can be downloaded from |
---|
35 | @display |
---|
36 | @uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/UNIX}. |
---|
37 | @end display |
---|
38 | |
---|
39 | @include register.texi |
---|
40 | |
---|
41 | @heading Usage of @sc{rpm} packages |
---|
42 | @enumerate |
---|
43 | @item |
---|
44 | You can only use the @sc{Singular} @sc{rpm} packages on an @sc{rpm} based @sc{Linux} system like @sc{RedHat Linux} or @sc{SuSE Linux}. |
---|
45 | You can check this by typing |
---|
46 | @smallexample |
---|
47 | rpm |
---|
48 | @end smallexample |
---|
49 | in a command shell. This should produce an output like |
---|
50 | @smallexample |
---|
51 | RPM Version 4.0.3 |
---|
52 | Copyright (C) 1998-2000 - Red Hat, Inc. |
---|
53 | This program may be freely redistributed under the terms of the GNU GPL |
---|
54 | |
---|
55 | Usage: rpm @{--help@} |
---|
56 | rpm @{--version@} |
---|
57 | @end smallexample |
---|
58 | @item |
---|
59 | To deal with @sc{rpm} packages, you can either use the @sc{rpm} command line tool @code{rpm} or a graphical @sc{rpm} frontend like e.g. @code{gnorpm} under @sc{gnome} or @code{kpackage} under @sc{kde}. |
---|
60 | For a description of the usage of @code{rpm}, type |
---|
61 | @smallexample |
---|
62 | rpm -h |
---|
63 | @end smallexample |
---|
64 | in a command shell. |
---|
65 | @item |
---|
66 | To install or deinstall @sc{rpm} packages, you have to be superuser. |
---|
67 | To become superuser, type |
---|
68 | @smallexample |
---|
69 | su |
---|
70 | @end smallexample |
---|
71 | in a command shell and enter the root password. |
---|
72 | @end enumerate |
---|
73 | |
---|
74 | |
---|
75 | @heading Installation of @sc{Singular} @sc{rpm} packages |
---|
76 | |
---|
77 | In the following, we describe how to install @sc{Singular} using the @sc{rpm} command line tool @code{rpm}. |
---|
78 | Alternatively, you can use a graphical @sc{rpm} frontend like e.g. @code{gnorpm} under @sc{gnome} or @code{kpackage} under @sc{kde}. |
---|
79 | |
---|
80 | @enumerate |
---|
81 | @item |
---|
82 | The installation requires about 26MB of free disk space under @code{/usr/local}. |
---|
83 | You can check the free disk space by typing |
---|
84 | @smallexample |
---|
85 | df -h |
---|
86 | @end smallexample |
---|
87 | in a command shell. |
---|
88 | @item |
---|
89 | Different versions of @sc{Singular} @sc{rpm} packages coexist without conflicts. |
---|
90 | @item |
---|
91 | To install the @sc{Singular} @value{RPM_VERSION} @sc{rpm} packages, type |
---|
92 | @smallexample |
---|
93 | rpm -ivh \ |
---|
94 | Singular-@value{RPM_VERSION}-1.i386.rpm \ |
---|
95 | Singular-share-@value{RPM_VERSION}-1.noarch.rpm \ |
---|
96 | Singular-desktop-@value{RPM_VERSION}-1.noarch.rpm |
---|
97 | @end smallexample |
---|
98 | in a command shell. |
---|
99 | @item |
---|
100 | To deinstall the @sc{Singular} @value{RPM_VERSION} @sc{rpm} packages, type |
---|
101 | @smallexample |
---|
102 | rpm -e \ |
---|
103 | Singular-@value{RPM_VERSION}-1.i386.rpm \ |
---|
104 | Singular-share-@value{RPM_VERSION}-1.noarch.rpm \ |
---|
105 | Singular-desktop-@value{RPM_VERSION}-1.noarch.rpm |
---|
106 | @end smallexample |
---|
107 | in a command shell. |
---|
108 | @item The @sc{Singular} binary @sc{rpm} package @code{Singular-@value{RPM_VERSION}-1.i386.rpm} can be replaced by the @sc{Singular} static binary @sc{rpm} package @code{Singular-static-@value{RPM_VERSION}-1.i386.rpm}. |
---|
109 | @end enumerate |
---|
110 | |
---|
111 | @heading Starting @sc{Singular} |
---|
112 | @enumerate |
---|
113 | @item |
---|
114 | To run @sc{Singular} @value{RPM_VERSION}, type |
---|
115 | @smallexample |
---|
116 | Singular-@value{VERSION} |
---|
117 | @end smallexample |
---|
118 | in a command shell. |
---|
119 | To run @sc{Singular} @value{RPM_VERSION} under @sc{Emacs}, type |
---|
120 | @smallexample |
---|
121 | ESingular-@value{VERSION} |
---|
122 | @end smallexample |
---|
123 | in a command shell. |
---|
124 | @item To read the @sc{Singular} @value{RPM_VERSION} manual, direct your web browser to @code{/usr/local/Singular/@value{VERSION}/html/index.htm}. |
---|
125 | @item |
---|
126 | Under @sc{gnome} or @sc{kde}, click on the menu item @code{TSingular} to run @sc{Singular} @value{RPM_VERSION} in a terminal, on the menu item @code{ESingular} to run @sc{Singular} @value{RPM_VERSION} under @sc{Emacs}, or on the menu item @code{Manual} to read the @sc{Singular} @value{RPM_VERSION} manual. |
---|
127 | @end enumerate |
---|
128 | |
---|
129 | |
---|
130 | @include info.texi |
---|
131 | |
---|
132 | @ifclear singularmanual |
---|
133 | Good luck and enjoy! Your @sc{Singular} team. |
---|
134 | @end ifclear |
---|