From 9b2fd67c5e13ed1caab779ca32f53582b0acf11e Mon Sep 17 00:00:00 2001 From: Kamil Rytarowski Date: Tue, 1 May 2012 23:15:18 +0000 Subject: - tag 2.10 --- COPYING | 6 + Makefile | 51 +++++ NEWS | 38 +++ README | 34 +++ acceptLicense.html | 109 +++++++++ addUser.html | 233 +++++++++++++++++++ ask_mntpoint_s.html | 130 +++++++++++ choosePackages.html | 172 ++++++++++++++ diskdrake.html | 97 ++++++++ doPartitionDisks.html | 148 ++++++++++++ draft.png | Bin 0 -> 16150 bytes exitInstall.html | 62 +++++ formatPartitions.html | 85 +++++++ index.html | 171 ++++++++++++++ installUpdates.html | 55 +++++ installer.html | 208 +++++++++++++++++ misc-params.html | 534 +++++++++++++++++++++++++++++++++++++++++++ note.png | Bin 0 -> 2742 bytes resizeFATChoose.html | 57 +++++ selectInstallClass.html | 68 ++++++ selectKeyboard.html | 97 ++++++++ selectLanguage.html | 105 +++++++++ selectMouse.html | 51 +++++ setupBootloaderBeginner.html | 236 +++++++++++++++++++ setupBootloaderExpert.html | 350 ++++++++++++++++++++++++++++ setupSCSI.html | 57 +++++ setupX.html | 127 ++++++++++ takeOverHdChoose.html | 58 +++++ takeOverHdConfirm.html | 49 ++++ tip.png | Bin 0 -> 2925 bytes warning.png | Bin 0 -> 3780 bytes 31 files changed, 3388 insertions(+) create mode 100644 COPYING create mode 100644 Makefile create mode 100644 NEWS create mode 100644 README create mode 100644 acceptLicense.html create mode 100644 addUser.html create mode 100644 ask_mntpoint_s.html create mode 100644 choosePackages.html create mode 100644 diskdrake.html create mode 100644 doPartitionDisks.html create mode 100644 draft.png create mode 100644 exitInstall.html create mode 100644 formatPartitions.html create mode 100644 index.html create mode 100644 installUpdates.html create mode 100644 installer.html create mode 100644 misc-params.html create mode 100644 note.png create mode 100644 resizeFATChoose.html create mode 100644 selectInstallClass.html create mode 100644 selectKeyboard.html create mode 100644 selectLanguage.html create mode 100644 selectMouse.html create mode 100644 setupBootloaderBeginner.html create mode 100644 setupBootloaderExpert.html create mode 100644 setupSCSI.html create mode 100644 setupX.html create mode 100644 takeOverHdChoose.html create mode 100644 takeOverHdConfirm.html create mode 100644 tip.png create mode 100644 warning.png diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..972597b --- /dev/null +++ b/COPYING @@ -0,0 +1,6 @@ +The Mageia documentation is available under CC BY-SA 3.0 +http://creativecommons.org/licenses/by-sa/3.0/ + +Icons warning.png, tip.png and note.png are taken from +oxygen-icon-theme http://www.oxygen-icons.org/?page_id=4 and also have the +CC BY-SA 3.0 licence: http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9ff0258 --- /dev/null +++ b/Makefile @@ -0,0 +1,51 @@ +PACKAGE = drakx-installer-help +VERSION = 2.10 + +HTML_FILES = acceptLicense.html \ + addUser.html \ + ask_mntpoint_s.html \ + choosePackages.html \ + diskdrake.html \ + doPartitionDisks.html \ + exitInstall.html \ + formatPartitions.html \ + index.html \ + installer.html \ + installUpdates.html \ + misc-params.html \ + resizeFATChoose.html \ + selectInstallClass.html \ + selectKeyboard.html \ + selectLanguage.html \ + selectMouse.html \ + setupBootloaderBeginner.html \ + setupBootloaderExpert.html \ + setupSCSI.html \ + setupX.html \ + takeOverHdChoose.html \ + takeOverHdConfirm.html + +PNG_FILES = draft.png \ + note.png \ + tip.png \ + warning.png + +FILES = $(HTML_FILES) $(PNG_FILES) COPYING NEWS Makefile README + +clean: + rm -f *~ \#*\# + +cleandist: clean + rm -fr $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.xz + +dir: + mkdir $(PACKAGE)-$(VERSION) + +localcopy: + tar c --exclude=.svn $(FILES) | tar x -C $(PACKAGE)-$(VERSION) + +tar: + tar cvYf $(PACKAGE)-$(VERSION).tar.xz $(PACKAGE)-$(VERSION) + rm -fr $(PACKAGE)-$(VERSION) + +dist: cleandist dir localcopy tar diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..89feab5 --- /dev/null +++ b/NEWS @@ -0,0 +1,38 @@ +* Thu Apr 26 2012 Kamil Rytarowski 2.10 +- new .HTML files (the 2012-04-26 version) +- add missing setupBootloaderExpert.html and Makefile to the Makefile tarball generator + +* Wed Apr 25 2012 Kamil Rytarowski 2.9 +- new .HTML files (the 2012-04-25 version) + +* Thu Apr 19 2012 Kamil Rytarowski 2.8 +- add Makefile to prepare a tarball +- remove images/ (no need for screenshots) + +* Wed Apr 18 2012 Kamil Rytarowski 2.7 +- update .HTML files (the 2012-04-18 version) + +* Mon Apr 16 2012 Kamil Rytarowski 2.6 +- update .HTML files (the 2012-04-16 version) +- drop unused or merged files (intro, setRoot, uninstall) + +* Wed Apr 11 2012 Kamil Rytarowski 2.5 +- update .HTML files (all old Mandriva files are removed) +- update COPYING and README + +* Thu Apr 5 2012 Anne Nicolas 2.4 +- update html files + +* Sun Mar 25 2012 Kamil Rytarowski 2.3 +- update .HTML files (files from 2012-03-23) + +* Thu Mar 22 2012 Kamil Rytarowski 2.2 +- add new images: note.png tip.png and warning.png +- fix typo in README (thanks Simon Parsons) + +* Tue Mar 14 2012 Kamil Rytarowski 2.1 +- add README, COPYING, NEWS +- fix missing icons + +* Tue Mar 13 2012 Kamil Rytarowski 2 +- import reworked documentation into the Mageia SVN diff --git a/README b/README new file mode 100644 index 0000000..14c8b53 --- /dev/null +++ b/README @@ -0,0 +1,34 @@ +drakx-installer-help README + + +------------ + +Packaged for Mageia by Kamil Rytarowski, March 14 2012 + + +-------------- + +Produced with the help of the Calenco CMS (http://www.calenco.com) developed by NeoDoc (http://www.neodoc.biz). + +------------------ + +This package contains the help texts for the help buttons in drakx-installer-stage2. + +-------------- + +The texts were made by: + +Barry Jackson +Claire Revillet +Claire Robinson +John Bowden +John Rye +Simon Parsons +Marja Van Waes + +------------ + + + + + diff --git a/acceptLicense.html b/acceptLicense.html new file mode 100644 index 0000000..7a0908e --- /dev/null +++ b/acceptLicense.html @@ -0,0 +1,109 @@ + + + + + License and Release Notes + + + + + + +
+
+
+
+

