[multiboot-guide] f23: add some instructions for reinstalling grub on bios (c465d08)
by Pete Travis
Repository : http://git.fedorahosted.org/cgit/docs/multiboot-guide.git
On branch : f23
>---------------------------------------------------------------
commit c465d084962b93ebaf6a0d5be8db0761d9e3124d
Author: Pete Travis <immanetize(a)fedoraproject.org>
Date: Tue May 24 20:23:16 2016 -0500
add some instructions for reinstalling grub on bios
>---------------------------------------------------------------
en-US/GRUB-reinstalling.xml | 32 +++++++++++++++++++++++++++++++-
1 files changed, 31 insertions(+), 1 deletions(-)
diff --git a/en-US/GRUB-reinstalling.xml b/en-US/GRUB-reinstalling.xml
index 582e2d3..fe4a633 100644
--- a/en-US/GRUB-reinstalling.xml
+++ b/en-US/GRUB-reinstalling.xml
@@ -128,7 +128,37 @@
</section>
<section id="GRUB-reinstalling-BIOS">
<title>Reinstalling GRUB on BIOS systems.</title>
- <para />
+ <para>
+ On legacy systems, GRUB installs a small bootloader into the master boot record of a drive. When the system boots, the firware attempts to boot from the MBR of each drive in the boot order list. Restore grub by reinstalling the package to populate <filename class="directory">/boot</filename>, if required, then install GRUB to the drive.
+ </para>
+ <procedure>
+ <title>Reinstalling GRUB on BIOS systems.</title>
+ <step>
+ <para>
+ Enter your installed system in a chroot using the instructions in <xref linkend="common-chroot_from_live" />. Be sure to boot the live image in legacy mode, if you have a UEFI capable system but are working with a non-UEFI installaiton.
+ </para>
+ </step>
+ <step>
+ <para>
+ Reinstall the packages that provide bootloader files. This will recreate any Fedora bootloader files missing from the boot partition.
+ </para>
+ <screen>
+<prompt>#</prompt> <command>dnf reinstall grub2</command>
+ </screen>
+ </step>
+ <step>
+ <para>
+ Reinstall grub to the MBR.
+ </para>
+ <screen>
+<prompt>#</prompt> grub2-install /dev/sda
+ </screen>
+ <substeps>
+ <step>
+ <para>
+ Check the existing firmware boot entries.
+ </para>
+ <screen>
</section>
</section>
</section>
7 years
[release-notes/f24] Change structure in Installation
by pbokoc
commit 2f190d19c1880734c74a5cb85a3c718102cc8ea6
Author: Petr Bokoc <pbokoc(a)redhat.com>
Date: Tue May 10 20:12:10 2016 +0200
Change structure in Installation
en-US/Installation.xml | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/en-US/Installation.xml b/en-US/Installation.xml
index d435223..2402fc9 100644
--- a/en-US/Installation.xml
+++ b/en-US/Installation.xml
@@ -7,8 +7,6 @@
<section id="installation">
<title>Installation</title>
- <section id="sect-installer-general">
- <title>General Anaconda Changes</title>
<itemizedlist>
<listitem>
<para>
@@ -49,5 +47,4 @@
</para>
</listitem>
</itemizedlist>
- </section>
</section>
7 years
[release-notes/f24] Add Installation release notes
by pbokoc
commit 1a0221c9f61b416d1ea5216942c39da814d8862b
Author: Clayton Spicer <cspicer(a)redhat.com>
Date: Tue May 10 19:48:04 2016 +0200
Add Installation release notes
en-US/Installation.xml | 51 +++++++++++++++++++++++++++++++++++++++----
en-US/Release_Notes.xml | 4 +-
en-US/Section-Sysadmin.xml | 36 +++++++++++++++++++-----------
3 files changed, 71 insertions(+), 20 deletions(-)
---
diff --git a/en-US/Installation.xml b/en-US/Installation.xml
index 42f5cfd..d435223 100644
--- a/en-US/Installation.xml
+++ b/en-US/Installation.xml
@@ -5,8 +5,49 @@
]>
<?xml-stylesheet href="http://www.informatik.fh-wiesbaden.de/~werntges/home_t/proj/dbkcss102/wys..." type="text/css"?>
-<section id="installation">
- <title>Installation</title>
- <para />
-
-</section>
+ <section id="installation">
+ <title>Installation</title>
+ <section id="sect-installer-general">
+ <title>General Anaconda Changes</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ It is now possible to select multiple items in the <guilabel>Manual Partitioning</guilabel> screen.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The space requirement check is now more accurate.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <command>list-harddrives</command> script has been made more robust, and it will now only report block devices, and correctly ignore zram and software raid block devices. In addition, documentation for this script is now available in the <ulink url="https://github.com/rhinstaller/anaconda/blob/master/docs/list-harddrives.rst">Anaconda repository</ulink>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <option>inst.nosave=</option> is a new boot option controlling which <application>Kickstart</application> files and installation logs are saved to the installed system. It can be especially useful to disable saving such data when performing OEM operating system installations, or when generating images using sensitive resources (such as internal repository URLs), as these resources might otherwise be mentioned in kickstart files and/or logs on the image. Possible values for this option are:
+ </para>
+ <para>
+ <literal>input_ks</literal> - disables saving of the input kickstart file (if any).
+ </para>
+ <para>
+ <literal>output_ks</literal> - disables saving of the output kickstart file generated by Anaconda.
+ </para>
+ <para>
+ <literal>all_ks</literal> - disables saving of both input and output kickstart files.
+ </para>
+ <para>
+ <literal>logs</literal> - disables saving of all installation logs.
+ </para>
+ <para>
+ <literal>all</literal> - disables saving of all kickstart files and all installation logs.
+ </para>
+ <para>
+ Multiple values can be combined as a comma separated list, for example: <literal>input_ks,logs</literal>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+ </section>
diff --git a/en-US/Release_Notes.xml b/en-US/Release_Notes.xml
index 7648e11..ad148b7 100644
--- a/en-US/Release_Notes.xml
+++ b/en-US/Release_Notes.xml
@@ -16,8 +16,8 @@
<xi:include href="prerelease.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
- <!--<xi:include href="Section-Sysadmin.xml"
- xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+ <xi:include href="Section-Sysadmin.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Section-Desktop.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
diff --git a/en-US/Section-Sysadmin.xml b/en-US/Section-Sysadmin.xml
index ef05b28..5902ea7 100644
--- a/en-US/Section-Sysadmin.xml
+++ b/en-US/Section-Sysadmin.xml
@@ -19,54 +19,64 @@
xmlns:xi="http://www.w3.org/2001/XInclude" />
-->
+<!--
<xi:include href="Security.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
+-->
<!--
<xi:include href="Accounts.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-->
+<!--
+
<xi:include href="File_Systems.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
+-->
+<!--
<xi:include href="Virtualization.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
+-->
<!--
- <xi:include href="Web_Servers.xml"
+ <xi:include href="Web_Servers.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
+-->
+<!--
<xi:include href="Cloud.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-->
+<!--
<xi:include href="Database_Servers.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-<!--
+-->
+<!--
<xi:include href="File_Servers.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-->
+<!--
<xi:include href="Mail_Servers.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
+-->
+<!--
<xi:include href="Samba.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-
+-->
+<!--
<xi:include href="System_Daemons.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
+-->
<!--
<xi:include href="Server_Configuration_Tools.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
+-->
+<!--
<xi:include href="Xorg.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-
+-->
+<!--
<xi:include href="Monitoring.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" />
-->
</section>
-
7 years
[install-guide/f23-branch] Add back locale map to zanata.xml
by pbokoc
commit 913fff517c4fcfe6c48fc9d8fdcaf383882869fc
Author: Petr Bokoc <pbokoc(a)redhat.com>
Date: Fri May 6 17:29:06 2016 +0200
Add back locale map to zanata.xml
zanata.xml | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
---
diff --git a/zanata.xml b/zanata.xml
index 302fce1..98330c4 100644
--- a/zanata.xml
+++ b/zanata.xml
@@ -5,4 +5,59 @@
<project-version>f23</project-version>
<project-type>podir</project-type>
+<locales>
+ <locale map-from="ar-SA">ar</locale>
+ <locale map-from="as-IN">as</locale>
+ <locale map-from="ast-ES">ast</locale>
+ <locale map-from="bg-BG">bg</locale>
+ <locale map-from="bn-IN">bn-IN</locale>
+ <locale map-from="bs-BA">bs</locale>
+ <locale map-from="ca-ES">ca</locale>
+ <locale map-from="cs-CZ">cs</locale>
+ <locale map-from="da-DK">da</locale>
+ <locale map-from="de-CH">de-CH</locale>
+ <locale map-from="de-DE">de-DE</locale>
+ <locale map-from="el-GR">el</locale>
+ <locale map-from="es-ES">es-ES</locale>
+ <locale map-from="fa-IR">fa</locale>
+ <locale map-from="fi-FI">fi</locale>
+ <locale map-from="fr-FR">fr</locale>
+ <locale map-from="gu-IN">gu</locale>
+ <locale map-from="he-IL">he</locale>
+ <locale map-from="hi-IN">hi</locale>
+ <locale map-from="hr-HR">hr</locale>
+ <locale map-from="hu-HU">hu</locale>
+ <locale map-from="ia">ia</locale>
+ <locale map-from="id-ID">id</locale>
+ <locale map-from="is-IS">is</locale>
+ <locale map-from="it-IT">it</locale>
+ <locale map-from="ja-JP">ja</locale>
+ <locale map-from="kn-IN">kn</locale>
+ <locale map-from="ko-KR">ko</locale>
+ <locale map-from="lv-LT">lt</locale>
+ <locale map-from="lv-LV">lv</locale>
+ <locale map-from="ml-IN">ml</locale>
+ <locale map-from="mr-IN">mr</locale>
+ <locale map-from="nb-NO">nb</locale>
+ <locale map-from="nl-NL">nl</locale>
+ <locale map-from="or-IN">or</locale>
+ <locale map-from="pa-IN">pa</locale>
+ <locale map-from="pl-PL">pl</locale>
+ <locale map-from="pt-BR">pt-BR</locale>
+ <locale map-from="pt-BR">pt-PT</locale>
+ <locale map-from="ro">ro</locale>
+ <locale map-from="ru-RU">ru</locale>
+ <locale map-from="si-LK">si</locale>
+ <locale map-from="sk-SK">sk</locale>
+ <locale map-from="sr-RS">sr-Cyrl</locale>
+ <locale map-from="sr-Latn-RS">sr-Latn</locale>
+ <locale map-from="sv-SE">sv</locale>
+ <locale map-from="ta-IN">ta-IN</locale>
+ <locale map-from="te-IN">te</locale>
+ <locale map-from="th-TH">th</locale>
+ <locale map-from="uk-UA">uk</locale>
+ <locale map-from="zh-CN">zh-CN</locale>
+ <locale map-from="zh-TW">zh-TW</locale>
+</locales>
+
</config>
7 years
[install-guide/f23-branch] Update zanata.xml
by pbokoc
commit ec6816af97ec5fa553a4432de09dc23e89a7db4f
Author: Petr Bokoc <pbokoc(a)redhat.com>
Date: Tue Dec 15 13:29:29 2015 +0100
Update zanata.xml
zanata.xml | 57 +--------------------------------------------------------
1 files changed, 1 insertions(+), 56 deletions(-)
---
diff --git a/zanata.xml b/zanata.xml
index d27b061..302fce1 100644
--- a/zanata.xml
+++ b/zanata.xml
@@ -2,62 +2,7 @@
<config xmlns="http://zanata.org/namespace/config/">
<url>https://fedora.zanata.org/</url>
<project>fedora-installation-guide</project>
- <project-version>f22</project-version>
+ <project-version>f23</project-version>
<project-type>podir</project-type>
-
- <locales>
- <locale map-from="ar-SA">ar</locale>
- <locale map-from="as-IN">as</locale>
- <locale map-from="ast-ES">ast</locale>
- <locale map-from="bg-BG">bg</locale>
- <locale map-from="bn-IN">bn-IN</locale>
- <locale map-from="bs-BA">bs</locale>
- <locale map-from="ca-ES">ca</locale>
- <locale map-from="cs-CZ">cs</locale>
- <locale map-from="da-DK">da</locale>
- <locale map-from="de-CH">de-CH</locale>
- <locale map-from="de-DE">de-DE</locale>
- <locale map-from="el-GR">el</locale>
- <locale map-from="es-ES">es-ES</locale>
- <locale map-from="fa-IR">fa</locale>
- <locale map-from="fi-FI">fi</locale>
- <locale map-from="fr-FR">fr</locale>
- <locale map-from="gu-IN">gu</locale>
- <locale map-from="he-IL">he</locale>
- <locale map-from="hi-IN">hi</locale>
- <locale map-from="hr-HR">hr</locale>
- <locale map-from="hu-HU">hu</locale>
- <locale map-from="ia">ia</locale>
- <locale map-from="id-ID">id</locale>
- <locale map-from="is-IS">is</locale>
- <locale map-from="it-IT">it</locale>
- <locale map-from="ja-JP">ja</locale>
- <locale map-from="kn-IN">kn</locale>
- <locale map-from="ko-KR">ko</locale>
- <locale map-from="lv-LT">lt</locale>
- <locale map-from="lv-LV">lv</locale>
- <locale map-from="ml-IN">ml</locale>
- <locale map-from="mr-IN">mr</locale>
- <locale map-from="nb-NO">nb</locale>
- <locale map-from="nl-NL">nl</locale>
- <locale map-from="or-IN">or</locale>
- <locale map-from="pa-IN">pa</locale>
- <locale map-from="pl-PL">pl</locale>
- <locale map-from="pt-BR">pt-BR</locale>
- <locale map-from="pt-BR">pt-PT</locale>
- <locale map-from="ro">ro</locale>
- <locale map-from="ru-RU">ru</locale>
- <locale map-from="si-LK">si</locale>
- <locale map-from="sk-SK">sk</locale>
- <locale map-from="sr-RS">sr-Cyrl</locale>
- <locale map-from="sr-Latn-RS">sr-Latn</locale>
- <locale map-from="sv-SE">sv</locale>
- <locale map-from="ta-IN">ta-IN</locale>
- <locale map-from="te-IN">te</locale>
- <locale map-from="th-TH">th</locale>
- <locale map-from="uk-UA">uk</locale>
- <locale map-from="zh-CN">zh-CN</locale>
- <locale map-from="zh-TW">zh-TW</locale>
- </locales>
</config>
7 years
[release-notes/f24] Corrected Boost 1.60.0 entry following feedback in BZ#1288078.
by Simon Clark
commit d3c8c728583f0154ec67dbc84acd35f2759dd878
Author: Simon Clark <simon.richard.clark(a)gmail.com>
Date: Wed May 4 19:31:47 2016 +0100
Corrected Boost 1.60.0 entry following feedback in BZ#1288078.
en-US/Development_Tools.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/en-US/Development_Tools.xml b/en-US/Development_Tools.xml
index 45fd55e..4400cbc 100644
--- a/en-US/Development_Tools.xml
+++ b/en-US/Development_Tools.xml
@@ -57,7 +57,7 @@
<section id="sect-Development-Tools-Boost">
<title>Boost 1.60</title>
- <para><application>Boost</application> provides free, peer-reviewed, portable C++ source libraries. Fedora 24 includes Boost version 1.60.0, the latest upstream Boot release.</para>
+ <para><application>Boost</application> provides free, peer-reviewed, portable C++ source libraries. In Fedora 24, Boost has been upgraded to version 1.60.0.</para>
<para>For more details about this update to Boost please see the <ulink url="http://www.boost.org/users/history/version_1_60_0.html">Boost website</ulink>.</para>
</section>
7 years
[release-notes] Non-fast-forward update to branch f24
by Simon Clark
The branch 'f24' was changed in a way that was not a fast-forward update.
NOTE: This may cause problems for people pulling from the branch. For more information,
please see:
http://live.gnome.org/Git/Help/NonFastForward
Commits removed from the branch:
956d638... Corrected Boost 1.6 entry following feedback in BZ#1288078.
Commits added to the branch:
d3c8c72... Corrected Boost 1.60.0 entry following feedback in BZ#12880
7 years
[release-notes/f24] Corrected Boost 1.6 entry following feedback in BZ#1288078.
by Simon Clark
commit 956d638c7535830b2734892f6b2a3cbd8fb44e78
Author: Simon Clark <simon.richard.clark(a)gmail.com>
Date: Wed May 4 19:31:47 2016 +0100
Corrected Boost 1.6 entry following feedback in BZ#1288078.
en-US/Development_Tools.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/en-US/Development_Tools.xml b/en-US/Development_Tools.xml
index 45fd55e..4400cbc 100644
--- a/en-US/Development_Tools.xml
+++ b/en-US/Development_Tools.xml
@@ -57,7 +57,7 @@
<section id="sect-Development-Tools-Boost">
<title>Boost 1.60</title>
- <para><application>Boost</application> provides free, peer-reviewed, portable C++ source libraries. Fedora 24 includes Boost version 1.60.0, the latest upstream Boot release.</para>
+ <para><application>Boost</application> provides free, peer-reviewed, portable C++ source libraries. In Fedora 24, Boost has been upgraded to version 1.60.0.</para>
<para>For more details about this update to Boost please see the <ulink url="http://www.boost.org/users/history/version_1_60_0.html">Boost website</ulink>.</para>
</section>
7 years
[release-notes/f24] Added an entry for Boost 1.60.0 under Development Tools
by Simon Clark
commit db03e53c4b2a310853067f3ddf3d15a3dd22e450
Author: Simon Clark <simon.richard.clark(a)gmail.com>
Date: Wed May 4 07:59:58 2016 +0100
Added an entry for Boost 1.60.0 under Development Tools
en-US/Development_Tools.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/en-US/Development_Tools.xml b/en-US/Development_Tools.xml
index 44aba7f..45fd55e 100644
--- a/en-US/Development_Tools.xml
+++ b/en-US/Development_Tools.xml
@@ -55,4 +55,10 @@
<para>More information about these applications can be found on the <ulink url="https://github.com/ntoll/mu">Mu</ulink> and <ulink url="https://github.com/ntoll/uflash">uFlash</ulink> GitHub pages.</para>
</section>
+ <section id="sect-Development-Tools-Boost">
+ <title>Boost 1.60</title>
+ <para><application>Boost</application> provides free, peer-reviewed, portable C++ source libraries. Fedora 24 includes Boost version 1.60.0, the latest upstream Boot release.</para>
+ <para>For more details about this update to Boost please see the <ulink url="http://www.boost.org/users/history/version_1_60_0.html">Boost website</ulink>.</para>
+ </section>
+
</section>
7 years
[networking-guide] master: The org name changed (6fa4f9c)
by stephenw
Repository : http://git.fedorahosted.org/cgit/docs/networking-guide.git
On branch : master
>---------------------------------------------------------------
commit 6fa4f9c399b6935cd5a938f3315f7537e41f4bcd
Author: Stephen Wadeley <swadeley(a)redhat.com>
Date: Wed May 4 08:45:14 2016 +0200
The org name changed
>---------------------------------------------------------------
en-US/Author_Group.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/en-US/Author_Group.xml b/en-US/Author_Group.xml
index 3678575..c63175b 100644
--- a/en-US/Author_Group.xml
+++ b/en-US/Author_Group.xml
@@ -8,7 +8,7 @@
<surname>Wadeley</surname>
<affiliation>
<orgname>Red Hat</orgname>
- <orgdiv>Engineering Content Services</orgdiv>
+ <orgdiv>Customer Content Services</orgdiv>
</affiliation>
<email>swadeley(a)redhat.com</email>
</author>
7 years