source: general/sysutils/modemmanager.xml@ ddea44e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since ddea44e was ddea44e, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to gnome-online-accounts-3.24.1.
Update to lxml-3.8.0 (Python module).
Update to ModemManager-1.6.8.
Update to nmap-7.50.
Update gnome-calculator debendencies.
Update to gnome-tweak-tool-3.24.1.
Simplify fix for kdelibs4support.</para>

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18832 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[5b8f578d]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY ModemManager-download-http "http://www.freedesktop.org/software/ModemManager/ModemManager-&ModemManager-version;.tar.xz">
8 <!ENTITY ModemManager-download-ftp " ">
[ddea44e]9 <!ENTITY ModemManager-md5sum "ac08d539ec3dc35db8d6b7c8d6c660ff">
10 <!ENTITY ModemManager-size "1.4 MB">
11 <!ENTITY ModemManager-buildsize "82 MB (with tests)">
12 <!ENTITY ModemManager-time "1.0 SBU (with tests)">
[5b8f578d]13]>
14
[7d64567]15<sect1 id="ModemManager" xreflabel="ModemManager-&ModemManager-version;">
[5b8f578d]16 <?dbhtml filename="ModemManager.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>ModemManager-&ModemManager-version;</title>
24
25 <indexterm zone="ModemManager">
26 <primary sortas="a-ModemManager">ModemManager</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to ModemManager</title>
31
32 <para>
33 <application>ModemManager</application> provides a unified high level
34 API for communicating with mobile broadband modems, regardless of the
35 protocol used to communicate with the actual device.
36 </para>
37
[6827378]38 &lfs80_checked;
[ddea44e]39 &gcc7_checked;
[5b8f578d]40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&ModemManager-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&ModemManager-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &ModemManager-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &ModemManager-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &ModemManager-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &ModemManager-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">ModemManager Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="libgudev"/>
80 </para>
81
82 <bridgehead renderas="sect4">Recommended</bridgehead>
83 <para role="recommended">
84 <xref linkend="gobject-introspection"/>,
85 <xref linkend="libmbim"/>,
86 <xref linkend="libqmi"/>,
87 <xref linkend="polkit"/>, and
88 <xref linkend="vala"/>
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="gtk-doc"/>
94 </para>
95
96 <para condition="html" role="usernotes">User Notes:
97 <ulink url="&blfs-wiki;/ModemManager"/>
98 </para>
99 </sect2>
100
101 <sect2 role="installation">
102 <title>Installation of ModemManager</title>
103
104 <para>
105 Install <application>ModemManager</application> by running the following
106 commands:
107 </para>
108
[6d3a3af]109<screen revision="sysv"><userinput>./configure --prefix=/usr \
[5b8f578d]110 --sysconfdir=/etc \
111 --localstatedir=/var \
[939653d]112 --enable-more-warnings=no \
[5b8f578d]113 --disable-static &amp;&amp;
114make</userinput></screen>
115
[0e107e3]116<screen revision="systemd"><userinput>./configure --prefix=/usr \
[6d3a3af]117 --sysconfdir=/etc \
118 --localstatedir=/var \
119 --enable-more-warnings=no \
120 --with-suspend-resume=systemd \
121 --disable-static &amp;&amp;
122make</userinput></screen>
123
[5b8f578d]124 <para>
125 To test the results, issue: <command>make check</command>.
126 </para>
127
128 <para>
129 Now, as the <systemitem class="username">root</systemitem> user:
130 </para>
131
132<screen role="root"><userinput>make install</userinput></screen>
133
134 </sect2>
135
136 <sect2 role="commands">
137
138 <title>Command Explanations</title>
139
[6d3a3af]140 <para revision="systemd">
141 <parameter>--with-suspend-resume=systemd</parameter>: This
142 switch forces <application>ModemManager</application> to use the systemd
143 power management facilities.
144 </para>
145
[5b8f578d]146 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
147 href="../../xincludes/static-libraries.xml"/>
148
149 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
150 href="../../xincludes/gtk-doc-rebuild.xml"/>
151
152 </sect2>
[30ad1f9]153 <sect2 role="configuration" revision="systemd">
[5b8f578d]154 <title>Configuring ModemManager</title>
155
156 <sect3 id="ModemManager-init">
157 <title>Systemd Units</title>
158
159 <para>
160 To start the <command>ModemManager</command> daemon at boot, enable
161 the previously installed systemd unit by running the following command
162 as the <systemitem class="username">root</systemitem> user:
163 </para>
164
165 <indexterm zone="ModemManager ModemManager-init">
166 <primary sortas="f-ModemManager">ModemManager</primary>
167 </indexterm>
168
169<screen role="root"><userinput>systemctl enable ModemManager</userinput></screen>
170
171 </sect3>
172
173 </sect2>
174
175 <sect2 role="content">
176 <title>Contents</title>
177
178 <segmentedlist>
179 <segtitle>Installed Programs</segtitle>
180 <segtitle>Installed Libraries</segtitle>
181 <segtitle>Installed Directories</segtitle>
182
183 <seglistitem>
184 <seg>
185 mmcli and ModemManager
186 </seg>
187 <seg>
188 libmm-glib.so
189 </seg>
190 <seg>
191 /usr/include/libmm-glib,
192 /usr/include/ModemManager,
193 /usr/lib/ModemManager,
194 /usr/share/gtk-doc/html/libmm-glib, and
195 /usr/share/gtk-doc/html/ModemManager
196 </seg>
197 </seglistitem>
198 </segmentedlist>
199
200 <variablelist>
201 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
202 <?dbfo list-presentation="list"?>
203 <?dbhtml list-presentation="table"?>
204
205 <varlistentry id="mmcli">
206 <term><command>mmcli</command></term>
207 <listitem>
208 <para>
209 is an utility used to control and monitor the
210 <application>ModemManager</application>.
211 </para>
212 <indexterm zone="ModemManager mmcli">
213 <primary sortas="b-mmcli">mmcli</primary>
214 </indexterm>
215 </listitem>
216 </varlistentry>
217
218 <varlistentry id="ModemManager-prog">
219 <term><command>ModemManager</command></term>
220 <listitem>
221 <para>
222 is a <application>D-Bus</application> service used
223 to communicate with modems.
224 </para>
225 <indexterm zone="ModemManager ModemManager-prog">
226 <primary sortas="b-ModemManager">ModemManager</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="libmm-glib">
232 <term><filename class="libraryfile">libmm-glib.so</filename></term>
233 <listitem>
234 <para>
235 contains API functions for communicating with mobile broadband
236 modems, regardless of the protocol used to communicate with
237 the actual device.
238 </para>
239 <indexterm zone="ModemManager libmm-glib">
240 <primary sortas="c-libmm-glib">libmm-glib.so</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 </variablelist>
246
247 </sect2>
248
249</sect1>
Note: See TracBrowser for help on using the repository browser.