License and Release Notes +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+

License Agreement +

+
+
+
+ + + +

Before installing Mageia, please read the + license terms and conditions carefully. +

+ + +

These terms and conditions apply to the entire + Mageia distribution and must be accepted before + you can continue. +

+ + +

To accept, simply select Accept and then click + on Next. +

+ + +

If you decide not to accept these conditions, then we thank you for + looking. Clicking Quit will reboot your + computer. +

+ + + +
+ + +
+
+
+
+

Release Notes +

+
+
+
+ + + + + +

To see what's new in this release of + Mageia, click on the Release + Notes button. +

+ +
+ +
+ + diff --git a/addUser.html b/addUser.html new file mode 100644 index 0000000..9762bd8 --- /dev/null +++ b/addUser.html @@ -0,0 +1,233 @@ + + + + + User and Superuser Management + + + + + + +
+
+
+
+

User and Superuser Management +

+
+
+
+ + + + + + + + + + + + + + + + + + +
+
+
+
+

Set Administrator (root) + Password: +

+
+
+
+ + + +

It is advisable for all Mageia + installations to set a superuser or administrator's password, usually + called the root password in Linux. As you type a + password into the top box the colour of its shield will change from red to + yellow to green depending on the strength of the password. A green shield + shows you are using a strong password. You need to repeat the same + password in the box just below the first password box, this checks that + you have not mistyped the first password by comparing them. +

+ + +
+ + + + + + + + +
[Note]Note +
+ +

All passwords are case sensitive, it is best to use a mixture of + letters (upper and lower case), numbers and other characters in a + password. +

+ +
+
+ +
+ + +
+
+
+
+

Enter a user +

+
+
+
+ + + +

Add a user here. A user has fewer rights than the superuser (root), + but enough to surf the internet, use office applications or play games and + anything else the average user does with his computer +

+ + +
+
    +
  • + +

    Icon: if you click on this button it will + change the users icon. +

    + +
  • +
  • + +

    Real Name: Insert the users real name into + this text box. +

    + +
  • +
  • + +

    Login Name: Here you enter the user login + name or let drakx use a version of the users real name. The + login name is case sensitive.

    + +
  • +
  • + +

    Password: In this text box you should type + in the user password. There is a shield at the end of the text box + that indicates the strength of the password. (See also Note) +

    + +
  • +
  • + +

    Password (again): Retype the user password + into this text box and drakx will check you have the same password in + each of the user password text boxes. +

    + +
  • +
+
+ +
+ + +
+
+
+
+

Advanced User Management +

+
+
+
+ + + +

If the advanced button is clicked you are + offered a screen that allows you to edit the settings for the user you are + adding. Additionally, you can disable or enable a guest account. +

+ + +
+ + + + + + + + +
[Warning]Warning
+ +

Anything a guest with a default rbash guest + account saves to his /home directory will be erased when he logs out. + The guest should save his important files to a USB key. +

+ +
+
+ + +
+
    +
  • + +

    Enable guest account: Here you can enable + or disable a guest account. The guest account allows a guest to log + into and use the PC, but he has more restricted access than normal + users. +

    + +
  • +
  • + +

    Shell: This drop down list allows you to + change the shell used by the user you are adding in the previous + screen, options are Bash, Dash and Sh +

    + +
  • +
  • + +

    User ID: Here you can set the user ID for + the user you are adding in the previous screen. This is a number. + Leave it blank unless you know what you are doing. +

    + +
  • +
  • + +

    Group ID: This lets you set the group ID. + Also a number, usually the same one as for the user. Leave it blank + unless you know what you are doing. +

    + +
  • +
+
+ +
+ +
+ + diff --git a/ask_mntpoint_s.html b/ask_mntpoint_s.html new file mode 100644 index 0000000..a78ade2 --- /dev/null +++ b/ask_mntpoint_s.html @@ -0,0 +1,130 @@ + + + + + Choose the mount points + + + + + + +
+
+
+
+

Choose the mount points +

+
+
+
+ + + + + + + + + + + + + +

Here you see the Linux partitions that have been found on your + computer. If you don't agree with the DrakX + suggestions, you can change the mount points. +

+ + +
+ + + + + + + + +
[Note]Note
+ +

If you change anything, make sure you still have a + / (root) partition. +

+ +
+
+ + +
+
    +
  • + +

    Every partition is shown as follows: "Device" ("Capacity", "Mount + point", "Type"). +

    + +
  • +
  • + +

    "Device", is made up of: "hard drive", ["hard drive + number"(letter)], "partition number" (for example, "sda5"). +

    + +
  • +
  • + +

    If you have many partitions, you can choose many different mount + points from the drop down menu, such as /, + /home and /var. You can even make + your own mount points, for instance /video for a + partition where you want to store your films, or + /cauldron-home for the /home + partition of a cauldron install. +

    + +
  • +
  • + +

    For partitions you don't need to have access to, you can leave the + mount point field blank. +

    + +
  • +
+
+ + +
+ + + + + + + + +
[Warning]Warning
+ +

Choose Previous if you are not sure what to + choose, and then tick Custom disk partitioning. In + the screen that follows, you can click on a partition to see its type + and size. +

+ +
+
+ + +

If you are sure the mount points are correct, click on + Next, and choose whether you only want to format the + partition(s) DrakX suggests, or more. +

+ +
+ + diff --git a/choosePackages.html b/choosePackages.html new file mode 100644 index 0000000..b9d02ec --- /dev/null +++ b/choosePackages.html @@ -0,0 +1,172 @@ + + + + + Choosing packages to be installed + + + + + + +
+
+
+
+

Choosing packages to be + installed +

+
+
+
+ + + + + + + + + + + + + + + +

Depending on your selections here, you may + be offered further screens to fine tune your choices. +

+ + +
+
+
+
+

Desktop Selection +

+
+
+
+ + + +

Choose whether you prefer to use the KDE + or Gnome desktop environment. Both come with a + full set of useful applications and tools. Tick + Custom if you want to use either or both, or if you + want something other than the default software choices for these desktop + environments. The LXDE desktop is lighter than the previous two, sporting + less eye candy and fewer packages installed by default. +

+ +
+ + +
+
+
+
+

Package Group Selection +

+
+
+
+ + + +

Packages have been sorted into groups, to make choosing what you + need on your system a lot easier. The groups are fairly self explanatory, + however more information about the content of each is available in + tool-tips which become visible as the mouse is hovered over them. +

+ + +
+
    +
  • + +

    Workstation.

    + +
  • +
  • + +

    Server.

    + +
  • +
  • + +

    Graphical Environment.

    + +
  • +
  • + +

    Individual package selection: You can use this option to + manually add extra packages. +

    + +
  • +
+
+ +
+ + +
+
+
+
+

Minimal Install +

+
+
+
+ + + +

You can choose a Minimal Installation by de-selecting everything in + the Package Group Selection screen. Minimal Installation is intended for + those with specific uses in mind for their Mageia, such as a server or a + specialised workstation. You will probably use this option combined with + Manual Package Selection. If you choose this installation class, then the + next screen will offer you a few useful extras to install, such as + documentation and X. +

+ +
+ + +
+
+
+
+

Choose individual + packages +

+
+
+
+ + + +

Here you can add any extra packages to customise your + installation. +

+ + +

After having made your choice, you can click on the + floppy icon at the bottom of the page to save your + choice of packages (saving to a USB key works, too). You can then use this + file to install the same packages on another system, by pressing the same + button during install and choosing to load it. +

+ +
+ +
+ + diff --git a/diskdrake.html b/diskdrake.html new file mode 100644 index 0000000..ce296be --- /dev/null +++ b/diskdrake.html @@ -0,0 +1,97 @@ + + + + + Custom disk partitioning with DiskDrake + + + + + + +
+
+
+
+

Custom disk partitioning with + DiskDrake +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
[Warning]Warning
+ +

If you wish to use encryption on + your / partition you must ensure that you have a separate /boot + partition. The encryption option for the /boot partition must NOT be set, + otherwise your system will be unbootable. +

+ +
+
+ + +

Adjust the layout of your disk(s) here. You can remove or create partitions, change the filesystem of a partition or change + its size and even view what is in them before you start. + +

+ + +

There is a tab for every detected hard disk or other storage device, like an USB key. For example sda, sdb and sdc if there + are three of them. + +

+ + +

Push Clear all to wipe all partitions on the selected storage device +

+ + +

For all other actions: click on the desired partition first. Then view it, or choose a filesystem and a mount point, resize + it or wipe it. +

+ + +

Continue until you adjusted everything to your wishes. +

+ + +

Click Done when you're ready. +

+
+ + diff --git a/doPartitionDisks.html b/doPartitionDisks.html new file mode 100644 index 0000000..c21edda --- /dev/null +++ b/doPartitionDisks.html @@ -0,0 +1,148 @@ + + + + + Partitioning + + + + + + +
+
+
+
+

Partitioning +

+
+
+
+ + + + + + + + + + + + + +

In this screen you can see + the content of your hard drive(s) and see the solutions the DrakX + partitioning wizard found for where to install + Mageia. +

+ + +

The options available from the list below will vary + depending on your particular hard drive(s) layout and content. +

+ + + + +

+
+
    +
  • + +

    Use Existing Partitions +

    + + +

    If this option is available, then existing Linux compatible + partitions have been found and may be used for the + installation. +

    + +
  • +
  • + +

    Use Free Space +

    + + +

    If you have unused space on your hard drive then this option + will use it for your new Mageia installation. +

    + +
  • +
  • + +

    Use Free Space on a Windows Partition +

    + + +

    If you have unused space on an existing Windows partition, the + installer may offer to use it. +

    + + +

    This can be a useful way of making room for your new Mageia + installation, but is a risky operation and should be a last resort! +

    + + +

    Note that this involves shrinking the size of the Windows + partition, which is not without some risk. The partition must be + "clean", meaning that Windows must have closed down correctly the last + time it was used. It must also have been defragmented, although this is not a guarantee that all files in the partition + have been moved out of the area that is about to be used. You should check this carefully before proceeding. +

    + +
  • +
+
+
+
    +
  • + +

    Erase and use Entire Disk. +

    + + +

    This option will use the complete drive for Mageia. +

    + + +

    Note! This will erase ALL data on the selected hard drive. Take + care! +

    + + +

    If you intend to use part of the disk for something else, or you + already have data on the drive that you are not prepared to lose, then + do not use this option. +

    + +
  • +
+
+
+
    +
  • + +

    Custom +

    + + +

    This gives you complete control over the placing of the + installation on your hard drive(s). +

    + + +
  • +
+
+ +
+ + diff --git a/draft.png b/draft.png new file mode 100644 index 0000000..59673fe Binary files /dev/null and b/draft.png differ diff --git a/exitInstall.html b/exitInstall.html new file mode 100644 index 0000000..578e971 --- /dev/null +++ b/exitInstall.html @@ -0,0 +1,62 @@ + + + + + Congratulations + + + + + +
+
+
+
+

Congratulations +

+
+
+
+ + + + + + + + + + + + +

You have finished installing + and configuring Mageia and it is now safe to remove the installation medium and + reboot your computer. +

+ + +

After reboot, in the bootloader screen, you can choose between the operating systems on your computer (if you have more than + one). +

+ + +

If you didn't adjust the settings for the bootloader, your Mageia install will be automatically selected and started. +

+ + +

Enjoy! +

+ + +

Visit www.mageia.org if you have any questions or want to contribute to Mageia +

+ + + +
+ + diff --git a/formatPartitions.html b/formatPartitions.html new file mode 100644 index 0000000..2aa128b --- /dev/null +++ b/formatPartitions.html @@ -0,0 +1,85 @@ + + + + + Formatting + + + + + + +
+
+
+
+

Formatting +

+
+
+
+ + + + + + + + + + + + + + + +

Here you can choose which + partition(s) you wish to format. Any data on partitions not marked for + formatting will be saved. +

+ + +

Usually at least the + partitions DrakX selected, need to be formatted +

+ + +

Click on + Advanced to choose partitions you want to check for + so called bad blocks

+ + +
+ + + + + + + + +
[Tip]Tip
+ +

If you're not sure you + have made the right choice, you can click on + Previous, again on Previous + and then on Custom to get back to the main screen. + In that screen you can choose to view what is in your partitions. +

+ +
+
+ + +

When you are confident + about the selection, click on Next to + continue. +

+ +
+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..66b307b --- /dev/null +++ b/index.html @@ -0,0 +1,171 @@ + + + + + Installation with DrakX + + + + +
+
+
+
+

Installation with DrakX +

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/installUpdates.html b/installUpdates.html new file mode 100644 index 0000000..369786e --- /dev/null +++ b/installUpdates.html @@ -0,0 +1,55 @@ + + + + + Updates + + + + + + +
+
+
+
+

Updates +

+
+
+
+ + + + + + + + + + + +

Since this version of + Mageia was released, some packages will have been + updated or improved. +

+ + +

Choose + yes if you wish to download and install them, select + no if you don't want to do this now, or if you aren't + connected to the Internet +

+ + +

Then press + Next to continue +

+ +
+ + diff --git a/installer.html b/installer.html new file mode 100644 index 0000000..9091a20 --- /dev/null +++ b/installer.html @@ -0,0 +1,208 @@ + + + + + DrakX, the Mageia installer + + + + + + +
+
+
+
+

DrakX, the Mageia installer +

+
+
+
+ + + + + + + + + + +

Whether you are new to GNU-Linux or an experienced user, the Mageia + installer is designed to help make your installation or upgrade as easy as + possible. +

+ + + + +

The initial menu screen has various options, however the default one + will start the installer, which will normally be all that you will + need. +

+ + + + +

If there are problems during install, then it may be necessary to use + special installation options, see the section called “Installation options”. +

+ + +
+
+
+
+

The installation steps +

+
+
+
+ + + +

The install process is divided into [a series] of steps, which can + be followed on the side panel of the screen. +

+ + +

Each step has one or more screens which may also have + Advanced buttons with extra, less commonly + required, options. +

+ + +

Most screens have help buttons which give + further explanations about the current step. +

+ +
+ + +
+
+
+
+

Installation options +

+
+
+
+ + + +

If the installation fails then it may be necessary to try again by + using one of the extra options available by hitting the F1 key (Help) see + Figure 1, “Very First Installation Welcome + Screen”

+ + +

This will open the following text based help.

+ + + + +
+
+
+
+

Installation problems and + possible solutions +

+
+
+
+ + + +
+
+
+
+
No graphical interface +
+
+
+
+ + + +
+
    +
  • + +

    After the initial screen you did not reach the language + selection screen. This can happen with some graphic cards and + older systems. Try using low resolution by typing "vgalo" at the + prompt. +

    + +
  • +
  • + +

    If the hardware is very old, a graphical installation may be + impossible. In this case it is worth trying a text mode + installation. To use this, type text at the prompt. + Note: this mode may not work in Mageia + 2.

    + +
  • +
+
+ +
+ + +
+
+
+
+
Install freezes +
+
+
+
+ + + +

If the system appears to freeze during the installation, this + may be a problem with hardware detection. In this case the automatic + detection of hardware may be bypassed and dealt with later. To try + this, type "noauto" at the prompt. This option may also be combined + with the previous options if necessary. +

+ +
+ + +
+
+
+
+
Kernel options +
+
+
+
+ + + +

These will rarely be needed, but in some cases the hardware may + report the available RAM incorrectly. To specify this manually, you + can use the mem=xxxM parameter, where xxx is the correct amount of + RAM. e.g. "mem=256M" would specify 256MB of RAM. +

+ +
+ +
+ +
+ +
+ + diff --git a/misc-params.html b/misc-params.html new file mode 100644 index 0000000..2f5cd96 --- /dev/null +++ b/misc-params.html @@ -0,0 +1,534 @@ + + + + + Summary of miscellaneous parameters + + + + + + +
+
+
+
+

Summary of miscellaneous + parameters +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +

DrakX made smart choices for the + configuration of your system depending on the choices you made and on the + hardware DrakX detected. You can check the settings here and change them if + you want after pressing Configure. +

+ + +
+
+
+
+

System parameters +

+
+
+
+ + + +
+
    +
  • + +

    Timezone

    + + +

    DrakX selected a + time zone for you, depending on your preferred language. You can + change it if needed. See also the section called “Configure your + Timezone”

    + +
  • +
  • + +

    Country / + Region

    + + +

    If you are not in + the selected country, it is very important that you correct the + setting. See the section called “Select your Country / + Region”

    + +
  • +
  • + +

    Bootloader

    + + +

    DrakX has made + good choices for the bootloader setting. +

    + + +

    Do not change + anything, unless you know how to configure Grub and/or Lilo +

    + + +

    For more information, see the section called “Bootloader main + options”

    + +
  • +
  • + +

    User + management

    + + +

    You can add extra + users here. They will each get their own /home + directories and will not be able to look in your or each other's + documents, mails, pictures and other files. +

    + +
  • +
  • + +

    Services: +

    + + +

    System services + refer to those small programs which run the background (daemons). This + tool allows you to enable or disable certain tasks. +

    + + +

    You should check + carefully before changing anything here - a mistake may prevent your + computer from operating correctly. +

    + +
  • +
+
+ +
+ + +
+
+
+
+

Hardware parameters +

+
+
+
+ + + +
+
    +
  • + +

    Keyboard: +

    + + +

    This is where + you setup or change your keyboard layout which will depend on your + location, language or type of keyboard. +

    + +
  • +
  • + +

    Mouse: +

    + + +

    Here you can add + or configure other pointing devices, tablets, trackballs etc. +

    + +
  • +
  • + +

    Sound + card: +

    + + +

    This section + allows you to fine tune your sound card. In most cases the options + selected will work with your computer. +

    + +
  • +
  • + +

    Graphical + interface: +

    + + +

    This section + allows you to configure your graphic card(s) and displays. +

    + + + +

    For more information, see the section called “Set up X, graphic card and monitor + configuration”. +

    + + +
  • +
+
+ +
+ + + + +
+
+
+
+

Network and Internet + parameters +

+
+
+
+ + + +
+
    +
  • + +

    Network: +

    + + +

    You can configure + your network here, but for network cards with non-free drivers it is + better to do that after reboot, in the Mageia Control + Center, after having enabled the non-free media + repositories. +

    + + +
    + + + + + + + + +
    [Warning]Warning
    + +

    When you add a + network card, do not forget to set your firewall to watch that + interface as well. +

    + +
    +
    + +
  • +
  • + +

    Proxies: +

    + + +

    A Proxy Server + acts as an intermediary between your computer and the wider internet. + This section allows you to configure your computer to utilize a proxy + service. +

    + + +

    You may need to + consult your systems administrator to get the parameters you need to + enter here +

    + +
  • +
+
+ +
+ + +
+
+
+
+

Security +

+
+
+
+ + + +
+
    +
  • + +

    Security + Level: +

    + + +

    Here you set the + Security level for your computer, in most cases the default setting + (Standard) is adequate for general use. +

    + + +

    Check the option + which best suits your usage. +

    + +
  • +
  • + +

    Firewall: +

    + + +

    A firewall is + intended to be a barrier between your important data and the rascals + out there on the internet who would compromise or steal it. +

    + + +

    Select the + services that you wish to have access to your system. You selections + will depend on what you use your computer for. +

    + + +
    + + + + + + + + +
    [Warning]Warning
    + +

    Bear in mind + that allowing everything (no firewall) may be very risky. +

    + +
    +
    + +
  • +
+
+ +
+ + +
+
+
+
+

Configure your + Timezone +

+
+
+
+ + + +

Choose your + time zone by choosing your country or a city close to you in the same time + zone. +

+ + +

In next + screen you can choose to set your hardware clock to local time or to GMT, + also known as UTC. +

+ + +
+ + + + + + + + +
[Note]Note
+ +

If you have + more than one operating system on your computer, make sure they are all + set to local time, or all to UTC/GMT. +

+ +
+
+ +
+ + +
+
+
+
+

Select your Country / + Region +

+
+
+
+ + + +

Select your country + or region. This is important for all kinds of settings, like the currency + and wireless regulatory domain. Setting the wrong country can lead to not + being able to use a Wireless network. +

+ + +

If your country + isn't in the list, click the Other Countries button + and choose your country / region there. +

+ + +
+ + + + + + + + +
[Note]Note
+ +

If your country is + only in the Other Countries list, after clicking + OK it may seem a country from the first list was + chosen. Please ignore this, DrakX will follow your real choice. +

+ +
+
+ +
+ + +
+
+
+
+

Configure your + Services +

+
+
+
+ + + +

Here you can set which services should (not) start when you boot your system. +

+ + +

There are four groups, click on the triangle before a group to expand it and see all services in it. +

+ + +

The setting DrakX chose are usually good. +

+ + +

If you highlight a service, some information about it is shown in the info box below. +

+ + +

Only change things when you know very well what you are doing. +

+ + + +
+ + +
+
+
+
+

Security Level +

+
+
+
+ + + +

You can adjust your security level here. +

+ +

Leave the default settings as they are, if you don't know what to choose. +

+ +

After install, it will always be possible to adjust your security settings in the Security part of the Mageia Control Center. +

+ + +
+ +
+ + diff --git a/note.png b/note.png new file mode 100644 index 0000000..8f3a936 Binary files /dev/null and b/note.png differ diff --git a/resizeFATChoose.html b/resizeFATChoose.html new file mode 100644 index 0000000..57efc33 --- /dev/null +++ b/resizeFATChoose.html @@ -0,0 +1,57 @@ + + + + + Resize Windows® partition + + + + + + +
+
+
+
+

Resize + Windows® partition +

+
+
+
+ + + + + + + + + + + + + + + + + +

You have more than one + Windows® partition. + Choose which one should be made smaller to make space for installing + Mageia. +

+ + + + + + + +
+ + diff --git a/selectInstallClass.html b/selectInstallClass.html new file mode 100644 index 0000000..54a0d60 --- /dev/null +++ b/selectInstallClass.html @@ -0,0 +1,68 @@ + + + + + Install or Upgrade + + + + + + +
+
+
+
+

Install or Upgrade +

+
+
+
+ + + + + + + + + + + + + + + +
+
    +
  • + +

    Install

    + + +

    Use this option for a fresh Mageia + installation. +

    + +
  • +
  • + +

    Upgrade

    + + +

    If you have one or more previous installations of + Mageia on your system, the installer will + allow you to upgrade one of them to the latest release. +

    + +
  • +
+
+ +
+ + diff --git a/selectKeyboard.html b/selectKeyboard.html new file mode 100644 index 0000000..4d13cb1 --- /dev/null +++ b/selectKeyboard.html @@ -0,0 +1,97 @@ + + + + + Keyboard + + + + + + +
+
+
+
+

Keyboard +

+
+
+
+ + + + + + + +

DrakX selects an appropriate + keyboard for your language. If no suitable keyboard is found it will default + to a US keyboard layout. +

+ + + + +
+
    +
  • + +

    Make sure that the + selection is correct or choose another keyboard layout. If you don't + know which layout your keyboard has, look in the specifications that + came with your system, or ask the computer vendor. There may even be a + label on the keyboard that identifies the layout. You can also look + here: en.wikipedia.org/wiki/Keyboard_layout

    + +
  • +
  • + +

    If your keyboard isn't in + the list shown, click on More to get a full list, + and select your keyboard there. +

    + + +
    + + + + + + + + +
    [Warning]Warning
    + +

    After choosing a + keyboard from the More dialog, you'll return + to the first keyboard choice dialog and it will seem as though a + keyboard from that screen was chosen. You can safely ignore this + anomaly and continue the installation: Your keyboard is the one you + chose from the full list. +

    + +
    +
    + +
  • +
  • + +

    If you choose a keyboard + based on non-Latin characters, you will see an extra dialog screen + asking how you would prefer to switch between the Latin and non-Latin + keyboard layouts +

    + +
  • +
+
+ +
+ + diff --git a/selectLanguage.html b/selectLanguage.html new file mode 100644 index 0000000..8bd866e --- /dev/null +++ b/selectLanguage.html @@ -0,0 +1,105 @@ + + + + + Please choose a language to use + + + + + + +
+
+
+
+

Please choose a language to use +

+
+
+
+ + + + + + + + + + + + + +

Select your preferred language, by first expanding the list for your + continent. Mageia will use this selection during + the installation and for your installed system. +

+ + +

If it is likely that you will require several languages installed on + your system, for yourself or other users, then you should use the + Multiple languages button to add them now. It will be + difficult to add extra language support after installation. +

+ + + + +
+ + + + + + + + +
[Warning]Warning
+ +

Even if you choose more than one language, you must first choose one + of them as your preferred language in the first language screen. It will + also be marked as chosen in the multiple languages screen . +

+ +
+
+ + +
+
    +
  • + +

    If your keyboard language is not the same as your preferred + language, then it is advisable to install the language of your keyboard + as well. +

    + +
  • +
  • + +

    Mageia uses UTF-8 (Unicode) support by default. This may be + disabled in the "multiple languages" screen if you know that it is + inappropriate for your language. Disabling UTF-8 applies to all + installed languages. +

    + +
  • +
  • + +

    You can change the language of your system after installation in + the Mageia Control Center -> System -> Manage localization for + your system. +

    + +
  • +
+
+ +
+ + diff --git a/selectMouse.html b/selectMouse.html new file mode 100644 index 0000000..81082fa --- /dev/null +++ b/selectMouse.html @@ -0,0 +1,51 @@ + + + + + Select mouse + + + + + + +
+
+
+
+

Select mouse +

+
+
+
+ + + + + + + + + + + + + +

If you are not happy with how your mouse responds, you can select a different one here. +

+ + +

Usually, Universal - Any PS/2 and USB mice is a good choice. +

+ + +

Select Universal - Force evdev to configure the buttons that do not work on a mouse with six or more buttons. +

+ +
+ + diff --git a/setupBootloaderBeginner.html b/setupBootloaderBeginner.html new file mode 100644 index 0000000..00181c6 --- /dev/null +++ b/setupBootloaderBeginner.html @@ -0,0 +1,236 @@ + + + + + Bootloader main options + + + + + + +
+
+
+
+

Bootloader main + options +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +

If you prefer + different bootloader settings to those chosen automatically by the + installer, you can change them here. +

+ + +

You may already have + another operating system on your machine, in which case you need to decide + whether to add Mageia to your existing bootloader, or allow Mageia to create + a new one. +

+ + +
+ + + + + + + + +
[Tip]Tip
+ +

The Mageia + graphical menu is nice :) +

+ +
+
+ + +
+
+
+
+

Using the Mageia + bootloader +

+
+
+
+ + + +

By default Mageia + writes a new GRUB bootloader into the MBR (Master Boot Record) of your + first hard drive. If you already have other operating systems installed, + Mageia attempts to add them to your new Mageia boot menu. +

+ + +

This works + correctly in the majority of cases for Linux and + Windows® + systems. +

+ + +
+ + + + + + + + +
[Warning]Warning
+ +

Linux systems + which use the GRUB2 bootloader (e.g. more recent Debian/Ubuntu + derivatives) are not currently supported and will not be recognised. One + possible solution for this is to follow the steps explained here the section called “Adding a GRUB2 based system + manually” before installing Mageia next to such a + system, however there is no guarantee. +

+ + +

If you are + already installing Mageia without having taken those steps, (and do not + already know the GRUB2 version and/or it's root partition) then install + the Mageia bootloader in the root partition for now (see next section), + and inspect your GRUB2 based system after rebooting at the end of the + installation. Note that you will not yet be able to boot Mageia, however + you will be able to use the Mageia install DVD to perform a quick + "upgrade install" at a later date to correctly install the bootloader to + the MBR. +

+ +
+
+ +
+ + +
+
+
+
+

Using an + existing bootloader +

+
+
+
+ + + +

If you decide to + use an existing bootloader then you will need to remember to STOP at the + summary page during the installation and click the Bootloader + Configure button, which will allow you to change + the bootloader install location. +

+ + +

Do not select a + device e.g."sda", or you will overwrite your existing MBR. You must select + the root partition that you chose during the partitioning phase earlier + e.g. sda7. +

+ + +

To be clear, sda + is a device, sda7 is a partition. +

+ + +
+ + + + + + + + +
[Tip]Tip
+ +

Go to tty2 + with Ctrl+Alt+F2 and type df to check where your + / (root) partition is. Ctrl+Alt+F7 takes you back to + the installer screen. +

+ +
+
+ + +

The exact + procedure for adding your Mageia system to an existing bootloader is + beyond the scope of this help, however in most cases it will involve + running the relevant bootloader installation program which should detect + and add it automatically. See the documentation for the operating system + in question. +

+ +
+ + +
+
+
+
+

Bootloader + advanced option +

+
+
+
+ + + +

If you have very + limited disk space for the / partition that contains + /tmp, click on Advanced and + check the box for Clean /tmp at each boot. This helps + to maintain some free space. +

+ +
+ +
+ + diff --git a/setupBootloaderExpert.html b/setupBootloaderExpert.html new file mode 100644 index 0000000..b4f3a22 --- /dev/null +++ b/setupBootloaderExpert.html @@ -0,0 +1,350 @@ + + + + + Bootloader expert use + + + + + + +
+
+
+
+

Bootloader expert use +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +

If you haven't done so + yet, please read the section called “Bootloader main + options” first. +

+ + +
+
+
+
+

Adding a GRUB2 based system + manually +

+
+
+
+ + + +

A GRUB2 based system + may be added to the Mageia boot menu as follows: +

+ + +
+
    +
  • + +

    Boot into the + system in question. In order to determine the GRUB2 version run the + following command in a terminal: +

    + + +

    sudo + grub-install --version

    + + +

    or if that + fails try: +

    + + +

    sudo + grub2-install --version

    + +
  • +
  • + +

    If this returns + "GNU GRUB version 0.97" (possibly with a custom suffix), then it is + using GRUB (otherwise called GRUB legacy) not GRUB2 and your system + should be correctly identified by Mageia during installation and added + automatically to the menu. +

    + +
  • +
  • + +

    If this returns + (GRUB) 1.98 or 1.99 or 2.xx, then you are using GRUB2. +

    + + +

    Make a note of + the version and enter this command to identify the root + partition: +

    + + +

    df -h + / |(read; awk '{print $1; exit}')

    + + +

    This will + output something like : +

    + + + + +

    /dev/sdb11

    + + +

    sdb11 is the + root partition - make a note of it. +

    + +
  • +
  • + +

    Now check that + the /boot folder is in the same partition by entering the following + command: +

    + + +

    df -h + /boot |(read; awk '{print $1; exit}')

    + + + + +

    If the /boot + partition is different to the root partition then make a note and use + the /boot partition in the "root" line when editing menu.lst + below. +

    + +
  • +
  • + +

    You can now + shut down the system and install Mageia. +

    + +
  • +
  • + +

    In your new + running Mageia system, open a terminal and as root edit the file + /boot/grub/menu.lst as follows: +

    + +
  • +
  • + +

    To become root + use: +

    + + +

    su + -

    + + +

    (enter root + password) +

    + +
  • +
  • + +

    To open the + file in an editor use: +

    + + +

    kwrite + /boot/grub/menu.lst

    + + +

    (replace + "kwrite" with "gedit" if you are using Gnome) +

    + +
  • +
  • + +

    Add the + following entry for your (e.g. Ubuntu) system, possibly as the second + stanza. The position the item appears in the menu will depend on its + position in the file: +

    + + +

    title + Ubuntu

    + + +

    root + (hd1,10)

    + + +

    kernel + /boot/grub/core.img

    + +
  • +
  • + +
    + + + + + + + + +
    [Note]Note
    + +

    In the second + line, "hd1" means the second hard drive, the "10" indicates the 11th + partition. Drives and partitions in Mageia's legacy GRUB count from + zero. +

    + + +

    Therefore: +

    + + +

    sdb11 = + (hd1,10)

    + + +

    sda1 + = (hd0,0)

    + +
    +
    + +
  • +
  • + +

    If the GRUB2 + version is 2.xx then change the last line to : +

    + + +

    kernel + /boot/grub/i386-pc/core.img

    + + +

    If you needed + to use "grub2-install" earlier then change "grub" + to "grub2" in the last line. +

    + + +

    If /boot was + on a separate partition, then remove "/boot" from + the last line. +

    + +
  • +
  • + +

    Save the file + and re-boot. You should now see your "Ubuntu" entry in the menu and be + able to boot from it. +

    + +
  • +
+
+ +
+ + +
+
+
+
+

Using an + existing GRUB2 bootloader +

+
+
+
+ + + +

If you didn't read + the general part about using an existing bootloader yet, do so now. See + the section called “Using an + existing bootloader”

+ + +
+ + + + + + + + +
[Note]Note
+ +

There is a known + bug in OS-prober used during GRUB2 installation in some older versions + of Debian/Ubuntu that incorrectly creates grub.cfg when adding Mageia + (or Mandriva) systems. This is simple to work around and details of a + fix can be found in the Mageia forum here: + https://forums.mageia.org/en/viewtopic.php?p=13547#p13547 +

+ + +

To make the fix + permanent so that it will survive an Ubuntu kernel update, the Mageia + entry should be added to /etc/grub.d/40_custom

+ +
+
+ +
+ +
+ + diff --git a/setupSCSI.html b/setupSCSI.html new file mode 100644 index 0000000..194a0e8 --- /dev/null +++ b/setupSCSI.html @@ -0,0 +1,57 @@ + + + + + Setup SCSI + + + + + + +
+
+
+
+

Setup SCSI +

+
+
+
+ + + + + + + + + + + + + + + +

DrakX usually detects hard + disks correctly. It may not however detect some older SCSI drive + controllers and therefore fail to install the required drivers. +

+ + +

If this happens, you will need to + manually tell Drakx which SCSI drive(s) you have. +

+ + +

DrakX should then be able + to configure the drive(s) correctly. +

+ +
+ + diff --git a/setupX.html b/setupX.html new file mode 100644 index 0000000..bd206a3 --- /dev/null +++ b/setupX.html @@ -0,0 +1,127 @@ + + + + + Set up X, graphic card and monitor configuration + + + + + + +
+
+
+
+

Set up X, graphic card and monitor + configuration +

+
+
+
+ + + + + + + + + + + + + + + + + +

No matter which graphical environment + (also known as desktop environment) you chose for this install of + Mageia, they are all based on a graphical user + interface system called X-Windows, or simply + X. So in order for KDE, + Gnome, LXDE or any other graphical + environment to work well, the following X settings need + to be correct. Choose the correct settings if you can see that + DrakX didn't make a choice, or if you think the + choice is incorrect. +

+ + +
+
    +
  • + +

    Graphic + card: Choose your card from the list if + needed. +

    + +
  • +
  • + +

    Monitor: + You can choose Plug'n Play when applicable, or + choose your monitor from the Vendor or + Generic list. Choose Custom if + you prefer to manually set the horizontal and vertical refresh rates of + your monitor. +

    + + +
    + + + + + + + + +
    [Warning]Warning
    + +

    Incorrect refresh rates may + damage your monitor +

    + +
    +
    + +
  • +
  • + +

    Resolution: + Set the desired resolution and color depth of your monitor here. +

    + +
  • +
  • + +

    Test: + The test button does not always appear during install. If the button is + there, you can control your settings by pressing it. If you see a + question asking you whether your settings are correct, you can answer + "yes", and the settings will be kept. If you don't see anything, you'll + return to the configuration screen and be able to reconfigure everything + until the test is good. Make sure your settings are on the + safe side if the test button isn't available

    + +
  • +
  • + +

    Options: + Here you can choose to enable or disable various options. +

    + +
  • +
+
+ +
+ + diff --git a/takeOverHdChoose.html b/takeOverHdChoose.html new file mode 100644 index 0000000..dc4efda --- /dev/null +++ b/takeOverHdChoose.html @@ -0,0 +1,58 @@ + + + + + Choose hard disk to erase for Mageia + + + + + + +
+
+
+
+

Choose hard disk to erase for + Mageia

+
+
+
+ + + + + + + +

Select the hard disk that + should be formatted to install Mageia. +

+ + +
+ + + + + + + + +
[Warning]Warning
+ +

Be sure to select the + correct hard disk. All data on the selected disk will be lost. This step + can not be undone. +

+ +
+
+ +
+ + diff --git a/takeOverHdConfirm.html b/takeOverHdConfirm.html new file mode 100644 index 0000000..c48781c --- /dev/null +++ b/takeOverHdConfirm.html @@ -0,0 +1,49 @@ + + + + + Confirm hard disk to be formatted + + + + + + +
+
+
+
+

Confirm hard disk to be + formatted +

+
+
+
+ + + + + + + + + + + +

Click on + Previous if you are not sure about your choice. +

+ + +

Click on + Next if you are sure and want to erase every + partition, every operating system and all data on that hard disk. +

+ +
+ + diff --git a/tip.png b/tip.png new file mode 100644 index 0000000..fac7493 Binary files /dev/null and b/tip.png differ diff --git a/warning.png b/warning.png new file mode 100644 index 0000000..be0546f Binary files /dev/null and b/warning.png differ -- cgit v1.2.1