aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/message_parser.php
diff options
context:
space:
mode:
authorMaat <maat-pub@mageia.biz>2020-05-08 18:29:30 +0200
committerMaat <maat-pub@mageia.biz>2020-05-08 21:36:04 +0200
commit36bc1870f21fac04736a1049c1d5b8e127d729f4 (patch)
tree9d102331eeaf1ef3cd23e656320d7c08e65757ed /phpBB/includes/message_parser.php
parent8875d385d0579b451dac4d9bda465172b4f69ee0 (diff)
parent149375253685b3a38996f63015a74b7a0f53aa14 (diff)
downloadforums-36bc1870f21fac04736a1049c1d5b8e127d729f4.tar
forums-36bc1870f21fac04736a1049c1d5b8e127d729f4.tar.gz
forums-36bc1870f21fac04736a1049c1d5b8e127d729f4.tar.bz2
forums-36bc1870f21fac04736a1049c1d5b8e127d729f4.tar.xz
forums-36bc1870f21fac04736a1049c1d5b8e127d729f4.zip
Merge remote-tracking branch 'upstream/prep-release-3.1.11'
Diffstat (limited to 'phpBB/includes/message_parser.php')
-rw-r--r--phpBB/includes/message_parser.php392
1 files changed, 327 insertions, 65 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php
index a134fab5d3..bbd5e84233 100644
--- a/phpBB/includes/message_parser.php
+++ b/phpBB/includes/message_parser.php
@@ -1,10 +1,13 @@
<?php
/**
*
-* @package phpBB3
-* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
*
*/
@@ -18,13 +21,25 @@ if (!defined('IN_PHPBB'))
if (!class_exists('bbcode'))
{
+ // The following lines are for extensions which include message_parser.php
+ // while $phpbb_root_path and $phpEx are out of the script scope
+ // which may lead to the 'Undefined variable' and 'failed to open stream' errors
+ if (!isset($phpbb_root_path))
+ {
+ global $phpbb_root_path;
+ }
+
+ if (!isset($phpEx))
+ {
+ global $phpEx;
+ }
+
include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
}
/**
* BBCODE FIRSTPASS
* BBCODE first pass class (functions for parsing messages for db storage)
-* @package phpBB3
*/
class bbcode_firstpass extends bbcode
{
@@ -104,6 +119,8 @@ class bbcode_firstpass extends bbcode
*/
function bbcode_init($allow_custom_bbcode = true)
{
+ global $phpbb_dispatcher;
+
static $rowset;
// This array holds all bbcode data. BBCodes will be processed in this
@@ -111,6 +128,9 @@ class bbcode_firstpass extends bbcode
// [quote] in second position.
// To parse multiline URL we enable dotall option setting only for URL text
// but not for link itself, thus [url][/url] is not affected.
+ //
+ // To perform custom validation in extension, use $this->validate_bbcode_by_extension()
+ // method which accepts variable number of parameters
$this->bbcodes = array(
'code' => array('bbcode_id' => 8, 'regexp' => array('#\[code(?:=([a-z]+))?\](.+\[/code\])#uise' => "\$this->bbcode_code('\$1', '\$2')")),
'quote' => array('bbcode_id' => 0, 'regexp' => array('#\[quote(?:=&quot;(.*?)&quot;)?\](.+)\[/quote\]#uise' => "\$this->bbcode_quote('\$0')")),
@@ -163,6 +183,21 @@ class bbcode_firstpass extends bbcode
'regexp' => array($row['first_pass_match'] => str_replace('$uid', $this->bbcode_uid, $row['first_pass_replace']))
);
}
+
+ $bbcodes = $this->bbcodes;
+
+ /**
+ * Event to modify the bbcode data for later parsing
+ *
+ * @event core.modify_bbcode_init
+ * @var array bbcodes Array of bbcode data for use in parsing
+ * @var array rowset Array of bbcode data from the database
+ * @since 3.1.0-a3
+ */
+ $vars = array('bbcodes', 'rowset');
+ extract($phpbb_dispatcher->trigger_event('core.modify_bbcode_init', compact($vars)));
+
+ $this->bbcodes = $bbcodes;
}
/**
@@ -210,7 +245,7 @@ class bbcode_firstpass extends bbcode
if ($config['max_' . $this->mode . '_font_size'] && $config['max_' . $this->mode . '_font_size'] < $stx)
{
- $this->warn_msg[] = sprintf($user->lang['MAX_FONT_SIZE_EXCEEDED'], $config['max_' . $this->mode . '_font_size']);
+ $this->warn_msg[] = $user->lang('MAX_FONT_SIZE_EXCEEDED', (int) $config['max_' . $this->mode . '_font_size']);
return '[size=' . $stx . ']' . $in . '[/size]';
}
@@ -294,7 +329,7 @@ class bbcode_firstpass extends bbcode
$in = str_replace(' ', '%20', $in);
// Checking urls
- if (!preg_match('#^' . get_preg_expression('url') . '$#i', $in) && !preg_match('#^' . get_preg_expression('www_url') . '$#i', $in))
+ if (!preg_match('#^' . get_preg_expression('url') . '$#iu', $in) && !preg_match('#^' . get_preg_expression('www_url') . '$#iu', $in))
{
return '[img]' . $in . '[/img]';
}
@@ -319,13 +354,13 @@ class bbcode_firstpass extends bbcode
if ($config['max_' . $this->mode . '_img_height'] && $config['max_' . $this->mode . '_img_height'] < $stats[1])
{
$error = true;
- $this->warn_msg[] = sprintf($user->lang['MAX_IMG_HEIGHT_EXCEEDED'], $config['max_' . $this->mode . '_img_height']);
+ $this->warn_msg[] = $user->lang('MAX_IMG_HEIGHT_EXCEEDED', (int) $config['max_' . $this->mode . '_img_height']);
}
if ($config['max_' . $this->mode . '_img_width'] && $config['max_' . $this->mode . '_img_width'] < $stats[0])
{
$error = true;
- $this->warn_msg[] = sprintf($user->lang['MAX_IMG_WIDTH_EXCEEDED'], $config['max_' . $this->mode . '_img_width']);
+ $this->warn_msg[] = $user->lang('MAX_IMG_WIDTH_EXCEEDED', (int) $config['max_' . $this->mode . '_img_width']);
}
}
}
@@ -362,8 +397,8 @@ class bbcode_firstpass extends bbcode
$in = str_replace(' ', '%20', $in);
// Make sure $in is a URL.
- if (!preg_match('#^' . get_preg_expression('url') . '$#i', $in) &&
- !preg_match('#^' . get_preg_expression('www_url') . '$#i', $in))
+ if (!preg_match('#^' . get_preg_expression('url') . '$#iu', $in) &&
+ !preg_match('#^' . get_preg_expression('www_url') . '$#iu', $in))
{
return '[flash=' . $width . ',' . $height . ']' . $in . '[/flash]';
}
@@ -374,13 +409,13 @@ class bbcode_firstpass extends bbcode
if ($config['max_' . $this->mode . '_img_height'] && $config['max_' . $this->mode . '_img_height'] < $height)
{
$error = true;
- $this->warn_msg[] = sprintf($user->lang['MAX_FLASH_HEIGHT_EXCEEDED'], $config['max_' . $this->mode . '_img_height']);
+ $this->warn_msg[] = $user->lang('MAX_FLASH_HEIGHT_EXCEEDED', (int) $config['max_' . $this->mode . '_img_height']);
}
if ($config['max_' . $this->mode . '_img_width'] && $config['max_' . $this->mode . '_img_width'] < $width)
{
$error = true;
- $this->warn_msg[] = sprintf($user->lang['MAX_FLASH_WIDTH_EXCEEDED'], $config['max_' . $this->mode . '_img_width']);
+ $this->warn_msg[] = $user->lang('MAX_FLASH_WIDTH_EXCEEDED', (int) $config['max_' . $this->mode . '_img_width']);
}
}
@@ -703,17 +738,6 @@ class bbcode_firstpass extends bbcode
{
global $config, $user;
- /**
- * If you change this code, make sure the cases described within the following reports are still working:
- * #3572 - [quote="[test]test"]test [ test[/quote] - (correct: parsed)
- * #14667 - [quote]test[/quote] test ] and [ test [quote]test[/quote] (correct: parsed)
- * #14770 - [quote="["]test[/quote] (correct: parsed)
- * [quote="[i]test[/i]"]test[/quote] (correct: parsed)
- * [quote="[quote]test[/quote]"]test[/quote] (correct: parsed - Username displayed as [quote]test[/quote])
- * #20735 - [quote]test[/[/b]quote] test [/quote][/quote] test - (correct: quoted: "test[/[/b]quote] test" / non-quoted: "[/quote] test" - also failed if layout distorted)
- * #40565 - [quote="a"]a[/quote][quote="a]a[/quote] (correct: first quote tag parsed, second quote tag unparsed)
- */
-
$in = str_replace("\r\n", "\n", str_replace('\"', '"', trim($in)));
if (!$in)
@@ -767,20 +791,6 @@ class bbcode_firstpass extends bbcode
else if (preg_match('#^quote(?:=&quot;(.*?)&quot;)?$#is', $buffer, $m) && substr($out, -1, 1) == '[')
{
$this->parsed_items['quote']++;
-
- // the buffer holds a valid opening tag
- if ($config['max_quote_depth'] && sizeof($close_tags) >= $config['max_quote_depth'])
- {
- // there are too many nested quotes
- $error_ary['quote_depth'] = sprintf($user->lang['QUOTE_DEPTH_EXCEEDED'], $config['max_quote_depth']);
-
- $out .= $buffer . $tok;
- $tok = '[]';
- $buffer = '';
-
- continue;
- }
-
array_push($close_tags, '/quote:' . $this->bbcode_uid);
if (isset($m[1]) && $m[1])
@@ -957,9 +967,9 @@ class bbcode_firstpass extends bbcode
$url = str_replace(' ', '%20', $url);
// Checking urls
- if (preg_match('#^' . get_preg_expression('url') . '$#i', $url) ||
- preg_match('#^' . get_preg_expression('www_url') . '$#i', $url) ||
- preg_match('#^' . preg_quote(generate_board_url(), '#') . get_preg_expression('relative_url') . '$#i', $url))
+ if (preg_match('#^' . get_preg_expression('url') . '$#iu', $url) ||
+ preg_match('#^' . get_preg_expression('www_url') . '$#iu', $url) ||
+ preg_match('#^' . preg_quote(generate_board_url(), '#') . get_preg_expression('relative_url') . '$#iu', $url))
{
$valid = true;
}
@@ -1044,7 +1054,6 @@ class bbcode_firstpass extends bbcode
/**
* Main message parser for posting, pm, etc. takes raw message
* and parses it for attachments, bbcode and smilies
-* @package phpBB3
*/
class parse_message extends bbcode_firstpass
{
@@ -1062,6 +1071,18 @@ class parse_message extends bbcode_firstpass
var $mode;
/**
+ * The plupload object used for dealing with attachments
+ * @var \phpbb\plupload\plupload
+ */
+ protected $plupload;
+
+ /**
+ * The mimetype guesser object used for attachment mimetypes
+ * @var \phpbb\mimetype\guesser
+ */
+ protected $mimetype_guesser;
+
+ /**
* Init - give message here or manually
*/
function parse_message($message = '')
@@ -1076,7 +1097,7 @@ class parse_message extends bbcode_firstpass
*/
function parse($allow_bbcode, $allow_magic_url, $allow_smilies, $allow_img_bbcode = true, $allow_flash_bbcode = true, $allow_quote_bbcode = true, $allow_url_bbcode = true, $update_this_message = true, $mode = 'post')
{
- global $config, $db, $user;
+ global $config, $db, $user, $phpbb_dispatcher;
$this->mode = $mode;
@@ -1117,7 +1138,7 @@ class parse_message extends bbcode_firstpass
// Maximum message length check. 0 disables this check completely.
if ((int) $config['max_' . $mode . '_chars'] > 0 && $message_length > (int) $config['max_' . $mode . '_chars'])
{
- $this->warn_msg[] = sprintf($user->lang['TOO_MANY_CHARS_' . strtoupper($mode)], $message_length, (int) $config['max_' . $mode . '_chars']);
+ $this->warn_msg[] = $user->lang('CHARS_' . strtoupper($mode) . '_CONTAINS', $message_length) . '<br />' . $user->lang('TOO_MANY_CHARS_LIMIT', (int) $config['max_' . $mode . '_chars']);
return (!$update_this_message) ? $return_message : $this->warn_msg;
}
@@ -1126,11 +1147,63 @@ class parse_message extends bbcode_firstpass
{
if (!$message_length || $message_length < (int) $config['min_post_chars'])
{
- $this->warn_msg[] = (!$message_length) ? $user->lang['TOO_FEW_CHARS'] : sprintf($user->lang['TOO_FEW_CHARS_LIMIT'], $message_length, (int) $config['min_post_chars']);
+ $this->warn_msg[] = (!$message_length) ? $user->lang['TOO_FEW_CHARS'] : ($user->lang('CHARS_POST_CONTAINS', $message_length) . '<br />' . $user->lang('TOO_FEW_CHARS_LIMIT', (int) $config['min_post_chars']));
return (!$update_this_message) ? $return_message : $this->warn_msg;
}
}
+ /**
+ * This event can be used for additional message checks/cleanup before parsing
+ *
+ * @event core.message_parser_check_message
+ * @var bool allow_bbcode Do we allow BBCodes
+ * @var bool allow_magic_url Do we allow magic urls
+ * @var bool allow_smilies Do we allow smilies
+ * @var bool allow_img_bbcode Do we allow image BBCode
+ * @var bool allow_flash_bbcode Do we allow flash BBCode
+ * @var bool allow_quote_bbcode Do we allow quote BBCode
+ * @var bool allow_url_bbcode Do we allow url BBCode
+ * @var bool update_this_message Do we alter the parsed message
+ * @var string mode Posting mode
+ * @var string message The message text to parse
+ * @var string bbcode_bitfield The bbcode_bitfield before parsing
+ * @var string bbcode_uid The bbcode_uid before parsing
+ * @var bool return Do we return after the event is triggered if $warn_msg is not empty
+ * @var array warn_msg Array of the warning messages
+ * @since 3.1.2-RC1
+ * @changed 3.1.3-RC1 Added vars $bbcode_bitfield and $bbcode_uid
+ */
+ $message = $this->message;
+ $warn_msg = $this->warn_msg;
+ $return = false;
+ $bbcode_bitfield = $this->bbcode_bitfield;
+ $bbcode_uid = $this->bbcode_uid;
+ $vars = array(
+ 'allow_bbcode',
+ 'allow_magic_url',
+ 'allow_smilies',
+ 'allow_img_bbcode',
+ 'allow_flash_bbcode',
+ 'allow_quote_bbcode',
+ 'allow_url_bbcode',
+ 'update_this_message',
+ 'mode',
+ 'message',
+ 'bbcode_bitfield',
+ 'bbcode_uid',
+ 'return',
+ 'warn_msg',
+ );
+ extract($phpbb_dispatcher->trigger_event('core.message_parser_check_message', compact($vars)));
+ $this->message = $message;
+ $this->warn_msg = $warn_msg;
+ $this->bbcode_bitfield = $bbcode_bitfield;
+ $this->bbcode_uid = $bbcode_uid;
+ if ($return && !empty($this->warn_msg))
+ {
+ return (!$update_this_message) ? $return_message : $this->warn_msg;
+ }
+
// Prepare BBcode (just prepares some tags for better parsing)
if ($allow_bbcode && strpos($this->message, '[') !== false)
{
@@ -1173,6 +1246,21 @@ class parse_message extends bbcode_firstpass
}
}
+ // Check for out-of-bounds characters that are currently
+ // not supported by utf8_bin in MySQL
+ if (preg_match_all('/[\x{10000}-\x{10FFFF}]/u', $this->message, $matches))
+ {
+ $character_list = implode('<br />', $matches[0]);
+ $this->warn_msg[] = $user->lang('UNSUPPORTED_CHARACTERS_MESSAGE', $character_list);
+ return $update_this_message ? $this->warn_msg : $return_message;
+ }
+
+ // Remove quotes that are nested too deep
+ if ($config['max_quote_depth'] > 0)
+ {
+ $this->remove_nested_quotes($config['max_quote_depth']);
+ }
+
// Check for "empty" message. We do not check here for maximum length, because bbcode, smilies, etc. can add to the length.
// The maximum length check happened before any parsings.
if ($mode === 'post' && utf8_clean_string($this->message) === '')
@@ -1204,6 +1292,8 @@ class parse_message extends bbcode_firstpass
*/
function format_display($allow_bbcode, $allow_magic_url, $allow_smilies, $update_this_message = true)
{
+ global $phpbb_dispatcher;
+
// If false, then the parsed message get returned but internal message not processed.
if (!$update_this_message)
{
@@ -1211,6 +1301,29 @@ class parse_message extends bbcode_firstpass
$return_message = &$this->message;
}
+ $text = $this->message;
+ $uid = $this->bbcode_uid;
+
+ /**
+ * Event to modify the text before it is parsed
+ *
+ * @event core.modify_format_display_text_before
+ * @var string text The message text to parse
+ * @var string uid The bbcode uid
+ * @var bool allow_bbcode Do we allow bbcodes
+ * @var bool allow_magic_url Do we allow magic urls
+ * @var bool allow_smilies Do we allow smilies
+ * @var bool update_this_message Do we update the internal message
+ * with the parsed result
+ * @since 3.1.6-RC1
+ */
+ $vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message');
+ extract($phpbb_dispatcher->trigger_event('core.modify_format_display_text_before', compact($vars)));
+
+ $this->message = $text;
+ $this->bbcode_uid = $uid;
+ unset($text, $uid);
+
if ($this->message_status == 'plain')
{
// Force updating message - of course.
@@ -1232,6 +1345,28 @@ class parse_message extends bbcode_firstpass
$this->message = bbcode_nl2br($this->message);
$this->message = smiley_text($this->message, !$allow_smilies);
+ $text = $this->message;
+ $uid = $this->bbcode_uid;
+
+ /**
+ * Event to modify the text after it is parsed
+ *
+ * @event core.modify_format_display_text_after
+ * @var string text The message text to parse
+ * @var string uid The bbcode uid
+ * @var bool allow_bbcode Do we allow bbcodes
+ * @var bool allow_magic_url Do we allow magic urls
+ * @var bool allow_smilies Do we allow smilies
+ * @var bool update_this_message Do we update the internal message
+ * with the parsed result
+ * @since 3.1.0-a3
+ */
+ $vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message');
+ extract($phpbb_dispatcher->trigger_event('core.modify_format_display_text_after', compact($vars)));
+
+ $this->message = $text;
+ $this->bbcode_uid = $uid;
+
if (!$update_this_message)
{
unset($this->message);
@@ -1296,7 +1431,7 @@ class parse_message extends bbcode_firstpass
// NOTE: obtain_* function? chaching the table contents?
// For now setting the ttl to 10 minutes
- switch ($db->sql_layer)
+ switch ($db->get_sql_layer())
{
case 'mssql':
case 'mssql_odbc':
@@ -1306,12 +1441,6 @@ class parse_message extends bbcode_firstpass
ORDER BY LEN(code) DESC';
break;
- case 'firebird':
- $sql = 'SELECT *
- FROM ' . SMILIES_TABLE . '
- ORDER BY CHAR_LENGTH(code) DESC';
- break;
-
// LENGTH supported by MySQL, IBM DB2, Oracle and Access for sure...
default:
$sql = 'SELECT *
@@ -1364,13 +1493,14 @@ class parse_message extends bbcode_firstpass
*/
function parse_attachments($form_name, $mode, $forum_id, $submit, $preview, $refresh, $is_message = false)
{
- global $config, $auth, $user, $phpbb_root_path, $phpEx, $db;
+ global $config, $auth, $user, $phpbb_root_path, $phpEx, $db, $request;
$error = array();
$num_attachments = sizeof($this->attachment_data);
$this->filename_data['filecomment'] = utf8_normalize_nfc(request_var('filecomment', '', true));
- $upload_file = (isset($_FILES[$form_name]) && $_FILES[$form_name]['name'] != 'none' && trim($_FILES[$form_name]['name'])) ? true : false;
+ $upload = $request->file($form_name);
+ $upload_file = (!empty($upload) && $upload['name'] !== 'none' && trim($upload['name']));
$add_file = (isset($_POST['add_file'])) ? true : false;
$delete_file = (isset($_POST['delete_file'])) ? true : false;
@@ -1425,6 +1555,7 @@ class parse_message extends bbcode_firstpass
'is_orphan' => 1,
'real_filename' => $filedata['real_filename'],
'attach_comment'=> $this->filename_data['filecomment'],
+ 'filesize' => $filedata['filesize'],
);
$this->attachment_data = array_merge(array(0 => $new_entry), $this->attachment_data);
@@ -1445,12 +1576,17 @@ class parse_message extends bbcode_firstpass
}
else
{
- $error[] = sprintf($user->lang['TOO_MANY_ATTACHMENTS'], $cfg['max_attachments']);
+ $error[] = $user->lang('TOO_MANY_ATTACHMENTS', (int) $cfg['max_attachments']);
}
}
if ($preview || $refresh || sizeof($error))
{
+ if (isset($this->plupload) && $this->plupload->is_active())
+ {
+ $json_response = new \phpbb\json_response();
+ }
+
// Perform actions on temporary attachments
if ($delete_file)
{
@@ -1495,13 +1631,17 @@ class parse_message extends bbcode_firstpass
// Reindex Array
$this->attachment_data = array_values($this->attachment_data);
+ if (isset($this->plupload) && $this->plupload->is_active())
+ {
+ $json_response->send($this->attachment_data);
+ }
}
}
else if (($add_file || $preview) && $upload_file)
{
if ($num_attachments < $cfg['max_attachments'] || $auth->acl_gets('m_', 'a_', $forum_id))
{
- $filedata = upload_attachment($form_name, $forum_id, false, '', $is_message);
+ $filedata = upload_attachment($form_name, $forum_id, false, '', $is_message, false, $this->mimetype_guesser, $this->plupload);
$error = array_merge($error, $filedata['error']);
if (!sizeof($error))
@@ -1527,16 +1667,39 @@ class parse_message extends bbcode_firstpass
'is_orphan' => 1,
'real_filename' => $filedata['real_filename'],
'attach_comment'=> $this->filename_data['filecomment'],
+ 'filesize' => $filedata['filesize'],
);
$this->attachment_data = array_merge(array(0 => $new_entry), $this->attachment_data);
$this->message = preg_replace('#\[attachment=([0-9]+)\](.*?)\[\/attachment\]#e', "'[attachment='.(\\1 + 1).']\\2[/attachment]'", $this->message);
$this->filename_data['filecomment'] = '';
+
+ if (isset($this->plupload) && $this->plupload->is_active())
+ {
+ $download_url = append_sid("{$phpbb_root_path}download/file.{$phpEx}", 'mode=view&amp;id=' . $new_entry['attach_id']);
+
+ // Send the client the attachment data to maintain state
+ $json_response->send(array('data' => $this->attachment_data, 'download_url' => $download_url));
+ }
}
}
else
{
- $error[] = sprintf($user->lang['TOO_MANY_ATTACHMENTS'], $cfg['max_attachments']);
+ $error[] = $user->lang('TOO_MANY_ATTACHMENTS', (int) $cfg['max_attachments']);
+ }
+
+ if (!empty($error) && isset($this->plupload) && $this->plupload->is_active())
+ {
+ // If this is a plupload (and thus ajax) request, give the
+ // client the first error we have
+ $json_response->send(array(
+ 'jsonrpc' => '2.0',
+ 'id' => 'id',
+ 'error' => array(
+ 'code' => 105,
+ 'message' => current($error),
+ ),
+ ));
}
}
}
@@ -1553,9 +1716,10 @@ class parse_message extends bbcode_firstpass
function get_submitted_attachment_data($check_user_id = false)
{
global $user, $db, $phpbb_root_path, $phpEx, $config;
+ global $request;
$this->filename_data['filecomment'] = utf8_normalize_nfc(request_var('filecomment', '', true));
- $attachment_data = (isset($_POST['attachment_data'])) ? $_POST['attachment_data'] : array();
+ $attachment_data = $request->variable('attachment_data', array(0 => array('' => '')), true, \phpbb\request\request_interface::POST);
$this->attachment_data = array();
$check_user_id = ($check_user_id === false) ? $user->data['user_id'] : $check_user_id;
@@ -1583,7 +1747,7 @@ class parse_message extends bbcode_firstpass
if (sizeof($not_orphan))
{
// Get the attachment data, based on the poster id...
- $sql = 'SELECT attach_id, is_orphan, real_filename, attach_comment
+ $sql = 'SELECT attach_id, is_orphan, real_filename, attach_comment, filesize
FROM ' . ATTACHMENTS_TABLE . '
WHERE ' . $db->sql_in_set('attach_id', array_keys($not_orphan)) . '
AND poster_id = ' . $check_user_id;
@@ -1593,7 +1757,7 @@ class parse_message extends bbcode_firstpass
{
$pos = $not_orphan[$row['attach_id']];
$this->attachment_data[$pos] = $row;
- set_var($this->attachment_data[$pos]['attach_comment'], $_POST['attachment_data'][$pos]['attach_comment'], 'string', true);
+ $this->attachment_data[$pos]['attach_comment'] = $attachment_data[$pos]['attach_comment'];
unset($not_orphan[$row['attach_id']]);
}
@@ -1608,7 +1772,7 @@ class parse_message extends bbcode_firstpass
// Regenerate newly uploaded attachments
if (sizeof($orphan))
{
- $sql = 'SELECT attach_id, is_orphan, real_filename, attach_comment
+ $sql = 'SELECT attach_id, is_orphan, real_filename, attach_comment, filesize
FROM ' . ATTACHMENTS_TABLE . '
WHERE ' . $db->sql_in_set('attach_id', array_keys($orphan)) . '
AND poster_id = ' . $user->data['user_id'] . '
@@ -1619,7 +1783,7 @@ class parse_message extends bbcode_firstpass
{
$pos = $orphan[$row['attach_id']];
$this->attachment_data[$pos] = $row;
- set_var($this->attachment_data[$pos]['attach_comment'], $_POST['attachment_data'][$pos]['attach_comment'], 'string', true);
+ $this->attachment_data[$pos]['attach_comment'] = $attachment_data[$pos]['attach_comment'];
unset($orphan[$row['attach_id']]);
}
@@ -1658,7 +1822,7 @@ class parse_message extends bbcode_firstpass
$this->message = $poll['poll_title'];
$this->bbcode_bitfield = $bbcode_bitfield;
- $poll['poll_options'] = explode("\n", trim($poll['poll_option_text']));
+ $poll['poll_options'] = preg_split('/\s*?\n\s*/', trim($poll['poll_option_text']));
$poll['poll_options_size'] = sizeof($poll['poll_options']);
if (!$poll['poll_title'] && $poll['poll_options_size'])
@@ -1697,6 +1861,104 @@ class parse_message extends bbcode_firstpass
$poll['poll_max_options'] = ($poll['poll_max_options'] < 1) ? 1 : (($poll['poll_max_options'] > $config['max_poll_options']) ? $config['max_poll_options'] : $poll['poll_max_options']);
}
-}
-?> \ No newline at end of file
+ /**
+ * Remove nested quotes at given depth in current parsed message
+ *
+ * @param integer $max_depth Depth limit
+ * @return null
+ */
+ public function remove_nested_quotes($max_depth)
+ {
+ // Capture all [quote] and [/quote] tags
+ preg_match_all('(\\[/?quote(?:=&quot;(.*?)&quot;)?:' . $this->bbcode_uid . '\\])', $this->message, $matches, PREG_OFFSET_CAPTURE);
+
+ // Iterate over the quote tags to mark the ranges that must be removed
+ $depth = 0;
+ $ranges = array();
+ $start_pos = 0;
+ foreach ($matches[0] as $match)
+ {
+ if ($match[0][1] === '/')
+ {
+ --$depth;
+ if ($depth == $max_depth)
+ {
+ $end_pos = $match[1] + strlen($match[0]);
+ $length = $end_pos - $start_pos;
+ $ranges[] = array($start_pos, $length);
+ }
+ }
+ else
+ {
+ ++$depth;
+ if ($depth == $max_depth + 1)
+ {
+ $start_pos = $match[1];
+ }
+ }
+ }
+
+ foreach (array_reverse($ranges) as $range)
+ {
+ list($start_pos, $length) = $range;
+ $this->message = substr_replace($this->message, '', $start_pos, $length);
+ }
+ }
+
+ /**
+ * Setter function for passing the plupload object
+ *
+ * @param \phpbb\plupload\plupload $plupload The plupload object
+ *
+ * @return null
+ */
+ public function set_plupload(\phpbb\plupload\plupload $plupload)
+ {
+ $this->plupload = $plupload;
+ }
+
+ /**
+ * Setter function for passing the mimetype_guesser object
+ *
+ * @param \phpbb\mimetype\guesser $mimetype_guesser The mimetype_guesser object
+ *
+ * @return null
+ */
+ public function set_mimetype_guesser(\phpbb\mimetype\guesser $mimetype_guesser)
+ {
+ $this->mimetype_guesser = $mimetype_guesser;
+ }
+
+ /**
+ * Function to perform custom bbcode validation by extensions
+ * can be used in bbcode_init() to assign regexp replacement
+ * Example: 'regexp' => array('#\[b\](.*?)\[/b\]#uise' => "\$this->validate_bbcode_by_extension('\$1')")
+ *
+ * Accepts variable number of parameters
+ *
+ * @return mixed Validation result
+ */
+ public function validate_bbcode_by_extension()
+ {
+ global $phpbb_dispatcher;
+
+ $return = false;
+ $params_array = func_get_args();
+
+ /**
+ * Event to validate bbcode with the custom validating methods
+ * provided by extensions
+ *
+ * @event core.validate_bbcode_by_extension
+ * @var array params_array Array with the function parameters
+ * @var mixed return Validation result to return
+ *
+ * @since 3.1.5-RC1
+ */
+ $vars = array('params_array', 'return');
+ extract($phpbb_dispatcher->trigger_event('core.validate_bbcode_by_extension', compact($vars)));
+
+ return $return;
+ }
+}
'>fr/index.html43
-rw-r--r--fr/installUpdates.html49
-rw-r--r--fr/installer.html450
-rw-r--r--fr/media_selection.html19
-rw-r--r--fr/minimal-install.html73
-rw-r--r--fr/misc-params.html148
-rw-r--r--fr/securityLevel.html69
-rw-r--r--fr/selectCountry.html63
-rw-r--r--fr/selectInstallClass.html83
-rw-r--r--fr/selectKeyboard.html36
-rw-r--r--fr/selectLanguage.html81
-rw-r--r--fr/selectMouse.html20
-rw-r--r--fr/setupBootloader.html556
-rw-r--r--fr/setupBootloaderAddEntry.html13
-rw-r--r--fr/setupSCSI.html24
-rw-r--r--fr/soundConfig.html37
-rw-r--r--fr/takeOverHdConfirm.html28
-rw-r--r--fr/uninstall-Mageia.html97
-rw-r--r--index.html62
-rw-r--r--installUpdates.html55
-rw-r--r--installer.html463
-rw-r--r--media_selection.html31
-rw-r--r--minimal-install.html67
-rw-r--r--misc-params.html183
-rw-r--r--ru/Select-and-use-ISOs.html605
-rw-r--r--ru/acceptLicense.html50
-rw-r--r--ru/addUser.html188
-rw-r--r--ru/add_supplemental_media.html54
-rw-r--r--ru/ask_mntpoint_s.html95
-rw-r--r--ru/chooseDesktop.html63
-rw-r--r--ru/choosePackageGroups.html48
-rw-r--r--ru/choosePackagesTree.html23
-rw-r--r--ru/configureServices.html51
-rw-r--r--ru/configureTimezoneUTC.html28
-rw-r--r--ru/configureX_card_list.html59
-rw-r--r--ru/configureX_chooser.html125
-rw-r--r--ru/configureX_monitor.html123
-rw-r--r--ru/diskdrake.html149
-rw-r--r--ru/doPartitionDisks.html305
-rw-r--r--ru/exitInstall.html30
-rw-r--r--ru/formatPartitions.html31
-rw-r--r--ru/index.html78
-rw-r--r--ru/installUpdates.html49
-rw-r--r--ru/installer.html485
-rw-r--r--ru/media_selection.html31
-rw-r--r--ru/minimal-install.html72
-rw-r--r--ru/misc-params.html207
-rw-r--r--ru/securityLevel.html65
-rw-r--r--ru/selectCountry.html102
-rw-r--r--ru/selectInstallClass.html79
-rw-r--r--ru/selectKeyboard.html28
-rw-r--r--ru/selectLanguage.html65
-rw-r--r--ru/selectMouse.html18
-rw-r--r--ru/setupBootloader.html474
-rw-r--r--ru/setupBootloaderAddEntry.html129
-rw-r--r--ru/setupSCSI.html23
-rw-r--r--ru/soundConfig.html44
-rw-r--r--ru/takeOverHdConfirm.html30
-rw-r--r--ru/uninstall-Mageia.html101
-rw-r--r--securityLevel.html45
-rw-r--r--selectCountry.html52
-rw-r--r--selectInstallClass.html75
-rw-r--r--selectKeyboard.html30
-rw-r--r--selectLanguage.html82
-rw-r--r--selectMouse.html19
-rw-r--r--setupBootloader.html558
-rw-r--r--setupBootloaderAddEntry.html17
-rw-r--r--setupSCSI.html26
-rw-r--r--soundConfig.html38
-rw-r--r--takeOverHdConfirm.html34
-rw-r--r--uk/Select-and-use-ISOs.html367
-rw-r--r--uk/acceptLicense.html54
-rw-r--r--uk/addUser.html106
-rw-r--r--uk/add_supplemental_media.html28
-rw-r--r--uk/ask_mntpoint_s.html95
-rw-r--r--uk/chooseDesktop.html59
-rw-r--r--uk/choosePackageGroups.html16
-rw-r--r--uk/choosePackagesTree.html19
-rw-r--r--uk/configureServices.html49
-rw-r--r--uk/configureTimezoneUTC.html22
-rw-r--r--uk/configureX_card_list.html57
-rw-r--r--uk/configureX_chooser.html124
-rw-r--r--uk/configureX_monitor.html124
-rw-r--r--uk/diskdrake.html162
-rw-r--r--uk/doPartitionDisks.html281
-rw-r--r--uk/exitInstall.html24
-rw-r--r--uk/formatPartitions.html19
-rw-r--r--uk/index.html41
-rw-r--r--uk/installUpdates.html51
-rw-r--r--uk/installer.html448
-rw-r--r--uk/media_selection.html17
-rw-r--r--uk/minimal-install.html66
-rw-r--r--uk/misc-params.html121
-rw-r--r--uk/securityLevel.html67
-rw-r--r--uk/selectCountry.html42
-rw-r--r--uk/selectInstallClass.html75
-rw-r--r--uk/selectKeyboard.html20
-rw-r--r--uk/selectLanguage.html76
-rw-r--r--uk/selectMouse.html18
-rw-r--r--uk/setupBootloader.html568
-rw-r--r--uk/setupBootloaderAddEntry.html7
-rw-r--r--uk/setupSCSI.html24
-rw-r--r--uk/soundConfig.html39
-rw-r--r--uk/takeOverHdConfirm.html28
-rw-r--r--uk/uninstall-Mageia.html97
-rw-r--r--uninstall-Mageia.html91
210 files changed, 12451 insertions, 9907 deletions
diff --git a/Select-and-use-ISOs.html b/Select-and-use-ISOs.html
index f7bd945..f3cc755 100644
--- a/Select-and-use-ISOs.html
+++ b/Select-and-use-ISOs.html
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Select and use ISOs">
+ <div class="section" title="Select and use ISOs">
<div class="titlepage">
<div>
<div>
@@ -25,6 +25,12 @@
+
+
+
+
+
+
<div class="section" title="Introduction">
<div class="titlepage">
<div>
@@ -37,36 +43,90 @@
<p>Mageia is distributed via ISO images. This page will help you to
- choose which image match your needs.
+ choose which image best suits your needs.
</p>
- <p>There is two families of media:</p>
+ <p>There are three types of installation media:</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Classical installer: After booting the media, it will follow a
- process allowing to choose what to install and how to configure your
- target system. This give you the maximal flexibility for a customized
- installation, in particular to choose which Desktop Environment you
- will install.
+ <p><span class="bold"><strong>Classical installer:</strong></span> Booting
+ with this media provides you with the maximum flexibility when
+ choosing what to install, and for configuring your system. In
+ particular, you have a choice of which Desktop environment to
+ install.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>LIVE media:</strong></span> This option allows
+ you to try out Mageia without having to actually install it, or make
+ any changes to your computer. However, the Live media also includes an
+ Installer, which can be started when booting the media, or after
+ booting into the Live operating system itself.
</p>
+
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>The Live Installer is simpler compared to the Classical
+ Installer - but you have fewer configuration options.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Live ISOs can only be used to create <span class="quote">&#8220;<span class="quote">clean</span>&#8221;</span>
+ installations, they cannot be used to upgrade previously installed
+ Mageia releases.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p>LIVE media: you can boot the media in a real Mageia system
- without installing it, to see what you will get after installation.
- The installation process is simpler, but you get lesser
- choices.
+ <p><span class="bold"><strong>Net Install</strong></span>: These are minimal
+ ISO's containing no more than that which is needed to start the DrakX
+ installer and find <code class="literal">DrakX-installer-stage2</code> and other
+ packages that are needed to continue and complete the install. These
+ packages may be on the PC hard disk, on a local drive, on a local
+ network or on the Internet.
+ </p>
+
+ <p>These media are very light (less than 100 MB) and are convenient
+ if bandwidth is too low to download a full DVD, or if you have a PC
+ without a DVD drive or is unable to boot from a USB stick.
</p>
</li>
</ul>
</div>
- <p>Details are given in the next sections.</p>
+ <p>More details are given in the next sections.</p>
</div>
@@ -74,7 +134,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e29"></a>Media
+ <h3 class="title"><a name="d5e41"></a>Media
</h3>
</div>
</div>
@@ -85,7 +145,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e31"></a>Definition
+ <h4 class="title"><a name="d5e43"></a>Definition
</h4>
</div>
</div>
@@ -93,11 +153,11 @@
<p>Here, a medium (plural: media) is an ISO image file that allows
- you to install and/or update Mageia and by extension any physical
- support the ISO file is copied to.
+ you to install and/or update Mageia and, by extension, any physical
+ medium (DVD, USB stick, ...) the ISO file is copied to.
</p>
- <p>You can find them <a class="ulink" href="http://www.mageia.org/en/downloads/" target="_top">here</a>.
+ <p>You can find Mageia ISO's <a class="ulink" href="http://www.mageia.org/en/downloads/" target="_top">here</a>.
</p>
</div>
@@ -106,7 +166,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e36"></a>Classical installation media
+ <h4 class="title"><a name="d5e48"></a>Classical installation media
</h4>
</div>
</div>
@@ -117,7 +177,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e38"></a>Common features
+ <h5 class="title"><a name="d5e50"></a>Common features
</h5>
</div>
</div>
@@ -128,41 +188,40 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>These ISOs use the traditional installer called
- drakx.
- </p>
+ <p>These ISOs use the Classical installer called DrakX</p>
</li>
<li class="listitem">
- <p>They are able to make a clean install or an update from
- previous releases.
+ <p>They are used for performing clean installs or to upgrade a
+ previously installed version of Mageia
</p>
</li>
<li class="listitem">
- <p>Different media for 32 or 64 bit architectures.</p>
+ <p>Different media for 32 and 64-bit architectures</p>
</li>
<li class="listitem">
- <p>Some tools are available in the Welcome screen: Rescue
- System, Memory Test, Hardware Detection Tool.
- </p>
+ <p>Some tools are available in the Installer
+ <span class="quote">&#8220;<span class="quote">Welcome</span>&#8221;</span> screen: <span class="emphasis"><em>Rescue System, Memory
+ Test, </em></span>and <span class="emphasis"><em>Hardware Detection
+ Tool</em></span></p>
</li>
<li class="listitem">
<p>Each DVD contains many available desktop environments and
- languages.
+ languages
</p>
</li>
<li class="listitem">
<p>You'll be given the choice during the installation to add
- non free software.
+ non-free software
</p>
</li>
@@ -177,7 +236,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e53"></a>Live media
+ <h4 class="title"><a name="d5e68"></a>Live media
</h4>
</div>
</div>
@@ -188,7 +247,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e55"></a>Common features
+ <h5 class="title"><a name="d5e70"></a>Common features
</h5>
</div>
</div>
@@ -199,33 +258,31 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Can be used to preview the distribution without installing
- it on a HDD, and optionally install Mageia on to your HDD.
+ <p>Can be used to preview the Mageia operating system without
+ having to install it
</p>
</li>
<li class="listitem">
- <p>Each ISO contains only one desktop environment (Plasma,
- GNOME or Xfce).
- </p>
+ <p>The Live media also includes an Installer.</p>
</li>
<li class="listitem">
- <p>Different media for 32 or 64 bit architectures.</p>
+ <p>Each ISO contains only one desktop environment (Plasma,
+ GNOME or Xfce)
+ </p>
</li>
<li class="listitem">
- <p><span class="bold"><strong>Live ISOs can only be used to create
- clean installations, they cannot be used to upgrade from previous
- releases.</strong></span></p>
+ <p>Different media for 32 and 64-bit architectures</p>
</li>
<li class="listitem">
- <p>They contain non free software.</p>
+ <p>They contain non-free software</p>
</li>
</ul>
@@ -237,7 +294,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e69"></a>Live DVD Plasma
+ <h5 class="title"><a name="d5e83"></a>Live DVD Plasma
</h5>
</div>
</div>
@@ -248,17 +305,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Plasma desktop environment only.</p>
+ <p>Plasma desktop environment only</p>
</li>
<li class="listitem">
- <p>All languages are present.</p>
+ <p>All available languages are present</p>
</li>
<li class="listitem">
- <p>64 bit architecture only.</p>
+ <p>64-bit architecture only</p>
</li>
</ul>
@@ -270,7 +327,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e78"></a>Live DVD GNOME
+ <h5 class="title"><a name="d5e92"></a>Live DVD GNOME
</h5>
</div>
</div>
@@ -281,17 +338,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>GNOME desktop environment only.</p>
+ <p>GNOME desktop environment only</p>
</li>
<li class="listitem">
- <p>All languages are present.</p>
+ <p>All available languages are present</p>
</li>
<li class="listitem">
- <p>64 bit architecture only</p>
+ <p>64-bit architecture only</p>
</li>
</ul>
@@ -303,7 +360,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e87"></a>Live DVD Xfce
+ <h5 class="title"><a name="d5e101"></a>Live DVD Xfce
</h5>
</div>
</div>
@@ -314,17 +371,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Xfce desktop environment only.</p>
+ <p>Xfce desktop environment only</p>
</li>
<li class="listitem">
- <p>All languages are present.</p>
+ <p>All available languages are present</p>
</li>
<li class="listitem">
- <p>32 or 64 bit architectures.</p>
+ <p>32 or 64-bit architectures</p>
</li>
</ul>
@@ -334,11 +391,11 @@
</div>
- <div class="section" title="Boot-only CD media">
+ <div class="section" title="Net install media">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e96"></a>Boot-only CD media
+ <h4 class="title"><a name="d5e110"></a>Net install media
</h4>
</div>
</div>
@@ -349,7 +406,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e98"></a>Common features
+ <h5 class="title"><a name="d5e112"></a>Common features
</h5>
</div>
</div>
@@ -360,32 +417,12 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Each one is a small image that contains no more than that
- which is needed to start the drakx installer and find
- drakx-installer-stage2 and other packages that are needed to
- continue and complete the install. These packages may be on the PC
- hard disk, on a local drive, on a local network or on the
- Internet.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>These media are very light (less than 100 MB) and are
- convenient when bandwidth is too low to download a full DVD, a PC
- without a DVD drive or a PC that can't boot from a USB
- stick.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>Different media for 32 or 64 bit architectures.</p>
+ <p>Different media for 32 and 64-bit architectures</p>
</li>
<li class="listitem">
- <p>English language only.</p>
+ <p>First steps are English language only</p>
</li>
</ul>
@@ -397,7 +434,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e109"></a>netinstall.iso
+ <h5 class="title"><a name="d5e119"></a>netinstall.iso
</h5>
</div>
</div>
@@ -408,7 +445,9 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Contains only free software, for those people who prefer not to use non-free software.</p>
+ <p>Contains only free software, for those who prefer to not use
+ non-free software
+ </p>
</li>
</ul>
@@ -420,7 +459,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e114"></a>netinstall-nonfree.iso
+ <h5 class="title"><a name="d5e124"></a>netinstall-nonfree.iso
</h5>
</div>
</div>
@@ -432,7 +471,7 @@
<li class="listitem">
<p>Contains non-free software (mostly drivers, codecs...) for
- people who need it.
+ those who need it
</p>
</li>
@@ -449,7 +488,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e119"></a>Downloading and Checking Media
+ <h3 class="title"><a name="d5e129"></a>Downloading and Checking Media
</h3>
</div>
</div>
@@ -460,26 +499,40 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e121"></a>Downloading
+ <h4 class="title"><a name="d5e131"></a>Downloading
</h4>
</div>
</div>
</div>
- <p>Once you have chosen your ISO file, you can download it using either http or BitTorrent. In both cases, a window gives you
- some information, such as the mirror in use and an opportunity to change if the bandwidth is to low. If http is chosen, you
- may also see something like
+ <p>Once you have chosen your ISO file, you can download it using
+ either http or BitTorrent. In both cases, you are provided with some
+ information, such as the mirror in use and an option to switch to an
+ alternative if the bandwidth is too low.
+ </p>
+
+ <p>If http is chosen you will also see some information regarding
+ checksums.
+ </p>
+
+
+ <p><code class="literal">md5sum</code>, <code class="literal">sha1sum</code> and
+ <code class="literal">sha512sum</code> (the most secure) are tools to check the
+ ISO integrity. Copy one of the checksums (string of alphanumeric
+ characters) for use in the next section.
</p>
+
- <p>md5sum and sha1sum are tools to check the ISO integrity. Use only
- one of them. Keep one of them <a class="link" href="Select-and-use-ISOs.html#integrity">for further
- usage</a>. Then a window similar to this one appears:
+ <p>In the meantime, a window to download the actual ISO will
+ open:
</p>
- <p>Check the radio button Save File.</p>
+ <p>Click on <span class="emphasis"><em>Save File</em></span>, then click
+ <span class="emphasis"><em>OK</em></span>.
+ </p>
</div>
@@ -487,37 +540,56 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e133"></a>Checking the integrity of the downloaded media
+ <h4 class="title"><a name="d5e149"></a>Checking the integrity of the downloaded
+ media
</h4>
</div>
</div>
</div>
- <p>Both checksums are hexadecimal numbers calculated by an algorithm
- from the file to be downloaded. When you ask these algorithms to
- recalculate this number from your downloaded file, either you have the
- same number and your downloaded file is correct, or the number is
- different and you have a failure. A failure infers that you should retry
- the download or attempt a repair using BitTorrent.
+ <p>The checksums referred to earlier, are digital fingerprints
+ generated by an algorithm from the file to be downloaded. You may
+ compare the checksum of your downloaded ISO against that of the original
+ source ISO. If the checksums do not match, it means that the actual data
+ on the ISO's do not match, and if that is the case, then you should
+ retry the download or attempt a repair using BitTorrent.
</p>
- <p>Open a console, no need to be root, and:</p>
-
- <p>- To use md5sum, type: [sam@localhost]$ <strong class="userinput"><code>md5sum
- path/to/the/image/file.iso</code></strong>.
+ <p>To generate the checksum for your downloaded ISO, open a console,
+ (no need to be root), and:
</p>
- <p>- To use sha1sum, type: [sam@localhost]$ <strong class="userinput"><code>sha1sum
- path/to/the/image/file.iso</code></strong>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>To use the md5sum, type: <span class="command"><strong>md5sum
+ path/to/the/image/file.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>To use the sha1sum, type: <span class="command"><strong>sha1sum
+ path/to/the/image/file.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>To use the sha512sum, type: <span class="command"><strong>sha512sum
+ path/to/the/image/file.iso</strong></span></p>
+
+ </li>
+ </ul>
+ </div>
- <p>and compare the obtained number on your computer (you may have to
- wait for a while) with the number given by Mageia. Example:
- </p>
+ <p>Example:</p>
+
- <p></p>
+ <p>then compare the result (you may have to wait for a while) with
+ the ISO checksum provided by Mageia.
+ </p>
</div>
@@ -527,33 +599,33 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e146"></a>Burn or dump the ISO
+ <h3 class="title"><a name="d5e168"></a>Burn or dump the ISO
</h3>
</div>
</div>
</div>
- <p>The checked ISO can now be burned to a CD or DVD or dumped to a USB
- stick. These operations are not a simple copy and aim to make a bootable
- medium.
+ <p>The verified ISO can now be burned to a CD/DVD or
+ <span class="quote">&#8220;<span class="quote">dumped</span>&#8221;</span> to a USB stick. This is not a standard copy
+ operation, as a bootable medium will actually be created.
</p>
<div class="section" title="Burning the ISO to a CD/DVD">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e149"></a>Burning the ISO to a CD/DVD
+ <h4 class="title"><a name="d5e172"></a>Burning the ISO to a CD/DVD
</h4>
</div>
</div>
</div>
- <p>Use whatever burner you wish but ensure the burning device is set
- correctly to <span class="bold"><strong>burn an image</strong></span>, burn data
- or files is not correct. There is more information in <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">the
- Mageia wiki</a>.
+ <p>Whichever software you use, ensure that the option to burn
+ an<span class="emphasis"><em> image</em></span> is used. Burn <span class="emphasis"><em>data</em></span> or
+ <span class="emphasis"><em>files</em></span> is NOT correct. See the <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">the
+ Mageia wiki</a> for more information.
</p>
</div>
@@ -562,15 +634,15 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e154"></a>Dump the ISO to a USB stick
+ <h4 class="title"><a name="d5e179"></a>Dump the ISO to a USB stick
</h4>
</div>
</div>
</div>
- <p>All Mageia ISOs are hybrids, which means you can 'dump' them to a
- USB stick and then use it to boot and install the system.
+ <p>All Mageia ISOs are hybrids, which means you can dump them to a
+ USB stick and then use that to boot and install the system.
</p>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -582,9 +654,8 @@
<tr>
<td align="left" valign="top">
- <p>"Dumping" an image onto a flash device destroys any previous
- file-system on the device; any other data will be lost and the
- partition capacity will be reduced to the image size.
+ <p>Dumping an image onto a flash device destroys any previous
+ file-system on the device and all existing data will be lost.
</p>
</td>
@@ -592,15 +663,36 @@
</table>
</div>
- <p>To recover the original capacity, you must redo partitioning and
- re-format the USB stick.
- </p>
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Also, the only partition on the flash device will then just be
+ the Mageia ISO partition.
+ </p>
+
+ <p>So, if an ISO of about 4GB is written to an 8GB USB stick, the
+ stick will then only show up as 4GB. This is because the remaining 4GB
+ is no longer formatted - hence not currently available for use. To
+ recover the original capacity, you must reformat and repartition the
+ USB stick.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<div class="section" title="Using a graphical tool within Mageia">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e160"></a>Using a graphical tool within Mageia
+ <h5 class="title"><a name="d5e187"></a>Using a graphical tool within Mageia
</h5>
</div>
</div>
@@ -615,7 +707,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e164"></a>Using a graphical tool within Windows
+ <h5 class="title"><a name="d5e191"></a>Using a graphical tool within Windows
</h5>
</div>
</div>
@@ -624,20 +716,31 @@
<p>You could try:</p>
- <p>- <a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> using the
- "ISO image" option;
- </p>
-
- <p>- <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32 Disk
- Imager</a></p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> using
+ the "ISO image" option
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
+ Disk Imager</a></p>
+
+ </li>
+ </ul>
+ </div>
</div>
- <div class="section" title="Using Command line within a GNU/Linux system">
+ <div class="section" title="Using the Command line within a GNU/Linux system">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e171"></a>Using Command line within a GNU/Linux system
+ <h5 class="title"><a name="d5e201"></a>Using the Command line within a GNU/Linux system
</h5>
</div>
</div>
@@ -653,8 +756,9 @@
<tr>
<td align="left" valign="top">
- <p>It is potentially *dangerous* to do this by hand. You risk to
- overwrite a disc partition if you get the device-ID wrong.
+ <p>It is potentially *dangerous* to do this by hand. You risk
+ overwriting potentially valuable existing data if you specify the
+ wrong target device.
</p>
</td>
@@ -662,8 +766,6 @@
</table>
</div>
- <p>You can also use the dd tool in a console:</p>
-
<div class="orderedlist">
<ol class="orderedlist" type="1">
<li class="listitem">
@@ -673,29 +775,40 @@
</li>
<li class="listitem">
- <p>Become root with the command <strong class="userinput"><code>su -</code></strong>
- (don't forget the final '-' )
+ <p>Become a <span class="emphasis"><em>root</em></span> (Administrator) user with
+ the command <span class="command"><strong>su -</strong></span> (don't forget the
+ <span class="command"><strong>-</strong></span> )
</p>
</li>
<li class="listitem">
- <p>Plug in your USB stick (do not mount it, this also means do
- not open any application or file manager that could access or read
- it)
+ <p>Plug in your USB stick - but do not mount it (this also
+ means do not open any application or file manager that could
+ access or read it)
</p>
</li>
<li class="listitem">
- <p>Enter the command <strong class="userinput"><code>fdisk -l</code></strong></p>
+ <p>Enter the command <span class="command"><strong>fdisk -l</strong></span></p>
+
+
+ </li>
+ <li class="listitem">
+ <p>Find the device name for your USB stick (by its size), for
+ example <code class="filename">/dev/sdb</code> in the screenshot above, is
+ an 8GB USB stick.
+ </p>
- <p>Alternatively, you can get the device name with the command
- <code class="code">dmesg</code>: at end, you see the device name starting with
- <span class="emphasis"><em>sd</em></span>, and <span class="emphasis"><em>sdd</em></span> in this
- case:
+ <p>Alternatively, you can find the device name with the command
+ <span class="command"><strong>dmesg</strong></span>. Towards the end of the following
+ example, you can see the device name starting with
+ <code class="filename">sd</code>, and in this case,
+ <code class="filename">sdd</code> is the actual device. You can also see
+ that its size is 2GB:
</p>
<pre class="screen">[72594.604531] usb 1-1: new high-speed USB device number 27 using xhci_hcd
[72594.770528] usb 1-1: New USB device found, idVendor=8564, idProduct=1000
@@ -718,30 +831,44 @@
</li>
<li class="listitem">
- <p>Find the device name for your USB stick (by its size), for
- example <code class="code">/dev/sdb</code> in the screenshot above, it is a 8GB
- USB stick.
- </p>
-
- </li>
- <li class="listitem">
+ <p>Enter the command: <span class="command"><strong>dd if=path/to/the/ISO/file
+ of=/dev/sd<em class="replaceable"><code>X</code></em> bs=1M</strong></span></p>
- <p>Enter the command: # <strong class="userinput"><code>dd if=path/to/the/ISO/file
- of=/dev/sdX bs=1M</code></strong></p>
+ <p>Where <em class="replaceable"><code>X</code></em>=your device name eg:
+ <code class="filename">/dev/sdd</code></p>
- <p>Where X=your device name eg: /dev/sdc</p>
+ <p>Example:<code class="literal"> dd
+ if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso of=/dev/sdd
+ bs=1M</code></p>
- <p>Example: # <strong class="userinput"><code>dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso of=/dev/sdb bs=1M</code></strong></p>
+ <div class="tip" title="Tip" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tip]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>It might be helpful to know that <span class="bold"><strong>if</strong></span> stands for <span class="bold"><strong>i</strong></span>nput <span class="bold"><strong>f</strong></span>ile and <span class="bold"><strong>of</strong></span> stands for <span class="bold"><strong>o</strong></span>utput <span class="bold"><strong>f</strong></span>ile
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p>Enter the command: # <strong class="userinput"><code>sync</code></strong></p>
+ <p>Enter the command: <span class="command"><strong>sync</strong></span></p>
</li>
<li class="listitem">
- <p>Unplug your USB stick, it is done</p>
+ <p>This is the end of the process, and you may now unplug your
+ USB stick.
+ </p>
</li>
</ol>
diff --git a/acceptLicense.html b/acceptLicense.html
index 6a8b95f..e972cc6 100644
--- a/acceptLicense.html
+++ b/acceptLicense.html
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="License and Release Notes">
+ <div class="section" title="License and Release Notes">
<div class="titlepage">
<div>
<div>
@@ -22,6 +22,12 @@
</div>
</div>
</div>
+
+
+
+
+
+
@@ -57,25 +63,35 @@
- <p>Before installing <span class="application">Mageia</span>, please read the
- license terms and conditions carefully.
- </p>
-
-
- <p>These terms and conditions apply to the entire
- <span class="application">Mageia</span> distribution and must be accepted before
- you can continue.
- </p>
-
-
- <p>To accept, simply select <span class="guilabel">Accept</span> and then click
- on <span class="guibutton">Next</span>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Before installing Mageia, please read the license terms and
+ conditions carefully.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>These terms and conditions apply to the entire Mageia
+ distribution and must be accepted before you can continue.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>To proceed, simply select <span class="emphasis"><em>Accept</em></span> and then
+ click on <span class="emphasis"><em>Next</em></span></p>
+
+ </li>
+ </ul>
+ </div>
<p>If you decide not to accept these conditions, then we thank you for
- looking. Clicking <span class="guibutton">Quit</span> will reboot your
- computer.
+ your interest in Mageia. Clicking <span class="emphasis"><em>Quit</em></span> will reboot
+ your computer.
</p>
@@ -97,9 +113,9 @@
- <p>Important information are given about this release of
- <span class="application">Mageia</span> and are accessible clicking on the
- <span class="guibutton">Release Notes</span> button.
+ <p>Important information about this particular Mageia release can be
+ viewed by clicking on the <span class="emphasis"><em>Release Notes</em></span>
+ button.
</p>
</div>
diff --git a/addUser.html b/addUser.html
index 077cf0d..f69874d 100644
--- a/addUser.html
+++ b/addUser.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>User and Superuser Management</title>
+ <title>User Management</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="User and Superuser Management">
+ <div class="section" title="User Management">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="addUser"></a>User and Superuser Management
+ <h2 class="title"><a name="addUser"></a>User Management
</h2>
</div>
</div>
@@ -26,6 +26,10 @@
+
+
+
+
<div class="section" title="Set Administrator (root) Password:">
<div class="titlepage">
<div>
@@ -38,14 +42,13 @@
</div>
- <p>It is advisable for all <span class="application">Mageia</span>
- installations to set a superuser or administrator's password, usually
- called the <span class="emphasis"><em>root password</em></span> 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.
+ <p>It is advisable for all Mageia installations to set a
+ <code class="literal">superuser</code> (Administrator) password, usually called the
+ <span class="emphasis"><em>root </em></span>password in Linux. As you type a password into
+ the top box a 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 underneath, to
+ check that the first entry was not mistyped.
</p>
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -57,7 +60,7 @@
<tr>
<td align="left" valign="top">
- <p>All passwords are case sensitive, it is best to use a mixture of
+ <p>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.
</p>
@@ -80,43 +83,51 @@
</div>
- <p>Add a user here. A user has fewer rights than the superuser (root), but enough to use the internet, office applications or
- play games and anything else the average user does with his computer
+ <p>Add a User here. A regular user has fewer privileges than the
+ <code class="literal">superuser</code> (root), but enough to use the Internet,
+ office applications or play games and anything else the average user might
+ use a computer for.
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guibutton">Icon</span>: if you click on this button it will change the user's icon.
+ <p><span class="bold"><strong>Icon</strong></span></p>
+
+ <p>Click on this button if you want to change the user's
+ icon
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Real Name</span>: Insert the user's real name into this text box.
- </p>
+ <p><span class="bold"><strong>Real Name</strong></span></p>
+
+ <p>Insert the user's real name into this text box</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Login Name</span>: Here you enter the user login name or let drakx use a version of the user's real name. <span class="emphasis"><em>The
- login name is case sensitive.</em></span></p>
+ <p><span class="bold"><strong>Login Name</strong></span></p>
+
+ <p>Enter the user login name or let DrakX use a version of the
+ user's real name. <span class="bold"><strong>The login name is
+ case-sensitive.</strong></span></p>
+
</li>
<li class="listitem">
- <p><span class="guilabel">Password</span>: 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 <a class="xref" href="addUser.html#givePassword" title="Note">Note</a>)
+ <p><span class="bold"><strong>Password</strong></span></p>
+
+ <p>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 <a class="xref" href="addUser.html#givePassword" title="Note">Note</a>)
</p>
-
- </li>
- <li class="listitem">
- <p><span class="guilabel">Password (again)</span>: 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.
+ <p><span class="bold"><strong>Password (again):</strong></span> Retype the
+ user password. DrakX will check that you have not mistyped the
+ password.
</p>
</li>
@@ -132,11 +143,11 @@
<tr>
<td align="left" valign="top">
- <p>Any user you add while installing Mageia, will have a both read
- and write protected home directory (umask=0027).
+ <p>Any users added while installing Mageia, will have a home
+ directory that is both read and write protected (umask=0027)
</p>
- <p>You can add all extra needed users in the <span class="emphasis"><em>Configuration
+ <p>You can add any extra needed users in the <span class="emphasis"><em>Configuration
- Summary</em></span> step during the install. Choose <span class="emphasis"><em>User
management</em></span>.
</p>
@@ -152,77 +163,43 @@
</div>
- <div class="section" title="Advanced User Management">
+ <div class="section" title="User Management (advanced)">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="addUserAdvanced"></a>Advanced User Management
+ <h3 class="title"><a name="addUserAdvanced"></a>User Management (advanced)
</h3>
</div>
</div>
</div>
- <p>If the <span class="guibutton">advanced</span> button is clicked you are
- offered a screen that allows you to edit the settings for the user you are
- adding.
+ <p>The <span class="emphasis"><em>Advanced</em></span> option allows you to edit further
+ settings for the user you are adding.
</p>
- <p>Additionally, you can disable or enable a
- guest account.
- </p>
-
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Anything a guest with a default <span class="emphasis"><em>rbash</em></span> 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.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">Enable guest account</span>: 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.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Shell</span>: 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
- </p>
+ <p><span class="emphasis"><em>Shell</em></span>: This drop-down list allows you to
+ change the shell available to any user you added in the previous
+ screen. Options are <code class="literal">Bash</code>, <code class="literal">Dash</code>
+ and <code class="literal">Sh</code></p>
</li>
<li class="listitem">
- <p><span class="guilabel">User ID</span>: 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.
+ <p><span class="emphasis"><em>User ID</em></span>: Here you can set the user ID for
+ any user you added in the previous screen. If you are unsure what the
+ purpose of this is, then leave it blank.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Group ID</span>: 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.
+ <p><span class="emphasis"><em>Group ID</em></span>: This lets you set the group ID.
+ Again, if unsure, leave it blank.
</p>
</li>
diff --git a/add_supplemental_media.html b/add_supplemental_media.html
index 862e491..ed4aa8e 100644
--- a/add_supplemental_media.html
+++ b/add_supplemental_media.html
@@ -2,22 +2,23 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Media Selection (Configure Supplemental Installation Media)</title>
+ <title>Supplemental Installation Media</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
<link rel="prev" href="formatPartitions.html" title="Formatting">
- <link rel="next" href="media_selection.html" title="Media Selection (Nonfree)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="media_selection.html" title="Available Media"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="en" class="section" title="Media Selection (Configure Supplemental Installation Media)">
+ <div class="section" title="Supplemental Installation Media">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="add_supplemental_media"></a>Media Selection (Configure Supplemental Installation Media)
+ <h2 class="title"><a name="add_supplemental_media"></a>Supplemental Installation
+ Media
</h2>
</div>
</div>
@@ -25,16 +26,22 @@
+
+
+
+
+
+
- <p>This screen gives you the list of already recognized repositories. You
- can add other sources for packages, like an optical disc or a remote
- source. The source selection determines which packages will be available for
- selection during the next steps.
+ <p>This screen shows you the list of already recognised repositories. You
+ can add other sources for packages, like an optical-disc or a remote source.
+ The source selection determines which packages will be available during the
+ subsequent steps.
</p>
@@ -45,23 +52,24 @@
<ol class="orderedlist" type="1">
<li class="listitem">
- <p>Choosing and activation of the network, if not already up. </p>
+ <p>Choosing and activating the network, if not already up.</p>
</li>
<li class="listitem">
<p>Selecting a mirror or specifying a URL (very first entry). By
selecting a mirror, you have access to the selection of all repositories
- managed by Mageia, like the Nonfree , the Tainted repositories and the
- Updates. With the URL, you can designate a specific repository or your
- own NFS installation.
+ managed by Mageia, like the <span class="emphasis"><em>Nonfree</em></span>, the
+ <span class="emphasis"><em>Tainted</em></span> repositories and the
+ <span class="emphasis"><em>Updates</em></span>. With the URL, you can designate a specific
+ repository or your own NFS installation.
</p>
</li>
</ol>
</div>
-
+
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
@@ -70,21 +78,20 @@
</tr>
<tr>
<td align="left" valign="top">
-
- <p>If you are updating a 64 bit installation which may contain some 32
- bit packages, it is advised to use this screen to add an online mirror by
- ticking one of the Network protocols here. The 64 bit DVD iso only
- contains 64 bit and noarch packages, it will not be able to update the 32
- bit packages. However, after adding an online mirror, installer will find
- the needed 32 bit packages there.
+
+ <p>If you are updating a 64-bit installation which may contain some
+ 32-bit packages, it is advised to use this screen to add an online mirror
+ by selecting one of the Network protocols here. The 64-bit DVD ISO only
+ contains 64-bit and <span class="emphasis"><em>noarch</em></span> packages, it will not be
+ able to update the 32-bit packages. However, after adding an online
+ mirror, the installer will find the needed 32-bit packages there.
</p>
-
+
</td>
</tr>
</table>
</div>
-
</div>
</body>
</html>
diff --git a/ask_mntpoint_s.html b/ask_mntpoint_s.html
index c8f6fb2..39fd79a 100644
--- a/ask_mntpoint_s.html
+++ b/ask_mntpoint_s.html
@@ -6,14 +6,14 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="doPartitionDisks.html" title="Partitioning">
+ <link rel="prev" href="doPartitionDisks.html" title="Suggested Partitioning">
<link rel="next" href="takeOverHdConfirm.html" title="Confirm hard disk to be formatted"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Choose the mount points">
+ <div class="section" title="Choose the mount points">
<div class="titlepage">
<div>
<div>
@@ -23,78 +23,66 @@
</div>
</div>
-
+
+
+
+
+
+
+
+
+
+
+
+
<p>Here you see the Linux partitions that have been found on your
- computer. If you don't agree with the <span class="application">DrakX</span>
- suggestions, you can change the mount points.
+ computer. If you don't agree with the DrakX suggestions, you can change the
+ mount points yourself.
</p>
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>If you change anything, make sure you still have a
- <code class="literal">/</code> (root) partition.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Every partition is shown as follows: "Device" ("Capacity", "Mount
- point", "Type").
- </p>
-
- </li>
- <li class="listitem">
-
- <p>"Device", is made up of: "hard drive", ["hard drive
- number"(letter)], "partition number" (for example, "sda5").
+ <p>To the left of the drop-down menus is a list of available
+ partitions. For example: <code class="filename">sda</code> is a hard drive - and
+ <code class="filename">5</code> is a <span class="emphasis"><em>partition number</em></span>,
+ followed by the<span class="emphasis"><em> (capacity, mount point, filesystem
+ type)</em></span> of the partition.
</p>
</li>
<li class="listitem">
- <p>If you have many partitions, you can choose many different mount
- points from the drop down menu, such as <code class="literal">/</code>,
- <code class="literal">/home</code> and <code class="literal">/var</code>. You can even make
- your own mount points, for instance <code class="literal">/video</code> for a
- partition where you want to store your films, or
- <code class="literal">/cauldron-home</code> for the <code class="literal">/home</code>
- partition of a cauldron install.
+ <p>If you have several partitions, you can choose various different
+ <span class="emphasis"><em>mount points</em></span> from the drop down menu, such as
+ <code class="filename">/</code>, <code class="filename">/home</code> and
+ <code class="filename">/var</code>. You can even make your own mount points, for
+ instance <code class="filename">/video</code> for a partition where you want to
+ store your films, or perhaps <code class="filename">/Data</code> for all your
+ data files.
</p>
</li>
<li class="listitem">
- <p>For partitions you don't need to have access to, you can leave the
- mount point field blank.
+ <p>For any partitions that you don't need to make use of, you can
+ leave the mount point field blank.
</p>
</li>
@@ -111,10 +99,29 @@
<tr>
<td align="left" valign="top">
- <p>Choose <span class="guibutton">Previous</span> if you are not sure what to
- choose, and then tick <span class="guilabel">Custom disk partitioning</span>. In
- the screen that follows, you can click on a partition to see its type
- and size.
+ <p>If you make any changes here, ensure you still have a
+ <code class="filename">/</code> (root) partition.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="tip" title="Tip" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tip]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>If you are not sure what to choose, click
+ <span class="emphasis"><em>Previous</em></span> to go back and then tick <span class="emphasis"><em>Custom
+ disk partitioning</em></span>, where you can click on a partition to see
+ its type and size.
</p>
</td>
@@ -124,8 +131,8 @@
<p>If you are sure the mount points are correct, click on
- <span class="guibutton">Next</span>, and choose whether you only want to format the
- partition(s) DrakX suggests, or more.
+ <span class="emphasis"><em>Next</em></span>, and choose whether you only want to format the
+ partition suggested by DrakX, or more.
</p>
</div>
diff --git a/chooseDesktop.html b/chooseDesktop.html
index 0263673..9dd38b9 100644
--- a/chooseDesktop.html
+++ b/chooseDesktop.html
@@ -6,14 +6,14 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="media_selection.html" title="Media Selection (Nonfree)">
+ <link rel="prev" href="media_selection.html" title="Available Media">
<link rel="next" href="choosePackageGroups.html" title="Package Group Selection"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Desktop Selection">
+ <div class="section" title="Desktop Selection">
<div class="titlepage">
<div>
<div>
@@ -27,27 +27,49 @@
- <p>Depending on your selection here, you may be offered further screens
- to fine tune your choice.
+
+
+
+
+
+
+
+
+ <p>Some choices made here will open other screens with related
+ options.
</p>
- <p>After the selection step(s), you will see a slide show during package
- installation. The slide show can be disabled by pressing the
- <span class="guilabel">Details</span> button
+ <p>After the selection step(s), you will see a slideshow during the
+ installation of required packages. The slideshow can be disabled by pressing
+ the <span class="emphasis"><em>Details</em></span> button.
</p>
- <p>Choose whether you prefer to use the <span class="application">KDE</span> or
- <span class="application">Gnome</span> desktop environment. Both come with a full
- set of useful applications and tools. Tick <span class="guilabel">Custom</span> if
- you want to use neither or both, or if you want something other than the
- default software choices for these desktop environments. The
- <span class="application">LXDE</span> desktop is lighter than the previous two,
- sporting less eye candy and fewer packages installed by default.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Choose whether you prefer to use the KDE Plasma or GNOME desktop
+ environment. Both come with a full set of useful applications and
+ tools.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Select <span class="emphasis"><em>Custom</em></span> if you do not wish to use
+ either (or, actually use both) of these, or if you want to modify the
+ default software choices for these desktop environments. The LXDE
+ desktop, for instance, is lighter than the previous two, sporting less
+ eye candy and having fewer packages installed by default.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/choosePackageGroups.html b/choosePackageGroups.html
index ebb1135..548d5e3 100644
--- a/choosePackageGroups.html
+++ b/choosePackageGroups.html
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Package Group Selection">
+ <div class="section" title="Package Group Selection">
<div class="titlepage">
<div>
<div>
@@ -29,10 +29,12 @@
- <p>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.
+
+
+ <p>Packages are arranged into common 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.
</p>
@@ -40,23 +42,23 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Workstation.</p>
+ <p><span class="bold"><strong>Workstation</strong></span></p>
</li>
<li class="listitem">
- <p>Server.</p>
+ <p><span class="bold"><strong>Server</strong></span></p>
</li>
<li class="listitem">
- <p>Graphical Environment.</p>
+ <p><span class="bold"><strong>Graphical Environment</strong></span></p>
</li>
<li class="listitem">
- <p>Individual Package Selection: You can use this option to manually
- add or remove packages.
+ <p><span class="bold"><strong>Individual Package Selection</strong></span>: you
+ can use this option to manually add or remove packages
</p>
</li>
@@ -64,7 +66,7 @@
</div>
- <p>Read <a class="xref" href="minimal-install.html" title="Minimal Install">the section called &#8220;Minimal Install&#8221;</a> for instructions on how to do a
+ <p>See <a class="xref" href="minimal-install.html" title="Minimal Install">Minimal Install</a> for instructions on how to do a
minimal install (without or with X &amp; IceWM).
</p>
diff --git a/choosePackagesTree.html b/choosePackagesTree.html
index 4a466ad..f9567bc 100644
--- a/choosePackagesTree.html
+++ b/choosePackagesTree.html
@@ -7,42 +7,46 @@
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
<link rel="prev" href="minimal-install.html" title="Minimal Install">
- <link rel="next" href="addUser.html" title="User and Superuser Management"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="addUser.html" title="User Management"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Choose Individual Packages">
+ <div class="section" title="Choose Individual Packages">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="choosePackagesTree"></a>Choose Individual
- Packages
+ <h2 class="title"><a name="choosePackagesTree"></a>Choose Individual Packages
</h2>
</div>
</div>
</div>
+
-
+
-
+
+
+
-
- <p>Here you can add or remove any extra packages to customise your
- installation.
+
+
+
+ <p>Here you can add or remove any extra packages to customize your
+ installation.
</p>
-
+
<p>After having made your choice, you can click on the
- <span class="guibutton">floppy icon</span> 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.
+ <span class="emphasis"><em>floppy</em></span> 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.
</p>
-
+
</div>
</body>
</html>
diff --git a/configureServices.html b/configureServices.html
index 23304ad..9548026 100644
--- a/configureServices.html
+++ b/configureServices.html
@@ -13,54 +13,59 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Configure your Services">
+ <div class="section" title="Configure your Services">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="configureServices"></a>Configure your
- Services
+ <h2 class="title"><a name="configureServices"></a>Configure your Services
</h2>
</div>
</div>
</div>
+
+
-
-
-
-
-
-
+
+
+
-
- <p><a name="configureServices-pa1"></a>Here you can set
- which services should (not) start when you boot your system.
- </p>
+
-
- <p><a name="configureServices-pa2"></a>There are four
- groups, click on the triangle before a group to expand it and see all
- services in it.
+
+ <p><a name="configureServices-pa1"></a>Here you can choose which
+ services should start when you boot your system.
</p>
-
- <p><a name="configureServices-pa3"></a>The setting
- DrakX chose are usually good.
- </p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureServices-pa2"></a>Click on a triangle to
+ expand a group to all the relevant services. The settings DrakX chose
+ are usually good.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="configureServices-pa4"></a>If you highlight a
+ service, some information about it is shown in the info box
+ below.
+ </p>
+
+ </li>
+ </ul>
+ </div>
-
- <p><a name="configureServices-pa4"></a>If you highlight
- a service, some information about it is shown in the info box
- below.
+
+ <p><a name="configureServices-pa5"></a>Only change things when
+ you know very well what you are doing.
</p>
-
- <p><a name="configureServices-pa5"></a>Only change
- things when you know very well what you are doing.
- </p>
-
</div>
</body>
</html>
diff --git a/configureTimezoneUTC.html b/configureTimezoneUTC.html
index 9e42220..d9060c6 100644
--- a/configureTimezoneUTC.html
+++ b/configureTimezoneUTC.html
@@ -6,14 +6,14 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="misc-params.html" title="Summary of miscellaneous parameters">
+ <link rel="prev" href="misc-params.html" title="Configuration Summary">
<link rel="next" href="selectCountry.html" title="Select your Country / Region"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Configure your Timezone">
+ <div class="section" title="Configure your Timezone">
<div class="titlepage">
<div>
<div>
@@ -31,14 +31,26 @@
- <p><a name="configureTimezoneUTC-pa1"></a>Choose your time zone
- by choosing your country or a city close to you in the same time
- zone.
- </p>
- <p><a name="configureTimezoneUTC-pa2"></a>In next screen you can
- choose to set your hardware clock to local time or to GMT, also known as
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureTimezoneUTC-pa1"></a>Choose your
+ timezone by choosing your country, or a city close to you in the same
+ timezone.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><a name="configureTimezoneUTC-pa2"></a>In the next screen you
+ can choose to set your hardware clock to local time or to GMT, also known as
UTC.
</p>
diff --git a/configureX_card_list.html b/configureX_card_list.html
index a266046..44f806f 100644
--- a/configureX_card_list.html
+++ b/configureX_card_list.html
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Choose an X Server (Configure your Graphic Card)">
+ <div class="section" title="Choose an X Server (Configure your Graphic Card)">
<div class="titlepage">
<div>
<div>
@@ -30,7 +30,13 @@
+
+
+
+
+
+
@@ -48,17 +54,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>vendor</p>
+ <p>Vendor</p>
</li>
<li class="listitem">
- <p>then the name of your card</p>
+ <p>then the make of your card</p>
</li>
<li class="listitem">
- <p>and the type of card</p>
+ <p>and the model of card</p>
</li>
</ul>
@@ -67,31 +73,37 @@
<p>If you cannot find your card in the vendor lists (because it's not yet
in the database or it's an older card) you may find a suitable driver in the
- Xorg category
- </p>
-
-
- <p>The Xorg listing provides more than 40 generic and open source video
- card drivers. If you still can't find a named driver for your card there is
- the option of using the vesa driver which provides basic
- capabilities.
+ <span class="emphasis"><em>Xorg</em></span> category, which provides more than 40 generic and
+ open source video card drivers. If you still can't find a specific driver
+ for your card there is the option of using the VESA driver which provides
+ basic capabilities.
</p>
- <p>Be aware that if you select an incompatible driver you may only have
- access to the Commandline Interface.
- </p>
+ <div class="caution" title="Caution" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Be aware that if you select an incompatible driver you may only have
+ access to the <span class="emphasis"><em>Command Line Interface</em></span></p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<p>Some video card manufacturers provide proprietary drivers for Linux
- which may only be available in the Nonfree repository and in some cases only
- from the card manufacturers' websites.
- </p>
-
-
- <p>The Nonfree repository needs to be explicitly enabled to access them.
- If you didn't select it previously, you should do this after your first
- reboot.
+ which may only be available in the <span class="emphasis"><em>Nonfree</em></span> repository
+ and in some cases only from the card manufacturers' websites. The
+ <span class="emphasis"><em>Nonfree</em></span> repository needs to be explicitly enabled to
+ access them. If you didn't enable it previously, you should do this after
+ your first reboot.
</p>
</div>
diff --git a/configureX_chooser.html b/configureX_chooser.html
index 0b06a8b..6f05aab 100644
--- a/configureX_chooser.html
+++ b/configureX_chooser.html
@@ -6,14 +6,14 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="addUser.html" title="User and Superuser Management">
+ <link rel="prev" href="addUser.html" title="User Management">
<link rel="next" href="configureX_card_list.html" title="Choose an X Server (Configure your Graphic Card)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Graphic Card and Monitor Configuration">
+ <div class="section" title="Graphic Card and Monitor Configuration">
<div class="titlepage">
<div>
<div>
@@ -23,6 +23,13 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
@@ -31,16 +38,17 @@
- <p><a name="configureX_chooser-pa1"></a>No matter which graphical environment
- (also known as desktop environment) you chose for this install of
- <span class="application">Mageia</span>, they are all based on a graphical user
- interface system called <acronym class="acronym">X Window System</acronym>, or simply
- <acronym class="acronym">X</acronym>. So in order for <acronym class="acronym">KDE</acronym>,
- <acronym class="acronym">Gnome</acronym>, <acronym class="acronym">LXDE</acronym> or any other graphical
- environment to work well, the following <acronym class="acronym">X</acronym> settings need
- to be correct. Choose the correct settings if you can see that
- <span class="application">DrakX</span> didn't make a choice, or if you think the
- choice is incorrect.
+ <p><a name="configureX_chooser-pa1"></a>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
+ <code class="literal">X Window System</code>, or simply <span class="quote">&#8220;<span class="quote">X</span>&#8221;</span>. So in order
+ for KDE Plasma, GNOME, LXDE or any other graphical environment to work well,
+ the following <span class="quote">&#8220;<span class="quote">X</span>&#8221;</span> settings need to be correct.
+ </p>
+
+
+ <p>Choose the appropriate settings manually if you think the details are
+ incorrect, or if none are shown.
</p>
@@ -48,71 +56,86 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="configureX_chooser-pa2"></a><span class="emphasis"><em><span class="guibutton">Graphic
- card</span></em></span>: Choose your card from the list if
- needed.
+ <p><a name="configureX_chooser-pa2"></a><span class="bold"><strong>Graphic Card</strong></span></p>
+
+
+ <p>If you need to, you can select a specific card from this
+ expandable list. See <a class="xref" href="configureX_card_list.html" title="Choose an X Server (Configure your Graphic Card)">the section called &#8220;Choose an X Server (Configure
+ your Graphic Card)&#8221;</a>.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa3"></a><span class="emphasis"><em><span class="guibutton">Monitor</span></em></span>:
- You can choose <span class="guilabel">Plug'n Play</span> when applicable, or
- choose your monitor from the <span class="guilabel">Vendor</span> or
- <span class="guilabel">Generic</span> list. Choose <span class="guilabel">Custom</span> if
- you prefer to manually set the horizontal and vertical refresh rates of
- your monitor.
- </p>
+ <p><a name="configureX_chooser-pa3"></a><span class="bold"><strong>Monitor</strong></span></p>
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="configureX_chooser-pa3a"></a>Incorrect refresh rates may
- damage your monitor
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+ <p>You can choose Plug 'n Play, if applicable, or choose your monitor
+ from the <span class="emphasis"><em>Vendor</em></span> or <span class="emphasis"><em>Generic</em></span>
+ lists. Choose <span class="emphasis"><em>Custom</em></span> if you prefer to manually set
+ the horizontal and vertical refresh rates of your monitor. See <a class="xref" href="configureX_monitor.html" title="Choosing your Monitor">the section called &#8220;Choosing your Monitor&#8221;</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa4"></a><span class="emphasis"><em><span class="guibutton">Resolution</span></em></span>:
- Set the desired resolution and color depth of your monitor here.
+ <p><a name="configureX_chooser-pa4"></a><span class="bold"><strong>Resolution</strong></span></p>
+
+
+ <p>The resolution and color depth of your monitor can be set
+ here.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa5"></a><span class="emphasis"><em><span class="guibutton">Test</span></em></span>:
- 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. <span class="emphasis"><em>Make sure your settings are on the
- safe side if the test button isn't available</em></span></p>
+ <p><a name="configureX_chooser-pa5"></a><span class="bold"><strong>Test</strong></span></p>
+
+
+ <p>The test button does not always appear during install. If the
+ option is there, and you test your settings, you should be asked to
+ confirm that your settings are correct. If you answer
+ <span class="emphasis"><em>Yes</em></span>, 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 result is satisfactory. If the
+ test option is not available, then make sure your settings are on the
+ safe side.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa6"></a><span class="emphasis"><em><span class="guibutton">Options</span></em></span>:
- Here you can choose to enable or disable various options.
- </p>
+ <p><a name="configureX_chooser-pa6"></a><span class="bold"><strong>Options</strong></span></p>
+
+
+ <p>Here you can choose to enable or disable various options.</p>
</li>
</ul>
</div>
+
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="configureX_chooser-pa3a"></a>There is a risk of
+ damaging a monitor if you choose refresh rates that are outside the
+ frequency range of that monitor. This applies to older CRT displays:
+ modern monitors will reject an unsupported frequency and normally enter
+ standby mode.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</div>
</body>
</html>
diff --git a/configureX_monitor.html b/configureX_monitor.html
index 0001b12..1fd1371 100644
--- a/configureX_monitor.html
+++ b/configureX_monitor.html
@@ -7,13 +7,13 @@
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
<link rel="prev" href="configureX_card_list.html" title="Choose an X Server (Configure your Graphic Card)">
- <link rel="next" href="setupBootloader.html" title="Bootloader main options"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="setupBootloader.html" title="Bootloader"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Choosing your Monitor">
+ <div class="section" title="Choosing your Monitor">
<div class="titlepage">
<div>
<div>
@@ -33,6 +33,12 @@
+
+
+
+
+
+
<p><a name="configureX_monitor-pa1"></a>DrakX has a very
comprehensive database of monitors and will usually correctly identify
yours.
@@ -48,11 +54,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="configureX_monitor-pa1w"></a><span class="emphasis"><em>Selecting a
- monitor with different characteristics could damage your monitor or video
- hardware. Please don't try something without knowing what you are
- doing.</em></span> If in doubt you should consult your monitor
- documentation
+ <p><a name="configureX_monitor-pa1w"></a><span class="bold"><strong>Selecting a monitor with different characteristics could
+ damage your monitor or video hardware. Please don't try something without
+ knowing what you are doing.</strong></span> If in doubt you should consult your
+ monitor documentation.
</p>
</td>
@@ -63,72 +68,82 @@
- <p><a name="configureX_monitor-pa2"></a><span class="emphasis"><em>Custom</em></span></p>
-
-
- <p><a name="configureX_monitor-pa3"></a>This option allows you to
- set two critical parameters, the vertical refresh rate and the horizontal
- sync rate. Vertical refresh determines how often the screen is refreshed and
- horizontal sync is the rate at which scan lines are displayed.
- </p>
-
-
- <p><a name="configureX_monitor-pa4"></a>It is <span class="emphasis"><em>VERY
- IMPORTANT</em></span> that you do not specify a monitor type with a sync
- range that is beyond the capabilities of your monitor: you may damage your
- monitor. If in doubt, choose a conservative setting and consult your monitor
- documentation.
- </p>
-
-
- <p><a name="configureX_monitor-pa5"></a><span class="emphasis"><em>Plug 'n
- Play</em></span></p>
-
-
- <p><a name="configureX_monitor-pa6"></a>This is the default
- option and tries to determine the monitor type from the monitor
- database.
- </p>
-
-
- <p><a name="configureX_monitor-pa7"></a><span class="emphasis"><em>Vendor</em></span></p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa2"></a>Custom</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa3"></a>This option allows
+ you to set two critical parameters: the vertical refresh rate and the
+ horizontal sync rate. Vertical refresh determines how often the screen
+ is refreshed and horizontal sync is the rate at which scan lines are
+ displayed.
+ </p>
+
+
+ <p><a name="configureX_monitor-pa4"></a>It is
+ <span class="emphasis"><em>VERY IMPORTANT</em></span> that you do not specify a monitor
+ type with a sync range that is beyond the capabilities of your
+ monitor: you may damage your monitor. If in doubt, choose a
+ conservative setting and consult your monitor documentation.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa5"></a>Plug'n Play</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa6"></a>This is the default
+ option and automatically tries to determine the monitor type from the
+ monitor database.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa7"></a>Vendor</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa8"></a>If the installer
+ has not correctly detected your monitor and you know which one you
+ have, you can choose it from the options by selecting:
+ </p>
+
+ </dd>
+ </dl>
+ </div>
- <p><a name="configureX_monitor-pa8"></a>If the installer has not
- correctly detected your monitor and you know which one you have, you can
- select it from the tree by selecting:
- </p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>vendor</p>
-
- </li>
- <li class="listitem">
-
- <p>the monitor manufacturers name</p>
+ <p>Manufacturer</p>
+
</li>
<li class="listitem">
-
- <p>the monitor description</p>
+ <p>Monitor model</p>
+
</li>
</ul>
</div>
- <p><a name="configureX_monitor-pa9"></a><span class="emphasis"><em>Generic</em></span></p>
-
-
- <p><a name="configureX_monitor-pa10"></a>selecting this group
- displays nearly 30 display configurations such as 1024x768 @ 60Hz and
- includes Flat panel displays as used in laptops. This is often a good
- monitor selection group if you need to use the Vesa card driver when your
- video hardware cannot be determined automatically. Once again it may be wise
- to be conservative in your selections.
- </p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa9"></a>Generic</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa10"></a>Selecting this
+ group will list approximately 30 display configurations such as
+ 1024x768 @ 60Hz and includes flat-panel displays as used in laptops.
+ This is often a good monitor selection group if you need to use the
+ VESA card driver when your video hardware cannot be determined
+ automatically. Once again, it may be wise to be conservative in your
+ selections.
+ </p>
+
+ </dd>
+ </dl>
+ </div>
</div>
</body>
diff --git a/de/Select-and-use-ISOs.html b/de/Select-and-use-ISOs.html
index 01beeb6..e4b7ed2 100644
--- a/de/Select-and-use-ISOs.html
+++ b/de/Select-and-use-ISOs.html
@@ -25,6 +25,12 @@
+
+
+
+
+
+
<div class="section" title="Einleitung">
<div class="titlepage">
<div>
@@ -40,26 +46,81 @@
Wahl des zu Ihren Bed&uuml;rfnissen passenden Images helfen.
</p>
- <p>Es gibt zwei Arten von Medien:</p>
+ <p>Es gibt drei Arten von Installationsmedien:</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Klassische Installationsroutine: Nachdem das Medium gebootet wurde, folgt
- ein Prozess, in dem ausgew&auml;hlt werden kann, was installiert und wie das
- Ziel-System eingerichtet werden soll. Das gibt Ihnen die maximale
- Flexibilit&auml;t f&uuml;r eine individuell angepasste Installation. Insbesondere
- k&ouml;nnen Sie die Desktop-Umgebung ausw&auml;hlen, die Sie nutzen m&ouml;chten.
+ <p><span class="bold"><strong>Klassischer Installer</strong></span>: Dieses Medium bietet
+ Ihnen nach dem Start die gr&ouml;&szlig;tm&ouml;gliche Flexibilit&auml;t bei der Auswahl an, was
+ installiert werden soll und wie Sie Ihr System konfigurieren
+ m&ouml;chten. Insbesondere haben Sie die M&ouml;glichkeit auszuw&auml;hlen, welche
+ Desktop-Umgebung installiert werden soll.
</p>
</li>
<li class="listitem">
- <p>LIVE Medium: Sie k&ouml;nnen vom Medium ein echtes Mageia System starten, ohne
- dieses zu installieren, um zu sehen was Sie nach der Installation erhalten
- werden. Der Installationsvorgang ist einfacher, jedoch haben Sie weniger
- Auswahlm&ouml;glichkeiten.
+ <p><span class="bold"><strong>LIVE-Medium:</strong></span> Diese Auswahl erlaubt Ihnen
+ Mageia auszuprobieren, ohne eine Installation oder &Auml;nderung an Ihrem
+ Computer durchzuf&uuml;hren. Die Live-Medien bieten auch einen Installer, welcher
+ beim booten vom Medium oder nach dem booten in das Live-Betriebssystems
+ ausgef&uuml;hrt werden kann.
+ </p>
+
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Der Live-Installer ist, verglichen mit dem klassischen Installer, einfacher
+ - jedoch haben Sie weniger Konfigurationsm&ouml;glichkeiten.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Wichtig]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Live ISOs k&ouml;nnen nur dazu verwendet werden, um <span class="quote">&#8222;<span class="quote">frische</span>&#8220;</span>
+ Installationen durchzuf&uuml;hren. Sie k&ouml;nnen nicht dazu verwendet werden um
+ vorige Ver&ouml;ffentlichungen zu aktualisieren.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Netzwerk-Installation (NetInstall)</strong></span>: Es gibt
+ kleine ISO-Abbilder, welche nicht mehr als das N&ouml;tigste enthalten, um das
+ Installationsprogramm DrakX zu starten und
+ <code class="literal">DrakX-installer-stage2</code>, sowie weitere Pakete zu finden,
+ die n&ouml;tig sind um die Installation fortzusetzen und abzuschlie&szlig;en. Diese
+ Pakete k&ouml;nnen sich auf der Festplatte des Computers, einem lokalen Laufwerk,
+ einem lokalen Netzwerk oder im Internet befinden.
+ </p>
+
+ <p>Diese Medien sind sehr klein (unter 100 MB) und praktisch, wenn die
+ Bandbreite zu gering ist, um die komplette DVD herunterzuladen, der PC &uuml;ber
+ kein DVD-Laufwerk verf&uuml;gt oder nicht von einem USB-Stick booten kann.
</p>
</li>
@@ -74,7 +135,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e29"></a>Medien
+ <h3 class="title"><a name="d5e41"></a>Medien
</h3>
</div>
</div>
@@ -85,19 +146,20 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e31"></a>Definition
+ <h4 class="title"><a name="d5e43"></a>Definition
</h4>
</div>
</div>
</div>
- <p>Hier ist ein Medium (plural: Medien) eine ISO-Abbilddatei welche es Ihnen
+ <p>Hier ist ein Medium (plural: Medien) eine ISO-Abbilddatei, welche es Ihnen
erm&ouml;glicht Mageia zu installieren und/oder zu aktualisieren. Die ISO kann
- auf verschiedene physische Datentr&auml;ger &uuml;bertragen werden.
+ auf verschiedene physische Datentr&auml;ger (DVD, USB-Stick, ...) &uuml;bertragen
+ werden.
</p>
- <p>Sie k&ouml;nnen diese <a class="ulink" href="http://www.mageia.org/en/downloads/" target="_top">hier</a> finden.
+ <p>Sie k&ouml;nnen die Mageia ISOs <a class="ulink" href="http://www.mageia.org/en/downloads/" target="_top">hier</a> finden.
</p>
</div>
@@ -106,7 +168,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e36"></a>Klassische Installationsmedien
+ <h4 class="title"><a name="d5e48"></a>Klassische Installationsmedien
</h4>
</div>
</div>
@@ -117,7 +179,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e38"></a>Grunds&auml;tzliche Eigenschaften
+ <h5 class="title"><a name="d5e50"></a>Grunds&auml;tzliche Eigenschaften
</h5>
</div>
</div>
@@ -128,37 +190,38 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Diese ISOs verwenden ein traditionelles Installationsprogramm namens drakx.</p>
+ <p>Diese ISOs verwenden das klassische Installationsprogramm namens DrakX</p>
</li>
<li class="listitem">
- <p>Sie erlauben es eine saubere Installation oder eine Aktualisierung von einer
- vorigen Ver&ouml;ffentlichung zu machen.
+ <p>Sie k&ouml;nnen dazu verwendet werden, um eine saubere Installation oder eine
+ Aktualisierung von einer vorigen Mageia Ver&ouml;ffentlichung, durchzuf&uuml;hren
</p>
</li>
<li class="listitem">
- <p>Verschiedene Medien f&uuml;r 32- oder 64-Bit-Architekturen.</p>
+ <p>Verschiedene Medien f&uuml;r 32- oder 64-Bit-Architekturen</p>
</li>
<li class="listitem">
- <p>Einige Werkzeuge sind im Willkommensbildschirm verf&uuml;gbar: Rettungssystem,
- Speichertest, Hardware-Erkennungswerkzeug.
+ <p>Einige Werkzeuge sind im <span class="quote">&#8222;<span class="quote">Willkommen</span>&#8220;</span>sbildschirm des Installers
+ verf&uuml;gbar: <span class="emphasis"><em>Rettungssystem, Speichertest</em></span> und
+ <span class="emphasis"><em>Hardware-Erkennungswerkzeug</em></span>.
</p>
</li>
<li class="listitem">
- <p>Jede DVD enth&auml;lt viele verf&uuml;gbare Desktop-Umgebungen und Sprachen.</p>
+ <p>Jede DVD enth&auml;lt viele verf&uuml;gbare Desktop-Umgebungen und Sprachen</p>
</li>
<li class="listitem">
<p>Sie erhalten w&auml;hrend der Installation die M&ouml;glichkeit non-free Software
- hinzuzuf&uuml;gen.
+ hinzuzuf&uuml;gen
</p>
</li>
@@ -169,11 +232,11 @@
</div>
- <div class="section" title="Live Medien">
+ <div class="section" title="Live-Medien">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e53"></a>Live Medien
+ <h4 class="title"><a name="d5e68"></a>Live-Medien
</h4>
</div>
</div>
@@ -184,7 +247,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e55"></a>Grunds&auml;tzliche Eigenschaften
+ <h5 class="title"><a name="d5e70"></a>Grunds&auml;tzliche Eigenschaften
</h5>
</div>
</div>
@@ -195,32 +258,29 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Kann dazu verwendet werden um die Distribution zu testen ohne diese auf eine
- Festplatte zu installieren, kann jedoch optional auch auf eine Festplatte
- installiert werden.
+ <p>Kann dazu verwendet werden um das Mageia Betriebssystem auszuprobieren, ohne
+ es installieren zu m&uuml;ssen
</p>
</li>
<li class="listitem">
- <p>Jede ISO enth&auml;lt nur eine Desktop-Umgebung (Plasma, GNOME oder Xfce).</p>
+ <p>Die Live-Medien enthalten auch einen Installer.</p>
</li>
<li class="listitem">
- <p>Verschiedene Medien f&uuml;r 32- oder 64-Bit-Architekturen.</p>
+ <p>Jede ISO enth&auml;lt nur eine Desktop-Umgebung (Plasma, GNOME oder Xfce)</p>
</li>
<li class="listitem">
- <p><span class="bold"><strong>Live ISOs k&ouml;nnen nur dazu verwendet werden, um frische
- Installationen durchzuf&uuml;hren. Sie k&ouml;nnen nicht dazu verwendet werden um
- vorige Ver&ouml;ffentlichungen zu aktualisieren.</strong></span></p>
+ <p>Verschiedene Medien f&uuml;r 32- oder 64-Bit-Architekturen</p>
</li>
<li class="listitem">
- <p>Sie enth&auml;lt unfreie Software.</p>
+ <p>Sie enth&auml;lt unfreie Software</p>
</li>
</ul>
@@ -232,7 +292,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e69"></a>Live-DVD Plasma
+ <h5 class="title"><a name="d5e83"></a>Live-DVD Plasma
</h5>
</div>
</div>
@@ -243,17 +303,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Nur Plasma Desktop-Umgebung.</p>
+ <p>Nur Plasma Desktop-Umgebung</p>
</li>
<li class="listitem">
- <p>Alle Sprachen sind vorhanden.</p>
+ <p>Alle verf&uuml;gbaren Sprachen sind vorhanden</p>
</li>
<li class="listitem">
- <p>Nur 64-Bit-Architektur.</p>
+ <p>Nur 64-Bit-Architektur</p>
</li>
</ul>
@@ -265,7 +325,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e78"></a>Live-DVD GNOME
+ <h5 class="title"><a name="d5e92"></a>Live-DVD GNOME
</h5>
</div>
</div>
@@ -276,12 +336,12 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Nur GNOME Desktop-Umgebung.</p>
+ <p>Nur GNOME Desktop-Umgebung</p>
</li>
<li class="listitem">
- <p>Alle Sprachen sind vorhanden.</p>
+ <p>Alle verf&uuml;gbaren Sprachen sind vorhanden</p>
</li>
<li class="listitem">
@@ -298,7 +358,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e87"></a>Live-DVD Xfce
+ <h5 class="title"><a name="d5e101"></a>Live-DVD Xfce
</h5>
</div>
</div>
@@ -309,17 +369,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Nur Xfce Desktop-Umgebung.</p>
+ <p>Nur Xfce Desktop-Umgebung</p>
</li>
<li class="listitem">
- <p>Alle Sprachen sind vorhanden.</p>
+ <p>Alle verf&uuml;gbaren Sprachen sind vorhanden</p>
</li>
<li class="listitem">
- <p>32 oder 64-Bit-Architektur.</p>
+ <p>32- oder 64-Bit Architektur</p>
</li>
</ul>
@@ -329,11 +389,11 @@
</div>
- <div class="section" title="Boot-only CD Medien">
+ <div class="section" title="Netzwerk-Installationsmedien">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e96"></a>Boot-only CD Medien
+ <h4 class="title"><a name="d5e110"></a>Netzwerk-Installationsmedien
</h4>
</div>
</div>
@@ -344,7 +404,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e98"></a>Grunds&auml;tzliche Eigenschaften
+ <h5 class="title"><a name="d5e112"></a>Grunds&auml;tzliche Eigenschaften
</h5>
</div>
</div>
@@ -355,30 +415,12 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Jede einzelne ist ein kleines Abbild, welche nicht mehr als das N&ouml;tige
- enth&auml;lt, um den drakx installer zu starten und die ISO Datei zu finden, um
- die Installation fortzusetzen und abzuschlie&szlig;en. Diese ISO Datei kann sich
- auf der Festplatte des Computers, einem lokalen Laufwerk, einem lokalen
- Netzwerk oder im Internet befinden.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>Diese Medien sind sehr klein (unter 100 MB) und praktisch, wenn die
- Bandbreite zu gering ist, um die komplette DVD herunterzuladen, der PC &uuml;ber
- kein DVD-Laufwerk verf&uuml;gt oder nicht von einem USB-Stick booten kann.
- </p>
+ <p>Verschiedene Medien f&uuml;r 32- oder 64-Bit-Architekturen</p>
</li>
<li class="listitem">
- <p>Verschiedene Medien f&uuml;r 32- oder 64-Bit-Architekturen.</p>
-
- </li>
- <li class="listitem">
-
- <p>Nur englische Sprache.</p>
+ <p>Die ersten Schritte sind nur englische Sprache vorhanden</p>
</li>
</ul>
@@ -390,7 +432,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e109"></a>netinstall.iso
+ <h5 class="title"><a name="d5e119"></a>netinstall.iso
</h5>
</div>
</div>
@@ -401,8 +443,8 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Enth&auml;lt nur freie Software, f&uuml;r Leute die unfreie Software nicht benutzen
- m&ouml;chten.
+ <p>Enth&auml;lt nur freie Software, f&uuml;r diejenigen, die unfreie Software nicht
+ verwenden m&ouml;chten
</p>
</li>
@@ -415,7 +457,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e114"></a>netinstall-nonfree.iso
+ <h5 class="title"><a name="d5e124"></a>netinstall-nonfree.iso
</h5>
</div>
</div>
@@ -426,8 +468,8 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Enth&auml;lt unfreie Software (haupts&auml;chlich Treiber, Codecs...), f&uuml;r Leute die
- diese ben&ouml;tigen.
+ <p>Enth&auml;lt unfreie/propriet&auml;re Software (haupts&auml;chlich Treiber, Codecs...), f&uuml;r
+ diejenigen, die diese ben&ouml;tigen.
</p>
</li>
@@ -444,7 +486,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e119"></a>Medien herunterladen und &uuml;berpr&uuml;fen
+ <h3 class="title"><a name="d5e129"></a>Medien herunterladen und &uuml;berpr&uuml;fen
</h3>
</div>
</div>
@@ -455,7 +497,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e121"></a>Herunterladen
+ <h4 class="title"><a name="d5e131"></a>Herunterladen
</h4>
</div>
</div>
@@ -464,20 +506,29 @@
<p>Sobald Sie eine ISO-Datei ausgew&auml;hlt haben, k&ouml;nnen Sie diese &uuml;ber http oder
BitTorrent herunterladen. In beiden F&auml;llen zeigt ein Fenster Informationen
- wie den Spiegelserver der verwendet wird sowie die M&ouml;glichkeit auf einen
- anderen zu wechseln, falls die Bandbreite zu niedrig ist. Wenn http
- ausgew&auml;hlt wurde sehen Sie wom&ouml;glich etwas wie
+ an, wie den Spiegelserver der verwendet wird sowie die M&ouml;glichkeit auf einen
+ anderen zu wechseln, falls die Bandbreite zu niedrig ist.
</p>
+ <p>Wenn Sie http ausgew&auml;hlt haben, werden einige Informationen bez&uuml;glich der
+ Pr&uuml;fsummen angezeigt.
+ </p>
+
- <p>md5sum und sha1sum sind Werkzeuge um die Integrit&auml;t der ISO-Datei zu
- &uuml;berpr&uuml;fen. Verwenden sie nur eines der beiden. Behalte eines von diesen
- <a class="link" href="Select-and-use-ISOs.html#integrity">f&uuml;r die sp&auml;tere Nutzung</a> im
- Hinterkopf. Anschlie&szlig;end wird ein &auml;hnliches Fenster wie dieses erscheinen:
+ <p><code class="literal">md5sum</code>, <code class="literal">sha1sum</code> und
+ <code class="literal">sha512sum</code> (am sichersten) sind Werkzeuge um die
+ Integrit&auml;t der ISO zu &uuml;berpr&uuml;fen. Kopiere eine der Pr&uuml;fsummen (Zeichenkette
+ aus alphanumerischen Zeichen), um diese im n&auml;chsten Abschnitt zu verwenden.
</p>
+
+
+ <p>In der Zwischenzeit &ouml;ffnet sich ein Fenster um die ISO herunterzuladen:</p>
- <p>W&auml;hle den Auswahlknopf "Datei speichern".</p>
+
+ <p>Klicke auf <span class="emphasis"><em>Datei speichern</em></span>, danach auf
+ <span class="emphasis"><em>OK</em></span>.
+ </p>
</div>
@@ -485,40 +536,56 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e133"></a>&Uuml;berpr&uuml;fen der integrit&auml;t der heruntergeladenen Datei
+ <h4 class="title"><a name="d5e149"></a>&Uuml;berpr&uuml;fen der integrit&auml;t der heruntergeladenen Datei
</h4>
</div>
</div>
</div>
- <p>Beide Pr&uuml;fsummen sind hexadezimal Zahlen, welche durch einen Algorithmus von
- der Datei berechnet wurden, welche heruntergeladen werden soll. Wenn Sie den
- Algorithmus auffordern, die Pr&uuml;fsumme der heruntergeladenen Datei erneut zu
- berechnen, erhalten Sie entweder die gleiche hexidezimal Zahl und Ihre
- heruntergeladene Datei ist vollst&auml;ndig oder die berechnete Zahl ist eine
- andere und es gab beim herunterladen einen Fehler. Ein Fehler bedeutet, dass
- Sie den Download erneut versuchen oder eine Reparatur der Datei durch
- Verwendung von BitTorrent durchf&uuml;hren sollten.
+ <p>Die eben erw&auml;hnten Pr&uuml;fsummen sind digitale Fingerabdr&uuml;cke, welche durch
+ einen Algorithmus von der Datei berechnet wurde, welche heruntergeladen
+ werden soll. Sie sollten die Pr&uuml;fsumme der heruntergeladenen Datei mit der
+ Pr&uuml;fsumme des Originals vergleichen. Wenn die Pr&uuml;fsummen nicht
+ &uuml;bereinstimmen, bedeutet es, dass die Daten der ISOs nicht
+ &uuml;bereinstimmen. In diesem Fall sollten Sie den Download erneut versuchen
+ oder eine Reparatur der Datei durch Verwendung von BitTorrent durchf&uuml;hren.
</p>
- <p>&Ouml;ffne eine Konsole, Sie m&uuml;ssen hierf&uuml;r nicht root sein, und:</p>
-
- <p>- Um md5sum zu verwenden, geben Sie ein: [sam@localhost]$ <strong class="userinput"><code>md5sum
- Pfad/zu/der/Abbild/Datei.iso</code></strong>.
+ <p>Um die Pr&uuml;fsumme f&uuml;r die heruntergeladene ISO zu generieren, &ouml;ffnen Sie eine
+ Konsole (Sie m&uuml;ssen hierf&uuml;r nicht root sein) und:
</p>
- <p>- Um sha1sum zu verwenden, geben Sie ein: [sam@localhost]$
- <strong class="userinput"><code>sha1sum Pfad/zu/der/Abbild/Datei.iso</code></strong>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Um die md5sum zu verwenden, gib folgendes ein: <span class="command"><strong>md5sum
+ pfad/zur/abbild/datei.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Um die sha1sum zu verwenden, gib folgendes ein: <span class="command"><strong>sha1sum
+ pfad/zur/abbild/datei.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Um die sha512sum zu verwenden, gib folgendes ein: <span class="command"><strong>sha512sum
+ pfad/zur/abbild/datei.iso</strong></span></p>
+
+ </li>
+ </ul>
+ </div>
- <p>und vergleiche die angezeigt Nummer auf Ihrem Computer (Sie m&uuml;ssen
- wahrscheinlich eine weile warten) mit der Nummer die Sie von Mageia
- erhalten. Beispiel:
- </p>
+ <p>Beispiel:</p>
+
- <p></p>
+ <p>Vergleichen Sie danach das Ergebnis (Sie m&uuml;ssen wahrscheinlich eine weile
+ warten) mit der Pr&uuml;fsumme die Sie von Mageia erhalten haben.
+ </p>
</div>
@@ -528,33 +595,33 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e146"></a>Brennen oder &uuml;bertragen der ISO
+ <h3 class="title"><a name="d5e168"></a>Brennen oder &uuml;bertragen der ISO
</h3>
</div>
</div>
</div>
- <p>Die &uuml;berpr&uuml;fte ISO kann nun auf eine CD oder DVD gebrannt oder auf einen
- USB-Stick gedumpt werden. Diese T&auml;tigkeit ist nicht ein einfaches kopieren
- und zielt darauf ab ein bootbares Medium zu erstellen.
+ <p>Die &uuml;berpr&uuml;fte ISO kann nun auf eine CD/DVD gebrannt oder auf einen
+ USB-Stick <span class="quote">&#8222;<span class="quote">gedumpt</span>&#8220;</span> werden. Dieser Vorgang ist kein
+ gew&ouml;hnlicher Kopiervorgang, da hierbei ein bootbares Medium erstellt wird.
</p>
<div class="section" title="ISO auf eine CD/DVD brennen">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e149"></a>ISO auf eine CD/DVD brennen
+ <h4 class="title"><a name="d5e172"></a>ISO auf eine CD/DVD brennen
</h4>
</div>
</div>
</div>
- <p>Verwenden Sie, welchen Brenner Sie m&ouml;chten, aber stellen Sie sicher, dass
- dieser korrekt auf <span class="bold"><strong>Ein Abbild schreiben</strong></span>
- gestellt ist. Daten oder Dateien brennen ist nicht die richtige
- Auswahl. Mehr Informationen im <a class="ulink" href="https://wiki.mageia.org/de/Images_auf_CD_und_DVD_brennen" target="_top">Mageia
+ <p>Egal welches Brennprogramm Sie hierf&uuml;r verwenden, vergewissern Sie sich,
+ dass Sie die Auswahl <span class="emphasis"><em>Abbild brennen</em></span>
+ verwenden. <span class="emphasis"><em>Daten</em></span> oder <span class="emphasis"><em>Dateien</em></span>
+ brennen ist die FALSCHE Auswahl. Mehr Informationen im <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">Mageia
Wiki</a>.
</p>
@@ -564,7 +631,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e154"></a>ISO auf einen USB-Stick &uuml;bertragen
+ <h4 class="title"><a name="d5e179"></a>ISO auf einen USB-Stick &uuml;bertragen
</h4>
</div>
</div>
@@ -572,7 +639,7 @@
<p>Alle Mageia ISOs sind hybrid, was bedeutet das Sie diese auf einen USB-Stick
- 'dumpen' k&ouml;nnen um davon zu booten und das System zu installieren.
+ dumpen k&ouml;nnen um davon zu booten und das System zu installieren.
</p>
<div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -584,9 +651,8 @@
<tr>
<td align="left" valign="top">
- <p>"dumpen" eines Images auf ein Flash-Ger&auml;t zerst&ouml;rt alle Dateisysteme auf
- diesem Ger&auml;t; alle Dateien gehen verloren und die Partitionskapazit&auml;t wird
- auf die Imagegr&ouml;&szlig;e reduziert.
+ <p>Dumpen eines Images auf ein Flash-Ger&auml;t zerst&ouml;rt alle darauf vorhandenen
+ Dateisysteme und alle darauf befindliche Daten gehen verloren.
</p>
</td>
@@ -594,15 +660,37 @@
</table>
</div>
- <p>Um die urspr&uuml;ngliche Kapazit&auml;t wieder herzustellen, m&uuml;ssen Sie den USB-Stick
- neu partitionieren und formatieren.
- </p>
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Die einzige Partition auf dem Flash-Laufwerk wird anschlie&szlig;end nur die
+ Mageia ISO Partition sein.
+ </p>
+
+ <p>Aus diesem Grund wird bei einer 4GB ISO, die auf einen 8GB USB-Stick
+ geschrieben wird, der Stick nur mit einer Kapazit&auml;t von 4GB anzeigt. Dies
+ liegt daran, da die &uuml;brigen 4GB nicht mehr formatiert sind - aus diesem
+ Grund zur Zeit nicht verwendbar. Um die urspr&uuml;ngliche Kapazit&auml;t
+ wiederherzustellen, m&uuml;ssen Sie den USB-Stick neu formatieren und
+ partitionieren.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<div class="section" title="Verwenden eines grafischen Werkzeugs in Mageia">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e160"></a>Verwenden eines grafischen Werkzeugs in Mageia
+ <h5 class="title"><a name="d5e187"></a>Verwenden eines grafischen Werkzeugs in Mageia
</h5>
</div>
</div>
@@ -617,7 +705,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e164"></a>Verwenden eines grafischen Werkzeugs in Windows
+ <h5 class="title"><a name="d5e191"></a>Verwenden eines grafischen Werkzeugs in Windows
</h5>
</div>
</div>
@@ -626,12 +714,23 @@
<p>Sie k&ouml;nnen versuchen:</p>
- <p>- <a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> mit
- Verwendung der Auswahl "ISO-Abbild";
- </p>
-
- <p>- <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
- Disk Imager</a></p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> mit
+ Verwendung der Auswahl "ISO-Abbild"
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>- <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
+ Disk Imager</a></p>
+
+ </li>
+ </ul>
+ </div>
</div>
@@ -639,7 +738,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e171"></a>Verwenden der Befehlszeile in einem GNU/Linux System
+ <h5 class="title"><a name="d5e201"></a>Verwenden der Befehlszeile in einem GNU/Linux System
</h5>
</div>
</div>
@@ -665,8 +764,6 @@
</table>
</div>
- <p>Sie k&ouml;nnen auch das dd Werkzeug in der Konsole verwenden:</p>
-
<div class="orderedlist">
<ol class="orderedlist" type="1">
<li class="listitem">
@@ -676,30 +773,39 @@
</li>
<li class="listitem">
- <p>Werden Sie root mit dem Befehl <strong class="userinput"><code>su -</code></strong> (vergessen Sie
- nicht das '-' am Ende)
+ <p>Werden Sie <span class="emphasis"><em>root</em></span> (Administrator) mit dem Befehl
+ <span class="command"><strong>su -</strong></span> (vergessen Sie nicht das <span class="command"><strong>-</strong></span>)
</p>
</li>
<li class="listitem">
- <p>Schlie&szlig;en Sie Ihren USB-Stick an (h&auml;ngen Sie diesen nicht ein, das bedeutet
- auch, das keine Anwendung oder Dateimanager ge&ouml;ffnet werden sollte, welche
- auf diesen zugreift oder liest)
+ <p>Schlie&szlig;en Sie Ihren USB-Stick an - h&auml;ngen Sie diesen aber nicht ein (das
+ bedeutet, dass keine Anwendung oder Dateimanager ge&ouml;ffnet werden sollte,
+ welche auf diesen zugreift oder liest)
</p>
</li>
<li class="listitem">
- <p>Geben Sie den Befehl <strong class="userinput"><code>fdisk -l</code></strong> ein
+ <p>Geben Sie den Befehl <span class="command"><strong>fdisk -l</strong></span> ein
</p>
+
+ </li>
+ <li class="listitem">
- <p>Alternativ k&ouml;nnen Sie auch den Ger&auml;tenamen mit dem Befehl <code class="code">dmesg</code>
- anzeigen lassen: am Ende sehen Sie den Ger&auml;tenamen, welcher mit
- <span class="emphasis"><em>sd</em></span> beginnt, welches im unteren Beispiel
- <span class="emphasis"><em>sdd</em></span> ist:
+ <p>Finden Sie den Namen Ihres USB-Sticks heraus (anhand der Speichergr&ouml;&szlig;e), zum
+ Beispiel ist <code class="filename">/dev/sdb</code> in dem Screenshot oben, ein 8GB
+ USB-Stick.
+ </p>
+
+ <p>Alternativ k&ouml;nnen Sie sich auch den Ger&auml;tenamen mit dem Befehl
+ <span class="command"><strong>dmesg</strong></span> anzeigen lassen: am Ende sehen Sie den Ger&auml;tenamen,
+ welcher mit <code class="filename">sd</code> beginnt, welches im unteren Beispiel
+ <code class="filename">sdd</code> lautet. Sie sehen ebenfalls das die Gr&ouml;&szlig;e 2GB
+ betr&auml;gt:
</p>
<pre class="screen">[72594.604531] usb 1-1: new high-speed USB device number 27 using xhci_hcd
[72594.770528] usb 1-1: New USB device found, idVendor=8564, idProduct=1000
@@ -722,33 +828,44 @@
</li>
<li class="listitem">
- <p>Finden Sie den Namen Ihres USB-Sticks heraus (anhand der Speichergr&ouml;&szlig;e), zum
- Beispiel ist <code class="code">/dev/sdb</code> in dem Screenshot oben, ein 8GB
- USB-Stick.
- </p>
-
- </li>
- <li class="listitem">
+ <p>Geben Sie folgenden Befehl ein: <span class="command"><strong>dd if=pfad/zu/der/ISO/dateiname
+ of=/dev/sd<em class="replaceable"><code>X</code></em> bs=1M</strong></span></p>
- <p>Geben den Befehl # <strong class="userinput"><code>dd if=pfad/zu/der/ISO/dateiname of=/dev/sdX
- bs=1M</code></strong> ein
- </p>
+ <p>Where <em class="replaceable"><code>X</code></em>=der Name Ihres Ger&auml;tes ist, z. B.:
+ <code class="filename">/dev/sdd</code></p>
- <p>Wobei X = der Name Ihres Ger&auml;tes ist, z.B. /dev/sdc</p>
+ <p>Beispiel:<code class="literal"> dd
+ if=/home/benutzername/Downloads/Mageia-6-x86_64-DVD.iso of=/dev/sdd
+ bs=1M</code></p>
- <p>Beispiel: # <strong class="userinput"><code>dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso
- of=/dev/sdb bs=1M</code></strong></p>
+ <div class="tip" title="Tipp" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tipp]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Es ist m&ouml;glicherweise hilfreich zu wissen, dass <span class="bold"><strong>if</strong></span> f&uuml;r <span class="bold"><strong>i</strong></span>nput
+ <span class="bold"><strong>f</strong></span>ile (Eingabedatei) und <span class="bold"><strong>of</strong></span> f&uuml;r <span class="bold"><strong>o</strong></span>utput
+ <span class="bold"><strong>f</strong></span>ile (Ausgabedatei) steht
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p>Geben Sie den Befehl # <strong class="userinput"><code>sync</code></strong> ein
- </p>
+ <p>Gib folgenden Befehl ein: <span class="command"><strong>sync</strong></span></p>
</li>
<li class="listitem">
- <p>Entferne den USB-Stick, es ist fertig</p>
+ <p>Dies ist das Ende des Vorgangs und Sie k&ouml;nnen Ihren USB-Stick nun entfernen.</p>
</li>
</ol>
diff --git a/de/acceptLicense.html b/de/acceptLicense.html
index 6cfed61..ae8bcdb 100644
--- a/de/acceptLicense.html
+++ b/de/acceptLicense.html
@@ -45,6 +45,12 @@
+
+
+
+
+
+
<div class="section" title="Lizenzabkommen">
<div class="titlepage">
<div>
@@ -57,24 +63,36 @@
- <p>Bevor Sie <span class="application">Mageia</span> installieren, lesen Sie bitte
- sorgf&auml;lltig die Begriffe und Bedingungen in der Lizenz.
- </p>
-
-
- <p>Diese Begriffe und Bedingungen beziehen sich auf die gesamte Distribution
- von <span class="application">Mageia</span> und muss akzeptiert werden, bevor Sie
- mit der Installation fortfahren k&ouml;nnen.
- </p>
-
-
- <p>Um dies zu akzeptieren, klicken Sie einfach auf <span class="bold"><strong>Akzeptieren</strong></span> und anschlie&szlig;end auf <span class="bold"><strong>Weiter</strong></span>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Lesen Sie sich bitte sorgf&auml;ltig die Lizenzbedingungen durch, bevor Sie
+ Mageia installieren.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Diese Begriffe und Bedingungen beziehen sich auf die gesamte Distribution
+ von Mageia und muss akzeptiert werden, bevor Sie mit der Installation
+ fortfahren k&ouml;nnen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Um fortzufahren, klicke auf <span class="emphasis"><em>Akzeptieren</em></span> und dann auf
+ <span class="emphasis"><em>Weiter</em></span></p>
+
+ </li>
+ </ul>
+ </div>
<p>Falls Sie sich entschlie&szlig;en, diese Bedingungen nicht zu akzeptieren,
- bedanken wir uns, dass Sie vorbeigeschaut haben. Mit einem Klick auf
- <span class="guibutton">Beenden</span> wird Ihr Computer neu gestartet.
+ bedanken wir uns f&uuml;r Ihr Interesse an Mageia. Mit einem Klick auf
+ <span class="emphasis"><em>Beenden</em></span> wird Ihr Computer neu gestartet.
</p>
@@ -98,10 +116,9 @@
- <p>Sie erhalten dort wichtige Informationen &uuml;ber diese
- <span class="application">Mageia</span> Ver&ouml;ffentlichung und dies l&auml;sst sich
- aufrufen, indem Sie auf die <span class="guibutton">Versionshinweise</span>
- Schaltfl&auml;che klicken.
+ <p>Wichtige Informationen &uuml;ber diese Mageia Ver&ouml;ffentlichung k&ouml;nnen Sie
+ aufrufen, indem Sie auf die <span class="emphasis"><em>Versionshinweise</em></span>
+ Schaltfl&auml;che dr&uuml;cken.
</p>
</div>
diff --git a/de/addUser.html b/de/addUser.html
index a99f8ec..01c2322 100644
--- a/de/addUser.html
+++ b/de/addUser.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Verwaltung des Benutzers und des Superusers</title>
+ <title>Benutzerverwaltung</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Verwaltung des Benutzers und des Superusers">
+ <div lang="de" class="section" title="Benutzerverwaltung">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="addUser"></a>Verwaltung des Benutzers und des Superusers
+ <h2 class="title"><a name="addUser"></a>Benutzerverwaltung
</h2>
</div>
</div>
@@ -26,6 +26,10 @@
+
+
+
+
<div class="section" title="Setzen des Administrator (root) Passworts:">
<div class="titlepage">
<div>
@@ -37,16 +41,15 @@
</div>
- <p>Dies ist f&uuml;r alle Installationen von <span class="application">Mageia</span>
- verf&uuml;gbar, um ein Passwort f&uuml;r den Superuser oder Administrator zu setzen,
- normalerweise wird es unter Linux das <span class="emphasis"><em>root Passwort</em></span>
- genannt. W&auml;hrend Sie Ihr Passwort in die obere Textbox eingeben, &auml;ndert sich
- die Farbe des Schildes von Rot zu Gelb und Gr&uuml;n, abh&auml;ngig von der Sicherheit
- des Passwortes. Ein gr&uuml;nes Schild am Ende der Textbox zeigt Ihnen, dass Sie
- ein schwer zu knackendes Passwort verwenden. In der darunter liegenden
- Textbox sollten Sie das soeben eingegebene Passwort wiederholen, um zu
- &uuml;berpr&uuml;fen, dass Sie sich bei der Eingabe des ersten Passwortes nicht
- vertippt haben.
+ <p>Es ist f&uuml;r alle Installationen von Mageia ratsam, ein Passwort f&uuml;r den
+ <code class="literal">superuser</code> (Administrator) zu setzen, normalerweise wird
+ es unter Linux das <span class="emphasis"><em>root</em></span> Passwort genannt. W&auml;hrend Sie
+ Ihr Passwort in das obere Textbox eingeben, &auml;ndert sich die Farbe des
+ Schildes von Rot zu Gelb zu Gr&uuml;n, abh&auml;ngig von der Sicherheit des
+ Passwortes. Ein gr&uuml;nes Schild zeigt Ihnen, dass Sie ein schwer zu knackendes
+ Passwort verwenden. In dem darunter liegenden Textbox sollten Sie das soeben
+ eingegebene Passwort wiederholen, um zu &uuml;berpr&uuml;fen, dass Sie sich bei der
+ Eingabe des ersten Passwortes nicht vertippt haben.
</p>
<div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -81,50 +84,50 @@
</div>
- <p>Hier f&uuml;gen Sie einen Benutzer hinzu. Ein Benutzer hat weniger Rechte als der
- Superuser (root), aber gen&uuml;gend, um im Internet zu surfen, B&uuml;roanwendungen
- zu verwenden und noch vieles mehr, was ein durchschnittlicher Benutzer mit
- einem Computer macht.
+ <p>Hier f&uuml;gen Sie einen Benutzer hinzu. Ein gew&ouml;hnlicher Benutzer hat weniger
+ Rechte als der <code class="literal">superuser</code> (root), aber gen&uuml;gend, um im
+ Internet zu surfen, B&uuml;roanwendungen zu verwenden, Spiele zu spielen und noch
+ vieles mehr, was ein durchschnittlicher Benutzer mit einem Computer macht.
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guibutton">Symbol</span>: Wenn Sie auf diesen Knopf klicken, so &auml;ndert
- sich das Symbol f&uuml;r den Benutzer.
- </p>
+ <p><span class="bold"><strong>Symbol</strong></span></p>
+
+ <p>Klicke auf diesen Knopf, wenn Sie das Symbol f&uuml;r den Benutzer &auml;ndern m&ouml;chten</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Vollst&auml;ndiger Name</span>: F&uuml;gen Sie in dieser Textbox den
- wirklichen Namen des Benutzers ein.
- </p>
+ <p><span class="bold"><strong>Vollst&auml;ndiger Name</strong></span></p>
+
+ <p>Gebe den vollst&auml;ndigen Namen des Benutzers in dieses Textfeld ein</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Anmeldename</span>: Hier geben Sie den Anmeldenamen des
- Benutzers ein, oder lassen Sie den von <span class="bold"><strong>drakx</strong></span> vorgeschlagenen Namen stehen und &uuml;bernehmen
- diesen. <span class="emphasis"><em>Der Anmeldename beachtet die
- Gro&szlig;-/Kleinschreibung</em></span>.
+ <p><span class="bold"><strong>Benutzername</strong></span></p>
+
+ <p>Hier geben Sie den Anmeldenamen des Benutzers ein, oder lassen Sie den von
+ DrakX vorgeschlagenen Namen stehen und &uuml;bernehmen diesen. <span class="bold"><strong>Der Anmeldename beachtet die Gro&szlig;-/Kleinschreibung</strong></span>.
</p>
+
</li>
<li class="listitem">
- <p><span class="guilabel">Passwort</span>: In dieser Textbox geben Sie das Passwort f&uuml;r
- den Benutzer ein. Am Ende der Textbox zeigt ein Schild an, wie sicher das
- Passwort ist. (Siehe auch <a class="xref" href="addUser.html#givePassword" title="Anmerkung">Anmerkung</a>)
+ <p><span class="bold"><strong>Passwort</strong></span></p>
+
+ <p>Geben Sie das Passwort f&uuml;r den Benutzer ein. Am Ende des Textfelds zeigt ein
+ Schild an, wie sicher das Passwort ist. (Siehe auch <a class="xref" href="addUser.html#givePassword" title="Anmerkung">Anmerkung</a>)
</p>
-
- </li>
- <li class="listitem">
- <p><span class="guilabel">Passwort (wiederholen)</span>: Geben Sie wiederum das Passwort
- des Benutzers in diese Textbox ein, und <span class="bold"><strong>drakx</strong></span> &uuml;berpr&uuml;ft auf &Uuml;bereinstimmung der beiden
- Passw&ouml;rter f&uuml;r den Benutzer in den beiden Textboxen.
+ <p><span class="bold"><strong>Passwort (erneut):</strong></span> Geben Sie hier das
+ Passwort erneut ein. DrakX &uuml;berpr&uuml;ft, dass Sie sich beim Passwort nicht
+ vertippt haben, indem es die Eingabe mit der vorherigen Passworteingabe
+ vergleicht.
</p>
</li>
@@ -141,7 +144,7 @@
<td align="left" valign="top">
<p>Jeder Nutzer, der bei der Installation von Mageia hinzugef&uuml;gt wird, erh&auml;lt
- ein lese- und schreibgesch&uuml;tztes home Verzeichnis (umask=0027).
+ ein lese- und schreibgesch&uuml;tztes home Verzeichnis (umask=0027)
</p>
<p>Sie k&ouml;nnen zus&auml;tzliche Zug&auml;nge f&uuml;r weitere Benutzer im
@@ -159,79 +162,44 @@
</div>
- <div class="section" title="Fortgeschrittene Benutzerverwaltung">
+ <div class="section" title="Benutzerverwaltung (fortgeschritten)">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="addUserAdvanced"></a>Fortgeschrittene Benutzerverwaltung
+ <h3 class="title"><a name="addUserAdvanced"></a>Benutzerverwaltung (fortgeschritten)
</h3>
</div>
</div>
</div>
- <p>Wenn der Knopf <span class="guibutton">Fortgeschritten</span> angeklickt wird, dann
- wird ein Fenster angezeigt, in welchem Einstellungen f&uuml;r den hinzuzuf&uuml;genden
- Benutzer editiert werden k&ouml;nnen.
+ <p>Die <span class="emphasis"><em>Fortgeschritten</em></span>-Option erlaubt Ihnen zus&auml;tzliche
+ Einstellungen f&uuml;r den Benutzer zu bearbeiten, den Sie gerade hinzuf&uuml;gen.
</p>
- <p>Zudem k&ouml;nnen Sie einen Gastzugang aktivieren oder deaktivieren.</p>
-
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Jedes Gast-Benutzerkonto, das mit einem vorgegebenen
- <span class="emphasis"><em>rbash</em></span>-Gastzugang und im Ordner
- <span class="emphasis"><em>/home</em></span> gespeichert ist, wird gel&ouml;scht, wenn sich der
- Gast abmeldet. Der Gast sollte daher seine wichtigen Daten auf einen
- USB-Stick sichern.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">Gast-Benutzerkonto</span>: Hier k&ouml;nnen Sie das
- Gast-Benutzerkonto aktivieren oder deaktivieren. Das Gast- Benutzerkonto
- erlaubt es einem Gast, sich am System anzumelden und den PC zu
- verwenden. Dieser Gast hat aber eingeschr&auml;nktere Rechte als ein normaler
- Benutzer.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Shell</span>: Diese aufklappbare Liste erlaubt es Ihnen, die
+ <p><span class="emphasis"><em>Shell</em></span>: Diese aufklappbare Liste erlaubt es Ihnen, die
Shell zu &auml;ndern, die der Benutzer verwendet, den Sie am Bildschirm zuvor
- hinzugef&uuml;gt haben. Zur Auswahl stehen Bash, Dash und Sh
- </p>
+ hinzugef&uuml;gt haben. Zur Auswahl stehen <code class="literal">Bash</code>,
+ <code class="literal">Dash</code> und <code class="literal">Sh</code></p>
</li>
<li class="listitem">
- <p><span class="guilabel">Benutzer-ID</span>: Hier k&ouml;nnen Sie eine Benutzer-ID
- (Benutzeridentifikation) f&uuml;r den Benutzer setzen, den Sie am Bildschirm
- zuvor hinzugef&uuml;gt haben. Diese ID ist eine Zahl. Lassen Sie diese Eingabe
- solange leer, bis Sie wissen, was Sie tun.
+ <p><span class="emphasis"><em>Benutzer-ID</em></span>: Hier k&ouml;nnen Sie eine Benutzer-ID
+ (Benutzeridentifikation) f&uuml;r jeden Benutzer setzen, den Sie am Bildschirm
+ zuvor hinzugef&uuml;gt haben. Diese ID ist eine Zahl. Falls Sie sich nicht sicher
+ sind, welchen Zweck die Benutzer-ID erf&uuml;llt, lassen Sie das Feld leer.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Gruppen-ID</span>: Dies erm&ouml;glicht Ihnen das Setzen einer
- Gruppen-ID. Ebenfalls eine Zahl, normalerweise die gleiche Zahl wie f&uuml;r den
- Benutzer. Lassen Sie diese Eingabe solange leer, bis Sie wissen was Sie tun.
+ <p><span class="emphasis"><em>Gruppen-ID</em></span>: Hier k&ouml;nnen sie die Gruppen-ID setzen. Auch
+ hier gilt, lassen sie die Eingabe leer, wenn Sie sich nicht sicher sind.
</p>
</li>
diff --git a/de/add_supplemental_media.html b/de/add_supplemental_media.html
index e102eb1..70d0be5 100644
--- a/de/add_supplemental_media.html
+++ b/de/add_supplemental_media.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Medienauswahl (konfigurieren von zus&auml;tzlichen Installationsmedien)</title>
+ <title>Zus&auml;tzliche Installationsmedien</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="formatPartitions.html" title="Formatieren">
- <link rel="next" href="media_selection.html" title="Medienauswahl (Nonfree)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="media_selection.html" title="Verf&uuml;gbare Quellen"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Medienauswahl (konfigurieren von zus&auml;tzlichen Installationsmedien)">
+ <div lang="de" class="section" title="Zus&auml;tzliche Installationsmedien">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="add_supplemental_media"></a>Medienauswahl (konfigurieren von zus&auml;tzlichen Installationsmedien)
+ <h2 class="title"><a name="add_supplemental_media"></a>Zus&auml;tzliche Installationsmedien
</h2>
</div>
</div>
@@ -25,16 +25,22 @@
+
+
+
+
+
+
- <p>Dieser Bildschirm zeigt alle bereits erkannten Medien. Sie k&ouml;nnen andere
- Quellen f&uuml;r das Runterladen von Paketen ausw&auml;hlen, wie optische Laufwerke
- oder Netzwerkquellen. Die Quellenauswahl bestimmt, welche Pakete w&auml;hrend der
- n&auml;chsten Schritte zur Verf&uuml;gung stehen.
+ <p>Dieser Bildschirm zeigt eine Liste aller bereits erkannten Repositorys. Sie
+ k&ouml;nnen andere Quellen f&uuml;r das herunterladen von Paketen ausw&auml;hlen, wie
+ optische Laufwerke oder Netzwerkquellen. Die Quellenauswahl bestimmt, welche
+ Pakete w&auml;hrend der n&auml;chsten Schritte zur Verf&uuml;gung stehen.
</p>
@@ -46,15 +52,16 @@
<li class="listitem">
<p>Ausw&auml;hlen und Aktivieren der Netzwerkverbindung, falls sie noch nicht
- hergestellt ist
+ hergestellt ist.
</p>
</li>
<li class="listitem">
- <p>Ausw&auml;hlen eines Servers oder die URL angeben (der allerste Eintrag). Durch
- die Auswahl eines Servers haben Sie die Auswahl aller verf&uuml;gbaren Quellen,
- die Mageia anbietet, wie 'nonfree', 'tainted' und 'updates'. Durch die URL
+ <p>Ausw&auml;hlen eines Spiegelservers oder die URL angeben (der erste
+ Eintrag). Durch die Auswahl eines Servers haben Sie die Auswahl aller
+ verf&uuml;gbaren Quellen, die Mageia anbietet, wie <span class="emphasis"><em>Nonfree</em></span>,
+ <span class="emphasis"><em>Tainted</em></span> und <span class="emphasis"><em>Updates</em></span>. Durch die URL
k&ouml;nnen Sie eine bestimmte Quelle oder ihre eigene NFS Installation
ausw&auml;hlen.
</p>
@@ -63,7 +70,7 @@
</ol>
</div>
-
+
<div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
@@ -72,22 +79,22 @@
</tr>
<tr>
<td align="left" valign="top">
-
+
<p>Falls Sie eine 64-Bit Installation aktualisieren welche wom&ouml;glich einige
32-Bit Pakete enth&auml;lt, wird empfohlen in diesem Bildschirm die
- Online-Spiegelserver durch dr&uuml;cken einer der Netzwerkprotokolle
- hinzuzuf&uuml;gen. Die 64-Bit DVD ISO enth&auml;lt nur 64-Bit und noarch Pakete und
- wird 32-Bit Pakete nicht aktualisieren k&ouml;nnen. Nachdem ein
- Online-Spiegelserver hinzugef&uuml;gt wurde wird der Installer die ben&ouml;tigten
- 32-Bit Pakete finden und aktualisieren.
+ Online-Spiegelserver durch ausw&auml;hlen einer der Netzwerkprotokolle
+ hinzuzuf&uuml;gen. Die 64-Bit DVD ISO enth&auml;lt nur 64-Bit und
+ <span class="emphasis"><em>noarch</em></span> Pakete und wird 32-Bit Pakete nicht
+ aktualisieren k&ouml;nnen. Nachdem ein Online-Spiegelserver hinzugef&uuml;gt wurde,
+ wird das Installationsprogramm die ben&ouml;tigten 32-Bit Pakete finden und
+ aktualisieren.
</p>
-
+
</td>
</tr>
</table>
</div>
-
</div>
</body>
</html>
diff --git a/de/ask_mntpoint_s.html b/de/ask_mntpoint_s.html
index 3ace33e..85ffc8c 100644
--- a/de/ask_mntpoint_s.html
+++ b/de/ask_mntpoint_s.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="doPartitionDisks.html" title="Partitionierung">
+ <link rel="prev" href="doPartitionDisks.html" title="Vorgeschlagene Partitionierung">
<link rel="next" href="takeOverHdConfirm.html" title="Best&auml;tigen, dass die Festplatte formatiert wird"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -23,71 +23,58 @@
</div>
</div>
-
+
+
+
+
+
+
+
+
+
+
-
+
+
+
<p>Hier k&ouml;nnen Sie die erkannten Linux-Partitionen auf Ihrem Computer
- sehen. Falls Sie mit dem Vorschlag von <span class="application">DrakX</span>
- nicht zufrieden sind, k&ouml;nnen Sie die Einh&auml;ngepunkte &auml;ndern.
+ sehen. Falls Sie mit dem Vorschlag von DrakX nicht zufrieden sind, k&ouml;nnen
+ Sie die Einh&auml;ngepunkte &auml;ndern.
</p>
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Falls Sie etwas &auml;ndern, stellen Sie sicher, dass Sie noch eine
- <code class="literal">/</code> (root)-Partition haben.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Jede Partition wird wie folgt angezeigt: "Ger&auml;t" ("Kapazit&auml;t",
- "Einh&auml;ngepunkt", "Typ").
- </p>
-
- </li>
- <li class="listitem">
-
- <p>"Ger&auml;t", ist gegliedert in: "Festplatte", ["Festplattennummer"(Zahl)],
- "Partitionsnummer" (z.B. "sda5").
+ <p>Auf der linken Seite des Drop-Down Men&uuml;s befindet sich eine Liste an
+ verf&uuml;gbaren Partitionen. Als Beispiel: <code class="filename">sda</code> ist die
+ Festplatte - und <code class="filename">5</code> ist eine
+ <span class="emphasis"><em>Partitionsnummer</em></span>, gefolgt von der <span class="emphasis"><em>(Kapazit&auml;t,
+ Einh&auml;ngepunkt, Dateisystem)</em></span> der Partition.
</p>
</li>
<li class="listitem">
<p>Falls Sie viele Partitionen angelegt haben, k&ouml;nnen Sie verschiedene
- Einh&auml;ngepunkte aus dem Ausklappmen&uuml; ausw&auml;hlen, wie z.B.
- <code class="literal">/</code>, <code class="literal">/home</code> und
- <code class="literal">/var</code>. Sie k&ouml;nnen sogar eigene Einh&auml;ngepunkte erstellen,
- wie z.B. <code class="literal">/video</code> f&uuml;r Ihre Filme, oder
- <code class="literal">/cauldron-home</code> f&uuml;r die <code class="literal">/home</code> Partition
- einer Cauldron-Installation.
+ <span class="emphasis"><em>Einh&auml;ngepunkte</em></span> aus dem Dropdown-Men&uuml; ausw&auml;hlen, wie
+ z. B. <code class="filename">/</code>, <code class="filename">/home</code> und
+ <code class="filename">/var</code>. Sie k&ouml;nnen sogar eigene Einh&auml;ngepunkte erstellen,
+ wie z. B. <code class="filename">/video</code> f&uuml;r eine Partition in der Sie Ihre
+ Filme abspeichern, oder <code class="filename">/Data</code> f&uuml;r all Ihre Daten.
</p>
</li>
@@ -111,10 +98,29 @@
<tr>
<td align="left" valign="top">
+ <p>Falls Sie hier etwas &auml;ndern, stellen Sie sicher, dass Sie weiterhin eine
+ <code class="filename">/</code> (root)-Partition haben.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="tip" title="Tipp" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tipp]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
<p>Falls Sie nicht sicher sind, was auszuw&auml;hlen ist, klicken Sie auf
- <span class="guibutton">Zur&uuml;ck</span> und danach auf <span class="guilabel">Benutzerdefinierte
- Partitionierung</span>. Auf dem folgenden Bildschirm markieren Sie eine
- Partition und schon k&ouml;nnen Sie deren Typ und Gr&ouml;&szlig;e sehen.
+ <span class="emphasis"><em>Zur&uuml;ck</em></span> und danach auf <span class="emphasis"><em>Benutzerdefinierte
+ Partitionierung</em></span>. Klicken Sie auf dem folgenden Bildschirm auf
+ eine Partition und Sie k&ouml;nnen deren Typ und Gr&ouml;&szlig;e sehen.
</p>
</td>
@@ -123,8 +129,8 @@
</div>
- <p>Wenn Sie sicher sind, dass die Einh&auml;ngepunkte passen, dann klicken Sie bitte
- auf <span class="guibutton">Weiter</span> und gebe an, ob nur die von DrakX
+ <p>Wenn Sie sicher sind, dass die Einh&auml;ngepunkte passen, dann klicken Sie auf
+ <span class="emphasis"><em>Weiter</em></span> und gebe an, ob nur die von DrakX
vorgeschlagenen Partitionen formatiert werden sollen oder noch weitere.
</p>
diff --git a/de/chooseDesktop.html b/de/chooseDesktop.html
index bafed03..6db200a 100644
--- a/de/chooseDesktop.html
+++ b/de/chooseDesktop.html
@@ -2,55 +2,77 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Desktopauswahl</title>
+ <title>Desktop-Auswahl</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="media_selection.html" title="Medienauswahl (Nonfree)">
+ <link rel="prev" href="media_selection.html" title="Verf&uuml;gbare Quellen">
<link rel="next" href="choosePackageGroups.html" title="Paketgruppenauswahl"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Desktopauswahl">
+ <div lang="de" class="section" title="Desktop-Auswahl">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="chooseDesktop"></a>Desktopauswahl
+ <h2 class="title"><a name="chooseDesktop"></a>Desktop-Auswahl
</h2>
</div>
</div>
</div>
+
+
+
+
+
- <p>Je nachdem, welche Auswahl Sie hier treffen, werden weitere Auswahlfenster
- angezeigt, um Ihre Installation individuell zu gestalten.
+
+
+
+
+ <p>Abh&auml;ngig von der getroffenen Auswahl werden weitere Bildschirme mit
+ entsprechenden Optionen angezeigt.
</p>
<p>Nach den Auswahlschritten wird w&auml;hrend der Paketinstallation eine
- Pr&auml;sentation angezeigt. Die Pr&auml;sentation kann durch Anklicken des
- <span class="guilabel">Details</span>-Knopfes beendet werden.
+ Pr&auml;sentation angezeigt. Die Pr&auml;sentation kann durch Anklicken des
+ <span class="emphasis"><em>Details</em></span>-Knopfes beendet werden.
</p>
- <p>W&auml;hlen Sie hier Ihre bevorzugte Desktop-Umgebung
- <span class="application">KDE</span> oder <span class="application">Gnome</span>. Beide
- bieten einen vollst&auml;ndigen Satz an n&uuml;tzlichen Programmen und
- Werkzeugen. Setzen Sie bei <span class="guilabel">"Benutzerdefiniert"</span> ein
- H&auml;kchen, falls Sie keine der vorgegebenen Konfigurationen, sondern eine
- eigene Zusammenstellung benutzen wollen. Der
- <span class="application">LXDE</span>-Desktop ben&ouml;tigt weniger Ressourcen als die
- beiden eben genannten, bietet daf&uuml;r aber weniger "Eye Candy" und es werden
- standardm&auml;&szlig;ig weniger Pakete installiert.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>W&auml;hlen Sie hier Ihre bevorzugte Desktop-Umgebung, KDE Plasma oder GNOME,
+ aus. Beide bringen eine Zusammenstellung an n&uuml;tzlichen Anwendungen und
+ Werkzeuge mit.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>W&auml;hle <span class="emphasis"><em>Benutzerdefiniert</em></span>, falls Sie keine der
+ vorgegebenen verwenden m&ouml;chten (oder eventuell beide), oder wenn Sie die
+ voreingestellte Softwareauswahl f&uuml;r diese Desktop-Umgebungen &auml;ndern
+ m&ouml;chten. Zum Beispiel ben&ouml;tigt der LXDE-Desktop weniger Ressourcen als die
+ beiden eben genannten, bietet daf&uuml;r aber weniger "Eye Candy" und es werden
+ standardm&auml;&szlig;ig weniger Pakete installiert.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/de/choosePackageGroups.html b/de/choosePackageGroups.html
index 97f0ac0..a696ff5 100644
--- a/de/choosePackageGroups.html
+++ b/de/choosePackageGroups.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="chooseDesktop.html" title="Desktopauswahl">
+ <link rel="prev" href="chooseDesktop.html" title="Desktop-Auswahl">
<link rel="next" href="minimal-install.html" title="Minimale Installation"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -29,9 +29,11 @@
+
+
<p>Um die Paketauswahl zu erleichtern, wurden Programmpakete in Gruppen
- sortiert. Die Gruppen sind gr&ouml;&szlig;tenteils selbsterkl&auml;rend. Falls Sie aber
- doch weitere Informationen zu dem Inhalt w&uuml;nschen, brauchen Sie nur die
+ sortiert. Die Gruppen sind gr&ouml;&szlig;tenteils selbsterkl&auml;rend. Falls Sie aber doch
+ weitere Informationen zu dem Inhalt w&uuml;nschen, brauchen Sie nur die
Minihilfen aufrufen. Sie tun das, indem Sie mit der Maus einfach &uuml;ber die
Gruppen fahren.
</p>
@@ -41,23 +43,23 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Workstation</p>
+ <p><span class="bold"><strong>Arbeitsrechner</strong></span></p>
</li>
<li class="listitem">
- <p>Server</p>
+ <p><span class="bold"><strong>Server</strong></span></p>
</li>
<li class="listitem">
- <p>Grafische Umgebung</p>
+ <p><span class="bold"><strong>Grafische-Umgebung</strong></span></p>
</li>
<li class="listitem">
- <p>Individuelle Paketauswahl: Um h&auml;ndisch Pakete hinzuzuf&uuml;gen oder entfernen zu
- k&ouml;nnen, w&auml;hlen Sie bitte diese Option.
+ <p><span class="bold"><strong>Individuelle Paketauswahl</strong></span>: Um h&auml;ndisch
+ Pakete hinzuzuf&uuml;gen oder entfernen zu k&ouml;nnen, w&auml;hlen Sie bitte diese Option.
</p>
</li>
@@ -65,7 +67,7 @@
</div>
- <p>Lese <a class="xref" href="minimal-install.html" title="Minimale Installation">&#8222;Minimale Installation&#8220;</a> f&uuml;r eine Anleitung, wie man eine
+ <p>Siehe <a class="xref" href="minimal-install.html" title="Minimale Installation">Minimal Install</a> f&uuml;r eine Anleitung, wie man eine
minimale Installation durchf&uuml;hrt (ohne oder mit X &amp; IceWM).
</p>
diff --git a/de/choosePackagesTree.html b/de/choosePackagesTree.html
index c92539f..e6432f2 100644
--- a/de/choosePackagesTree.html
+++ b/de/choosePackagesTree.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="minimal-install.html" title="Minimale Installation">
- <link rel="next" href="addUser.html" title="Verwaltung des Benutzers und des Superusers"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="addUser.html" title="Benutzerverwaltung"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,28 +22,31 @@
</div>
</div>
</div>
+
-
+
-
+
+
+
-
+
<p>Hier k&ouml;nnen Sie weitere Pakete aus- oder abw&auml;hlen, um Ihre Installation
anzupassen.
</p>
-
+
<p>Nachdem Sie Ihre Wahl getroffen haben, k&ouml;nnen Sie auf das
- <span class="guibutton">Diskettensymbol</span> am unteren Ende der Seite klicken, um
- die Paketauswahl zu speichern. Ebenso funktioniert das Speichern auf einen
- USB-Stick. In diesem Fall k&ouml;nnen Sie diese Paketauswahl nutzen, um die
- gleichen Pakete auf einem anderen System zu installieren. Sie k&ouml;nnen dies
- tun, indem Sie bei der Installation den selben Knopf anklicken und dann
- diese gesicherte Auswahldatei laden.
+ <span class="emphasis"><em>Disketten</em></span>symbol am unteren Ende der Seite klicken, um
+ die Paketauswahl zu speichern (das speichern auf einem USB-Stick
+ funktioniert auch). Sie k&ouml;nnen diese Datei danach dazu verwenden, um die
+ gleichen Pakete auf einem anderen System zu installieren, indem Sie bei der
+ Installation den selben Knopf dr&uuml;cken und dann die gesicherte Auswahldatei
+ laden.
</p>
-
+
</div>
</body>
</html>
diff --git a/de/configureServices.html b/de/configureServices.html
index 74e9ad6..8bea342 100644
--- a/de/configureServices.html
+++ b/de/configureServices.html
@@ -22,41 +22,47 @@
</div>
</div>
</div>
+
+
-
-
-
-
-
+
+
+
+
-
+
<p><a name="configureServices-pa1"></a>Hier k&ouml;nnen Sie einstellen, welche Dienste ausgef&uuml;hrt (oder auch nicht
ausgef&uuml;hrt) werden sollen, nachdem Ihr System gestartet wurde.
</p>
-
- <p><a name="configureServices-pa2"></a>Sie finden hier vier Gruppen. Klicken Sie auf das Dreieck vor einer Gruppe,
- um alle Dienste zu sehen, die von dieser Gruppe bereitgestellt werden.
- </p>
-
-
- <p><a name="configureServices-pa3"></a>Normalerweise w&auml;hlt <span class="bold"><strong>DrakX</strong></span> passende
- Einstellungen.
- </p>
-
-
- <p><a name="configureServices-pa4"></a>Wenn Sie einen Dienst markieren, werden in einer darunter sichtbaren Infobox
- einige Informationen zu diesem Dienst angezeigt.
- </p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureServices-pa2"></a>Klicke auf ein Dreieck, um eine Gruppe mit allen relevanten Dienste
+ aufzuschl&uuml;sseln. Die Einstellungen die DrakX ausw&auml;hlt sind in der Regel gut.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="configureServices-pa4"></a>Wenn Sie einen Dienst markieren, werden in einer darunter sichtbaren Infobox
+ einige Informationen zu diesem Dienst angezeigt.
+ </p>
+
+ </li>
+ </ul>
+ </div>
-
+
<p><a name="configureServices-pa5"></a>&Auml;ndern Sie diese Einstellungen nur dann, wenn Sie genau wissen, was Sie tun.
</p>
-
+
</div>
</body>
</html>
diff --git a/de/configureTimezoneUTC.html b/de/configureTimezoneUTC.html
index ac83d0f..3b787df 100644
--- a/de/configureTimezoneUTC.html
+++ b/de/configureTimezoneUTC.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="misc-params.html" title="Zusammenfassung von verschiedenen Parameter">
+ <link rel="prev" href="misc-params.html" title="Zusammenfassung der Konfiguration">
<link rel="next" href="selectCountry.html" title="W&auml;hlen des Landes / der Region"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -31,13 +31,25 @@
- <p><a name="configureTimezoneUTC-pa1"></a>W&auml;hlen Sie die von Ihnen gew&uuml;nschte Zeitzone, indem Sie ihr Land oder eine
- Stadt in Ihrer N&auml;he aus der gleichen Zeitzone w&auml;hlen.
- </p>
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureTimezoneUTC-pa1"></a>W&auml;hlen Sie die von Ihnen gew&uuml;nschte Zeitzone, indem Sie ihr Land oder eine
+ Stadt in Ihrer N&auml;he aus der gleichen Zeitzone w&auml;hlen.
+ </p>
+
+ </li>
+ </ul>
+ </div>
<p><a name="configureTimezoneUTC-pa2"></a>Im n&auml;chsten Bildschirm k&ouml;nnen Sie w&auml;hlen, ob ihre Hardware-Uhr auf lokale
- Zeit oder auf GMT, auch als UTC bekannt, gesetzt wird.
+ Zeit oder auf GMT, auch als UTC bekannt, gesetzt ist.
</p>
diff --git a/de/configureX_card_list.html b/de/configureX_card_list.html
index 9ab1e02..b4793c3 100644
--- a/de/configureX_card_list.html
+++ b/de/configureX_card_list.html
@@ -29,7 +29,13 @@
+
+
+
+
+
+
@@ -40,9 +46,9 @@
</p>
- <p>Falls der Installer Ihre Grafikkarte nicht korrekt erkannt hat und Sie nicht
- wissen, welche Sie haben, k&ouml;nnen Sie sie folgenderma&szlig;en aus dem Baum
- ausw&auml;hlen:
+ <p>Falls das Installationsprogramm Ihre Grafikkarte nicht korrekt erkannt hat
+ und Sie nicht wissen, welche Sie haben, k&ouml;nnen Sie sie folgenderma&szlig;en aus
+ dem Baum ausw&auml;hlen:
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
@@ -53,46 +59,54 @@
</li>
<li class="listitem">
- <p>Der Name der Karte</p>
+ <p>dann die Marke Ihrer Karte</p>
</li>
<li class="listitem">
- <p>Der Typ der Karte</p>
+ <p>und das Modell der Karte</p>
</li>
</ul>
</div>
- <p>Falls Sie Ihre Karte nicht in der Herstellerliste finden, weil sie sich
- nicht in der Datenbank befindet oder weil es sich um eine &auml;ltere Karte
- handelt, k&ouml;nnten Sie einen passenden Treiber in Xorg finden.
- </p>
-
-
- <p>Die Xorg-Liste enth&auml;lt mehr als 40 generische und quelloffene Treiber f&uuml;r
- Grafikkarten. Falls Sie noch immer keinen passenden Treiber f&uuml;r Ihre Karte
- finden, k&ouml;nnen Sie den VESA-Treiber verwenden, welcher grundlegende
- Funktionalit&auml;t bietet.
+ <p>Wenn Ihre Karte nicht in der Herstellerliste vorhanden ist (weil sie noch
+ nicht in der Datenbank vorhanden ist oder es eine &auml;ltere Karte ist), finden
+ Sie gegebenenfalls einen geeigneten Treiber in der <span class="emphasis"><em>Xorg</em></span>
+ Kategorie, welche mehr als 40 generische und Open-Source-Grafikkartentreiber
+ zur Verf&uuml;gung stellt. Falls Sie weiterhin keinen spezifischen Treiber f&uuml;r
+ Ihre Karte finden k&ouml;nnen, gibt es die M&ouml;glichkeit den VESA-Treiber zu
+ verwenden, welcher grundlegende Eigenschaften besitzt.
</p>
- <p>Denken Sie daran, dass es durch Auswahl eines inkompatiblen Treibers
- passieren kann, dass Sie lediglich Zugriff auf eine
- Befehlszeilenschnittstelle erhalten.
- </p>
+ <div class="caution" title="Achtung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Achtung]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Denken Sie daran, dass es durch Auswahl eines inkompatiblen Treibers
+ passieren kann, dass Sie lediglich Zugriff auf eine
+ <span class="emphasis"><em>Befehlszeilenschnittstelle</em></span> erhalten.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<p>Einige Grafikkartenhersteller bieten propriet&auml;re Treiber f&uuml;r Linux an,
- welche nur in den "Nonfree"-Paketquellen oder in einigen F&auml;llen nur &uuml;ber die
- Webseite des Herstellers erh&auml;ltlich sind.
- </p>
-
-
- <p>Die "Nonfree"-Paketquellen m&uuml;ssen ausdr&uuml;cklich aktiviert werden. Falls Sie
- dies zuvor nicht gemacht haben, sollten Sie dies nach dem ersten Neustart
- tun.
+ welche nur in den <span class="emphasis"><em>Nonfree</em></span>-Paketquellen oder in einigen
+ F&auml;llen nur &uuml;ber die Webseite des Herstellers erh&auml;ltlich sind. Die
+ <span class="emphasis"><em>Nonfree</em></span>-Paketquellen m&uuml;ssen extra aktiviert werden, um
+ auf diesen zugreifen zu k&ouml;nnen. Falls Sie diese noch nicht aktiviert haben
+ sollten Sie dies nach Ihrem ersten Systemstart tun.
</p>
</div>
diff --git a/de/configureX_chooser.html b/de/configureX_chooser.html
index 0b900c6..963d182 100644
--- a/de/configureX_chooser.html
+++ b/de/configureX_chooser.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="addUser.html" title="Verwaltung des Benutzers und des Superusers">
+ <link rel="prev" href="addUser.html" title="Benutzerverwaltung">
<link rel="next" href="configureX_card_list.html" title="Einen X-Server ausw&auml;hlen (Ihre Grafikkarte einrichten)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,13 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
@@ -30,16 +37,17 @@
- <p><a name="configureX_chooser-pa1"></a>Egal, welche grafische Umgebung (auch als Desktop bekannt) Sie f&uuml;r die
- Installation von <span class="application">Mageia</span> w&auml;hlen, diese basieren
- alle auf der grafischen Benutzerschnittstelle namens
- <acronym class="acronym">X-Window-System</acronym>, oder vereinfacht
- <acronym class="acronym">X</acronym>. Um in Folge <acronym class="acronym">KDE</acronym>,
- <acronym class="acronym">Gnome</acronym>, <acronym class="acronym">LXDE</acronym> oder eine andere grafische
- Umgebung zum Laufen zu bringen, m&uuml;ssen die nachfolgenden Einstellungen von
- <acronym class="acronym">X</acronym> korrekt sein. W&auml;hlen Sie die korrekten Einstellungen,
- wenn Sie entdecken, dass <span class="application">DrakX</span> keine Auswahl
- trifft, oder wenn Sie glauben, dass die Auswahl nicht korrekt ist.
+ <p><a name="configureX_chooser-pa1"></a>Egal, welche grafische Umgebung (auch als Desktop-Umgebung bekannt) Sie f&uuml;r
+ die Installation von Mageia w&auml;hlen, diese basieren alle auf der grafischen
+ Benutzerschnittstelle namens <code class="literal">X-Window-System</code>, oder
+ vereinfacht <span class="quote">&#8222;<span class="quote">X</span>&#8220;</span>. Damit KDE Plasma, GNOME, LXDE oder eine andere
+ grafische Umgebung funktioniert, m&uuml;ssen die Einstellungen von
+ <span class="quote">&#8222;<span class="quote">X</span>&#8220;</span> korrekt sein.
+ </p>
+
+
+ <p>W&auml;hle die entsprechenden Einstellungen manuell aus, wenn Sie denken, dass
+ die Details nicht richtig sind oder wenn keine angezeigt werden.
</p>
@@ -47,72 +55,89 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="configureX_chooser-pa2"></a><span class="emphasis"><em><span class="guibutton">Grafikkarte</span></em></span>: W&auml;hlen Sie Ihre
- Karte aus der Liste, wenn n&ouml;tig.
+ <p><a name="configureX_chooser-pa2"></a><span class="bold"><strong>Grafikkarte</strong></span></p>
+
+
+ <p>Falls n&ouml;tig, k&ouml;nnen Sie Ihre spezifische Karte aus einer erweiterten Liste
+ ausw&auml;hlen. Siehe <a class="xref" href="configureX_card_list.html" title="Einen X-Server ausw&auml;hlen (Ihre Grafikkarte einrichten)">&#8222;Einen X-Server ausw&auml;hlen (Ihre Grafikkarte einrichten)&#8220;</a>.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa3"></a><span class="emphasis"><em><span class="guibutton">Bildschirm</span></em></span>: Sie k&ouml;nnen
- <span class="guilabel">Plug'n Play</span> w&auml;hlen, falls verf&uuml;gbar, oder Ihren
- Bildschirm aus einer der beiden Listen (<span class="guilabel">Hersteller</span> oder
- <span class="guilabel">Generisch</span>) w&auml;hlen. W&auml;hlen Sie
- <span class="guilabel">Benutzerdefiniert</span> wenn Sie es bevorzugen, die
- horizontale und vertikale Wiederholfrequenz Ihres Bildschirms manuell
- einzustellen.
- </p>
+ <p><a name="configureX_chooser-pa3"></a><span class="bold"><strong>Monitor</strong></span></p>
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="configureX_chooser-pa3a"></a>Falsche Wiederholfrequenzen k&ouml;nnen Ihren Bildschirm besch&auml;digen
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+ <p>Sie k&ouml;nnen Plug'n Play w&auml;hlen, falls verf&uuml;gbar, oder Ihren Bildschirm aus
+ einer der Liste <span class="emphasis"><em>Hersteller</em></span> oder
+ <span class="emphasis"><em>Generisch</em></span> w&auml;hlen. W&auml;hlen Sie
+ <span class="emphasis"><em>Benutzerdefiniert</em></span> wenn Sie es bevorzugen, die
+ horizontale und vertikale Wiederholfrequenz Ihres Bildschirms manuell
+ einzustellen. Siehe <a class="xref" href="configureX_monitor.html" title="Auswahl des Monitors">&#8222;Auswahl des Monitors&#8220;</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa4"></a><span class="emphasis"><em><span class="guibutton">Aufl&ouml;sung</span></em></span>: Legen Sie hier die
- entsprechende Aufl&ouml;sung und Farbtiefe f&uuml;r Ihren Bildschirm fest.
+ <p><a name="configureX_chooser-pa4"></a><span class="bold"><strong>Aufl&ouml;sung</strong></span></p>
+
+
+ <p>Legen Sie hier die entsprechende Aufl&ouml;sung und Farbtiefe f&uuml;r Ihren
+ Bildschirm fest
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa5"></a><span class="emphasis"><em><span class="guibutton">Test</span></em></span>: Der Test-Knopf ist w&auml;hrend
- der Installation nicht immer sichtbar. Ist der Knopf sichtbar, so k&ouml;nnen Sie
- Ihre Einstellungen &uuml;berpr&uuml;fen, indem Sie diesen Knopf bet&auml;tigen. Wenn eine
- Frage angezeigt wird, ob Ihre Einstellungen korrekt sind, so antworten Sie
- mit "Ja" und die Einstellungen werden &uuml;bernommen. Wenn Sie aber nichts
- sehen, so kehren Sie nach kurzer Zeit zum Konfigurationsbildschirm zur&uuml;ck
- und erhalten die M&ouml;glichkeit, alle Einstellungen zu &auml;ndern, bis der Test
- zufriedenstellend verl&auml;uft. <span class="emphasis"><em>Vergewissern Sie sich, dass Sie sich
- mit den get&auml;tigten Einstellungen nicht au&szlig;erhalb der Grenzwerte Ihres
- Bildschirms befinden, wenn der Knopf nicht verf&uuml;gbar ist.</em></span></p>
+ <p><a name="configureX_chooser-pa5"></a><span class="bold"><strong>Test</strong></span></p>
+
+
+ <p>Der Test-Knopf erscheint nicht immer w&auml;hrend der Installation. Ist der Knopf
+ sichtbar und Sie testen Ihre Einstellungen, werden Sie daraufhin
+ aufgefordert zu best&auml;tigen, dass die Einstellungen korrekt sind. Wenn Sie
+ mit <span class="emphasis"><em>Ja</em></span> antworten, werden die Einstellungen werden
+ &uuml;bernommen. Wenn Sie aber nichts sehen, so kehren Sie nach kurzer Zeit zum
+ Konfigurationsbildschirm zur&uuml;ck und erhalten die M&ouml;glichkeit, alle
+ Einstellungen erneut zu &auml;ndern, bis der Test zufriedenstellend
+ verl&auml;uft. Falls der Test-Knopf nicht verf&uuml;gbar ist, vergewissern Sie sich,
+ dass Sie sich mit den get&auml;tigten Einstellungen nicht au&szlig;erhalb der
+ Grenzwerte Ihres Bildschirms befinden.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa6"></a><span class="emphasis"><em><span class="guibutton">Optionen</span></em></span>: Hier k&ouml;nnen Sie
- verschiedene Optionen aktivieren oder deaktivieren.
- </p>
+ <p><a name="configureX_chooser-pa6"></a><span class="bold"><strong>Optionen</strong></span></p>
+
+
+ <p>Hier k&ouml;nnen Sie verschiedene Optionen aktivieren oder deaktivieren.</p>
</li>
</ul>
</div>
+
+ <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="configureX_chooser-pa3a"></a>Es besteht die Gefahr den Monitor zu besch&auml;digen, wenn Sie eine
+ Bildwiederholrate au&szlig;erhalb des Bereichs ausw&auml;hlen, die Ihr Monitor
+ unterst&uuml;tzt. Dies betrifft &auml;ltere CRT Displays: moderne Monitore werden eine
+ nicht unterst&uuml;tzte Frequenz nicht &uuml;bernehmen und in diesem Fall in den
+ Standby-Modus wechseln.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</div>
</body>
</html>
diff --git a/de/configureX_monitor.html b/de/configureX_monitor.html
index 9eaf53b..eccabab 100644
--- a/de/configureX_monitor.html
+++ b/de/configureX_monitor.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="configureX_card_list.html" title="Einen X-Server ausw&auml;hlen (Ihre Grafikkarte einrichten)">
- <link rel="next" href="setupBootloader.html" title="Hauptoptionen des Bootloaders"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="setupBootloader.html" title="Bootloader"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -33,6 +33,10 @@
+
+
+
+
<p><a name="configureX_monitor-pa1"></a>DrakX besitzt eine umfassende Datenbank von Monitoren und erkennt
normalerweise ihren Monitor korrekt.
</p>
@@ -47,10 +51,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="configureX_monitor-pa1w"></a><span class="emphasis"><em> Die Auswahl eines Monitors mit falschen Charakteristika kann
- Ihren Monitor oder Ihre Grafikkarte besch&auml;digen. Bitte stellen Sie sicher,
- dass Sie genau wissen, was Sie tun.</em></span> Im Zweifel schauen Sie doch
- bitte in die Dokumentation des Monitors
+ <p><a name="configureX_monitor-pa1w"></a><span class="bold"><strong>Die Auswahl eines Monitors mit falschen
+ Charakteristika kann Ihren Monitor oder Ihre Grafikkarte besch&auml;digen. Bitte
+ stellen Sie sicher, dass Sie genau wissen, was Sie tun.</strong></span> Im
+ Zweifel schauen Sie doch bitte in die Dokumentation des Monitors
</p>
</td>
@@ -61,69 +65,79 @@
- <p><a name="configureX_monitor-pa2"></a><span class="emphasis"><em>Benutzerdefiniert</em></span></p>
-
-
- <p><a name="configureX_monitor-pa3"></a>Die Einstellung erlaubt es Ihnen zwei kritische Einstellungen, die vertikale
- Wiederholraten und horizontalen Synchronisationsfrequenzen,
- einzustellen. Die vertikale Wiederholrate bestimmt, wie oft das Bild neu
- aufgebaut wird und die horizontalen Synchronisationsfrequenz legt die Rate
- fest, wieviele Scanlinien dargestellt werden.
- </p>
-
-
- <p><a name="configureX_monitor-pa4"></a>Es ist <span class="emphasis"><em>SEHR WICHTIG</em></span>, dass Sie keinen Monitor ausw&auml;hlen,
- dessen Wiederholrate h&ouml;her als die Ihres Monitors liegt: dies kann zu
- Sch&auml;den an ihrem Monitor f&uuml;hren. W&auml;hlen Sie im Zweifel lieber eine
- niedrigere Einstellung und schauen Sie in die Dokumentation ihres Monitors.
- </p>
-
-
- <p><a name="configureX_monitor-pa5"></a><span class="emphasis"><em>Plug 'n Play</em></span></p>
-
-
- <p><a name="configureX_monitor-pa6"></a>Dies ist die Standardeinstellung und es wird versucht den Monitor anhand der
- Datenbank zu bestimmen
- </p>
-
-
- <p><a name="configureX_monitor-pa7"></a><span class="emphasis"><em>Hersteller</em></span></p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa2"></a>Benutzerdefiniert</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa3"></a>Die Einstellung erlaubt es Ihnen zwei kritische Einstellungen einzustellen:
+ Die vertikale Wiederholraten und horizontalen
+ Synchronisationsfrequenzen. Die vertikale Wiederholrate bestimmt, wie oft
+ das Bild neu aufgebaut wird und die horizontalen Synchronisationsfrequenz
+ legt die Rate fest, wie viele Scanlinien dargestellt werden.
+ </p>
+
+
+ <p><a name="configureX_monitor-pa4"></a>Es ist <span class="emphasis"><em>SEHR WICHTIG</em></span>, dass Sie keinen Monitor ausw&auml;hlen,
+ dessen Wiederholrate h&ouml;her als die Ihres Monitors liegt: dies kann zu
+ Sch&auml;den an ihrem Monitor f&uuml;hren. W&auml;hlen Sie im Zweifel lieber eine
+ niedrigere Einstellung und schauen Sie in die Dokumentation ihres Monitors.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa5"></a>Plug'n'Play</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa6"></a>Dies ist die Standardeinstellung und es wird versucht den Monitor anhand der
+ Monitor-Datenbank zu bestimmen.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa7"></a>Hersteller</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa8"></a>Falls das Installationsprogramm Ihren Monitor nicht korrekt erkannt hat und
+ Sie wissen, um welchen Monitor es sich handelt, k&ouml;nnen Sie den Monitor
+ anhand folgender Optionen ausw&auml;hlen:
+ </p>
+
+ </dd>
+ </dl>
+ </div>
- <p><a name="configureX_monitor-pa8"></a>Falls das Installationsprogramm Ihren Monitor nicht korrekt erkannt hat und
- Sie wissen, um welchen Monitor es sich handelt, k&ouml;nnen Sie den Monitor
- anhand folgender Optionen ausw&auml;hlen:
- </p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>Hersteller</p>
-
- </li>
- <li class="listitem">
-
- <p>Monitorbezeichnung</p>
+ <p>Hersteller</p>
+
</li>
<li class="listitem">
-
- <p>Monitorbeschreibung</p>
+ <p>Monitor-Modell</p>
+
</li>
</ul>
</div>
- <p><a name="configureX_monitor-pa9"></a><span class="emphasis"><em>Generisch</em></span></p>
-
-
- <p><a name="configureX_monitor-pa10"></a>Die Auswahl dieser Gruppe zeigt rund 30 Anzeigeneinstellungen wie 1024x768 @
- 60Hz und beinhaltet auch Flachbildschirme, die in Laptops verbaut sind. Die
- Auswahl dieser Gruppe ist ausreichend, wenn Sie den Vesa Grafikkartentreiber
- benutzen m&uuml;ssen, sollte Ihre Grafikkarte nicht automatisch erkannt
- werden. Nochmal: es ist besser eher zu niedrige Einstellungen zu w&auml;hlen.
- </p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa9"></a>Generisch</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa10"></a>Die Auswahl dieser Gruppe listet rund 30 Anzeigeneinstellungen auf, darunter
+ 1024x768 @ 60Hz und beinhaltet auch Flachbildschirme, die in Laptops verbaut
+ sind. Die Auswahl dieser Gruppe ist ausreichend, wenn Sie den VESA
+ Grafikkartentreiber benutzen m&uuml;ssen, sollte Ihre Grafikkarte nicht
+ automatisch erkannt werden. Hier ist es ratsam vorsichtig mit Ihrer Auswahl
+ zu sein.
+ </p>
+
+ </dd>
+ </dl>
+ </div>
</div>
</body>
diff --git a/de/diskdrake.html b/de/diskdrake.html
index a9e040c..5f9787e 100644
--- a/de/diskdrake.html
+++ b/de/diskdrake.html
@@ -23,102 +23,138 @@
</div>
</div>
+
+
+
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="diskdrake-pa1"></a>W&uuml;nschen Sie auf Ihrer / -Partition (Wurzelverzeichnis) eine
- Verschl&uuml;sselung, m&uuml;ssen Sie sicherstellen, dass Sie eine eigene
- <code class="literal">/boot</code>-Partition besitzen. Die Option Verschl&uuml;sselung f&uuml;r
- die <code class="literal">/boot</code>- Partition darf <span class="bold"><strong>NICHT</strong></span> gesetzt werden, da sonst das System nicht
- gebootet werden kann.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- <p><a name="diskdrake-pa3"></a>Passen Sie hier das Layout ihres Datentr&auml;ger an. Sie k&ouml;nnen Partitionen
- entfernen oder erstellen, das Dateisystem einer Partition &auml;ndern oder die
- Gr&ouml;&szlig;e &auml;ndern und sogar schauen, was sich in ihnen befindet, bevor Sie
- anfangen.
- </p>
-
- <p><a name="diskdrake-pa4"></a>Dies ist der Reiter f&uuml;r jedes entdeckte Laufwerk oder Speichermedium, wie
- einem USB-Stick. So z.B. <span class="emphasis"><em>sda</em></span>, <span class="emphasis"><em>sdb</em></span>
- und <span class="emphasis"><em>sdc</em></span>, wenn drei Laufwerke gefunden wurden.
- </p>
-
- <p><a name="diskdrake-pa5"></a>W&auml;hlen Sie <span class="guibutton">Alles l&ouml;schen</span>, um alle Partitionen des
- gew&auml;hlten Laufwerks zu l&ouml;schen.
- </p>
+
+
+
- <p><a name="diskdrake-pa6"></a>F&uuml;r alle anderen Aktivit&auml;ten: Klicken Sie zuerst auf die auszuw&auml;hlende
- Partition. Sie k&ouml;nnen sich diese dann entweder nur ansehen, oder ein
- Filesystem und einen Einh&auml;ngepunkt w&auml;hlen, die Gr&ouml;&szlig;e &auml;ndern oder die
- Partition l&ouml;schen. <span class="guibutton">Umschalten in den Experten Modus</span>
- (oder <span class="guibutton">Experten Modus</span>) bietet mehr M&ouml;glichkeiten an,
- beispielsweise eine Bezeichnung einzugeben oder einen Partitionstyp
- festzulegen.
- </p>
+
- <p><a name="diskdrake-pa6a"></a>Wiederholen Sie diesen Vorgang f&uuml;r alle Laufwerke, bis alle Einstellungen
- Ihren W&uuml;nschen entsprechen.
- </p>
+
- <p><a name="diskdrake-pa7"></a>Ist alles bereit, so klicken Sie auf <span class="guibutton">Fertig</span>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa3"></a>Passen Sie hier das Layout ihres Datentr&auml;ger an. Sie k&ouml;nnen Partitionen
+ entfernen oder erstellen, das Dateisystem oder die Gr&ouml;&szlig;e einer Partition
+ &auml;ndern und sogar die Details anzeigen lassen, bevor Sie anfangen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa4"></a>F&uuml;r jede erkannte Festplatte (oder anderen Datentr&auml;ger, wie einen USB-Stick)
+ gibt es im oberen Bereich einen Tab. In dem Screenshot oben sind zwei Ger&auml;te
+ verf&uuml;gbar: <code class="filename">sda</code> und <code class="filename">sdb</code>.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6"></a>F&uuml;r alle anderen Aktivit&auml;ten: Klicken Sie zuerst auf die auszuw&auml;hlende
+ Partition. Sie k&ouml;nnen sich diese dann entweder nur ansehen, oder ein
+ Dateisystem und einen Einh&auml;ngepunkt w&auml;hlen, die Gr&ouml;&szlig;e &auml;ndern oder die
+ Partition l&ouml;schen. Der <span class="emphasis"><em>Expertenmodus</em></span> bietet weitere
+ M&ouml;glichkeiten an, beispielsweise eine Bezeichnung (einen Namen) der
+ Partition zu geben oder einen Partitionstyp festzulegen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6a"></a>Wiederholen Sie diesen Vorgang f&uuml;r alle Laufwerke, bis alle Einstellungen
+ Ihren W&uuml;nschen entsprechen und klicke auf <span class="emphasis"><em>Fertig</em></span>,
+ sobald alles bereit sind.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Falls Sie Mageia auf einem UEFI System installieren, &uuml;berpr&uuml;fen Sie das eine
- ESP (EFI Systempartition) vorhanden und korrekt unter /boot/EFI eingebunden
- ist (siehe unten)
- </p>
-
- <p></p>
+ <div class="orderedlist">
+ <ol class="orderedlist" type="1">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa5"></a>Sei vorsichtig mit der <span class="emphasis"><em>Alles l&ouml;schen</em></span> Option. Nutze
+ diese nur wenn Sie sich sicher sind, dass alle Partitionen auf dem gew&auml;hlten
+ Laufwerk gel&ouml;scht werden sollen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa1"></a>W&uuml;nschen Sie auf Ihrer <code class="filename">/</code> -Partition eine
+ Verschl&uuml;sselung, m&uuml;ssen Sie sicherstellen, dass Sie eine eigene
+ <code class="filename">/boot</code> -Partition besitzen. Die Option Verschl&uuml;sselung
+ f&uuml;r die <code class="filename">/boot</code> -Partition darf NICHT gesetzt werden, da
+ sonst das System nicht gebootet werden kann.
+ </p>
+
+ </li>
+ </ol>
+ </div>
</td>
</tr>
</table>
</div>
+
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Wichtig]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Falls Sie Mageia auf einem Legacy/GPT System installieren, &uuml;berpr&uuml;fe, dass
- eine BIOS Bootpartition vorhanden ist und diese den richtigen Dateisystemtyp
- hat
- </p>
-
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Falls Sie Mageia auf einem UEFI-System installieren, &uuml;berpr&uuml;fen Sie, dass
+ eine ESP (EFI Systempartition) vorhanden und korrekt unter
+ <code class="filename">/boot/EFI</code> eingebunden ist. Siehe hierzu Abbildung 1.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Falls Sie Mageia auf einem Legacy/GPT System installieren, &uuml;berpr&uuml;fe, dass
+ eine BIOS Bootpartition vorhanden ist und diese den richtigen Dateisystemtyp
+ hat. Siehe Abbildung 2 unten.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</td>
</tr>
</table>
</div>
+
+
+
+
</div>
</body>
</html>
diff --git a/de/doPartitionDisks.html b/de/doPartitionDisks.html
index 4f04a43..1a24294 100644
--- a/de/doPartitionDisks.html
+++ b/de/doPartitionDisks.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Partitionierung</title>
+ <title>Vorgeschlagene Partitionierung</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
@@ -13,167 +13,240 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Partitionierung">
+ <div lang="de" class="section" title="Vorgeschlagene Partitionierung">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="doPartitionDisks"></a>Partitionierung
+ <h2 class="title"><a name="doPartitionDisks"></a>Vorgeschlagene Partitionierung
</h2>
</div>
</div>
</div>
+
+
+
+
+
+
+
+
+
+
+
+
+
<p><a name="doPartitionDisks-pa1"></a>Auf diesem Bildschirm k&ouml;nnen Sie Ihre Festplatte(n) sehen und die
Einteilung, die der DrakX Partitionierungswizard f&uuml;r die Installation von
- <span class="application">Mageia</span> vorschl&auml;gt.
+ Mageia vorschl&auml;gt.
</p>
+
- <p><a name="doPartitionDisks-pa2"></a>Die in der Liste verf&uuml;gbaren Optionen variieren abh&auml;ngig von Ihren verbauten
- Festplatte(n).
+ <p><a name="doPartitionDisks-pa2"></a>Die tats&auml;chlich verf&uuml;gbaren Optionen die unten angezeigt werden, variieren
+ anhand der Anordnung und des Inhalts Ihrer aktuellen Festplatte(n).
</p>
+
+
- <p><a name="doPartitionDisks-pa3"></a></p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Hauptoptionen">
+ <p class="title"><b>Hauptoptionen</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa4"></a>Verwende vorhandene Partitionen
- </p>
+
+ <p><a name="doPartitionDisks-pa4"></a><span class="bold"><strong>Bestehende Partitionen verwenden</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa5"></a>Wenn diese Option verf&uuml;gbar ist, dann wurden vorhandene Linux-kompatible
Partitionen gefunden und k&ouml;nnen f&uuml;r die Installation genutzt werden.
</p>
+
</li>
<li class="listitem">
- <p><a name="doPartitionDisks-pa6"></a>Nutze freien Speicherplatz
- </p>
+
+ <p><a name="doPartitionDisks-pa6"></a><span class="bold"><strong>Freien Speicherplatz verwenden</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa7"></a>Falls Sie nicht genutzten freien Speicherplatz auf Ihrer Festplatte haben,
dann wird diese Option diesen f&uuml;r die neue Mageia-Installation verwenden.
</p>
+
</li>
<li class="listitem">
- <p><a name="doPartitionDisks-pa8"></a>Nutze den freien Speicherplatz einer Windows Partition
- </p>
- <p><a name="doPartitionDisks-pa9"></a>Falls Sie nicht genutzen freien Speicherplatz auf einer bestehenden
- Windows-Partition verf&uuml;gbar haben, kann der Installer diesen zur Nutzung
- vorschlagen.
- </p>
- <p><a name="doPartitionDisks-pa10"></a>Dies kann ein sehr n&uuml;tzlicher Weg sein, um Platz f&uuml;r eine neue
- Mageia-Installation zu schaffen. Dies ist aber eine sehr riskante
- Aktion. Also sollten Sie sicherstellen, dass alle wichtigen Daten auf einem
- externen Datentr&auml;ger gesichert sind.
- </p>
- <p><a name="doPartitionDisks-pa11"></a>Beachten Sie bitte, dass f&uuml;r diese Option eine Verkleinerung der
- Windows-Partition durchgef&uuml;hrt werden muss. Die Partition muss zwingend
- "sauber" sein. Das bedeutet, dass Windows bei der letzten Nutzung korrekt
- heruntergefahren wurde. Zus&auml;tzlich muss die Partition defragmentiert worden
- sein, obwohl es keine Garantie gibt, dass alle Dateien der Partition aus dem
- zu nutzenden Teil verschoben wurden. Es ist also wirklich sehr zu empfehlen,
- die pers&ouml;nlichen Daten vor dem Vorgang zu sichern.
+
+ <p><a name="doPartitionDisks-pa8"></a><span class="bold"><strong>Den freien Speicherplatz auf der Windows Partition
+ verwenden</strong></span></p>
+
+
+ <p><a name="suggestedPartitioning-pa9"></a>Wenn Sie freien Speicherplatz auf einer bestehenden Windows-Partition haben,
+ wird Ihnen der Installer anbieten, diesen zu verwenden. Dies kann eine
+ n&uuml;tzliche M&ouml;glichkeit sein, um Platz f&uuml;r Ihre Mageia Installation zu
+ erhalten, jedoch ist dies auch risikoreich, weshalb Sie zuvor eine
+ Datensicherung Ihrer wichtigen Daten durchf&uuml;hren sollten!
</p>
+
+
<p>Bei dieser Option stellt das Installationsprogramm die verbleibende
Windows-Partition in einem hellen und die zuk&uuml;nftige Mageia-Partition in
einem dunklen Blau dar, w&auml;hrend die vorgesehenen Partitionsgr&ouml;&szlig;en direkt
- darunter angezeigt werden. Die Gr&ouml;&szlig;e der Partitionen kann angepasst werden,
+ darunter angezeigt werden. Sie k&ouml;nnen die Gr&ouml;&szlig;e der Partitionen anpassen,
indem Sie die Grenze zwischen den beiden Partitionen anklicken und
- verschieben. Siehe dazu den Screenshot unten.
+ verschieben. Siehe dazu den folgenden Screenshot:
</p>
+
</li>
- </ul>
- </div>
- <p> </p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa12"></a>Komplette Platte l&ouml;schen und freien Platz benutzen
- </p>
- <p><a name="doPartitionDisks-pa13"></a>Diese Option wird das vollst&auml;ndige Laufwerk f&uuml;r Mageia nutzen.
- </p>
- <p><a name="doPartitionDisks-pa14"></a>Beachte! Dies wird ALLE Daten auf dem gew&auml;hlten Laufwerk l&ouml;schen. Bitte
- Vorsicht walten lassen!
- </p>
- <p><a name="doPartitionDisks-pa15"></a>Falls Sie beabsichtigen, einen Teil der Platte f&uuml;r etwas anderes zu nutzen
- oder Sie haben wichtige Daten auf dem Laufwerk, welche nicht verloren gehen
- d&uuml;rfen, dann nutzen Sie bitte nicht diese Option.
+
+ <p><a name="doPartitionDisks-pa12"></a><span class="bold"><strong>Komplettes Laufwerk l&ouml;schen und freien Platz
+ verwenden</strong></span></p>
+
+
+ <p><a name="doPartitionDisks-pa13"></a>Diese Option wird das gesamte Laufwerk f&uuml;r Mageia zuordnen
</p>
+
+
+ <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa14"></a>Dies wird ALLE Daten auf dem gew&auml;hlten Laufwerk l&ouml;schen. Sei vorsichtig!
+ Falls Sie vorhaben, einen Teil des Laufwerks f&uuml;r etwas anderes zu verwenden,
+ oder falls Sie bereits Daten auf dem Laufwerk haben, die Sie nicht verlieren
+ m&ouml;chten, dann verwenden Sie diese Auswahl nicht.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Wichtig]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa11"></a>Beachten Sie bitte, dass f&uuml;r diese Option eine Verkleinerung der
+ Windows-Partition durchgef&uuml;hrt werden muss. Die Partition muss zwingend
+ "sauber" sein. Das bedeutet, dass Windows bei der letzten Nutzung korrekt
+ heruntergefahren wurde. Zus&auml;tzlich muss die Partition defragmentiert worden
+ sein, obwohl es keine Garantie gibt, dass alle Dateien der Partition aus dem
+ zu nutzenden Teil verschoben wurden. Es ist also wirklich sehr zu empfehlen,
+ die pers&ouml;nlichen Daten vor dem Vorgang zu sichern.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</li>
- </ul>
- </div>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa16"></a>Benutzerdefinierte Partitionierung
- </p>
+
+ <p><a name="doPartitionDisks-pa16"></a><span class="bold"><strong>Benutzerdefinierte Partitionierung</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa17"></a>Diese Option gibt Ihnen die vollst&auml;ndige Kontrolle &uuml;ber das Platzieren der
Installation auf den Festplatten.
</p>
+
</li>
</ul>
</div>
+
- <p><span class="bold"><strong>Partitionsaufteilung:</strong></span></p>
+
- <p>Der Installer wird den verf&uuml;gbaren Speicherplatz anhand der folgenden Regeln
- aufteilen:
+ <p>Wenn Sie nicht die <span class="emphasis"><em>Benutzerdefinierte Partitionierung</em></span>
+ verwenden, wird das Installationsprogramm den verf&uuml;gbaren Speicherplatz
+ anhand folgender Regeln zuordnen:
</p>
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Wenn der gesamte verf&uuml;gbare Speicherplatz niedriger als 50 GB ist, wird nur
- eine Partition f&uuml;r / erstellt und keine separate Partition f&uuml;r /home.
+
+ <p>Wenn der gesamte verf&uuml;gbare Speicherplatz weniger als 50 GB betr&auml;gt, wird
+ nur eine Partition erstellt. Hierbei handelt es sich um die
+ <code class="filename">/</code> (root) Partition.
</p>
+
</li>
<li class="listitem">
- <p>Wenn der gesamte verf&uuml;gbare Speicherplatz &uuml;ber 50 GB ist, werden drei
+
+ <p>Wenn der gesamte verf&uuml;gbare Speicherplatz &uuml;ber 50 GB betr&auml;gt, werden drei
Partitionen erstellt
</p>
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>6/19 des gesamten freien Speicherplatz wird / zugewiesen, mit einer
- maximalen Gr&ouml;&szlig;e von 50 GB
+
+ <p>6/19 des gesamten freien Speicherplatz wird <code class="filename">/</code>
+ zugewiesen, mit einer maximalen Gr&ouml;&szlig;e von 50 GB
</p>
+
</li>
<li class="listitem">
- <p>1/19 wird swap zugewiesen mit einer maximalen Gr&ouml;&szlig;e von 4 GB</p>
+
+ <p>1/19 wird <code class="filename">swap</code> zugewiesen mit einer maximalen Gr&ouml;&szlig;e von
+ 4 GB
+ </p>
+
</li>
<li class="listitem">
- <p>der Rest (die &uuml;brigen 12/19) wird /home zugewiesen.</p>
+
+ <p>der Rest (mindestens 12/19) wird <code class="filename">/home</code> zugewiesen
+ </p>
+
</li>
</ul>
</div>
+
</li>
</ul>
</div>
+
- <p>Dies bedeutet das bei einem freien Speicherplatz von 160 GB und mehr, der
- Installer drei Partitionen erstellen wird: 50 GB f&uuml;r /, 4 GB f&uuml;r swap und
- der Rest f&uuml;r /home.
+ <p>Dies bedeutet, dass bei einem freien Speicherplatz von 160 GB oder mehr, das
+ Installationsprogramm drei Partitionen erstellen wird:
</p>
+
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Wenn Sie ein UEFI System nutzen, wird die ESP (EFI System Partition)
- automatisch erkannt oder erstellt, falls diese noch nicht vorhanden ist, und
- als /boot/EFI eingebunden. Die "Benutzerdefinierte Paritionierung" Option
- ist die einzige M&ouml;glichkeit um nachzupr&uuml;fen, ob dies erfolgreich
- durchgef&uuml;hrt wurde.
- </p>
-
- </td>
- </tr>
- </table>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>50 GB f&uuml;r <code class="filename">/</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>4 GB f&uuml;r <code class="filename">swap</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>und der Rest f&uuml;r <code class="filename">/home</code></p>
+
+ </li>
+ </ul>
</div>
+
<div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
@@ -184,43 +257,78 @@
<tr>
<td align="left" valign="top">
- <p>Falls Sie ein Legacy System (bekannt als CSM oder BIOS) mit einem
- GPT-Laufwerk verwenden, m&uuml;ssen Sie eine BIOS Bootpartition erstellen, falls
- noch keine vorhanden ist. Es ist eine ungef&auml;hr 1 MiB gro&szlig;e Partition ohne
- einen Einh&auml;ngepunkt. Siehe <a class="xref" href="diskdrake.html" title="Benutzerdefinierte Laufwerkspartitionierung mit DiskDrake">&#8222;Benutzerdefinierte Laufwerkspartitionierung mit DiskDrake&#8220;</a> um zu erfahren wie
- man diese, sowie andere Partitionen erstellt. W&auml;hle als Dateisystem einfach
- BIOS Bootpartition aus.
+ <p>Wenn Sie ein UEFI-System nutzen, wird die ESP (EFI System Partition)
+ automatisch erkannt - oder erstellt, falls diese noch nicht vorhanden ist -
+ und als <code class="filename">/boot/EFI</code> eingebunden. Die
+ <span class="emphasis"><em>Benutzerdefinierte Paritionierung</em></span> Option ist die
+ einzige M&ouml;glichkeit um nachzupr&uuml;fen, ob dies erfolgreich durchgef&uuml;hrt wurde.
</p>
+
+ <p>Falls Sie ein Legacy System (bekannt als BIOS) mit einem GPT partitionierten
+ Laufwerk verwenden, m&uuml;ssen Sie eine BIOS Bootpartition erstellen, falls
+ diese noch nicht vorhanden ist. Sie sollte ungef&auml;hr 1 MiB gro&szlig; sein und
+ keinen Einh&auml;ngepunkt besitzen. Diese kann mit dem Installer unter
+ <span class="emphasis"><em>Benutzerdefinierte Partitionierung</em></span> wie jede andere
+ Partition erstellt werden. W&auml;hle als Dateisystem <span class="quote">&#8222;<span class="quote">BIOS
+ Bootpartition</span>&#8220;</span> aus.
+ </p>
+
+ <p>Siehe <a class="xref" href="diskdrake.html" title="Benutzerdefinierte Laufwerkspartitionierung mit DiskDrake">DiskDrake</a>, f&uuml;r Informationen zur weiteren
+ Vorgehensweise.
+ </p>
</td>
</tr>
</table>
</div>
+
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+
+
+
+
+ <div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Wichtig]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Einige neuere Laufwerke nutzen logische Sektoren mit 4.096 Bytes anstelle
- der bisherigen 512 Bytes. Aufgrund fehlender Hardware wurde das
- Partitionierungswerkzeug im Installer nicht mit solchen Laufwerken
- getestet. Zus&auml;tzlich benutzen einige SSD Laufwerke eine 'Erase Block' Gr&ouml;&szlig;e
- &uuml;ber 1 MB. Wenn Sie solch ein Laufwerk besitzen, empfehlen wir, das Laufwerk
- vorher mit einem alternativen Werkzeug wie
- <span class="application">gparted</span> mit folgende Einstellungen zu
- partitionieren:
+ <p>Einige neuere Laufwerke nutzen logische Sektoren mit 4096 Bytes anstelle der
+ bisherigen 512 Bytes. Aufgrund fehlender Hardware wurde das
+ Partitionierungswerkzeug im Installationsprogramm nicht mit solchen
+ Laufwerken getestet.
</p>
+
- <p>"Ausrichten an:" "MiB"</p>
+ <p>Einige SSD Laufwerke verwenden eine 'Erase Block' Gr&ouml;&szlig;e &uuml;ber 1 MB. Wenn Sie
+ solch ein Laufwerk besitzen, empfehlen wir, das Laufwerk vorher mit einem
+ alternativen Werkzeug wie gparted mit folgenden Einstellungen zu
+ partitionieren:
+ </p>
+
- <p>"Vorhergehender freier Speicherplatz (MiB):" "2"</p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Ausrichten an</em></span> = MiB
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Vorhergehender freier Speicherplatz (MiB)</em></span> = 2
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
<p>Stellen Sie au&szlig;erdem sicher, dass alle Partitionen mit einer geraden Anzahl
an Megabytes erstellt werden.
diff --git a/de/exitInstall.html b/de/exitInstall.html
index 2b729e9..c577b96 100644
--- a/de/exitInstall.html
+++ b/de/exitInstall.html
@@ -23,28 +23,39 @@
</div>
</div>
+
+
+
+
+
- <p><a name="exitInstall-pa1"></a>Sie haben die Installation und Konfiguration von
- <span class="application">Mageia</span> beendet, so dass Sie das
- Installationsmedium entfernen und den Computer neu starten k&ouml;nnen.
+
+
+ <p><a name="exitInstall-pa1"></a>Sie haben die Installation und Konfiguration von Mageia abgeschlossen, so
+ dass Sie das Installationsmedium entfernen und den Computer neu starten
+ k&ouml;nnen.
</p>
+
<p><a name="exitInstall-pa2"></a>Nach dem Neustart k&ouml;nnen Sie am Bildschirm des Bootloaders zwischen den
Betriebssystemen auf Ihrem Computer w&auml;hlen (falls mehr als eines vorhanden
ist).
</p>
+
<p><a name="exitInstall-pa3"></a>Haben Sie f&uuml;r den Bootloader keine Einstellungen vorgenommen, so wird das
von Ihnen installierte Mageia automatisch gew&auml;hlt und gestartet.
</p>
+
<p><a name="exitInstall-pa4"></a>Viel Vergn&uuml;gen!
</p>
+
- <p><a name="exitInstall-pa5"></a>Besuchen Sie www.mageia.org, falls Sie weitere Fragen haben oder bei Mageia
- mitarbeiten wollen.
+ <p><a name="exitInstall-pa5"></a>Besuchen Sie <a class="ulink" href="http://www.mageia.org/en/" target="_top">www.mageia.org</a>, falls Sie
+ weitere Fragen haben oder bei Mageia mitarbeiten wollen
</p>
</div>
diff --git a/de/formatPartitions.html b/de/formatPartitions.html
index bffb072..c8d99db 100644
--- a/de/formatPartitions.html
+++ b/de/formatPartitions.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="diskdrake.html" title="Benutzerdefinierte Laufwerkspartitionierung mit DiskDrake">
- <link rel="next" href="add_supplemental_media.html" title="Medienauswahl (konfigurieren von zus&auml;tzlichen Installationsmedien)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="add_supplemental_media.html" title="Zus&auml;tzliche Installationsmedien"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -26,33 +26,31 @@
-
-
-
-
+
+
+
+
-
<p><a name="formatPartitions-pa1"></a>Hier k&ouml;nnen Sie w&auml;hlen, welche Partition(en) formatiert werden
- soll(en). Alle Daten auf Partitionen, die <span class="bold"><strong>nicht</strong></span> f&uuml;r das Formatieren markiert sind, werden nicht
- angetastet.
+ soll(en). Alle Daten auf Partitionen, die <span class="emphasis"><em>nicht</em></span> f&uuml;r das
+ Formatieren markiert sind, werden nicht angetastet.
</p>
- <p><a name="formatPartitions-pa2"></a>Normalerweise w&auml;hlt DrakX zumindest die Partitionen aus, die
- notwendigerweise formatiert werden m&uuml;ssen.
+ <p><a name="formatPartitions-pa2"></a>Normalerweise w&auml;hlt DrakX zumindest die Partitionen aus, die formatiert
+ werden m&uuml;ssen.
</p>
- <p><a name="formatPartitions-pa3"></a>Klicken Sie auf <span class="guibutton"><em class="replaceable"><code>Fortgeschrittene
- Optionen</code></em></span>, um jene Partitionen zu w&auml;hlen, die Sie
- auf sogenannte <span class="emphasis"><em>bad blocks</em></span> (fehlerhafte Bl&ouml;cke)
- &uuml;berpr&uuml;fen m&ouml;chten.
+ <p><a name="formatPartitions-pa3"></a>Klicken Sie auf <span class="emphasis"><em>Fortgeschrittene Optionen</em></span>, um jene
+ Partitionen zu w&auml;hlen, die Sie auf sogenannte <span class="emphasis"><em>bad blocks
+ (fehlerhafte Bl&ouml;cke)</em></span> &uuml;berpr&uuml;fen m&ouml;chten
</p>
@@ -66,11 +64,11 @@
<td align="left" valign="top">
<p><a name="formatPartitions-pa4"></a>Sind Sie sich nicht sicher, die richtige Auswahl getroffen zu haben, so
- klicken Sie auf <span class="guibutton"><em class="replaceable"><code>Abbrechen</code></em></span>,
- nochmals auf <span class="guibutton"><em class="replaceable"><code>Abbrechen</code></em></span> und
- dann auf <span class="bold"><strong><em class="replaceable"><code><em class="replaceable"><code>Benutzerdefiniert</code></em></code></em></strong></span>,
- um zum Hauptbildschirm zur&uuml;ck zu gelangen. Auf diesem Bildschirm k&ouml;nnen Sie
- sehen, welche Daten sich auf diesen Partitionen befinden.
+ klicken Sie auf <span class="emphasis"><em>Zur&uuml;ck</em></span>, nochmals auf
+ <span class="emphasis"><em>Zur&uuml;ck</em></span> und dann auf
+ <span class="emphasis"><em>Benutzerdefiniert</em></span>, um zum Hauptbildschirm zur&uuml;ck zu
+ gelangen. Auf diesem Bildschirm k&ouml;nnen Sie sehen, welche Daten sich auf
+ diesen Partitionen befinden.
</p>
</td>
@@ -80,7 +78,7 @@
<p><a name="formatPartitions-pa5"></a>Wenn Sie mit der Auswahl zufrieden sind, klicken Sie auf
- <span class="guibutton">Weiter</span>, um mit der Installation fortzufahren.
+ <span class="emphasis"><em>Weiter</em></span>, um mit der Installation fortzufahren.
</p>
</div>
diff --git a/de/index.html b/de/index.html
index 6954de3..abe7dfb 100644
--- a/de/index.html
+++ b/de/index.html
@@ -27,18 +27,17 @@
<dd>
<dl>
<dt><span class="section"><a href="Select-and-use-ISOs.html#d5e19">Einleitung</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e29">Medien</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e119">Medien herunterladen und &uuml;berpr&uuml;fen</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e146">Brennen oder &uuml;bertragen der ISO</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e41">Medien</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e129">Medien herunterladen und &uuml;berpr&uuml;fen</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e168">Brennen oder &uuml;bertragen der ISO</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="installer.html">DrakX, das Mageia Installationsprogramm</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="installer.html#d5e219">Willkommensbildschirm der Installation</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e295">Die Installationsschritte</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e308">Installationsprobleme und m&ouml;gliche L&ouml;sungen</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e334"></a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e261">Die Installationsschritte</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e283">Willkommensbildschirm der Installation</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e332">Installationsprobleme und m&ouml;gliche L&ouml;sungen</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="selectLanguage.html">Bitte w&auml;hlen Sie eine Sprache f&uuml;r die Installation</a></span></dt>
@@ -52,40 +51,38 @@
<dt><span class="section"><a href="setupSCSI.html">SCSI-Laufwerke einrichten</a></span></dt>
<dt><span class="section"><a href="selectInstallClass.html">Installation oder Aktualisierung</a></span></dt>
<dt><span class="section"><a href="selectKeyboard.html">Tastatur</a></span></dt>
- <dt><span class="section"><a href="doPartitionDisks.html">Partitionierung</a></span></dt>
+ <dt><span class="section"><a href="doPartitionDisks.html">Vorgeschlagene Partitionierung</a></span></dt>
<dt><span class="section"><a href="ask_mntpoint_s.html">Einh&auml;ngepunkte w&auml;hlen</a></span></dt>
<dt><span class="section"><a href="takeOverHdConfirm.html">Best&auml;tigen, dass die Festplatte formatiert wird</a></span></dt>
<dt><span class="section"><a href="diskdrake.html">Benutzerdefinierte Laufwerkspartitionierung mit DiskDrake</a></span></dt>
<dt><span class="section"><a href="formatPartitions.html">Formatieren</a></span></dt>
- <dt><span class="section"><a href="add_supplemental_media.html">Medienauswahl (konfigurieren von zus&auml;tzlichen Installationsmedien)</a></span></dt>
- <dt><span class="section"><a href="media_selection.html">Medienauswahl (Nonfree)</a></span></dt>
- <dt><span class="section"><a href="chooseDesktop.html">Desktopauswahl</a></span></dt>
+ <dt><span class="section"><a href="add_supplemental_media.html">Zus&auml;tzliche Installationsmedien</a></span></dt>
+ <dt><span class="section"><a href="media_selection.html">Verf&uuml;gbare Quellen</a></span></dt>
+ <dt><span class="section"><a href="chooseDesktop.html">Desktop-Auswahl</a></span></dt>
<dt><span class="section"><a href="choosePackageGroups.html">Paketgruppenauswahl</a></span></dt>
<dt><span class="section"><a href="minimal-install.html">Minimale Installation</a></span></dt>
<dt><span class="section"><a href="choosePackagesTree.html">W&auml;hlen Sie individuelle Pakete</a></span></dt>
- <dt><span class="section"><a href="addUser.html">Verwaltung des Benutzers und des Superusers</a></span></dt>
+ <dt><span class="section"><a href="addUser.html">Benutzerverwaltung</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="addUser.html#root-password">Setzen des Administrator (root) Passworts:</a></span></dt>
<dt><span class="section"><a href="addUser.html#enterUser">Einen Benutzer eingeben</a></span></dt>
- <dt><span class="section"><a href="addUser.html#addUserAdvanced">Fortgeschrittene Benutzerverwaltung</a></span></dt>
+ <dt><span class="section"><a href="addUser.html#addUserAdvanced">Benutzerverwaltung (fortgeschritten)</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="configureX_chooser.html">Konfiguration der Grafikkarte und des Bildschirms</a></span></dt>
<dt><span class="section"><a href="configureX_card_list.html">Einen X-Server ausw&auml;hlen (Ihre Grafikkarte einrichten)</a></span></dt>
<dt><span class="section"><a href="configureX_monitor.html">Auswahl des Monitors</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html">Hauptoptionen des Bootloaders</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html">Bootloader</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="setupBootloader.html#d5e890">Bootloader Oberfl&auml;che</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e914">Verwenden des Mageia Bootloaders</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e928">Verwenden eines bestehenden Bootloaders</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e931">Verwenden des Chain-Loader</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e945">Optionen</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e989">GRUB2</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1004">Bootloader Einrichten</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1094">Weitere Optionen</a></span></dt>
</dl>
</dd>
- <dt><span class="section"><a href="setupBootloaderAddEntry.html">Hinzuf&uuml;gen oder &auml;ndern eines Boot Men&uuml; Eintrags</a></span></dt>
- <dt><span class="section"><a href="misc-params.html">Zusammenfassung von verschiedenen Parameter</a></span></dt>
+ <dt><span class="section"><a href="setupBootloaderAddEntry.html">Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag</a></span></dt>
+ <dt><span class="section"><a href="misc-params.html">Zusammenfassung der Konfiguration</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="misc-params.html#misc-params-system">Systemparameter</a></span></dt>
@@ -110,15 +107,9 @@
</dl>
</dd>
<dt><span class="section"><a href="securityLevel.html">Sicherheitsstufe</a></span></dt>
- <dt><span class="section"><a href="firewall.html">Firewall</a></span></dt>
<dt><span class="section"><a href="installUpdates.html">Aktualisierungen (Updates)</a></span></dt>
<dt><span class="section"><a href="exitInstall.html">Herzlichen Gl&uuml;ckwunsch!</a></span></dt>
<dt><span class="section"><a href="uninstall-Mageia.html">Mageia deinstallieren</a></span></dt>
- <dd>
- <dl>
- <dt><span class="section"><a href="uninstall-Mageia.html#d5e1277">Kurzanleitung</a></span></dt>
- </dl>
- </dd>
</dl>
</div>
@@ -219,8 +210,6 @@
-
-
diff --git a/de/installUpdates.html b/de/installUpdates.html
index 3dcb4c3..540cf3a 100644
--- a/de/installUpdates.html
+++ b/de/installUpdates.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="firewall.html" title="Firewall">
+ <link rel="prev" href="securityLevel.html" title="Sicherheitsstufe">
<link rel="next" href="exitInstall.html" title="Herzlichen Gl&uuml;ckwunsch!"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,34 +22,52 @@
</div>
</div>
</div>
+
+
+
+
-
-
-
+
-
+
-
- <p><a name="installUpdates-pa1"></a>Seit dem Zeitpunkt, an dem diese Version von
- <span class="application">Mageia</span> ver&ouml;ffentlicht wurde, wurden einige Pakete
- &uuml;berarbeitet oder erweitert.
- </p>
+
- <p><a name="installUpdates-pa2"></a>W&auml;hlen Sie <span class="guilabel">"Ja"</span>, wenn Sie w&uuml;nschen, diese herunter zu
- laden und zu installieren. W&auml;hlen Sie <span class="guilabel">"Nein"</span>, wenn Sie
- dies im Augenblick nicht w&uuml;nschen oder nicht mit dem Internet verbunden
- sind.
- </p>
- <p><a name="installUpdates-pa3"></a>Anschlie&szlig;end klicken Sie auf <span class="guibutton">"Weiter"</span>, um mit der
- Installation fortzufahren.
+ <p><a name="installUpdates-pa1"></a>Seit dem Zeitpunkt, an dem diese Version von Mageia ver&ouml;ffentlicht wurde,
+ wurden einige Pakete aktualisiert oder verbessert.
</p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa2"></a>W&auml;hle <span class="emphasis"><em>Ja</em></span>, wenn Sie diese herunterladen und installieren
+ m&ouml;chten
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>W&auml;hle <span class="emphasis"><em>Nein</em></span>, wenn Sie dies jetzt nicht tun m&ouml;chten oder
+ wenn Sie aktuell nicht mit dem Internet verbunden sind.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa3"></a>Dr&uuml;cke <span class="emphasis"><em>Weiter</em></span> um fortzufahren
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/de/installer.html b/de/installer.html
index 2402b1c..b97b0dc 100644
--- a/de/installer.html
+++ b/de/installer.html
@@ -25,23 +25,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
<p>Egal, ob Sie ein neuer oder ein erfahrener GNU/Linux-Anwender sind, das
Mageia Installationsprogramm wurde so gestaltet, dass es Ihnen die
Installation oder eine Aktualisierung so leicht wie m&ouml;glich macht.
</p>
- <p>Der Startbildschirm enth&auml;lt verschiedene Optionen, wobei die vorgegebene
- Option das Installationsprogramm startet. Normalerweise ist dies alles, was
- Sie tun m&uuml;ssen.
- </p>
+ <div class="section" title="Die Installationsschritte">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e261"></a>Die Installationsschritte
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Der Installationsprozess ist in mehrere Schritte unterteilt - der Status
+ kann auf der linken Seite des Bildschirms verfolgt werden.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Jeder dieser Schritte besitzt einen oder mehrere Bildschirme, die auch einen
+ Abschnitt mit <span class="emphasis"><em>Fortgeschrittene Optionen</em></span> anbieten,
+ welche zus&auml;tzliche, seltener ben&ouml;tigte Optionen, enth&auml;lt.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Die meisten Bildschirme enthalten einen <span class="guibutton">Hilfe</span>-Knopf,
+ &uuml;ber den Sie weitere Details zum aktuellen Schritt erhalten.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <div class="caution" title="Achtung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Achtung]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Wenn Sie sich w&auml;hrend der Installation entscheiden, die Installation
+ abzubrechen, ist es m&ouml;glich, einen Neustart auszuf&uuml;hren. &Uuml;berlegen Sie sich
+ dies aber zweimal, bevor Sie dies tun. Wurde eine Partition bereits
+ formatiert oder ein Update hat mit der Installation begonnen, so ist Ihr
+ Computer nicht mehr im gleichen Zustand und ein Neustart kann Sie mit einem
+ nicht mehr verwendbaren System zur&uuml;cklassen.
+ </p>
+
+
+ <p>Falls Sie sich entschlossen haben, das System neu zu starten, wechseln Sie
+ in das Text-Terminal durch gleichzeitiges dr&uuml;cken der Tasten
+ <span class="keycap"><strong>Strg</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span>. Dr&uuml;cken Sie anschlie&szlig;end gleichzeitig die
+ Tasten <span class="keycap"><strong>Strg</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Entf</strong></span> um das System neu zu starten.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
<div class="section" title="Willkommensbildschirm der Installation">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e219"></a>Willkommensbildschirm der Installation
+ <h3 class="title"><a name="d5e283"></a>Willkommensbildschirm der Installation
</h3>
</div>
</div>
@@ -49,11 +135,23 @@
- <div class="section" title="Eine Mageia DVD verwenden">
+ <p>Der entsprechende Bildschirm den Sie als erstes sehen, wenn Sie vom
+ Installationsmedium starten, ist davon abh&auml;ngig, ob Ihr Computer-Mainboard
+ den Lagacy Modus (BIOS) oder UEFI verwendet.
+ </p>
+
+
+ <p>Der Willkommensbildschirm enth&auml;lt verschiedene Optionen, wobei die
+ vorgegebene Option das Installationsprogramm startet. Normalerweise ist dies
+ alles, was Sie ben&ouml;tigen.
+ </p>
+
+
+ <div class="section" title="Legacy (BIOS) Systeme">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e221"></a>Eine Mageia DVD verwenden
+ <h4 class="title"><a name="d5e287"></a>Legacy (BIOS) Systeme
</h4>
</div>
</div>
@@ -61,167 +159,50 @@
- <p>Hier sehen Sie die voreingestellten Willkommensbildschirme, wenn Sie eine
- Mageia DVD verwenden. Beim ersten wird ein System mit UEFI verwendet und
- beim zweiten ein System mit BIOS:
- </p>
-
-
- <p>In diesem Bildschirm k&ouml;nnen Sie auf die Optionen zugreifen, indem Sie den
- Buchstaben "e" dr&uuml;cken, um in den "Bearbeitungsmodus" zu kommen. Um zur&uuml;ck
- auf diesen Bildschirm zu kommen, dr&uuml;cken Sie die "ESC" Taste um den Vorgang
- abzubrechen ohne eine &Auml;nderung zu speichern oder dr&uuml;cke die "Strg" oder
- "F10" Taste um die durchgef&uuml;hrten &Auml;nderungen zu speichern und den Vorgang zu
- beenden.
- </p>
-
-
-
-
- <p>Von diesem Fenster aus, ist es m&ouml;glich, einige pers&ouml;nliche Einstellungen
- vorzunehmen:
- </p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Men&uuml;">
+ <p class="title"><b>Men&uuml;</b></p>
<ul class="itemizedlist">
<li class="listitem">
-
- <p>Die Sprache (nur f&uuml;r die Installation, diese kann eine andere als die f&uuml;r
- das System sein) durch dr&uuml;cken der F2 Taste (nur im Legacy Modus)
- </p>
-
-
-
-
- <p>Verwende die Pfeiltasten um die Sprache auszuw&auml;hlen und dr&uuml;cke danach die
- Enter Taste.
- </p>
-
-
- <p>Hier sehen Sie z.B. den franz&ouml;sischen Willkommensbildschirm wenn eine Live
- DVD/CD verwendet wird. Beachte dass das Live DVD/CD Men&uuml; nicht die Auswahl
- <span class="guilabel">Rettungssystem</span>, <span class="guilabel">Speichertest</span> und
- <span class="guilabel">Hardware-Erkennungswerkzeug</span> enth&auml;lt.
- </p>
+
+ <p><span class="bold"><strong>Mageia installieren</strong></span></p>
-
+ <p>Installiert Mageia auf eine Festplatte. Dies ist die voreingestellte Auswahl
+ und startet nach kurzer Zeit automatisch, solange keine andere Auswahl
+ getroffen wird.
+ </p>
+
</li>
<li class="listitem">
-
- <p>&Auml;ndere die Bildschirmaufl&ouml;sung durch dr&uuml;cken der F3 Taste (nur im Legacy
- Modus)
- </p>
+
+ <p><span class="bold"><strong>Rettungssystem</strong></span></p>
-
+ <p>Diese Auswahl erlaubt Ihnen entweder den Bootloader f&uuml;r eine bestehende
+ Mageia Installation neu zu installieren oder einen Windows Bootloader
+ wiederherzustellen.
+ </p>
+
</li>
<li class="listitem">
-
- <p>F&uuml;gen Sie durch Dr&uuml;cken der Taste <span class="bold"><strong>F6</strong></span> im
- alten Modus oder der Taste <span class="bold"><strong>e</strong></span> im UEFI-Modus
- einige Kernel-Optionen hinzu.
- </p>
-
-
- <p>Wenn die Installation fehlschl&auml;gt, ist es eventuell notwendig dies erneut
- mit extra Optionen zu probieren. Das Men&uuml; zeigt durch dr&uuml;cken den F6 Taste
- eine neue Zeile, welche <span class="guilabel">Boot-Optionen</span> hei&szlig;t und vier
- Eintr&auml;ge enth&auml;lt:
- </p>
-
-
- <p>- Standard, es &auml;ndert nichts an den Standardoptionen.</p>
-
-
- <p>- Standard, es &auml;ndert nichts an den Standardoptionen.</p>
-
-
- <p>- No ACPI (Advanced Configuration and Power Interface), die
- Stromsparfunktion wird nicht ber&uuml;cksichtigt.
- </p>
-
-
- <p>- Kein lokales APIC (Local Advanced Programmable Interrupt Controller), es
- geht um die CPU Unterbrechung, w&auml;hle die Option wenn Sie danach gefragt
- werden.
- </p>
-
-
- <p>Wenn Sie einen dieser Eintr&auml;ge ausw&auml;hlen, werden die Standard Bootoptionen
- in der <span class="guilabel">Bootoptionen</span> Zeile ge&auml;ndert.
- </p>
-
-
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Bei einigen Mageia Ver&ouml;ffentlichungen kann es passieren, das die Eintr&auml;ge
- welche mit der F6 Taste ausgew&auml;hlt wurden, nicht in der
- <span class="guilabel">Bootoptionen</span> Zeile erscheinen, diese werden allerdings
- trotzdem befolgt.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+
+ <p><span class="bold"><strong>Speichertest</strong></span></p>
-
+ <p>Pr&uuml;ft den vorhanden RAM durch verschiedene Lese- und Schreibvorg&auml;nge. Starte
+ das System neu um den Test zu beenden.
+ </p>
+
</li>
<li class="listitem">
-
- <p>F&uuml;gen Sie weitere Kerneloptionen hinzu indem Sie die F1 Taste dr&uuml;cken (nur
- im Legacy Modus)
- </p>
-
-
- <p>Durch dr&uuml;cken der F1 Taste erscheint ein neues Fenster mit weiteren
- verf&uuml;gbaren Optionen. W&auml;hle eine mit den Pfeiltasten aus und dr&uuml;cke Enter um
- mehr Details zu bekommen oder dr&uuml;cke ESC um in den Willkommensbildschirm
- zur&uuml;ckzukehren.
- </p>
-
-
-
-
- <p>Die detailierte Ansicht &uuml;ber die splash Optionen. Dr&uuml;cke ESC oder w&auml;hle
- <span class="guilabel">Zur&uuml;ck zu Boot-Optionen</span> um zur&uuml;ck zur Optionsliste zu
- gelangen. Die dort aufgef&uuml;hrten Optionen k&ouml;nnen mit der Hand in die
- <span class="guilabel">Boot-Optionen</span> Zeile hinzugef&uuml;gt werden.
- </p>
-
-
-
-
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Die Hilfe wird in der, mit der F2 Taste, ausgew&auml;hlten Sprache angezeigt.</p>
-
- </td>
- </tr>
- </table>
- </div>
+
+ <p><span class="bold"><strong>F2: Sprache</strong></span></p>
-
- <p>F&uuml;r mehr Informationen &uuml;ber Kernel-Optionen auf alten und UEFI-Systemen,
- siehe: <a class="ulink" href="https://wiki.mageia.org/de/Wie_man_Kerneloptionen_einstellt" target="_top">https://wiki.mageia.org/de/Wie_man_Kerneloptionen_einstellt</a></p>
+ <p>Dr&uuml;cke F2 f&uuml;r weitere Sprachen.</p>
+
</li>
</ul>
</div>
@@ -229,11 +210,11 @@
</div>
- <div class="section" title="Verwenden eines kabelgebundenen Netzwerks">
+ <div class="section" title="UEFI-Systeme">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e285"></a>Verwenden eines kabelgebundenen Netzwerks
+ <h4 class="title"><a name="d5e310"></a>UEFI-Systeme
</h4>
</div>
</div>
@@ -241,101 +222,61 @@
- <p>Hier sehen Sie den Standard Willkommensbildschirm, wenn eine Installations
- CD f&uuml;r kabelgebundene Netzwerke verwendet wird (netinstall.iso oder
- netinstall-nonfree.iso Abbilder):
+ <p>In diesem Bildschirm k&ouml;nnen Sie auf die Optionen zugreifen, indem Sie den
+ Buchstaben <span class="keycap"><strong>e</strong></span> dr&uuml;cken, um in den Bearbeitungsmodus zu
+ kommen. Um zur&uuml;ck auf diesen Bildschirm zu kommen, dr&uuml;cken Sie die
+ <span class="keycap"><strong>ESC</strong></span> Taste um den Vorgang abzubrechen ohne eine &Auml;nderung zu
+ speichern oder dr&uuml;cke die <span class="keycap"><strong>F10</strong></span> Taste um die durchgef&uuml;hrten
+ &Auml;nderungen zu speichern und den Vorgang zu beenden.
</p>
- <p>Es erlaubt Ihnen nicht die Sprache zu &auml;ndern. Die verf&uuml;gbaren Optionen
- werden auf dem Bildschirm beschrieben. F&uuml;r weitere Informationen &uuml;ber die
- Verwendung einer netzbasierten Installations CD, schau <a class="ulink" href="https://wiki.mageia.org/en/Boot.iso_install" target="_top">ins Mageia
- Wiki</a></p>
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Das Tastaturlayout ist das amerikanische.</p>
-
- </td>
- </tr>
- </table>
+ <div class="itemizedlist" title="Men&uuml;">
+ <p class="title"><b>Men&uuml;</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Installieren:</strong></span> Startet den
+ Installationsvorgang
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Rettungssystem:</strong></span> Diese Auswahl erlaubt Ihnen
+ entweder den Bootloader f&uuml;r eine bestehende Mageia Installation neu zu
+ installieren oder einen Windows Bootloader wiederherzustellen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>F2: Sprache:</strong></span> Dr&uuml;cke <span class="keycap"><strong>F2</strong></span> f&uuml;r
+ weitere Sprachen
+ </p>
+
+ </li>
+ </ul>
</div>
+ <p>Falls Sie von einem USB-Stick starten, werden die oben aufgef&uuml;hrte
+ Auswahlm&ouml;glichkeiten doppelt angezeigt. In diesem Fall sollten Sie die
+ Auswahlm&ouml;glichkeiten mit dem Suffix "USB" verwenden.
+ </p>
</div>
</div>
- <div class="section" title="Die Installationsschritte">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e295"></a>Die Installationsschritte
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Der Installationsprozess ist in mehrere Schritte unterteilt, die an der
- linken Seite des Bildschirms verfolgt werden k&ouml;nnen.
- </p>
-
-
- <p>Jeder dieser Schritte besitzt einen oder mehrere Bildschirme, die auch einen
- Knopf <span class="guibutton">"Fortgeschrittene Optionen"</span> mit weiteren
- zus&auml;tzlichen Optionen haben.
- </p>
-
-
- <p>Die meisten Bildschirme enthalten einen <span class="guibutton">Hilfe</span>-Knopf,
- &uuml;ber den Sie weitere Erkl&auml;rungen zum momentan ausgef&uuml;hrten Schritt erhalten.
- </p>
-
-
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Wenn Sie an irgendeiner Stelle entscheiden, die Installation zu stoppen, ist
- es m&ouml;glich, einen Neustart auszuf&uuml;hren. &Uuml;berlegen Sie sich dies aber
- zweimal, bevor Sie dies ausf&uuml;hren. Wurde eine Partition bereits formatiert
- oder ein Update hat mit der Installation begonnen, so ist Ihr Computer
- <span class="bold"><strong>nicht mehr im gleichen Zustand</strong></span> und ein
- Neustart kann Sie sehr leicht mit einem <span class="bold"><strong>nicht mehr
- verwendbaren System</strong></span> zur&uuml;cklassen. Wenn Sie trotz allem sicher
- sind, einen Neustart auszuf&uuml;hren, wechseln Sie mit <span class="bold"><strong>Alt+Strg+F2</strong></span>. Anschlie&szlig;end bet&auml;tigen Sie <span class="bold"><strong>Alt+Strg+Entf</strong></span>, um einen Neustart auszul&ouml;sen.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- </div>
-
-
<div class="section" title="Installationsprobleme und m&ouml;gliche L&ouml;sungen">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e308"></a>Installationsprobleme und m&ouml;gliche L&ouml;sungen
+ <h3 class="title"><a name="d5e332"></a>Installationsprobleme und m&ouml;gliche L&ouml;sungen
</h3>
</div>
</div>
@@ -347,7 +288,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e310"></a>Keine grafische Schnittstelle
+ <h4 class="title"><a name="d5e334"></a>Keine grafische Schnittstelle
</h4>
</div>
</div>
@@ -359,10 +300,10 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Nach dem Startbildschirm gelangen Sie nicht zur Sprachauswahl. Dies kann bei
- einigen Grafikkarten und &auml;lteren Systemen vorkommen. Versuchen Sie eine
- niedrigere Aufl&ouml;sung, in dem Sie an der Eingabeaufforderung
- <code class="code">vgalo</code> eingeben.
+ <p>Nach dem Startbildschirm gelangen Sie nicht zur
+ <span class="emphasis"><em>Sprachauswahl</em></span>. Dies kann bei einigen Grafikkarten und
+ &auml;lteren Systemen vorkommen. Versuchen Sie eine niedrigere Aufl&ouml;sung, indem
+ Sie an der Eingabeaufforderung <span class="command"><strong>vgalo</strong></span> eingeben.
</p>
</li>
@@ -370,10 +311,12 @@
<p>Wenn die Hardware sehr alt ist, ist eine grafische Installation eventuell
nicht m&ouml;glich. In diesem Fall ist es m&ouml;glich die Installation im Textmodus
- zu probieren. Um dies zu tun dr&uuml;cke ESC im ersten Willkommensbildschirm und
- best&auml;tige mit Enter. Ihnen wird nun ein schwarzer Bildschirm mit dem Wort
- "boot:" angezeigt. Gebe "text" ein und dr&uuml;cke Enter. Nun wird die
- Installation im Textmodus fortgesetzt.
+ zu probieren. Um dies zu tun dr&uuml;cke <span class="keycap"><strong>Esc</strong></span> im ersten
+ <span class="emphasis"><em>Willkommen</em></span>-Bildschirm und best&auml;tige mit
+ <span class="keycap"><strong>ENTER</strong></span>. Ihnen wird nun ein schwarzer Bildschirm mit dem Wort
+ <code class="prompt">boot:</code> angezeigt. Gebe <span class="command"><strong>text</strong></span> ein und
+ dr&uuml;cke <span class="keycap"><strong>ENTER</strong></span>. Nun wird die Installation im Textmodus
+ fortgesetzt.
</p>
</li>
@@ -387,7 +330,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e318"></a>Die Installation friert ein
+ <h4 class="title"><a name="d5e349"></a>Die Installation friert ein
</h4>
</div>
</div>
@@ -398,9 +341,8 @@
<p>Wenn das System w&auml;hrend der Installation einfriert, ist das m&ouml;glicherweise
auf ein Problem mit der Erkennung der Hardware zur&uuml;ckzuf&uuml;hren. In diesem
Falle sollte die automatische Erkennung der Hardware umgangen und sp&auml;ter
- behandelt werden. Versuchen Sie Folgendes: Dr&uuml;cken Sie am Startbildschirm
- die Taste <span class="bold"><strong>"F6 Kernel Optionen"</strong></span> und tragen
- Sie den Befehl <code class="code">noauto</code> gefolgt von ENTER ein. Diese Option kann
+ behandelt werden. Versuchen Sie Folgendes: geben Sie den Befehl
+ <span class="command"><strong>noauto</strong></span> in der Eingabeaufforderung ein. Diese Option kann
auch mit anderen Optionen kombiniert werden, falls dies n&ouml;tig ist.
</p>
@@ -411,7 +353,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e323"></a>RAM Problem
+ <h4 class="title"><a name="d5e353"></a>RAM Problem
</h4>
</div>
</div>
@@ -420,12 +362,12 @@
<p>Dies wird eher selten ben&ouml;tigt, aber in einigen F&auml;llen kann die Hardware
- einen falschen Wert des verf&uuml;gbaren RAMs liefern oder der Rechner friert ein
- (siehe oben). Um den Speicher manuell einzugeben, verwenden Sie den
- Parameter <span class="emphasis"><em><code class="code">mem=xxxM</code></em></span>, wobei xxx den
- korrekten Wert des RAM-Speichers darstellt. Z.B.
- <span class="emphasis"><em><code class="code">mem=256M</code></em></span> bestimmt eine Gr&ouml;&szlig;e von 256MB
- RAM.
+ m&ouml;glicherweise einen falschen Wert des verf&uuml;gbaren Arbeitsspeicher (RAM)
+ liefern. Um den Speicher manuell einzugeben, verwenden Sie den Parameter
+ <code class="literal">mem=<em class="replaceable"><code>xxx</code></em>M</code>, wobei
+ <em class="replaceable"><code>xxx</code></em> den korrekten Wert des RAM-Speichers
+ darstellt. Z.B. <code class="literal">mem=256M</code> bestimmt eine Gr&ouml;&szlig;e von 256MB
+ an RAM.
</p>
</div>
@@ -435,7 +377,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e330"></a>Dynamische Partitionen
+ <h4 class="title"><a name="d5e360"></a>Dynamische Partitionen
</h4>
</div>
</div>
@@ -443,21 +385,17 @@
- <p>Wenn Sie unter Windows Ihre Festplatte vom "einfachen" auf das "dynamische"
- Format konvertiert haben, sollten Sie wissen, dass es unm&ouml;glich ist, Mageia
- auf diesem Laufwerk zu installieren. Um zu einem einfachen Laufwerk
- zur&uuml;ckzukehren, konsultieren Sie bitte Microsofts Hilfeseite: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
+ <p>Wenn Sie unter Windows Ihre Festplatte vom <code class="literal">einfachen</code> auf
+ das <code class="literal">dynamische</code> Format konvertiert haben, sollten Sie
+ wissen, dass es nicht m&ouml;glich ist, Mageia auf diesem Laufwerk zu
+ installieren. Um zu einem <code class="literal">einfachen</code> Laufwerk
+ zur&uuml;ckzukehren, konsultieren Sie bitte Microsofts Hilfeseite: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
</p>
</div>
</div>
-
- <div class="section">
- <div class="titlepage"></div>
- </div>
-
</div>
</body>
</html>
diff --git a/de/media_selection.html b/de/media_selection.html
index 71b46cd..4b821ea 100644
--- a/de/media_selection.html
+++ b/de/media_selection.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Medienauswahl (Nonfree)</title>
+ <title>Verf&uuml;gbare Quellen</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="add_supplemental_media.html" title="Medienauswahl (konfigurieren von zus&auml;tzlichen Installationsmedien)">
- <link rel="next" href="chooseDesktop.html" title="Desktopauswahl"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="prev" href="add_supplemental_media.html" title="Zus&auml;tzliche Installationsmedien">
+ <link rel="next" href="chooseDesktop.html" title="Desktop-Auswahl"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Medienauswahl (Nonfree)">
+ <div lang="de" class="section" title="Verf&uuml;gbare Quellen">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="media_selection"></a>Medienauswahl (Nonfree)
+ <h2 class="title"><a name="media_selection"></a>Verf&uuml;gbare Quellen
</h2>
</div>
</div>
@@ -25,11 +25,18 @@
+
+
+
+
+
+
+
<p>Hier sehen Sie die Liste aller verf&uuml;gbaren Quellen. Abh&auml;ngig von dem
@@ -51,9 +58,9 @@
<li class="listitem">
<p>Die <span class="emphasis"><em>Nonfree</em></span> Quelle enth&auml;lt Pakete, die kostenlos sind,
- d.h. Mageia darf sie weiterverbreiten, aber sie enthalten closed-source
- Software (daher der Name 'Nonfree'). Zum Beispiel enth&auml;lt diese Quelle
- propriet&auml;re Grafikkarten-Treiber von NVIDIA und AMD/ATI, Firmware f&uuml;r
+ d.h. Mageia darf sie weiterverbreiten, aber sie enthalten Closed-Source
+ Software (daher der Name - Nonfree). Zum Beispiel enth&auml;lt diese Quelle
+ propriet&auml;re Grafikkarten-Treiber von NVIDIA und AMD, Firmware f&uuml;r
verschiedene WLAN Karten, etc.
</p>
diff --git a/de/minimal-install.html b/de/minimal-install.html
index b403a52..5e73b8a 100644
--- a/de/minimal-install.html
+++ b/de/minimal-install.html
@@ -22,49 +22,74 @@
</div>
</div>
</div>
-
+
+
+
+
- <p>Durch das Abw&auml;hlen aller Paketgruppen im Auswahlmen&uuml; k&ouml;nnen Sie eine
- minimale Installation w&auml;hlen, siehe <a class="xref" href="choosePackageGroups.html" title="Paketgruppenauswahl">&#8222;Paketgruppenauswahl&#8220;</a>.
- </p>
+
- <p>Wenn gew&uuml;nscht, k&ouml;nnen Sie auf derselben Seite zus&auml;tzlich die Option f&uuml;r
- "Individuelle Paketauswahl" aktivieren.
- </p>
+
- <p>Die minimale Installation ist f&uuml;r die Nutzer gedacht, die besondere
- Anwendungsm&ouml;glichkeiten f&uuml;r ihr <span class="application">Mageia</span> im Sinn
- haben, wie z.B. einen Server oder einen spezialisierten
- Arbeitsplatzrechner. Sie werden diese Option vermutlich in Verbindung mit
- der zuvor erw&auml;hnten Option "Individuelle Paketauswahl" verwenden, um
- Feineinstellungen f&uuml;r Ihre Installation vorzunehmen. Siehe <a class="xref" href="choosePackagesTree.html" title="W&auml;hlen Sie individuelle Pakete">&#8222;W&auml;hlen Sie individuelle Pakete&#8220;</a>.
- </p>
+
- <p>Falls Sie diese Installationsart w&auml;hlen, wird das n&auml;chste Fenster eine
- spezielle Paketauswahl zur Installation anbieten (z.B. Dokumentation, X,
- ...).
+ <p>Die minimale Installation ist f&uuml;r die Nutzer gedacht, die besondere
+ Anwendungsgebiete f&uuml;r Mageia im Sinn haben, wie z. B. einen Server oder
+ einen spezialisierten Arbeitsplatzrechner. Sie werden diese Option
+ vermutlich in Verbindung mit der zuvor erw&auml;hnten Option
+ <span class="emphasis"><em>Individuelle Paketauswahl</em></span> verwenden, um
+ Feineinstellungen f&uuml;r Ihre Installation vorzunehmen. Siehe <a class="xref" href="choosePackagesTree.html" title="W&auml;hlen Sie individuelle Pakete">Choose Packages Tree</a>.
</p>
+
- <p>Wenn ausgew&auml;hlt, wird "Mit X" auch IceWM als eine leichtgewichtige
- Desktop-Umgebung beinhalten.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Durch das Abw&auml;hlen aller <span class="emphasis"><em>Paketgruppen</em></span> im Auswahlmen&uuml;
+ k&ouml;nnen Sie eine <span class="emphasis"><em>minimale Installation</em></span> durchf&uuml;hren,
+ siehe <a class="xref" href="choosePackageGroups.html" title="Paketgruppenauswahl">Choose Package Groups</a>.
+ </p>
+
+
+ <p>Falls erw&uuml;nscht, k&ouml;nnen Sie zust&auml;tzlich die Option <span class="emphasis"><em>Individuelle
+ Paketauswahl</em></span>, im gleichen Bildschirm, anklicken.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Falls Sie diese Installationsart w&auml;hlen, wird das n&auml;chste Fenster (siehe
+ Screenshot unten) eine spezielle Paketauswahl zur Installation anbieten, wie
+ zum Beispiel die Dokumentation und <span class="quote">&#8222;<span class="quote">X</span>&#8220;</span>.
+ </p>
+
+
+ <p>Wenn <span class="bold"><strong>Mit X</strong></span> ausgew&auml;hlt wird, dann ist IceWM
+ (eine leichtgewichtige Desktop-Umgebung) mit inbegriffen.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <p>Die grundlegenden Dokumente werden in Form von man- und info-Seiten
- bereitgestellt. Diese beinhalten die man-pages des <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Linux Documentation
- Project</a> und die info-Seiten der <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU
+ <p>Die grundlegende Dokumentation wird in Form von <span class="quote">&#8222;<span class="quote">man</span>&#8220;</span>- und
+ <span class="quote">&#8222;<span class="quote">info</span>&#8220;</span>-Seiten bereitgestellt. Diese beinhalten die man pages
+ des <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Linux
+ Documentation Project</a> und die info-Seiten der <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU
coreutils</a>.
</p>
-
</div>
</body>
</html>
diff --git a/de/misc-params.html b/de/misc-params.html
index 9d1c3b1..3c56148 100644
--- a/de/misc-params.html
+++ b/de/misc-params.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Zusammenfassung von verschiedenen Parameter</title>
+ <title>Zusammenfassung der Konfiguration</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="setupBootloaderAddEntry.html" title="Hinzuf&uuml;gen oder &auml;ndern eines Boot Men&uuml; Eintrags">
+ <link rel="prev" href="setupBootloaderAddEntry.html" title="Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag">
<link rel="next" href="configureTimezoneUTC.html" title="Konfiguration der Zeitzone"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Zusammenfassung von verschiedenen Parameter">
+ <div lang="de" class="section" title="Zusammenfassung der Konfiguration">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="misc-params"></a>Zusammenfassung von verschiedenen Parameter
+ <h2 class="title"><a name="misc-params"></a>Zusammenfassung der Konfiguration
</h2>
</div>
</div>
@@ -29,11 +29,21 @@
- <p><a name="misc-params-pa1"></a>DrakX f&uuml;hrt eine intelligente Auswahl f&uuml;r die Konfiguration Ihres Systems
- durch, abh&auml;ngig von der von Ihnen getroffenen Auswahl und der von DrakX
- entdeckten Hardware. Sie k&ouml;nnen diese Einstellungen hier nochmals &uuml;berpr&uuml;fen
- und diese gegebenenfalls &auml;ndern, indem Sie auf
- <span class="guibutton">Konfiguration</span> klicken.
+
+
+
+
+
+
+
+
+
+
+ <p><a name="misc-params-pa1"></a>DrakX bietet eine Vorauswahl f&uuml;r die Konfiguration Ihres Systems, abh&auml;ngig
+ von der von Ihnen getroffenen Auswahl und der von DrakX erkannten
+ Hardware. Sie k&ouml;nnen diese Einstellungen hier nochmals &uuml;berpr&uuml;fen und diese
+ gegebenenfalls &auml;ndern, indem Sie auf <span class="emphasis"><em>Konfiguration</em></span>
+ klicken.
</p>
@@ -46,9 +56,8 @@
<tr>
<td align="left" valign="top">
- <p>Als Grundregel k&ouml;nnen die Standardeinstellungen als die empfohlenen
- betrachtet werden, die Sie beibehalten k&ouml;nnen, au&szlig;er bei folgenden 3
- Ausnahmen:
+ <p>Grunds&auml;tzlich k&ouml;nnen die Voreinstellungen als die empfohlenen betrachtet
+ werden, die Sie beibehalten k&ouml;nnen, au&szlig;er bei folgenden Ausnahmen:
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
@@ -66,7 +75,9 @@
</li>
<li class="listitem">
- <p>etwas anderes wird weiter unten, in den detaillierten Abschnitten, genannt</p>
+ <p>Ein anderer Grund, der in den folgenden Abschnitten erw&auml;hnt wird, ist
+ problematisch
+ </p>
</li>
</ul>
@@ -94,55 +105,52 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-system-pa2"></a><span class="guilabel">Zeitzone</span></p>
+ <p><a name="misc-params-system-pa2"></a><span class="bold"><strong>Zeitzone</strong></span></p>
<p><a name="misc-params-system-pa2a"></a>DrakX w&auml;hlt eine Zeitzone f&uuml;r Sie, abh&auml;ngig von der von Ihnen bevorzugten
Sprache. Sie k&ouml;nnen die Zeitzone &auml;ndern, falls dies n&ouml;tig ist. Siehe auch
- unter <a class="xref" href="configureTimezoneUTC.html" title="Konfiguration der Zeitzone">&#8222;Konfiguration der Zeitzone&#8220;</a></p>
+ unter <a class="xref" href="configureTimezoneUTC.html" title="Konfiguration der Zeitzone">Configure Timezone</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa3"></a><span class="guilabel">Land / Region</span></p>
+ <p><a name="misc-params-system-pa3"></a><span class="bold"><strong>Land / Region</strong></span></p>
<p><a name="misc-params-system-pa3a"></a>Befinden Sie sich nicht im gew&auml;hlten Land, so ist es sehr wichtig, dass Sie
- diese Einstellung korrigieren. Siehe <a class="xref" href="selectCountry.html" title="W&auml;hlen des Landes / der Region">&#8222;W&auml;hlen des Landes / der Region&#8220;</a></p>
+ diese Einstellung korrigieren. Siehe <a class="xref" href="selectCountry.html" title="W&auml;hlen des Landes / der Region">Select Country</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa4"></a><span class="guilabel">Bootloader</span></p>
+ <p><a name="misc-params-system-pa4"></a><span class="bold"><strong>Bootloader</strong></span></p>
- <p><a name="misc-params-system-pa4a"></a>DrakX trifft normalerweise eine passende Auswahl f&uuml;r die Einstellungen des
- Bootloaders.
+ <p><a name="misc-params-system-pa4a"></a>DrakX Vorschlag f&uuml;r die Einstellungen des Bootloaders
</p>
- <p><a name="misc-params-system-pa4b"></a>&Auml;ndern Sie an den Einstellungen nichts, es sei denn, Sie wissen genau, wie
- Grub2 zu konfigurieren ist
- </p>
+ <p><a name="misc-params-system-pa4b"></a>&Auml;ndern Sie an den Einstellungen nichts, es sei denn, Sie wissen, wie GRUB2
+ konfiguriert wird. Weitere Informationen finden Sie unter <a class="xref" href="setupBootloader.html" title="Bootloader">Bootloader</a></p>
- <p><a name="misc-params-system-pa4c"></a>Weitere Informationen finden Sie unter <a class="xref" href="setupBootloader.html" title="Hauptoptionen des Bootloaders">&#8222;Hauptoptionen des Bootloaders&#8220;</a></p>
+
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa5"></a><span class="guilabel">Benutzerverwaltung</span></p>
+ <p><a name="misc-params-system-pa5"></a><span class="bold"><strong>Benutzerverwaltung</strong></span></p>
- <p><a name="misc-params-system-pa5a"></a>Hier k&ouml;nnen Sie weitere Benutzer hinzuf&uuml;gen. Diese werden in jeweils
- benutzereigenen Ordnern unter <code class="literal">/home</code> angelegt.
+ <p><a name="misc-params-system-pa5a"></a>Hier k&ouml;nnen Sie weitere Benutzer hinzuf&uuml;gen. Diese werden ihre jeweils
+ eigenen <code class="filename">/home</code> Verzeichnisse erhalten.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa6"></a><span class="guilabel">Dienste</span>:
- </p>
+ <p><a name="misc-params-system-pa6"></a><span class="bold"><strong>Dienste</strong></span></p>
<p><a name="misc-params-system-pa6a"></a>Systemdienste beziehen sich auf die kleinen Programme, die im Hintergrund
@@ -152,11 +160,8 @@
<p><a name="misc-params-system-pa6b"></a>Sie sollten sehr sorgf&auml;ltig pr&uuml;fen, was Sie tun, bevor Sie hier etwas &auml;ndern
- - ein Fehler kann Ihren Computer davon abhalten, korrekt zu funktionieren.
- </p>
-
-
- <p>Weitere Informationen finden Sie unter <a class="xref" href="configureServices.html" title="Konfigurieren Ihrer Dienste">&#8222;Konfigurieren Ihrer Dienste&#8220;</a></p>
+ - ein Fehler kann Ihren Computer davon abhalten, korrekt zu
+ funktionieren. Weitere Informationen finden Sie unter <a class="xref" href="configureServices.html" title="Konfigurieren Ihrer Dienste">Configure Services</a></p>
</li>
</ul>
@@ -181,8 +186,7 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-hardware-pa1"></a><span class="guilabel">Tastatur</span>:
- </p>
+ <p><a name="misc-params-hardware-pa1"></a><span class="bold"><strong>Tastatur</strong></span></p>
<p><a name="misc-params-hardware-pa1a"></a>Hier bestimmen oder &auml;ndern Sie die Belegung Ihrer Tastatur, abh&auml;ngig von
@@ -200,8 +204,8 @@
<td align="left" valign="top">
<p>Wenn Sie feststellen, dass ein falsches Tastaturlayout verwendet wird und
- Sie dieses &auml;ndern m&ouml;chten, beachten Sie, das sich Ihr Passwort hierdurch
- auch &auml;ndert.
+ Sie dieses &auml;ndern m&ouml;chten, dann beachten Sie, dass sich hierdurch auch Ihre
+ Passw&ouml;rter &auml;ndern.
</p>
</td>
@@ -212,8 +216,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa2"></a><span class="guilabel">Maus</span>:
- </p>
+ <p><a name="misc-params-hardware-pa2"></a><span class="bold"><strong>Maus</strong></span></p>
<p><a name="misc-params-hardware-pa2a"></a>Hier k&ouml;nnen Sie Ihr Zeigeger&auml;t, Tablett, Ihren Trackball usw. hinzuf&uuml;gen
@@ -223,30 +226,32 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa3"></a><span class="guilabel">Soundkarte</span>:
+ <p><a name="misc-params-hardware-pa3"></a><span class="bold"><strong>Soundkarte</strong></span></p>
+
+
+ <p><a name="misc-params-hardware-pa3a"></a>Der Installer wird den Standardtreiber verwenden, wenn einer verf&uuml;gbar ist.
</p>
- <p><a name="misc-params-hardware-pa3a"></a>Der Installer nutzt den Standardtreiber, wenn einer installiert ist. Die
- Option, um einen anderen Treiber zu w&auml;hlen, wird nur angezeigt, wenn es
- mehrere Treiber f&uuml;r ihre Karte gibt und keiner Standard ist.
+ <p>Fall kein aktueller Treiber f&uuml;r Ihre Soundkarte vorhanden ist, gibt es
+ gegebenenfalls alternative Treiber, die ausgew&auml;hlt werden k&ouml;nnen. Falls dies
+ der Fall ist, Sie jedoch finden, dass der Installer nicht die beste Wahl
+ getroffen hat, k&ouml;nnen Sie auf <span class="emphasis"><em>Fortgeschrittene Optionen</em></span>
+ klicken und den Treiber manuell ausw&auml;hlen.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa4"></a><span class="guilabel">Grafikkarte</span>:
- </p>
+ <p><a name="misc-params-hardware-pa4"></a><span class="bold"><strong>Grafikumgebung</strong></span></p>
<p><a name="misc-params-hardware-pa4a"></a>Dieser Abschnitt erlaubt es Ihnen, die Grafikkarte(n) und die Anzeige
- einzustellen.
- </p>
+ einzustellen. Weitere Informationen finden Sie unter <a class="xref" href="configureX_chooser.html" title="Konfiguration der Grafikkarte und des Bildschirms">&#8222;Konfiguration der Grafikkarte und des Bildschirms&#8220;</a></p>
- <p><a name="misc-params-hardware-pa4b"></a>Weitere Informationen finden Sie unter <a class="xref" href="configureX_chooser.html" title="Konfiguration der Grafikkarte und des Bildschirms">&#8222;Konfiguration der Grafikkarte und des Bildschirms&#8220;</a>.
- </p>
+
</li>
</ul>
</div>
@@ -272,14 +277,13 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-network-pa1"></a><span class="guilabel">Netzwerk</span>:
- </p>
+ <p><a name="misc-params-network-pa1"></a><span class="bold"><strong>Netzwerk</strong></span></p>
<p><a name="misc-params-network-pa2"></a>Sie k&ouml;nnen Ihr Netzwerk hier konfigurieren, f&uuml;r Netzwerkkarten mit nonfree
- Treibern ist es besser dies nach dem Neustart im <span class="application">Mageia
- Kontrollzentrum</span> vorzunehmen, falls Sie das non-free media
- Repositorium noch nicht aktiviert haben.
+ Treibern ist es besser dies nach dem Neustart im Mageia Kontrollzentrum
+ vorzunehmen, falls Sie die <span class="emphasis"><em>non-free</em></span> Repositorys noch
+ nicht aktiviert haben.
</p>
@@ -304,8 +308,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-network-pa4"></a><span class="guilabel">Proxys</span>:
- </p>
+ <p><a name="misc-params-network-pa4"></a><span class="bold"><strong>Proxys</strong></span></p>
<p><a name="misc-params-network-pa4a"></a>Ein Proxy-Server fungiert als Vermittler zwischen Ihrem Computer und dem
@@ -314,7 +317,8 @@
</p>
- <p><a name="misc-params-network-pa4b"></a>Fragen Sie Ihren Systemadministrator nach Ihren Zugangsdaten.
+ <p><a name="misc-params-network-pa4b"></a>Sie m&uuml;ssen gegebenenfalls Ihren Systemadministrator nach den Zugangsdaten
+ fragen, die Sie hier eingeben m&uuml;ssen.
</p>
</li>
@@ -340,36 +344,37 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-security-pa1"></a><span class="guilabel">Sicherheitsstufe</span>:
- </p>
-
-
- <p><a name="misc-params-security-pa1a"></a>Hier setzen Sie die Sicherheitsstufe f&uuml;r Ihren Computer. In den meisten
- F&auml;llen ist die vorgegebene Einstellung (Standard) ausreichend f&uuml;r allgemeine
- Zwecke.
- </p>
+ <p><a name="misc-params-security-pa1"></a><span class="bold"><strong>Sicherheitsstufe</strong></span></p>
- <p><a name="misc-params-security-pa1b"></a>&Uuml;berpr&uuml;fen Sie die Option, die Ihnen f&uuml;r Ihren Verwendungzweck am
- geeignetsten erscheint.
+ <p><a name="misc-params-security-pa1a"></a>Die Sicherheitsstufe f&uuml;r Ihren Computer, in den meisten F&auml;llen die
+ Voreinstellung (Standard), ist f&uuml;r die gew&ouml;hnliche Nutzung
+ ausreichend. W&auml;hle die Option, welche am besten zu Ihrem Nutzungsverhalten
+ passt.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-security-pa2"></a><span class="guilabel">Firewall</span>:
+ <p><a name="misc-params-security-pa2"></a><span class="bold"><strong>Firewall</strong></span></p>
+
+
+ <p><a name="misc-params-security-pa2b"></a>Die Firewall erm&ouml;glicht Ihnen festzulegen, welche Netzwerkverbindungen auf
+ Ihrem Computer erlaubt sind. Die sichere Voreinstellung ist es, KEINE
+ eingehende Verbindungen zuzulassen. Dies verhindert keine ausgehende
+ Verbindungen und Sie k&ouml;nnen den Computer normal verwenden.
</p>
- <p><a name="misc-params-security-pa2a"></a>Eine Firewall dient als Barriere zwischen Ihren wichtigen Daten und den
- Spitzbuben drau&szlig;en im Internet, die diese Daten gef&auml;hrden oder stehlen
- wollen.
+ <p>Bitte beachte, dass das Internet ein hochriskantes Netzwerk ist, bei dem
+ st&auml;ndig versucht wird Systeme zu untersuchen und Angriffe
+ durchzuf&uuml;hren. Selbst scheinbar <span class="quote">&#8222;<span class="quote">sichere</span>&#8220;</span> Verbindungen, wie
+ ICMP (f&uuml;r Ping), wurden bereits von b&ouml;swilligen Personen als verdeckte
+ Datenkan&auml;le verwendet, um Daten in Systeme einzuschleusen.
</p>
- <p><a name="misc-params-security-pa2b"></a>W&auml;hlen Sie die Dienste, denen Sie Zugriff auf Ihr System gestatten
- wollen. Die von Ihnen getroffene Auswahl ist abh&auml;ngig davon, wof&uuml;r Sie Ihren
- Computer verwenden wollen. F&uuml;r weitere Informationen siehe <a class="xref" href="firewall.html" title="Firewall">&#8222;Firewall&#8220;</a>.
+ <p>F&uuml;r weitere Informationen siehe <a class="xref" href="">???</a>.
</p>
@@ -382,8 +387,8 @@
<tr>
<td align="left" valign="top">
- <p><a name="misc-params-security-pa2c"></a>Beachten Sie aber, dass Sie ein gro&szlig;es Risiko eingehen, wenn Sie alles
- erlauben (keine Firewall).
+ <p><a name="misc-params-security-pa2c"></a>Beachten Sie aber, dass Sie ein gro&szlig;es Risiko eingehen, wenn Sie
+ <span class="emphasis"><em>alles</em></span> erlauben (Keine Firewall).
</p>
</td>
diff --git a/de/securityLevel.html b/de/securityLevel.html
index bb9f5c2..cfccae1 100644
--- a/de/securityLevel.html
+++ b/de/securityLevel.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="soundConfig.html" title="Soundkonfiguration">
- <link rel="next" href="firewall.html" title="Firewall"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="installUpdates.html" title="Aktualisierungen (Updates)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,30 +22,71 @@
</div>
</div>
</div>
+
+
-
+
+
+
-
-
+
+
+ <p><span class="bold"><strong>W&auml;hlen Sie hier ihre Sicherheitsstufe aus</strong></span></p>
+
+ <p><a name="securityLevel-pa1"></a><span class="emphasis"><em>Standard</em></span> ist die Voreinstellung und die empfohlene
+ Auswahl f&uuml;r den gew&ouml;hnlichen Anwender.
+ </p>
-
- <p><a name="securityLevel-pa1"></a>Hier k&ouml;nnen Sie die Sicherheitsstufe einstellen.
+
+ <p><span class="emphasis"><em>Secure</em></span> erstellt ein stark gesch&uuml;tztes System - zum
+ Beispiel, wenn das System als &ouml;ffentlicher Server verwendet wird.
</p>
-
- <p><a name="securityLevel-pa2"></a>Lassen Sie diese Einstellungen, so wie sie sind, wenn Sie nicht genau
- wissen, was Sie ausw&auml;hlen sollen.
+
+ <p><span class="bold"><strong>Sicherheitsadministrator</strong></span></p>
+
+
+ <p><a name="securityLevel-pa2"></a>Dies erm&ouml;glicht es Ihnen eine E-Mail Adresse anzugeben, an dieser das System
+ <span class="emphasis"><em>Sicherheits-Warnmeldungen</em></span> senden wird, die eine
+ Benachrichtigung an einen Systemadministrator erfordern.
</p>
-
- <p><a name="securityLevel-pa3"></a>Nach der Installation ist es jederzeit m&ouml;glich, die Sicherheitseinstellungen
- zu &auml;ndern, indem Sie im Mageia Kontrollzentrum den Abschnitt
- <span class="guilabel">Sicherheit</span> an der linken Seite des Fensters w&auml;hlen.
+
+ <p>Eine gute und einfach zu implementierende M&ouml;glichkeit ist es,
+ &lt;benutzer&gt;@localhost einzugeben - wobei &lt;benutzer&gt; durch den
+ Anmeldename des Benutzers ersetzt werden muss, der die Meldungen erhalten
+ soll.
</p>
+
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Das System sendet solche Nachrichten als <span class="bold"><strong>Unix
+ Mailspool Nachricht</strong></span>, nicht als "ordin&auml;re" SMTP Mail: dieser
+ Benutzer muss aus daher f&uuml;r den Erhalt solcher Mails konfiguriert sein!
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <p><a name="securityLevel-pa3"></a>Es ist jederzeit m&ouml;glich, die Sicherheitseinstellungen, nach der
+ Installation, im Abschnitt <span class="emphasis"><em>Sicherheit</em></span> des Mageia
+ Kontrollzentrum, anzupassen.
+ </p>
+
</div>
</body>
</html>
diff --git a/de/selectCountry.html b/de/selectCountry.html
index 4ea6e2f..99fe288 100644
--- a/de/selectCountry.html
+++ b/de/selectCountry.html
@@ -29,17 +29,31 @@
- <p><a name="selectCountry-pa1"></a>W&auml;hlen Sie Ihr Land oder Ihre Region. Dies ist f&uuml;r alle Einstellungen n&ouml;tig,
- wie f&uuml;r die W&auml;hrung und die f&uuml;r dieses Land g&uuml;ltigen Einstellungen des
- Funknetzes. W&auml;hlen Sie das falsche Land aus, kann dies zu einer Fehlfunktion
- des WLAN f&uuml;hren.
- </p>
- <p><a name="selectCountry-pa2"></a>Wenn Sie Ihr Land nicht in der Liste finden, klicken Sie auf den Knopf
- <span class="guilabel">Andere L&auml;nder</span> und w&auml;hlen Sie hier Ihr Land und Ihre
- Region.
- </p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="selectCountry-pa1"></a>W&auml;hlen Sie Ihr Land oder Ihre Region. Dies ist f&uuml;r alle Einstellungen n&ouml;tig,
+ wie f&uuml;r die W&auml;hrung und die f&uuml;r dieses Land g&uuml;ltigen Einstellungen des
+ Funknetzes. Setzen Sie das falsche Land, kann dies dazu f&uuml;hren, dass Sie
+ keine Drahtlosnetzwerke nutzen k&ouml;nnen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="selectCountry-pa2"></a>Wenn Sie Ihr Land nicht in der Liste finden, klicken Sie auf den Knopf
+ <span class="emphasis"><em>Andere L&auml;nder</em></span> und w&auml;hlen Sie hier Ihr Land und Ihre
+ Region.
+ </p>
+
+ </li>
+ </ul>
+ </div>
<div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -51,10 +65,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="selectCountry-pa3"></a>Finden Sie Ihr Land nur in der Liste <span class="guilabel">Andere L&auml;nder</span>,
- nachdem Sie auf <span class="guibutton">OK</span> geklickt haben, so hat es den
- Anschein, als h&auml;tten Sie ein Land aus der ersten Liste gew&auml;hlt. Bitte
- ignorieren Sie dies, DrakX befolgt die von Ihnen getroffene Auswahl.
+ <p><a name="selectCountry-pa3"></a>Finden Sie Ihr Land nur in der Liste <span class="emphasis"><em>Andere L&auml;nder</em></span>, so
+ hat es den Anschein, nachdem Sie in dieser Liste auf <span class="emphasis"><em>OK</em></span>
+ geklickt haben, als h&auml;tten Sie ein Land aus der Hauptliste gew&auml;hlt. Beachten
+ Sie dies nicht, DrakX befolgt die von Ihnen getroffene Auswahl.
</p>
</td>
@@ -75,7 +89,7 @@
- <p><a name="selectCountry-pa4"></a>Im <span class="guilabel">Andere L&auml;nder</span> Bildschirm k&ouml;nnen Sie weitere
+ <p><a name="selectCountry-pa4"></a>Im <span class="emphasis"><em>Andere L&auml;nder</em></span> Bildschirm k&ouml;nnen Sie weitere
Eingabemethoden ausw&auml;hlen (am unteren Ende der Liste). Eingabemethoden
erlauben es den Benutzern, multilinguale Zeichen (Chinesisch, Japanisch,
Koreanisch, usw.) einzugeben. IBus ist die voreingestellte Eingabemethode,
@@ -96,9 +110,9 @@
<td align="left" valign="top">
<p><a name="selectCountry-pa5"></a>Falls Sie die Einrichtung der Eingabemethode w&auml;hrend der Installation
- verpasst haben, k&ouml;nnen Sie auch darauf zugreifen, nachdem sie Ihr
- installiertes System &uuml;ber "Konfigurieren Ihres Computers" -&gt; "System" neu
- gestartet haben, oder indem Sie localedrake als root ausf&uuml;hren.
+ verpasst haben, k&ouml;nnen Sie auch nach der Installation darauf &uuml;ber
+ <span class="guimenu">Konfigurieren Ihres Computers</span> &#8594; <span class="guimenuitem">System</span>, zugreifen, oder indem Sie
+ <span class="command"><strong>localedrake</strong></span> als <span class="emphasis"><em>root</em></span> ausf&uuml;hren.
</p>
</td>
diff --git a/de/selectInstallClass.html b/de/selectInstallClass.html
index b84b4c4..10d1543 100644
--- a/de/selectInstallClass.html
+++ b/de/selectInstallClass.html
@@ -22,6 +22,11 @@
</div>
</div>
</div>
+
+
+
+
+
@@ -30,6 +35,9 @@
+
+
+
@@ -38,73 +46,49 @@
<div class="itemizedlist">
- <ul class="itemizedlist">
+ <ul class="itemizedlist" compact>
<li class="listitem">
- <p>Installation</p>
+ <p><span class="bold"><strong>Installation</strong></span></p>
- <p>Verwenden Sie diese Option f&uuml;r eine frische
- <span class="application">Mageia</span>-Installation.
+ <p>Diese Auswahl f&uuml;hrt eine frische Installation von Mageia durch. Dies wird
+ die <code class="literal">root</code> Partition (<code class="filename">/</code>) formatieren,
+ man kann jedoch eine bereits bestehende (separat vorhandene - nicht in der
+ root (/) Partition befindliche) <code class="filename">/home</code> Partition
+ beibehalten.
</p>
</li>
<li class="listitem">
- <p>Aktualisiere Mageia</p>
+ <p><span class="bold"><strong>Aktualisieren</strong></span></p>
- <p>Falls Sie eine oder mehrere <span class="application">Mageia</span> Installationen
- auf ihrem Rechner haben, k&ouml;nnen Sie mit Hilfe des Installers eine davon auf
- die neueste Version upgraden.
+ <p>W&auml;hle diese Auswahl um eine bestehende Installation von Mageia zu
+ aktualisieren.
</p>
-
-
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>W&auml;hrend der Ver&ouml;ffentlichung dieses Installers ist nur das Upgrade von der
- zuletzt <span class="emphasis"><em>unterst&uuml;tzten</em></span> Mageia Version gr&uuml;ndlich getestet
- worden. Wenn Sie eine Mageia Version upgraden m&ouml;chten, die bereits das Ende
- des Supportzeitrahmens erreicht hat, ist es besser eine Neuinstallation
- durchzuf&uuml;hren und ihre <code class="literal">/home</code> Partition bestehen zu
- lassen.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
</li>
</ul>
</div>
- <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Wichtig]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Falls Sie w&auml;hrend des Installationsvorgangs die Installation abbrechen
- wollen, besteht die M&ouml;glichkeit, das System neu zu booten. Denken Sie aber
- zweimal nach, bevor Sie das tun. Nachdem eine Partition formatiert oder
- Aktualisierungen aufgespielt wurden, besitzt der Computer nicht mehr den
- urspr&uuml;nglichen Status und ein Neustart k&ouml;nnte ein instabiles System zur
- Folge haben. Falls Sie trotz allem sicher sind, dass Sie einen Neustart
- durchf&uuml;hren wollen, wechseln Sie durch das Dr&uuml;cken der Tastenkombination
- <span class="guilabel">Strg+Alt+F2</span> zum Terminal. Danach dr&uuml;cken Sie bitte
- <span class="guilabel">Strg+Alt+Entf</span> um den Neustart durchzuf&uuml;hren.
+ <p>W&auml;hrend der Ver&ouml;ffentlichung dieses Installationsprogramms ist nur das
+ Upgrade von der zuletzt <span class="emphasis"><em>unterst&uuml;tzten</em></span> Mageia Version
+ gr&uuml;ndlich getestet worden. Wenn Sie eine Mageia Version upgraden m&ouml;chten,
+ die bereits das <span class="quote">&#8222;<span class="quote">Ende des Supportzeitrahmens</span>&#8220;</span> erreicht hat, ist
+ es besser eine <span class="quote">&#8222;<span class="quote">Neuinstallation</span>&#8220;</span> durchzuf&uuml;hren und ihre
+ <code class="filename">/home</code> Partition bestehen zu lassen.
</p>
</td>
@@ -122,11 +106,11 @@
<tr>
<td align="left" valign="top">
- <p>Falls Sie es vers&auml;umt haben, bei der Installation eine zus&auml;tzliche Sprache
- hinzuzuf&uuml;gen, k&ouml;nnen Sie vom "Installations- oder Upgrade-Fenster" zum
- Auswahlmen&uuml; der Sprachen durch das Dr&uuml;cken der Tastenkombination
- <span class="guilabel">Strg+Alt+Pos1</span> zur&uuml;ckkehren. Tun Sie das
- <span class="emphasis"><em>nicht</em></span> sp&auml;ter im Installationsprozess.
+ <p>Falls Sie festgestellt haben, dass Sie vers&auml;umt haben, bei der Installation
+ eine zus&auml;tzliche Sprache hinzuzuf&uuml;gen, k&ouml;nnen Sie vom
+ <span class="emphasis"><em>Installations- oder Aktualisierungs</em></span>-Fenster zum Fenster
+ mit der Sprachauswahl, durch dr&uuml;cken der Tastenkombination
+ <span class="keycap"><strong>Strg</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Pos1</strong></span>, zur&uuml;ckkehren. Tun Sie dies <span class="bold"><strong>NICHT</strong></span> sp&auml;ter w&auml;hrend der Installation.
</p>
</td>
diff --git a/de/selectKeyboard.html b/de/selectKeyboard.html
index fbf966e..f2a1189 100644
--- a/de/selectKeyboard.html
+++ b/de/selectKeyboard.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="selectInstallClass.html" title="Installation oder Aktualisierung">
- <link rel="next" href="doPartitionDisks.html" title="Partitionierung"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="doPartitionDisks.html" title="Vorgeschlagene Partitionierung"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,12 @@
</div>
</div>
</div>
+
+
+
+
+
+
@@ -52,27 +58,27 @@
</li>
<li class="listitem">
- <p><a name="selectKeyboard-pa3"></a>Ist Ihre Tastatur nicht in der angezeigten Liste zu finden, klicken Sie auf
- <span class="guibutton">Mehr</span>, um eine vollst&auml;ndige Liste zu erhalten, und
- w&auml;hlen hier Ihre Tastatur.
+ <p><a name="selectKeyboard-pa3"></a>Falls Ihre Tastatur nicht in der angezeigten Liste zu finden ist, klicke auf
+ <span class="emphasis"><em>Mehr</em></span>, um eine vollst&auml;ndige Liste zu erhalten, und w&auml;hle
+ dort Ihre Tastatur aus.
</p>
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p><a name="selectKeyboard-pa5"></a>Nachdem Sie eine Tastatur aus dem Dialog <span class="guibutton">Mehr</span> gew&auml;hlt
+ <p><a name="selectKeyboard-pa5"></a>Nachdem Sie eine Tastatur aus dem Dialog <span class="emphasis"><em>Mehr</em></span> gew&auml;hlt
haben, kehren Sie in den ersten Dialog zum Ausw&auml;hlen der Tastatur zur&uuml;ck,
- und es wird hier angezeigt, dass eine Tastatur aus diesem Dialog ausgew&auml;hlt
- wurde. Sie k&ouml;nnen ohne weiteres diese Anomalie ignorieren und mit der
- Installation fortfahren: Ihre Tastatur ist eine, die aus der vollst&auml;ndigen
- Liste gew&auml;hlt wurde.
+ und es sieht so aus, als w&auml;re eine Tastatur von diesem Bildschirm
+ ausgew&auml;hlt. Sie k&ouml;nnen diese Anzeige ohne weiteres ignorieren und mit der
+ Installation fortfahren: die Tastatur, welche aus der vollst&auml;ndigen Liste
+ ausgew&auml;hlt wurde, wird verwendet.
</p>
</td>
diff --git a/de/selectLanguage.html b/de/selectLanguage.html
index e2ec7cb..75e5543 100644
--- a/de/selectLanguage.html
+++ b/de/selectLanguage.html
@@ -23,33 +23,59 @@
</div>
</div>
+
+
+
+
+
+
- <p>W&auml;hlen Sie die von Ihnen bevorzugte Sprache, indem Sie zuerst die Liste f&uuml;r
- Ihren Kontinent aufklappen. Beachten Sie dabei auch, dass einige Sprachen
- auch mehrere Dialekte enthalten k&ouml;nnen. <span class="application">Mageia</span>
- verwendet diese Auswahl f&uuml;r das Installationsprogramm und das installierte
- System.
- </p>
+
+
- <p>W&uuml;nschen (oder ben&ouml;tigen) Sie mehrere installierte Sprachen auf Ihrem
- System, f&uuml;r Sie selbst und/oder andere Anwender, dann sollten Sie den Knopf
- <span class="bold"><strong><span class="bold"><strong>Mehrere
- Sprachen</strong></span></strong></span> anklicken, um diese Sprachen nun
- hinzuzuf&uuml;gen. Es ist etwas komplexer, erst nach der Installation weitere
- Sprachen hinzuzuf&uuml;gen.
- </p>
+
+
+
+
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>W&auml;hlen Sie die von Ihnen bevorzugte Sprache, indem Sie zuerst die Liste f&uuml;r
+ Ihren Kontinent aufklappen. Mageia verwendet diese Auswahl f&uuml;r das
+ Installationsprogramm und das installierte System.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Ben&ouml;tigen Sie (oder andere Anwender) mehrere installierte Sprachen auf Ihrem
+ System, dann sollten Sie den Knopf <span class="emphasis"><em>Mehrere Sprachen</em></span>
+ anklicken, um diese Sprachen nun hinzuzuf&uuml;gen. Es ist etwas komplexer, erst
+ nach der Installation weitere Sprachen hinzuzuf&uuml;gen.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
- <div class="warning" title="Warnung" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+ <div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warnung]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Wichtig]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
@@ -57,38 +83,41 @@
<p>Auch wenn Sie mehr als eine Sprache w&auml;hlen, m&uuml;ssen Sie zuerst im ersten
Auswahlbildschirm jene Sprache w&auml;hlen, die von Ihnen bevorzugt wird. Diese
- wird dann am Bildschirm f&uuml;r mehrere Sprachen als gew&auml;hlt markiert.
+ wird auch am Bildschirm f&uuml;r <span class="emphasis"><em>mehrere Sprachen</em></span> als
+ gew&auml;hlt markiert sein.
</p>
</td>
</tr>
</table>
</div>
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Ist die Tastaturbelegung nicht die gleiche wie die von Ihnen bevorzugte
- Sprache, dann ist es empfehlenswert, auch die Sprache Ihrer Tastaturbelegung
- zu w&auml;hlen.
+ <p>Falls die Sprache Ihrer Tastatur nicht mit der von Ihnen bevorzugten
+ Anzeigesprache &uuml;bereinstimmt, dann ist es empfehlenswert zus&auml;tzlich die
+ Sprache zu installieren, die Ihre Tastatur verwendet.
</p>
</li>
<li class="listitem">
- <p>Mageia verwendet standardm&auml;&szlig;ig die UTF-8 (Unicode) Unterst&uuml;tzung.</p>
-
- <p>Dies kann in der Ansicht "Mehrere Sprachen" deaktiviert werden, wenn Sie
- wissen, dass es f&uuml;r Ihre Sprache notwendig ist. Das Deaktivieren von UTF-8
- wirkt sich auf alle installierten Sprachen aus.
+ <p>Mageia verwendet als Voreinstellung die Unterst&uuml;tzung von UTF-8
+ (Unicode). Dies kann unter Umst&auml;nden am Bildschirm f&uuml;r <span class="emphasis"><em>Mehrere
+ Sprachen</em></span> deaktiviert sein, falls bekannt ist, dass f&uuml;r Ihre
+ Sprache keine solche Unterst&uuml;tzung vorhanden ist. Die Deaktivierung von
+ UTF-8 gilt dann f&uuml;r alle installierten Sprachen.
</p>
</li>
<li class="listitem">
- <p>Sie k&ouml;nnen die Sprache Ihres Systems nach der Installation im Mageia
- Kontrollzentrum -&gt; System -&gt; Ausw&auml;hlen der Region und Sprache &auml;ndern.
+ <p>Sie k&ouml;nnen die Sprache Ihres Systems nach der Installation im
+ <span class="guimenu">Mageia Kontrollzentrum</span> &#8594; <span class="guimenuitem">System</span> &#8594; <span class="guimenuitem">Ausw&auml;hlen der Region und
+ Sprache</span> &auml;ndern.
</p>
</li>
diff --git a/de/selectMouse.html b/de/selectMouse.html
index e4edc30..5f76c37 100644
--- a/de/selectMouse.html
+++ b/de/selectMouse.html
@@ -24,31 +24,32 @@
</div>
-
-
-
+
+
+
+
+
-
<p><a name="selectMouse-pa1"></a>Falls Sie mit dem Mausverhalten nicht zufrieden sind, k&ouml;nnen Sie hier eine
andere Konfiguration ausw&auml;hlen.
</p>
-
- <p><a name="selectMouse-pa2"></a>&Uuml;blicherweise ist <span class="guilabel">"Universell"</span> - <span class="guilabel">"Einige PS/2
- und USB M&auml;use"</span> eine gute Wahl.
+
+ <p><a name="selectMouse-pa2"></a>&Uuml;blicherweise ist <span class="guimenu">Universell</span> &#8594; <span class="guimenuitem">Einige PS/2 und USB M&auml;use</span> eine gute
+ Wahl.
</p>
- <p><a name="selectMouse-pa3"></a>W&auml;hlen Sie <span class="guilabel">"Universell"</span> - <span class="guilabel">"Evdev
- erzwingen"</span>, um die nicht funktionierenden zus&auml;tzlichen Tasten
- einer Multifunktionsmaus zu konfigurieren.
+ <p><a name="selectMouse-pa3"></a>W&auml;hlen Sie <span class="guimenu">Universell</span> &#8594; <span class="guimenuitem">Evdev
+ erzwingen</span>, um die nicht funktionierenden
+ zus&auml;tzlichen Tasten einer Maus mit sechs oder mehr Kn&ouml;pfen zu konfigurieren.
</p>
</div>
diff --git a/de/setupBootloader.html b/de/setupBootloader.html
index b2dee64..cef5b17 100644
--- a/de/setupBootloader.html
+++ b/de/setupBootloader.html
@@ -2,26 +2,38 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Hauptoptionen des Bootloaders</title>
+ <title>Bootloader</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="prev" href="configureX_monitor.html" title="Auswahl des Monitors">
- <link rel="next" href="setupBootloaderAddEntry.html" title="Hinzuf&uuml;gen oder &auml;ndern eines Boot Men&uuml; Eintrags"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="setupBootloaderAddEntry.html" title="Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Hauptoptionen des Bootloaders">
+ <div lang="de" class="section" title="Bootloader">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="setupBootloader"></a>Hauptoptionen des Bootloaders
+ <h2 class="title"><a name="setupBootloader"></a>Bootloader
</h2>
</div>
</div>
</div>
+
+
+
+
+
+
+
+
+
+
+
+
@@ -29,11 +41,11 @@
- <div class="section" title="Bootloader Oberfl&auml;che">
+ <div class="section" title="GRUB2">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e890"></a>Bootloader Oberfl&auml;che
+ <h3 class="title"><a name="d5e989"></a>GRUB2
</h3>
</div>
</div>
@@ -41,149 +53,65 @@
- <p>Standardm&auml;&szlig;ig verwendet Mageia ausschlie&szlig;lich:</p>
-
-
- <div class="itemizedlist">
+ <div class="itemizedlist" title="GRUB2 auf Legacy MBR/GPT Systeme">
+ <p class="title"><b>GRUB2 auf Legacy MBR/GPT Systeme</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p>Grub2 (mit oder ohne einem grafischen Men&uuml;) f&uuml;r ein Legacy/MBR oder
- Legacy/GPT System
+ <p>Bei einem Legacy/MBR oder Legacy/GPT-System wird ausschlie&szlig;lich GRUB2 (mit
+ oder ohne grafischem Men&uuml;) als Bootloader verwendet.
</p>
</li>
<li class="listitem">
- <p>Grub2-efi f&uuml;r ein UEFI System.</p>
+ <p>Als Voreinstellung wird ein neuer Bootloader entweder in den MBR (Master
+ Boot Record) Ihrer ersten Festplatte, oder in die BIOS Bootpartition,
+ geschrieben.
+ </p>
</li>
</ul>
</div>
- <div class="tip" title="Tipp" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Tip">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tipp]" src="tip.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Das grafische Men&uuml; von Mageia ist h&uuml;bsch :)</p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
- <div class="section" title="Grub2 auf Legacy/MBR und Legacy/GPT Systeme">
- <div class="titlepage">
- <div>
- <div>
- <h4 class="title"><a name="d5e900"></a>Grub2 auf Legacy/MBR und Legacy/GPT Systeme
- </h4>
- </div>
- </div>
- </div>
-
-
-
-
-
- <p>&Auml;ndern Sie nicht das Boot-Medium, au&szlig;er Sie wissen genau, was Sie tun.</p>
-
- </div>
-
-
- <div class="section" title="Grub2-efi auf UEFI Systeme">
- <div class="titlepage">
- <div>
- <div>
- <h4 class="title"><a name="d5e906"></a>Grub2-efi auf UEFI Systeme
- </h4>
- </div>
- </div>
- </div>
-
-
-
- <p>Mit einem UEFI System ist die Benutzeroberfl&auml;che deutlich anders, da Sie
- nicht zwischen einer Oberfl&auml;che mit oder ohne grafischem Men&uuml; w&auml;hlen k&ouml;nnen
- </p>
-
-
-
-
- <p>Wenn Mageia das einzige Betriebssystem ist, welches auf Ihrem Computer
- installiert ist, dann hat das Installationsprogramm eine ESP
- (EFI-Systempartition) erstellt, um dort den Bootloader (Grub2-efi) zu
- speichern. Falls bereits ein UEFI Betriebssystem auf Ihrem Computer
- vorhanden war (wie z.B. Windows 8), erkennt das Mageia Installationsprogramm
- die bestehende ESP, welche von Windows erstellt wurde und f&uuml;gt grub2-efi
- hinzu. Es ist auch m&ouml;glich mehrere ESPs zu haben, jedoch wird generell nur
- eine ben&ouml;tigt und diese ist auch ausreichend, egal wie viele Betriebssysteme
- Sie verwenden.
- </p>
-
-
- <p>&Auml;ndern Sie nicht das Boot-Medium, au&szlig;er Sie wissen genau, was Sie tun.</p>
-
- </div>
-
- </div>
-
-
- <div class="section" title="Verwenden des Mageia Bootloaders">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e914"></a>Verwenden des Mageia Bootloaders
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Standardm&auml;&szlig;ig, entsprechend Ihres Systems, schreibt Mageia folgendes neu:</p>
-
-
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Grub2-efi auf UEFI-Systeme">
+ <p class="title"><b>Grub2-efi auf UEFI-Systeme</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p>GRUB2 Bootloader, entweder in den MBR (Master Boot Record) auf Ihrer
- Festplatte oder in die BIOS Bootpartition.
+ <p>Bei einem UEFI-System wird ausschlie&szlig;lich GRUB2-efi als Bootloader
+ verwendet.
</p>
</li>
<li class="listitem">
- <p>Grub2-efi Bootloader in die ESP</p>
+ <p>Als Voreinstellung wird ein neuer Bootloader (Grub2-efi) in die ESP (EFI
+ Systempartition) geschrieben.
+ </p>
+
+
+ <p>Falls bereits ein UEFI-basiertes Betriebssystem auf Ihrem Computer
+ installiert ist (zum Beispiel Windows 8), wird der Mageia Installer die von
+ Windows erstellte ESP erkennen und grub2-efi in dieser hinzuf&uuml;gen. Falls
+ keine ESP vorhanden ist, wird eine erstellt werden. Auch wenn es m&ouml;glich ist
+ mehrere ESP zu haben, wird nur eine ben&ouml;tigt, selbst wenn Sie mehrere
+ Betriebssysteme verwenden.
+ </p>
</li>
</ul>
</div>
-
-
- <p>Falls Sie bereits andere Betriebssysteme installiert haben wird Mageia diese
- in Ihr neues Mageia Bootmen&uuml; hinzuf&uuml;gen. Falls Sie dies nicht haben m&ouml;chten,
- klicke auf <span class="guibutton">Weiter</span> und entferne die Auswahl in der Box
- <span class="guilabel">Fremdes OS testen</span></p>
-
-
</div>
- <div class="section" title="Verwenden eines bestehenden Bootloaders">
+ <div class="section" title="Bootloader Einrichten">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e928"></a>Verwenden eines bestehenden Bootloaders
+ <h3 class="title"><a name="d5e1004"></a>Bootloader Einrichten
</h3>
</div>
</div>
@@ -191,65 +119,11 @@
- <p>Die exakte Prozedur zum Hinzuf&uuml;gen Ihres Mageia-Systems zu einem bestehenden
- Bootloader finden Sie weiter unten in dieser Hilfe, wobei es in den meisten
- F&auml;llen n&ouml;tig ist, das entsprechende Bootloader-Ladeprogramm auszuf&uuml;hren, das
- dann den Eintrag f&uuml;r Mageia automatisch finden und hinzuf&uuml;gen sollte. Sehen
- Sie dazu in der Dokumentation f&uuml;r das Betriebssystem nach, wenn noch Fragen
- offen sind.
- </p>
-
- </div>
-
-
- <div class="section" title="Verwenden des Chain-Loader">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e931"></a>Verwenden des Chain-Loader
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Falls Sie kein bootbares Mageia haben m&ouml;chten, dieses jedoch &uuml;ber den
- Chainloader eines anderen Betriebssystem starten m&ouml;chten, klicke auf
- <span class="guibutton">Weiter</span>, anschlie&szlig;end auf
- <span class="guilabel">Fortgeschritten</span> und w&auml;hle die Box <span class="guilabel">Ver&auml;ndere
- nichts an der ESP oder dem MBR</span> aus.
- </p>
-
-
-
-
- <p>Sie werden eine Warnmeldung erhalten, dass der Bootloader fehlt. Ignorieren
- Sie diese Meldung indem Sie auf <span class="guibutton">OK</span> dr&uuml;cken.
- </p>
-
-
-
- </div>
-
-
- <div class="section" title="Optionen">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e945"></a>Optionen
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <div class="section" title="Erste Seite">
+ <div class="section" title="Hauptoptionen des Bootloaders">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e947"></a>Erste Seite
+ <h4 class="title"><a name="d5e1008"></a>Hauptoptionen des Bootloaders
</h4>
</div>
</div>
@@ -257,86 +131,127 @@
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p><span class="guilabel">Wartezeit vor dem Starten des Standard-Betriebssystems</span>:
- Diese Textbox l&auml;sst Ihnen eine Wartezeit in Sekunden festlegen, bevor das
- Standard-Betriebssystem gestartet wird.
+
+ <p><span class="bold"><strong>Zu verwendender Bootloader</strong></span></p>
+
+
+ <p>Diese Eigenschaft ist nur auf Legacy MBR/BIOS Systeme verf&uuml;gbar. Nutzer
+ eines UEFI-Systems wird diese Auswahl nicht angezeigt.
</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Boot-Ger&auml;t</strong></span></p>
+
+ <p>&Auml;ndern Sie hier nichts, au&szlig;er Sie wissen genau, was Sie tun</p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Sicherheit</span>: Dies erlaubt Ihnen ein Passwort f&uuml;r den
- Bootloader festzulegen. Dies bedeutet, dass der Benutzername und das
- Passwort beim Startvorgang abfragt wird, wenn ein Booteintrag ausgew&auml;hlt
- wird oder Einstellungen ge&auml;ndert werden. Der Benutzername ist "root" und das
- Passwort ist welches, dass Sie in diesem Abschnitt festlegen k&ouml;nnen.
+
+ <p><span class="bold"><strong>Wartezeit vor dem Starten des
+ Standard-Betriebssystems</strong></span></p>
+
+
+ <p>In diesem Textfeld kann, in Sekunden, eingestellt werden, wie lange die
+ Wartezeit ist, bis das voreingestellte Betriebssystem gestartet wird.
</p>
+
+ </li>
+ <li class="listitem">
+ <p><span class="bold"><strong>Sicherheit</strong></span></p>
+
+
+ <p>Dies erlaubt Ihnen ein Passwort f&uuml;r den Bootloader festzulegen. Dies
+ bedeutet, dass ein Benutzername und Passwort beim Startvorgang abfragt wird,
+ um einen Booteintrag auszuw&auml;hlen oder Einstellungen zu &auml;ndern. Dies ist
+ optional und die meisten Anwender werden dies nicht ben&ouml;tigen. Der
+ Benutzername ist <code class="literal">root</code> und das Passwort ist welches, dass
+ Sie danach festgelegt haben.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Passwort</strong></span></p>
+
+
+ <p>W&auml;hle ein Passwort f&uuml;r den Bootloader (optional)</p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Passwort</span>: In dieser Textbox geben Sie das gew&uuml;nschte
- Passwort ein
+
+ <p><span class="bold"><strong>Passwort (erneut)</strong></span></p>
+
+
+ <p>Gebe das Passwort erneut ein und DrakX &uuml;berpr&uuml;ft, ob dieses mit dem oben
+ eingegebenen &uuml;bereinstimmt.
</p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><span class="emphasis"><em>Fortgeschrittene Optionen</em></span></p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>APIC aktivieren</em></span></p>
+
+ <p>ACPI (Advanced Configuration and Power Interface) ist ein Standard f&uuml;r die
+ Energieverwaltung. Es kann durch das Abschalten von ungenutzten Ger&auml;ten
+ Strom sparen, was eine Methode ist, welche damals vor APM verwendet
+ wurde. Diese Auswahl zu deaktivieren k&ouml;nnte n&uuml;tzlich sein wenn, zum
+ Beispiel, Ihr Computer ACPI nicht unterst&uuml;tzt oder falls Sie finden, dass
+ die ACPI Implementierung einige Probleme verursacht (als Beispiel w&auml;ren
+ zuf&auml;llige Neustarts oder Systemh&auml;nger).
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Passwort (erneut)</span>: Geben Sie hier das Passwort erneut
- an und Drakx &uuml;berpr&uuml;ft, ob dieses mit dem oben angegebenen &uuml;bereinstimmt.
+
+ <p><span class="emphasis"><em>SMP aktivieren</em></span></p>
+
+
+ <p>Diese Auswahl aktiviert/deaktiviert das symmetrische Multiprocessing f&uuml;r
+ Multiprozessorsysteme.
</p>
+
+ </li>
+ <li class="listitem">
+ <p><span class="emphasis"><em>APIC aktivieren</em></span></p>
+
+
+ <p>Durch das aktivieren wird dem Betriebssystem Zugriff auf den Advanced
+ Programmable Interrupt Controller gegeben. APIC Ger&auml;te erlauben ein weitaus
+ komplexeres Priorit&auml;ten-Modell und erweiterte IRC (Interrupt Request)
+ Verwaltung.
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Fortgeschrittene Optionen</span></p>
+
+ <p><span class="emphasis"><em>Lokales APIC aktivieren</em></span></p>
-
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p><span class="guilabel">ACPI aktivieren:</span> ACPI (Advanced Configuration and Power
- Interface) ist ein Standard f&uuml;r die Energieverwaltung. Es kann durch das
- Abschalten von ungenutzten Ger&auml;ten Strom sparen, was eine Methode ist,
- welche damals vor APM verwendet wurde. Diese Auswahl zu deaktivieren k&ouml;nnte
- n&uuml;tzlich sein wenn, zum Beispiel, Ihr Computer ACPI nicht unterst&uuml;tzt oder
- falls Sie finden, dass die ACPI Implementierung einige Probleme verursacht
- (als Beispiel w&auml;ren zuf&auml;llige Neustarts oder Systemh&auml;nger).
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">SMP aktivieren</span>: Diese Auswahl aktiviert / deaktiviert
- das symmetrische Multiprocessing f&uuml;r Multiprozessorsysteme.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">APIC aktivieren</span>: Aktivieren oder deaktivierten dieser
- Option erlaubt dem Betriebssystem Zugriff auf den Advanced Programmable
- Interrupt Controller. APIC Ger&auml;te erlauben ein weitaus komplexeres
- Priorit&auml;tenmodell und erweiterte IRC (Interrupt Request) Verwaltung.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Lokales APIC aktivieren</span>: Hier k&ouml;nnen Sie das lokale
- APIC ausw&auml;hlen, welches alle externen Interrupts (Unterbrechungen) f&uuml;r einen
- bestimmten Prozessor in einem SMP System verwaltet.
- </p>
-
- </li>
- </ul>
- </div>
+ <p>Hier k&ouml;nnen Sie das lokale APIC ausw&auml;hlen, welches alle externen Interrupts
+ (Unterbrechungen) f&uuml;r einen bestimmten Prozessor in einem SMP-System
+ verwaltet.
+ </p>
+
</li>
</ul>
</div>
@@ -344,11 +259,11 @@
</div>
- <div class="section" title="N&auml;chste Seite">
+ <div class="section" title="Konfiguration des Bootloaders">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e979"></a>N&auml;chste Seite
+ <h4 class="title"><a name="d5e1058"></a>Konfiguration des Bootloaders
</h4>
</div>
</div>
@@ -356,56 +271,178 @@
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">Standard:</span> Das Betriebssystem das als Standardsystem
- voreingestellt werden soll
+ <p><span class="bold"><strong>Standard</strong></span></p>
+
+
+ <p>Das Betriebssystem, welches standardm&auml;&szlig;ig gestartet wird.</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Hinzuf&uuml;gen / Erweitern</strong></span></p>
+
+
+ <p>Mit dieser Option k&ouml;nnen Sie Kernel-Einstellungen einrichten oder dem Kernel
+ die Anweisung geben, Ihnen mehr Informationen w&auml;hrend dem Bootvorgang
+ auszugeben.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Hinzuf&uuml;gen/Erweitern:</span> Mit dieser Option k&ouml;nnen Sie
- Kernel-Einstellungen einrichten oder dem Kernel die Anweisung geben, mehr
- Informationen beim Booten zu geben.
+ <p><span class="bold"><strong>Fremdes OS testen</strong></span></p>
+
+
+ <p>Falls Sie bereits andere Betriebssysteme installiert haben wird Mageia diese
+ in Ihr neues Mageia Bootmen&uuml; hinzuf&uuml;gen. Falls Sie dies nicht m&ouml;chten,
+ entferne die Auswahl in der Box Fremdes OS testen.
</p>
</li>
+ </ul>
+ </div>
+
+
+ <p><span class="emphasis"><em>Fortgeschrittene Optionen</em></span></p>
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">Fremdes OS testen</span>: siehe oben <a class="link" href="setupBootloader.html#setupMageiaBootloader">Verwenden des Mageia Bootloaders</a></p>
+ <p><span class="emphasis"><em>Video-Modus</em></span></p>
+
+
+ <p>Diese legt die Bildschirmaufl&ouml;sung und Farbtiefe des Bootmen&uuml;s fest. Wenn
+ Sie auf das nach unten zeigende Dreieck klicken werden Ihnen weitere
+ Aufl&ouml;sungen und Farbtiefen angezeigt.
+ </p>
</li>
<li class="listitem">
- <p><span class="guilabel">Fortgeschrittene Optionen</span></p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p><span class="guilabel">Video-Modus:</span> Diese legt die Bildschirmaufl&ouml;sung und
- Farbtiefe des Bootmen&uuml;s fest. Wenn Sie auf das nach unten zeigende Dreieck
- klicken werden Ihnen weitere Aufl&ouml;sungen und Farbtiefen angezeigt.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="bold"><strong>Ver&auml;ndere nichts an der ESP oder dem MBR</strong></span>:
- siehe oben, <a class="link" href="setupBootloader.html#setupChainLoading">Verwenden des
- Chain-Loader</a></p>
-
- </li>
- </ul>
- </div>
+ <p><span class="emphasis"><em>Ver&auml;ndere nichts an der ESP oder dem MBR</em></span></p>
+
+
+ <p>W&auml;hle diese Auswahl, wenn Sie kein bootf&auml;higes Mageia m&ouml;chten, und
+ stattdessen das System &uuml;ber ein anderes Betriebssystem starten m&ouml;chten
+ (Chain-Loader). Sie erhalten eine Warnmeldung &uuml;ber den fehlenden
+ Bootloader. Klicke <span class="emphasis"><em>OK</em></span>, wenn Sie sich &uuml;ber die
+ Auswirkung im klaren sind und fortfahren m&ouml;chten.
+ </p>
</li>
</ul>
</div>
+
+
+
+ </div>
+
+ </div>
+
+
+ <div class="section" title="Weitere Optionen">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e1094"></a>Weitere Optionen
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <div class="section" title="Verwenden eines bestehenden Bootloaders">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e1096"></a>Verwenden eines bestehenden Bootloaders
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>Der exakte Vorgang, um Mageia zu einem bestehenden Bootloader hinzuzuf&uuml;gen,
+ geht &uuml;ber den Rahmen dieser Dokumentation hinaus. In den meisten F&auml;llen
+ sollte durch das ausf&uuml;hren des entsprechenden
+ Bootloader-Installationsprogramm das Mageia System automatisch erkannt und
+ hinzugef&uuml;gt werden. Sehen Sie dazu in der Dokumentation des entsprechenden
+ Betriebssystems nach.
+ </p>
+
+ </div>
+
+
+ <div class="section" title="Ohne Bootloader installieren">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e1099"></a>Ohne Bootloader installieren
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>Sie k&ouml;nnen ausw&auml;hlen, Mageia ohne Bootloader zu installieren (siehe
+ Abschnitt 2.1). Dies wird jedoch nicht empfohlen, au&szlig;er Sie wissen genau,
+ was Sie tun, da ohne einen Bootloader Ihr Betriebssystem nicht gestartet
+ werden kann.
+ </p>
</div>
+
+
+ <div lang="de" class="section" title="Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="setupBootloaderAddEntry"></a>Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+ <p>Um dies zu tun, m&uuml;ssen Sie /boot/grub2/custom.cfg manuell editieren oder
+ stattdessen die Software grub-customizer verwenden (Verf&uuml;gbar in den Mageia
+ Repositorys).
+ </p>
+
+
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>F&uuml;r weitere Informationen schauen Sie in unser Wiki: <a class="ulink" href="https://wiki.mageia.org/en/Grub2-efi_and_Mageia" target="_top">https://wiki.mageia.org/en/Grub2-efi_and_Mageia</a></p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
</div>
diff --git a/de/setupBootloaderAddEntry.html b/de/setupBootloaderAddEntry.html
index 20da658..409ef44 100644
--- a/de/setupBootloaderAddEntry.html
+++ b/de/setupBootloaderAddEntry.html
@@ -2,33 +2,36 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Hinzuf&uuml;gen oder &auml;ndern eines Boot Men&uuml; Eintrags</title>
+ <title>Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation mit Hilfe von DrakX">
<link rel="up" href="index.html" title="Installation mit Hilfe von DrakX">
- <link rel="prev" href="setupBootloader.html" title="Hauptoptionen des Bootloaders">
- <link rel="next" href="misc-params.html" title="Zusammenfassung von verschiedenen Parameter"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="prev" href="setupBootloader.html" title="Bootloader">
+ <link rel="next" href="misc-params.html" title="Zusammenfassung der Konfiguration"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="de" class="section" title="Hinzuf&uuml;gen oder &auml;ndern eines Boot Men&uuml; Eintrags">
+ <div lang="de" class="section" title="Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="setupBootloaderAddEntry"></a>Hinzuf&uuml;gen oder &auml;ndern eines Boot Men&uuml; Eintrags
+ <h2 class="title"><a name="setupBootloaderAddEntry"></a>Hinzuf&uuml;gen oder &auml;ndern eines Bootmen&uuml;-Eintrag
</h2>
</div>
</div>
</div>
+
+
<p>Um dies zu tun, m&uuml;ssen Sie /boot/grub2/custom.cfg manuell editieren oder
stattdessen die Software grub-customizer verwenden (Verf&uuml;gbar in den Mageia
Repositorys).
</p>
+
<div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
diff --git a/de/setupSCSI.html b/de/setupSCSI.html
index 4aba741..ba2a44c 100644
--- a/de/setupSCSI.html
+++ b/de/setupSCSI.html
@@ -22,20 +22,27 @@
</div>
</div>
</div>
+
+
+
+
-
+
+
+
+
+
-
<p><a name="setupSCSI-pa1"></a>DrakX erkennt normalerweise Festplatten korrekt. M&ouml;glicherweise treten bei
@@ -44,12 +51,9 @@
</p>
- <p><a name="setupSCSI-pa2"></a>Falls dies geschieht, m&uuml;ssen Sie DrakX h&auml;ndisch mitteilen, welche
- SCSI-Laufwerke Sie haben.
- </p>
-
-
- <p><a name="setupSCSI-pa3"></a>Danach sollte DrakX die Laufwerke korrekt konfigurieren k&ouml;nnen.
+ <p><a name="setupSCSI-pa2"></a>Falls Ihr Ger&auml;t nicht erkannt wird, m&uuml;ssen Sie DrakX h&auml;ndisch mitteilen,
+ welche(s) SCSI-Laufwerk(e) Sie haben. DrakX sollte anschlie&szlig;end m&ouml;glich
+ sein, diese(s) richtig zu konfigurieren.
</p>
</div>
diff --git a/de/soundConfig.html b/de/soundConfig.html
index e87cfc1..b3a28ed 100644
--- a/de/soundConfig.html
+++ b/de/soundConfig.html
@@ -29,24 +29,22 @@
- <p>In diesem Bildschirm steht der Name des Treibers, den der Installer f&uuml;r ihre
- Soundkarte gew&auml;hlt hat, welches der Standardtreiber ist
- </p>
- <p>Der Standardtreiber sollte ohne Probleme funktionieren. Wenn Sie jedoch nach
- der Installation Probleme entdecken sollten, starten Sie entweder
- <span class="command"><strong>draksound</strong></span> oder starten das Werkzeug &uuml;ber das Mageia
- Kontrollzentrum (MCC), unter dem <span class="guilabel">Hardware</span> Tab und
- w&auml;hlen <span class="guilabel">Soundkonfiguration</span> oben rechts in dem Fenster
- aus.
+
+
+ <p>Dieser Bildschirm zeigt die Details des vom Installer ausgew&auml;hlten
+ Sounkarten-Treiber. Dieser Treiber sollte ohne Probleme funktionieren.
</p>
- <p>Dann w&auml;hlen sie in draksound oder im Men&uuml; "Soundkonfiguration" auf
- <span class="guibutton">Fortgeschritten</span> und dann
- <span class="guibutton">Problembehebung</span> um hilfreiche Hinweise zu bekommen,
- wie das Problem zu l&ouml;sen ist.
+ <p>Falls Sie nach der Installation Probleme feststellen sollten, f&uuml;hren Sie
+ <span class="command"><strong>draksound</strong></span> aus oder starte dieses Werkzeug &uuml;ber
+ <span class="guimenu">Mageia Kontrollzentrum</span> &#8594; <span class="guimenuitem">Hardware</span> &#8594; <span class="guimenuitem">Soundkonfiguration</span>. Klicke im
+ darauffolgenden <code class="literal">draksound</code> oder
+ <span class="emphasis"><em>Soundkonfiguration</em></span> Bildschirm auf
+ <span class="emphasis"><em>Problembehebung</em></span> um n&uuml;tzliche Vorschl&auml;ge zu erhalten,
+ wie man das Problem l&ouml;sen kann.
</p>
@@ -62,15 +60,11 @@
- <p>W&auml;hrend der Installation ist die Auswahl von
- <span class="guibutton">Fortgeschritten</span> in dem Fenster hilfreich, falls kein
- Standardtreiber vorhanden ist und mehrere Treiber angezeigt werden, und Sie
- denken, dass der Installer den falschen ausgew&auml;hlt hat.
- </p>
-
-
- <p>Im Falle, dass ein anderer Treiber ausgew&auml;hlt werden soll, klicken Sie auf
- <span class="guibutton">Soll irgendein Treiber ausgew&auml;hlt werden?</span>.
+ <p>Fall kein aktueller Treiber f&uuml;r Ihre Soundkarte vorhanden ist, gibt es
+ gegebenenfalls alternative Treiber, die ausgew&auml;hlt werden k&ouml;nnen. Falls dies
+ der Fall ist, Sie jedoch finden, dass der Installer nicht die beste Wahl
+ getroffen hat, k&ouml;nnen Sie auf <span class="emphasis"><em>Fortgeschrittene Optionen</em></span>
+ klicken und den Treiber manuell ausw&auml;hlen.
</p>
</div>
diff --git a/de/takeOverHdConfirm.html b/de/takeOverHdConfirm.html
index d22e232..a1c6adb 100644
--- a/de/takeOverHdConfirm.html
+++ b/de/takeOverHdConfirm.html
@@ -22,13 +22,14 @@
</div>
</div>
</div>
-
+
+
@@ -36,15 +37,28 @@
- <p><a name="takeOverHdConfirm-pa1"></a>Klicken Sie auf <span class="guibutton">Abbrechen</span>, wenn Sie sich bei der
- Auswahl nicht sicher sind.
- </p>
- <p><a name="takeOverHdConfirm-pa2"></a>Klicken Sie auf <span class="guibutton">Weiter</span>, wenn Sie sich sicher sind und
- jede Partition, jedes Betriebssystem und alle Daten auf dem Laufwerk l&ouml;schen
- wollen.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="takeOverHdConfirm-pa1"></a>Klicke auf <span class="emphasis"><em>Zur&uuml;ck</em></span>, wenn Sie sich bei der Auswahl nicht
+ sicher sind.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="takeOverHdConfirm-pa2"></a>Klicke auf <span class="emphasis"><em>Weiter</em></span> um fortzufahren, wenn Sie sich sicher
+ sind, dass es OK ist, <span class="bold"><strong>jede</strong></span> Partition,
+ <span class="bold"><strong>alle</strong></span> Betriebssysteme und <span class="bold"><strong>alle Daten</strong></span> zu l&ouml;schen, die sich wom&ouml;glich auf dieser
+ Festplatte befinden.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/de/uninstall-Mageia.html b/de/uninstall-Mageia.html
index 07f9e6a..590743a 100644
--- a/de/uninstall-Mageia.html
+++ b/de/uninstall-Mageia.html
@@ -24,62 +24,51 @@
+
- <div class="section" title="Kurzanleitung">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e1277"></a>Kurzanleitung
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Wenn Mageia Sie nicht &uuml;berzeugt hat oder Sie es nicht richtig installieren
- k&ouml;nnen, wollen Sie es, kurz gesagt, loswerden. Das ist Ihr gutes Recht, und
- Mageia gibt Ihnen auch die M&ouml;glichkeit, es zu deinstallieren. Das trifft
- nicht auf jedes Betriebssystem zu.
- </p>
-
-
- <p>Nach der Sicherung Ihrer Daten, starten Sie die Mageia DVD neu und w&auml;hlen
- Systemrettung, dann, Windows Bootloader wiederherstellen. Beim n&auml;chsten Boot
- haben Sie dann nur noch Windows und keine Option mehr, Ihr Betriebssystem
- auszuw&auml;hlen.
- </p>
-
-
- <p>Um in Windows den durch die Mageia-Partitionen genutzten Speicherplatz
- wiederzubekommen, klicken Sie auf <code class="code">Start -&gt; Systemsteuerung -&gt;
- Verwaltung -&gt; Datenspeicher -&gt; Datentr&auml;gerverwaltung</code>, um auf die
- Partitionsverwaltung zuzugreifen. Sie werden die Mageia-Partitionen
- erkennen, da Sie als <span class="guilabel">Unbekannt</span> markiert sind, wie auch
- an ihrer Gr&ouml;&szlig;e und ihrer Position auf dem Laufwerk. Rechtsklicken Sie auf
- jede dieser Partitionen und w&auml;hlen Sie <span class="guibutton">L&ouml;schen</span>. Der
- Speicherplatz wird freigegeben.
- </p>
-
-
- <p>Wenn Sie Windows XP verwenden k&ouml;nnen Sie eine neue Partition erstellen und
- diese formatieren (FAT32 oder NTFS). Diese wird einen Partitionsbuchstaben
- erhalten.
- </p>
-
-
- <p>Wenn Sie Windows Vista oder Windows 7 verwenden, haben Sie auch die
- M&ouml;glichkeit, die vorhandene Partition auf der linken Seite des
- freigewordenen Speicherplatzes zu erweitern. Daf&uuml;r k&ouml;nnen andere
- Partitionswerkzeuge, wie gparted f&uuml;r Windows und Linux, genutzt
- werden. Seien Sie wie immer vorsichtig bei der Ver&auml;nderung von Partitionen
- und stellen Sie sicher, dass Sie von allen wichtigen Dingen Sicherungskopien
- angefertigt haben.
- </p>
-
- </div>
+
+
+ <p>Wenn Mageia Sie nicht &uuml;berzeugt hat oder Sie es nicht richtig installieren
+ k&ouml;nnen, wollen Sie es, kurz gesagt, loswerden. Das ist Ihr gutes Recht, und
+ Mageia gibt Ihnen auch die M&ouml;glichkeit, es zu deinstallieren. Das trifft
+ nicht auf jedes Betriebssystem zu.
+ </p>
+
+
+ <p>Nachdem Sie Ihre Daten gesichert haben, starten Sie die Mageia
+ Installations-DVD neu und w&auml;hle <span class="emphasis"><em>Systemrettung</em></span>, dann
+ <span class="emphasis"><em>Windows Bootloader wiederherstellen</em></span>. Beim n&auml;chsten Boot
+ haben Sie dann nur noch Windows zur Auswahl und keine M&ouml;glichkeit das Mageia
+ System auszuw&auml;hlen.
+ </p>
+
+
+ <p>Um in Windows den durch die Mageia-Partitionen genutzten Speicherplatz
+ wieder zur Verf&uuml;gung zu erhalten: Klicken Sie auf
+ <span class="guimenu">Start</span> &#8594; <span class="guimenuitem">Systemsteuerung</span> &#8594; <span class="guimenuitem">Verwaltung</span> &#8594; <span class="guimenuitem">Datenspeicher</span> &#8594; <span class="guimenuitem">Datentr&auml;gerverwaltung</span>. Sie werden
+ die Mageia-Partitionen erkennen, da Sie als <code class="literal">Unbekannt</code>
+ markiert sind, wie auch an ihrer Gr&ouml;&szlig;e und ihrer Position auf dem
+ Laufwerk. Rechtsklicken Sie auf jede dieser Partitionen und w&auml;hlen Sie
+ <span class="emphasis"><em>L&ouml;schen</em></span> um den Speicherplatz freizugeben.
+ </p>
+
+
+ <p>Wenn Sie Windows XP verwenden k&ouml;nnen Sie eine neue Partition erstellen und
+ diese formatieren (FAT32 oder NTFS). Anschlie&szlig;end wird diese einen
+ Laufwerksbuchstaben erhalten.
+ </p>
+
+
+ <p>Wenn Sie Windows Vista oder Windows 7 verwenden, haben Sie auch die
+ M&ouml;glichkeit, die vorhandene Partition auf der linken Seite des
+ freigewordenen Speicherplatzes zu erweitern. Daf&uuml;r k&ouml;nnen andere
+ Partitionswerkzeuge, wie <span class="bold"><strong>gparted</strong></span> f&uuml;r
+ Windows und Linux, genutzt werden. Seien Sie wie immer vorsichtig bei der
+ Ver&auml;nderung von Partitionen und stellen Sie sicher, dass Sie von allen
+ wichtigen Dingen Sicherungskopien angefertigt haben.
+ </p>
</div>
</body>
diff --git a/diskdrake.html b/diskdrake.html
index d83324e..bccdad2 100644
--- a/diskdrake.html
+++ b/diskdrake.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Custom disk partitioning with DiskDrake</title>
+ <title>Custom Disk Partitioning with DiskDrake</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
@@ -13,109 +13,150 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Custom disk partitioning with DiskDrake">
+ <div class="section" title="Custom Disk Partitioning with DiskDrake">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="diskdrake"></a>Custom disk partitioning with
+ <h2 class="title"><a name="diskdrake"></a>Custom Disk Partitioning with
DiskDrake
</h2>
</div>
</div>
</div>
+
+
+
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="diskdrake-pa1"></a>If you wish to use encryption on
- your <code class="literal">/</code> partition you must ensure that you have a
- separate <code class="literal">/boot</code> partition. The encryption option for the
- <code class="literal">/boot</code> partition must NOT be set, otherwise your system
- will be unbootable.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- <p><a name="diskdrake-pa3"></a>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.
- </p>
-
- <p><a name="diskdrake-pa4"></a>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.
- </p>
-
- <p><a name="diskdrake-pa5"></a>Push <span class="guibutton">Clear
- all</span> to wipe all partitions on the selected storage device
- </p>
+
+
+
- <p><a name="diskdrake-pa6"></a>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. <span class="guibutton">Toggle to expert
- mode</span> (or <span class="guibutton">Expert mode</span>) gives some more
- tools like to add a label or to choose a partition type.
- </p>
+
- <p><a name="diskdrake-pa6a"></a>Continue until you adjusted
- everything to your wishes.
- </p>
+
- <p><a name="diskdrake-pa7"></a>Click <span class="guibutton">Done</span>
- when you're ready.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa3"></a>Modify the layout of your
+ disk(s) here. You can remove or create partitions, change the filesystem
+ or size of a partition and even view their details before you
+ start.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa4"></a>There is a tab at the top for
+ every detected hard disk (or other storage device, like a USB key). In
+ the screenshot above there are two available devices: <code class="filename">sda
+ </code>and <code class="filename">sdb</code>.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6"></a>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. <span class="emphasis"><em>Expert mode</em></span>
+ provides more options such as to label (name) a partition, or to choose
+ a partition type.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6a"></a>Continue until you have
+ adjusted everything to your satisfaction, then click
+ <span class="emphasis"><em>Done</em></span> when you're ready.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>If you are installing Mageia on an UEFI system, check that an ESP
- (EFI System Partition) is present and correctly mounted on /boot/EFI (see
- below)
- </p>
-
- <p></p>
+ <div class="orderedlist">
+ <ol class="orderedlist" type="1">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa5"></a>Take care with the
+ <span class="emphasis"><em>Clear all</em></span> option, use it only if you are sure you
+ want to wipe all partitions on the selected storage device.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa1"></a>If you wish to use
+ encryption on your <code class="filename">/</code> partition you must ensure
+ that you have a separate <code class="filename">/boot</code> partition. The
+ encryption option for the <code class="filename">/boot</code> partition must
+ NOT be set, otherwise your system will be unbootable.
+ </p>
+
+ </li>
+ </ol>
+ </div>
</td>
</tr>
</table>
</div>
+
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>If you are installing Mageia on a Legacy/GPT system, check that a BIOS boot partition is present and of the correct type</p>
-
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>If you are installing Mageia on a UEFI system, check that an ESP
+ (EFI System Partition) is present and correctly mounted on
+ <code class="filename">/boot/EFI</code>. See Figure 1 below.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>If you are installing Mageia on a Legacy/GPT system, check that
+ a BIOS boot partition is present and of the correct type. See Figure 2
+ below.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</td>
</tr>
</table>
</div>
+
+
+
+
</div>
</body>
</html>
diff --git a/doPartitionDisks.html b/doPartitionDisks.html
index cb704f7..5fbba94 100644
--- a/doPartitionDisks.html
+++ b/doPartitionDisks.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Partitioning</title>
+ <title>Suggested Partitioning</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
@@ -13,177 +13,242 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Partitioning">
+ <div class="section" title="Suggested Partitioning">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="doPartitionDisks"></a>Partitioning
+ <h2 class="title"><a name="doPartitionDisks"></a>Suggested Partitioning
</h2>
</div>
</div>
</div>
+
+
+
+
+
+
+
+
+
+
+
+
+
<p><a name="doPartitionDisks-pa1"></a>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
- <span class="application">Mageia</span>.
+ the content of your hard drive(s) along with the DrakX partitioning
+ proposals for where to install Mageia.
</p>
+
- <p><a name="doPartitionDisks-pa2"></a>The options available from
- the list below will vary depending on your particular hard drive(s) layout
- and content.
+ <p><a name="doPartitionDisks-pa2"></a>The actual options
+ available from those shown below will vary according to the layout and
+ content of your particular hard drive(s).
</p>
+
+
- <p><a name="doPartitionDisks-pa3"></a></p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Main Options">
+ <p class="title"><b>Main Options</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa4"></a>Use Existing
- Partitions
- </p>
+
+ <p><a name="doPartitionDisks-pa4"></a><span class="bold"><strong>Use Existing Partitions</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa5"></a>If this option is
- available, then existing Linux compatible partitions have been found
- and may be used for the installation.
+ available, then existing Linux compatible partitions have been found and
+ may be used for the installation.
</p>
+
</li>
<li class="listitem">
- <p><a name="doPartitionDisks-pa6"></a>Use Free Space
- </p>
+
+ <p><a name="doPartitionDisks-pa6"></a><span class="bold"><strong>Use Free Space</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa7"></a>If you have unused
- space on your hard drive then this option will use it for your new
- Mageia installation.
+ space on your hard drive then this option will use it for your new
+ Mageia installation.
</p>
+
</li>
<li class="listitem">
- <p><a name="doPartitionDisks-pa8"></a>Use Free Space on a
- Windows Partition
- </p>
- <p><a name="doPartitionDisks-pa9"></a>If you have unused
- space on an existing Windows partition, the installer may offer to use
- it.
- </p>
- <p><a name="doPartitionDisks-pa10"></a>This can be a useful
- way of making room for your new Mageia installation, but is a risky
- operation so you should make sure you have backed up all important
- files!
- </p>
- <p><a name="doPartitionDisks-pa11"></a>Note that this
- involves shrinking the size of the Windows partition. 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. It is highly
- recommended to back up your personal files.
+
+ <p><a name="doPartitionDisks-pa8"></a><span class="bold"><strong>Use Free Space on a Windows Partition</strong></span></p>
+
+
+ <p><a name="suggestedPartitioning-pa9"></a>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 so you should make sure you have
+ backed up all important files!
</p>
+
+
<p>With this option, the installer displays the remaining Windows
- partition in light blue and the future Mageia partition in dark blue
- with their intended sizes just under. You have the possibility to
- adapt these sizes by clicking and dragging the gap between both
- partitions. See the screen-shot below.
+ partition in light blue and the proposed Mageia partition in dark blue
+ with their intended sizes just underneath. You have the option to modify
+ these sizes by clicking and dragging the gap between both partitions.
+ See the following screenshot:
</p>
+
</li>
- </ul>
- </div>
- <p> </p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa12"></a>Erase and use Entire
- Disk.
- </p>
- <p><a name="doPartitionDisks-pa13"></a>This option will use
- the complete drive for Mageia.
- </p>
- <p><a name="doPartitionDisks-pa14"></a>Note! This will
- erase ALL data on the selected hard drive. Take care!
- </p>
- <p><a name="doPartitionDisks-pa15"></a>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.
+
+ <p><a name="doPartitionDisks-pa12"></a><span class="bold"><strong>Erase and use Entire Disk</strong></span></p>
+
+
+ <p><a name="doPartitionDisks-pa13"></a>This option will
+ allocate the entire drive for Mageia
</p>
+
+
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa14"></a>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.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa11"></a>Note that this
+ involves shrinking the size of the Windows partition. 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. It is highly
+ recommended to back up your personal files.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</li>
- </ul>
- </div>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa16"></a>Custom disk
- partitioning
- </p>
+
+ <p><a name="doPartitionDisks-pa16"></a><span class="bold"><strong>Custom Disk Partitioning</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa17"></a>This gives you
- complete control over the placing of the installation on your hard
- drive(s).
+ complete control over the placing of the installation on your hard
+ drive(s).
</p>
+
</li>
</ul>
</div>
+
- <p><span class="bold"><strong>Partition sizing:</strong></span></p>
+
- <p>The installer will share the available place out according to the
- following rules:
+ <p>If you are not using the <span class="emphasis"><em>Custom disk partitioning</em></span>
+ option, then the installer will allocate the available space according to
+ the following rules:
</p>
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>If the total available place is lower than 50 GB, only one
- partition is created for /, there is no separate partition for
- /home.
+
+ <p>If the total available space is less than 50 GB, then only one
+ partition is created. This will be the <code class="filename">/</code> (root)
+ partition.
</p>
+
</li>
<li class="listitem">
- <p>If the total available place is over 50 GB, then three
- partitions are created
+
+ <p>If the total available space is greater than 50 GB, then three
+ partitions are created
</p>
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>6/19 of the total available place is allocated to / with a
- maximum of 50 GB
+
+ <p>6/19 of the total available place is allocated to
+ <code class="filename">/</code> with a maximum of 50 GB
</p>
+
</li>
<li class="listitem">
- <p>1/19 is allocated to swap with a maximum of 4 GB</p>
+
+ <p>1/19 is allocated to <code class="filename">swap</code> with a maximum
+ of 4 GB
+ </p>
+
</li>
<li class="listitem">
- <p>the rest (at least 12/19) is allocated to /home</p>
+
+ <p>the rest (at least 12/19) is allocated to
+ <code class="filename">/home</code></p>
+
</li>
</ul>
</div>
+
</li>
</ul>
</div>
+
- <p>That means that from 160 GB and over of available place, the installer
- will create three partitions: 50 GB for /, 4 GB for swap and the rest for
- /home.
+ <p>This means that from 160 GB or greater available space, the installer
+ will create three partitions:
</p>
+
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>If you are using an UEFI system, the ESP (EFI System Partition) will
- be automatically detected, or created if it does not exist yet, and
- mounted on /boot/EFI. The "Custom disk partitioning" option is the only
- one that allows to check it has been correctly done
- </p>
-
- </td>
- </tr>
- </table>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>50 GB for <code class="filename">/</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>4 GB for <code class="filename">swap</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>and the remainder for <code class="filename">/home</code></p>
+
+ </li>
+ </ul>
</div>
+
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
@@ -194,44 +259,79 @@
<tr>
<td align="left" valign="top">
- <p>If you are using a Legacy (as known as CSM or BIOS) system with a
- GPT disk, you need to create a Bios boot partition if not already
- existing. It is an about 1 MiB partition with no mount point. Choose <a class="xref" href="diskdrake.html" title="Custom disk partitioning with DiskDrake">the section called &#8220;Custom disk partitioning with
- DiskDrake&#8221;</a> to be able to create it with the Installer like any
- other partition, just select BIOS boot partition as filesystem
- type.
+ <p>If you are using a UEFI system, the ESP (EFI System Partition) will
+ be automatically detected - or created if it does not exist yet - and
+ mounted on <code class="filename">/boot/EFI</code>. The <span class="emphasis"><em>Custom disk
+ partitioning</em></span> option is the only one that allows to check it has
+ been correctly done.
</p>
+
+ <p>If you are using a Legacy (also known as BIOS) system with a GPT
+ partitioned disk, you need to create a BIOS boot partition if it doesn't
+ already exist. It should be about 1 MiB with no mount point. It can be
+ created with the Installer, under <span class="emphasis"><em>Custom disk
+ partitioning</em></span>, like any other partition. Be sure to select
+ <span class="quote">&#8220;<span class="quote">BIOS boot partition</span>&#8221;</span> for filesystem type.
+ </p>
+
+ <p>See <a class="xref" href="diskdrake.html" title="Custom Disk Partitioning with DiskDrake">DiskDrake</a> for information on how to
+ proceed.
+ </p>
</td>
</tr>
</table>
</div>
+
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+
+
+
+
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
<p>Some newer drives are now using 4096 byte logical sectors, instead
- of the previous standard of 512 byte logical sectors. Due to lack of
- available hardware, the partitioning tool used in the installer has not
- been tested with such a drive. Also some ssd drives now use an erase block
- size over 1 MB. We suggest to pre-partition the drive, using an
- alternative partitioning tool like gparted, if you own such a device, and
- to use the following settings:
+ of the previous standard of 512. Due to lack of available hardware, the
+ partitioning tool used in the installer has not been tested with such a
+ drive.
</p>
+
- <p>"Align to" "MiB"</p>
+ <p>Some SSD devices now use an erase block size over 1 MB. If you have
+ such a device we suggest that you partition the drive in advance, using an
+ alternative partitioning tool like gparted, and to use the following
+ settings:
+ </p>
+
- <p>"Free space preceding (MiB)" "2"</p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Align to</em></span> = MiB
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Free space preceding (MiB)</em></span> = 2
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <p>Also make sure all partitions are created with an even number of
+ <p>Also make sure all partitions are created using an even number of
megabytes.
</p>
diff --git a/el/Select-and-use-ISOs.html b/el/Select-and-use-ISOs.html
index 8008828..5b85192 100644
--- a/el/Select-and-use-ISOs.html
+++ b/el/Select-and-use-ISOs.html
@@ -25,6 +25,12 @@
+
+
+
+
+
+
<div class="section" title="&#917;&#953;&#963;&#945;&#947;&#969;&#947;&#942;">
<div class="titlepage">
<div>
@@ -37,29 +43,84 @@
<p>&#919; Mageia &#948;&#953;&#945;&#957;&#941;&#956;&#949;&#964;&#945;&#953; &#956;&#941;&#963;&#969; &#949;&#953;&#954;&#972;&#957;&#969;&#957; ISO. &#913;&#965;&#964;&#942; &#951; &#963;&#949;&#955;&#943;&#948;&#945; &#952;&#945; &#963;&#945;&#962; &#946;&#959;&#951;&#952;&#942;&#963;&#949;&#953; &#957;&#945;
- &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#960;&#959;&#953;&#945; &#949;&#953;&#954;&#972;&#957;&#945; &#964;&#945;&#953;&#961;&#953;&#940;&#950;&#949;&#953; &#963;&#964;&#953;&#962; &#945;&#957;&#940;&#947;&#954;&#949;&#962; &#963;&#945;&#962;.
+ &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#960;&#959;&#953;&#945; &#949;&#953;&#954;&#972;&#957;&#945; &#964;&#945;&#953;&#961;&#953;&#940;&#950;&#949;&#953; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#963;&#964;&#953;&#962; &#945;&#957;&#940;&#947;&#954;&#949;&#962; &#963;&#945;&#962;.
</p>
- <p>&#933;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#948;&#965;&#959; &#959;&#953;&#954;&#959;&#947;&#941;&#957;&#949;&#953;&#949;&#962; &#956;&#941;&#963;&#969;&#957;:</p>
+ <p>&#933;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#964;&#961;&#949;&#953;&#962; &#964;&#973;&#960;&#959;&#953; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;:</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#922;&#955;&#945;&#963;&#963;&#953;&#954;&#972;&#962; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962;: &#924;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#956;&#941;&#963;&#959;&#965;, &#945;&#954;&#959;&#955;&#959;&#965;&#952;&#949;&#943; &#956;&#953;&#945;
- &#948;&#953;&#945;&#948;&#953;&#954;&#945;&#963;&#943;&#945; &#960;&#959;&#965; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#947;&#942; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#954;&#945;&#953; &#964;&#959;&#957; &#964;&#961;&#972;&#960;&#959;
- &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962; &#964;&#959;&#965; &#964;&#949;&#955;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;. &#913;&#965;&#964;&#972; &#963;&#945;&#962; &#948;&#943;&#957;&#949;&#953; &#964;&#951;&#957; &#956;&#941;&#947;&#953;&#963;&#964;&#951; &#949;&#965;&#949;&#955;&#953;&#958;&#943;&#945; &#947;&#953;&#945;
- &#956;&#953;&#945; &#960;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#949;&#953;&#948;&#953;&#954;&#940; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#959;&#965; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962;
- &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;.
+ <p><span class="bold"><strong>&#922;&#955;&#945;&#963;&#963;&#953;&#954;&#972;&#962; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962;:</strong></span> &#919; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#956;&#949; &#945;&#965;&#964;&#972;
+ &#964;&#959; &#956;&#941;&#963;&#959; &#963;&#945;&#962; &#960;&#945;&#961;&#941;&#967;&#949;&#953; &#964;&#951; &#956;&#941;&#947;&#953;&#963;&#964;&#951; &#949;&#965;&#949;&#955;&#953;&#958;&#943;&#945; &#972;&#964;&#945;&#957; &#949;&#960;&#953;&#955;&#941;&#947;&#949;&#964;&#945;&#953; &#964;&#953; &#952;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949;,
+ &#954;&#945;&#953; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;. &#931;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#945;, &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;
+ &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; &#949;&#960;&#953;&#966;&#945;&#957;&#949;&#953;&#974;&#957; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; &#960;&#961;&#959;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;.
</p>
</li>
<li class="listitem">
- <p>&#924;&#941;&#963;&#959; LIVE: &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#956;&#941;&#963;&#959; &#960;&#940;&#957;&#969; &#963;&#949; &#941;&#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945;
- Mageia &#967;&#969;&#961;&#943;&#962; &#957;&#945; &#964;&#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#959;&#973;&#964;&#969;&#962; &#974;&#963;&#964;&#949; &#957;&#945; &#948;&#953;&#945;&#960;&#953;&#963;&#964;&#974;&#963;&#949;&#964;&#949; &#964;&#953; &#952;&#945; &#941;&#967;&#949;&#964;&#949; &#956;&#949;&#964;&#940;
- &#964;&#951;&#957; &#949;&#957;&#948;&#949;&#967;&#972;&#956;&#949;&#957;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;. &#919; &#948;&#953;&#945;&#948;&#953;&#954;&#945;&#963;&#943;&#945; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#949;&#965;&#954;&#959;&#955;&#972;&#964;&#949;&#961;&#951;
- &#945;&#955;&#955;&#940; &#956;&#949; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;.
+ <p><span class="bold"><strong>&#918;&#937;&#925;&#932;&#913;&#925;&#927; &#956;&#941;&#963;&#959;:</strong></span> &#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953;
+ &#957;&#945; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949; &#964;&#951;&#957; Mageia &#967;&#969;&#961;&#943;&#962; &#957;&#945; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#957;&#945; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#942; &#957;&#945;
+ &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#955;&#955;&#945;&#947;&#941;&#962; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;. &#937;&#963;&#964;&#972;&#963;&#959;, &#964;&#959; &#918;&#969;&#957;&#964;&#945;&#957;&#972; &#956;&#941;&#963;&#959; &#960;&#949;&#961;&#953;&#955;&#945;&#956;&#946;&#940;&#957;&#949;&#953;
+ &#941;&#957;&#945;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;, &#959; &#959;&#960;&#959;&#943;&#959;&#962; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#954;&#964;&#949;&#955;&#949;&#963;&#964;&#949;&#943; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#956;&#941;&#963;&#959;&#965;,
+ &#942; &#945;&#960;&#972; &#964;&#951;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; &#964;&#959;&#965; &#918;&#969;&#957;&#964;&#945;&#957;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
+ </p>
+
+ <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#919; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#941;&#963;&#969; &#949;&#957;&#972;&#962; &#918;&#969;&#957;&#964;&#945;&#957;&#959;&#973; &#956;&#941;&#963;&#959;&#965; &#949;&#943;&#957;&#945;&#953; &#960;&#953;&#959; &#945;&#960;&#955;&#942; &#963;&#949; &#963;&#967;&#941;&#963;&#951; &#956;&#949; &#964;&#951;&#957;
+ &#954;&#955;&#945;&#963;&#963;&#953;&#954;&#942; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; - &#945;&#955;&#955;&#940; &#941;&#967;&#949;&#964;&#949; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div class="important" title="&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#932;&#945; &#918;&#969;&#957;&#964;&#945;&#957;&#940; ISO &#956;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957; &#956;&#972;&#957;&#959; &#947;&#953;&#945; &#956;&#953;&#945; <span class="quote">&amp;#x201C;<span class="quote">&#954;&#945;&#952;&#945;&#961;&#942;</span>&amp;#x201D;</span>
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&middot; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957; &#947;&#953;&#945; &#964;&#951;&#957; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951; &#945;&#960;&#972;
+ &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#916;&#953;&#954;&#964;&#965;&#945;&#954;&#942; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;:</strong></span> &#928;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#956;&#953;&#954;&#961;&#941;&#962;
+ &#949;&#953;&#954;&#972;&#957;&#949;&#962; &#959;&#953; &#959;&#960;&#959;&#943;&#949;&#962; &#960;&#949;&#961;&#953;&#941;&#967;&#959;&#965;&#957; &#964;&#945; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#945; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; DrakX &#954;&#945;&#953; &#964;&#951;&#957; &#949;&#973;&#961;&#949;&#963;&#951; &#964;&#959;&#965;
+ <code class="literal">DrakX-installer-stage2</code> &#954;&#945;&#953; &#940;&#955;&#955;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#960;&#959;&#965; &#945;&#960;&#945;&#953;&#964;&#959;&#973;&#957;&#964;&#945;&#953;
+ &#947;&#953;&#945; &#964;&#951; &#963;&#965;&#957;&#941;&#967;&#953;&#963;&#951; &#954;&#945;&#953; &#964;&#951;&#957; &#959;&#955;&#959;&#954;&#955;&#942;&#961;&#969;&#963;&#951; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;. &#913;&#965;&#964;&#940; &#964;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#956;&#960;&#959;&#961;&#949;&#943;
+ &#957;&#945; &#946;&#961;&#943;&#963;&#954;&#959;&#957;&#964;&#945;&#953; &#963;&#964;&#959;&#957; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;, &#963;&#949; &#941;&#957;&#945;&#957; &#964;&#959;&#960;&#953;&#954;&#972; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;,
+ &#963;&#964;&#959; &#964;&#959;&#960;&#953;&#954;&#972; &#948;&#943;&#954;&#964;&#965;&#959; &#942; &#963;&#964;&#959; &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959;.
+ </p>
+
+ <p>&#913;&#965;&#964;&#940; &#964;&#945; &#956;&#941;&#963;&#945; &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#949;&#955;&#945;&#966;&#961;&#953;&#940; (&#956;&#953;&#954;&#961;&#972;&#964;&#949;&#961;&#945; &#945;&#960;&#972; 100 MB) &#954;&#945;&#953; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#959;&#973;&#957; &#972;&#964;&#945;&#957;
+ &#964;&#959; &#949;&#973;&#961;&#959;&#962; &#950;&#974;&#957;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#956;&#953;&#954;&#961;&#972; &#947;&#953;&#945; &#964;&#951; &#955;&#942;&#968;&#951; &#949;&#957;&#972;&#962; &#960;&#955;&#942;&#961;&#959;&#965;&#962; DVD, &#942; &#972;&#964;&#945;&#957; &#959;
+ &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#948;&#949;&#957; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#953; &#959;&#948;&#951;&#947;&#972; DVD &#942; &#972;&#964;&#945;&#957; &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#948;&#949;&#957; &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#943;&#950;&#949;&#953; &#964;&#951;&#957;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#945;&#960;&#972; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB.
</p>
</li>
@@ -74,7 +135,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e29"></a>&#924;&#941;&#963;&#945;
+ <h3 class="title"><a name="d5e41"></a>&#924;&#941;&#963;&#945;
</h3>
</div>
</div>
@@ -85,7 +146,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e31"></a>&#927;&#961;&#953;&#963;&#956;&#972;&#962;
+ <h4 class="title"><a name="d5e43"></a>&#927;&#961;&#953;&#963;&#956;&#972;&#962;
</h4>
</div>
</div>
@@ -94,10 +155,10 @@
<p>&#924;&#941;&#963;&#959; &#945;&#960;&#959;&#954;&#945;&#955;&#959;&#973;&#956;&#949; &#949;&#948;&#974; &#941;&#957;&#945; &#945;&#961;&#967;&#949;&#943;&#959; &#949;&#953;&#954;&#972;&#957;&#945;&#962; ISO &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#951;&#957;
&#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953;/&#942; &#964;&#951;&#957; &#949;&#957;&#951;&#956;&#941;&#961;&#969;&#963;&#951; &#964;&#951;&#962; Mageia &#954;&#945;&#953; &#954;&#945;&#964;' &#949;&#960;&#941;&#954;&#964;&#945;&#963;&#951; &#954;&#940;&#952;&#949; &#966;&#965;&#963;&#953;&#954;&#972;
- &#956;&#941;&#963;&#959; &#972;&#960;&#959;&#965; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; ISO &#941;&#967;&#949;&#953; &#945;&#957;&#964;&#953;&#947;&#961;&#945;&#966;&#949;&#943;.
+ &#956;&#941;&#963;&#959; (DVD, &#954;&#955;&#949;&#953;&#948;&#943; USB, ...) &#960;&#959;&#965; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; ISO &#941;&#967;&#949;&#953; &#945;&#957;&#964;&#953;&#947;&#961;&#945;&#966;&#949;&#943;.
</p>
- <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#945; &#946;&#961;&#949;&#943;&#964;&#949; <a class="ulink" href="http://www.mageia.org/en/downloads/" target="_top">&#949;&#948;&#974;</a>.
+ <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#964;&#945; ISO &#964;&#951;&#962; Mageia <a class="ulink" href="http://www.mageia.org/en/downloads/" target="_top">&#949;&#948;&#974;</a>.
</p>
</div>
@@ -106,7 +167,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e36"></a>&#924;&#941;&#963;&#959; &#954;&#955;&#945;&#963;&#963;&#953;&#954;&#942;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
+ <h4 class="title"><a name="d5e48"></a>&#924;&#941;&#963;&#959; &#954;&#955;&#945;&#963;&#963;&#953;&#954;&#942;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
</h4>
</div>
</div>
@@ -117,7 +178,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e38"></a>&#922;&#959;&#953;&#957;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
+ <h5 class="title"><a name="d5e50"></a>&#922;&#959;&#953;&#957;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
</h5>
</div>
</div>
@@ -128,36 +189,36 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#932;&#945; ISO &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#964;&#959; &#960;&#945;&#961;&#945;&#948;&#959;&#963;&#953;&#945;&#954;&#972; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; drakx.</p>
+ <p>&#932;&#945; ISO &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#964;&#959;&#957; &#954;&#955;&#945;&#963;&#963;&#953;&#954;&#972; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951; DrakX</p>
</li>
<li class="listitem">
- <p>&#924;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#959;&#965;&#957; &#956;&#953;&#945; &laquo;&#954;&#945;&#952;&#945;&#961;&#942;&raquo; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#942; &#957;&#945; &#949;&#957;&#951;&#956;&#949;&#961;&#974;&#963;&#959;&#965;&#957; &#956;&#953;&#945;
- &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951;.
+ <p>&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957;&#964;&#945;&#953; &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#954;&#945;&#952;&#945;&#961;&#974;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#963;&#949;&#969;&#957; &#942; &#947;&#953;&#945;
+ &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951; &#956;&#953;&#945;&#962; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#945; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#951;&#962; &#941;&#954;&#948;&#959;&#963;&#951;&#962; &#964;&#951;&#962; Mageia
</p>
</li>
<li class="listitem">
- <p>&#916;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#956;&#941;&#963;&#945; &#947;&#953;&#945; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 bit.</p>
+ <p>&#916;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#956;&#941;&#963;&#945; &#947;&#953;&#945; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 &#948;&#965;&#966;&#943;&#969;&#957;</p>
</li>
<li class="listitem">
- <p>&#956;&#949;&#961;&#953;&#954;&#940; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#965;&#960;&#959;&#948;&#959;&#967;&#942;&#962;: &#916;&#953;&#940;&#963;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;,
- &#904;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#951;&#962; &#956;&#957;&#942;&#956;&#951;&#962;, &#917;&#961;&#947;&#945;&#955;&#949;&#943;&#959; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#959;&#973; &#965;&#955;&#953;&#954;&#959;&#973;.
- </p>
+ <p>&#924;&#949;&#961;&#953;&#954;&#940; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="quote">&amp;#x201C;<span class="quote">&#965;&#960;&#959;&#948;&#959;&#967;&#942;&#962;</span>&amp;#x201D;</span>:
+ <span class="emphasis"><em>&#916;&#953;&#940;&#963;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;, &#904;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#951;&#962; &#956;&#957;&#942;&#956;&#951;&#962;</em></span>,&#954;&#945;&#953;
+ <span class="emphasis"><em> &#917;&#961;&#947;&#945;&#955;&#949;&#943;&#959; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#959;&#973; &#965;&#955;&#953;&#954;&#959;&#973;</em></span></p>
</li>
<li class="listitem">
- <p>&#922;&#940;&#952;&#949; DVD &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#960;&#959;&#955;&#955;&#940; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#940; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#945; &#954;&#945;&#953; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.</p>
+ <p>&#922;&#940;&#952;&#949; DVD &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#960;&#959;&#955;&#955;&#940; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#940; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#945; &#954;&#945;&#953; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</p>
</li>
<li class="listitem">
- <p>&#922;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#952;&#945; &#949;&#961;&#969;&#964;&#951;&#952;&#949;&#943;&#964;&#949; &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959;&#965; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#959;&#973;.</p>
+ <p>&#922;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#952;&#945; &#949;&#961;&#969;&#964;&#951;&#952;&#949;&#943;&#964;&#949; &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959;&#965; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#959;&#973;</p>
</li>
</ul>
@@ -167,11 +228,11 @@
</div>
- <div class="section" title="&#924;&#941;&#963;&#959; Live">
+ <div class="section" title="&#918;&#969;&#957;&#964;&#945;&#957;&#972; &#956;&#941;&#963;&#959;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e53"></a>&#924;&#941;&#963;&#959; Live
+ <h4 class="title"><a name="d5e68"></a>&#918;&#969;&#957;&#964;&#945;&#957;&#972; &#956;&#941;&#963;&#959;
</h4>
</div>
</div>
@@ -182,7 +243,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e55"></a>&#922;&#959;&#953;&#957;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
+ <h5 class="title"><a name="d5e70"></a>&#922;&#959;&#953;&#957;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
</h5>
</div>
</div>
@@ -193,32 +254,29 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#949;&#960;&#953;&#963;&#954;&#972;&#960;&#951;&#963;&#951; &#964;&#951;&#962; &#948;&#953;&#945;&#957;&#959;&#956;&#942;&#962; &#967;&#969;&#961;&#943;&#962; &#957;&#945; &#947;&#943;&#957;&#949;&#953;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#963;&#964;&#959;&#957; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;, &#954;&#945;&#953; &#960;&#961;&#959;&#945;&#953;&#961;&#949;&#964;&#953;&#954;&#940; &#947;&#953;&#945; &#964;&#951; &#956;&#949;&#964;&#941;&#960;&#949;&#953;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
- &#963;&#964;&#959;&#957; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;.
+ <p>&#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#949;&#960;&#953;&#963;&#954;&#972;&#960;&#951;&#963;&#951; &#964;&#959;&#965; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;
+ Mageia &#967;&#969;&#961;&#943;&#962; &#957;&#945; &#945;&#960;&#945;&#953;&#964;&#949;&#943;&#964;&#945;&#953; &#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#942; &#964;&#959;&#965;.
</p>
</li>
<li class="listitem">
- <p>&#922;&#940;&#952;&#949; ISO &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#956;&#972;&#957;&#959; &#941;&#957;&#945; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; (Plasma, GNOME &#942; XFCE).</p>
+ <p>&#932;&#959; &#918;&#969;&#957;&#964;&#945;&#957;&#972; &#956;&#941;&#963;&#969; &#960;&#949;&#961;&#953;&#955;&#945;&#956;&#946;&#940;&#957;&#949;&#953; &#941;&#957;&#945;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;.</p>
</li>
<li class="listitem">
- <p>&#916;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#956;&#941;&#963;&#945; &#947;&#953;&#945; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 bit.</p>
+ <p>&#922;&#940;&#952;&#949; ISO &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#956;&#972;&#957;&#959; &#941;&#957;&#945; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; (Plasma, GNOME &#942; Xfce)</p>
</li>
<li class="listitem">
- <p><span class="bold"><strong>&#932;&#959; ISO Live &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#956;&#972;&#957;&#959; &#947;&#953;&#945; &#956;&#953;&#945;
- &laquo;&#954;&#945;&#952;&#945;&#961;&#942;&raquo; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&middot; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#947;&#953;&#945; &#964;&#951;&#957; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951; &#945;&#960;&#972;
- &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951;.</strong></span></p>
+ <p>&#916;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#956;&#941;&#963;&#945; &#947;&#953;&#945; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 &#948;&#965;&#966;&#943;&#969;&#957;</p>
</li>
<li class="listitem">
- <p>&#928;&#949;&#961;&#953;&#941;&#967;&#959;&#965;&#957; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972;.</p>
+ <p>&#928;&#949;&#961;&#953;&#941;&#967;&#959;&#965;&#957; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972;</p>
</li>
</ul>
@@ -230,7 +288,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e69"></a>&#918;&#969;&#957;&#964;&#945;&#957;&#972; DVD Plasma
+ <h5 class="title"><a name="d5e83"></a>&#918;&#969;&#957;&#964;&#945;&#957;&#972; DVD Plasma
</h5>
</div>
</div>
@@ -241,17 +299,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#924;&#972;&#957;&#959; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; Plasma.</p>
+ <p>&#924;&#972;&#957;&#959; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; Plasma</p>
</li>
<li class="listitem">
- <p>&#928;&#949;&#961;&#953;&#941;&#967;&#959;&#957;&#964;&#945;&#953; &#972;&#955;&#949;&#962; &#959;&#953; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.</p>
+ <p>&#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</p>
</li>
<li class="listitem">
- <p>&#924;&#972;&#957;&#959; 64 &#956;&#960;&#953;&#964; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942;.</p>
+ <p>&#924;&#972;&#957;&#959; 64 &#948;&#965;&#966;&#943;&#969;&#957; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942;</p>
</li>
</ul>
@@ -263,7 +321,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e78"></a>Live DVD GNOME
+ <h5 class="title"><a name="d5e92"></a>Live DVD GNOME
</h5>
</div>
</div>
@@ -274,17 +332,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#924;&#972;&#957;&#959; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; GNOME.</p>
+ <p>&#924;&#972;&#957;&#959; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; GNOME</p>
</li>
<li class="listitem">
- <p>&#928;&#949;&#961;&#953;&#941;&#967;&#959;&#957;&#964;&#945;&#953; &#972;&#955;&#949;&#962; &#959;&#953; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.</p>
+ <p>&#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</p>
</li>
<li class="listitem">
- <p>&#924;&#972;&#957;&#959; 64 &#956;&#960;&#953;&#964; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942;</p>
+ <p>&#924;&#972;&#957;&#959; 64 &#948;&#965;&#966;&#943;&#969;&#957; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942;</p>
</li>
</ul>
@@ -296,7 +354,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e87"></a>&#918;&#969;&#957;&#964;&#945;&#957;&#972; DVD XFCE
+ <h5 class="title"><a name="d5e101"></a>&#918;&#969;&#957;&#964;&#945;&#957;&#972; DVD XFCE
</h5>
</div>
</div>
@@ -307,17 +365,17 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#924;&#972;&#957;&#959; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; XFCE.</p>
+ <p>&#924;&#972;&#957;&#959; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#960;&#953;&#966;&#940;&#957;&#949;&#953;&#945;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; XFCE</p>
</li>
<li class="listitem">
- <p>&#928;&#949;&#961;&#953;&#941;&#967;&#959;&#957;&#964;&#945;&#953; &#972;&#955;&#949;&#962; &#959;&#953; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.</p>
+ <p>&#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</p>
</li>
<li class="listitem">
- <p>&#913;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 &#956;&#960;&#953;&#964;.</p>
+ <p>&#913;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 &#948;&#965;&#966;&#943;&#969;&#957;</p>
</li>
</ul>
@@ -327,11 +385,11 @@
</div>
- <div class="section" title="CD &#945;&#960;&#959;&#954;&#955;&#949;&#953;&#963;&#964;&#953;&#954;&#940; &#947;&#953;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;">
+ <div class="section" title="&#924;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#953;&#954;&#964;&#973;&#959;&#965;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e96"></a>CD &#945;&#960;&#959;&#954;&#955;&#949;&#953;&#963;&#964;&#953;&#954;&#940; &#947;&#953;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;
+ <h4 class="title"><a name="d5e110"></a>&#924;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#953;&#954;&#964;&#973;&#959;&#965;
</h4>
</div>
</div>
@@ -342,7 +400,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e98"></a>&#922;&#959;&#953;&#957;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
+ <h5 class="title"><a name="d5e112"></a>&#922;&#959;&#953;&#957;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
</h5>
</div>
</div>
@@ -353,32 +411,12 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#922;&#940;&#952;&#949; &#941;&#957;&#945; &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#945; &#956;&#953;&#954;&#961;&#942; &#949;&#953;&#954;&#972;&#957;&#945; &#951; &#959;&#960;&#959;&#943;&#945; &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#964;&#945; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#945; &#947;&#953;&#945; &#964;&#951;&#957;
- &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; drakx &#954;&#945;&#953; &#964;&#951;&#957; &#949;&#973;&#961;&#949;&#963;&#951; &#964;&#959;&#965;
- drakx-installer-stage2 &#954;&#945;&#953; &#940;&#955;&#955;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#960;&#959;&#965; &#945;&#960;&#945;&#953;&#964;&#959;&#973;&#957;&#964;&#945;&#953; &#947;&#953;&#945; &#964;&#951; &#963;&#965;&#957;&#941;&#967;&#953;&#963;&#951; &#954;&#945;&#953;
- &#964;&#951;&#957; &#959;&#955;&#959;&#954;&#955;&#942;&#961;&#969;&#963;&#951; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;. &#913;&#965;&#964;&#940; &#964;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#946;&#961;&#943;&#963;&#954;&#959;&#957;&#964;&#945;&#953; &#963;&#964;&#959;&#957;
- &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;, &#963;&#949; &#941;&#957;&#945;&#957; &#964;&#959;&#960;&#953;&#954;&#972; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;, &#963;&#964;&#959; &#964;&#959;&#960;&#953;&#954;&#972; &#948;&#943;&#954;&#964;&#965;&#959;
- &#942; &#963;&#964;&#959; &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959;.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>&#913;&#965;&#964;&#940; &#964;&#945; &#956;&#941;&#963;&#945; &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#949;&#955;&#945;&#966;&#961;&#953;&#940; (&#956;&#953;&#954;&#961;&#972;&#964;&#949;&#961;&#945; &#945;&#960;&#972; 100 MB) &#954;&#945;&#953; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#959;&#973;&#957; &#972;&#964;&#945;&#957;
- &#964;&#959; &#949;&#973;&#961;&#959;&#962; &#950;&#974;&#957;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#956;&#953;&#954;&#961;&#972; &#947;&#953;&#945; &#964;&#951; &#955;&#942;&#968;&#951; &#949;&#957;&#972;&#962; &#960;&#955;&#942;&#961;&#959;&#965;&#962; DVD, &#972;&#964;&#945;&#957; &#959;
- &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#948;&#949;&#957; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#953; &#959;&#948;&#951;&#947;&#972; DVD &#942; &#972;&#964;&#945;&#957; &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#948;&#949;&#957; &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#943;&#950;&#949;&#953; &#964;&#951;&#957;
- &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#945;&#960;&#972; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>&#916;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#956;&#941;&#963;&#945; &#947;&#953;&#945; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 bit.</p>
+ <p>&#916;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#956;&#941;&#963;&#945; &#947;&#953;&#945; &#945;&#961;&#967;&#953;&#964;&#949;&#954;&#964;&#959;&#957;&#953;&#954;&#942; 32 &#942; 64 &#948;&#965;&#966;&#943;&#969;&#957;</p>
</li>
<li class="listitem">
- <p>&#924;&#972;&#957;&#959; &#913;&#947;&#947;&#955;&#953;&#954;&#942; &#947;&#955;&#974;&#963;&#963;&#945;.</p>
+ <p>&#932;&#945; &#960;&#961;&#974;&#964;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#943;&#957;&#945;&#953; &#956;&#972;&#957;&#959; &#963;&#964;&#951;&#957; &#945;&#947;&#947;&#955;&#953;&#954;&#942; &#947;&#955;&#974;&#963;&#963;&#945;</p>
</li>
</ul>
@@ -390,7 +428,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e109"></a>netinstall.iso
+ <h5 class="title"><a name="d5e119"></a>netinstall.iso
</h5>
</div>
</div>
@@ -402,7 +440,7 @@
<li class="listitem">
<p>&#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#956;&#972;&#957;&#959; &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972;, &#947;&#953;&#945; &#945;&#965;&#964;&#959;&#973;&#962; &#960;&#959;&#965; &#960;&#961;&#959;&#964;&#953;&#956;&#959;&#973;&#957; &#957;&#945; &#956;&#951;&#957;
- &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972;.
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972;
</p>
</li>
@@ -415,7 +453,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e114"></a>netinstall-nonfree.iso
+ <h5 class="title"><a name="d5e124"></a>netinstall-nonfree.iso
</h5>
</div>
</div>
@@ -427,7 +465,7 @@
<li class="listitem">
<p>&#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; (&#954;&#965;&#961;&#943;&#969;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#974;&#957;, &#945;&#960;&#959;&#954;&#969;&#948;&#953;&#954;&#959;&#960;&#959;&#953;&#951;&#964;&#941;&#962;...)
- &#947;&#953;&#945; &#945;&#965;&#964;&#959;&#973;&#962; &#960;&#959;&#965; &#964;&#959; &#967;&#961;&#949;&#953;&#940;&#950;&#959;&#957;&#964;&#945;&#953;.
+ &#947;&#953;&#945; &#945;&#965;&#964;&#959;&#973;&#962; &#960;&#959;&#965; &#964;&#959; &#967;&#961;&#949;&#953;&#940;&#950;&#959;&#957;&#964;&#945;&#953;
</p>
</li>
@@ -444,7 +482,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e119"></a>&#923;&#942;&#968;&#951; &#954;&#945;&#953; &#941;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957;
+ <h3 class="title"><a name="d5e129"></a>&#923;&#942;&#968;&#951; &#954;&#945;&#953; &#941;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957;
</h3>
</div>
</div>
@@ -455,28 +493,38 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e121"></a>&#923;&#942;&#968;&#951;
+ <h4 class="title"><a name="d5e131"></a>&#923;&#942;&#968;&#951;
</h4>
</div>
</div>
</div>
- <p>&#913;&#966;&#959;&#973; &#941;&#967;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; ISO, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959; &#955;&#940;&#946;&#949;&#964;&#949; &#949;&#943;&#964;&#949; &#956;&#941;&#963;&#969; http
- &#960;&#961;&#969;&#964;&#959;&#954;&#972;&#955;&#955;&#959;&#965; &#949;&#943;&#964;&#949; &#956;&#941;&#963;&#969; BitTorrent. &#922;&#945;&#953; &#963;&#964;&#953;&#962; &#948;&#965;&#959; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962;, &#952;&#945; &#945;&#957;&#959;&#943;&#958;&#949;&#953; &#941;&#957;&#945;
- &#960;&#945;&#961;&#940;&#952;&#965;&#961;&#959; &#956;&#949; &#956;&#949;&#961;&#953;&#954;&#941;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;, &#972;&#960;&#969;&#962; &#959; &#954;&#945;&#952;&#961;&#949;&#966;&#964;&#953;&#963;&#956;&#972;&#962; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#945;&#953; &#954;&#945;&#953;
- &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#945;&#955;&#955;&#945;&#947;&#942;&#962; &#964;&#959;&#965; &#945;&#957; &#964;&#959; &#949;&#973;&#961;&#959;&#962; &#950;&#974;&#957;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#956;&#953;&#954;&#961;&#972;. &#913;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; http,
- &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#954;&#940;&#964;&#953; &#963;&#945;&#957; &#945;&#965;&#964;&#972;
+ <p>&#913;&#966;&#959;&#973; &#949;&#960;&#953;&#955;&#941;&#958;&#945;&#964;&#949; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; ISO, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959; &#964;&#951;&#955;&#949;&#966;&#959;&#961;&#964;&#974;&#963;&#949;&#964;&#949; &#949;&#943;&#964;&#949; &#956;&#941;&#963;&#969; http
+ &#949;&#943;&#964;&#949; &#956;&#941;&#963;&#969; BitTorrent. &#922;&#945;&#953; &#963;&#964;&#953;&#962; &#948;&#965;&#959; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962;, &#963;&#945;&#962; &#960;&#945;&#961;&#941;&#967;&#959;&#965;&#956;&#949; &#964;&#953;&#962;
+ &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#959;&#957; &#949;&#957; &#967;&#961;&#942;&#963;&#949;&#953; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#972; &#954;&#945;&#953; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#957;&#945;&#955;&#955;&#945;&#947;&#942;&#962;
+ &#945;&#957; &#964;&#959; &#949;&#973;&#961;&#959;&#962; &#950;&#974;&#957;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#954;&#961;&#972;.
</p>
+ <p>&#913;&#957; &#949;&#943;&#957;&#945;&#953; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#959; &#964;&#959; http &#952;&#945; &#948;&#949;&#943;&#964;&#949; &#954;&#940;&#960;&#959;&#953;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#945;
+ &#945;&#952;&#961;&#959;&#943;&#963;&#956;&#945;&#964;&#945; &#949;&#955;&#941;&#947;&#967;&#959;&#965;.
+ </p>
+
- <p>&#932;&#945; md5sum &#954;&#945;&#953; sha1sum &#949;&#943;&#957;&#945;&#953; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#949;&#955;&#941;&#947;&#967;&#959;&#965; &#964;&#951;&#962; &#945;&#954;&#949;&#961;&#945;&#953;&#972;&#964;&#951;&#964;&#945;&#962; &#964;&#969;&#957; ISO. &#919;
- &#967;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#949;&#954; &#964;&#969;&#957; &#948;&#965;&#959; &#945;&#961;&#954;&#949;&#943;. &#922;&#961;&#945;&#964;&#942;&#963;&#964;&#949; &#964;&#959; &#947;&#953;&#945; <a class="link" href="Select-and-use-ISOs.html#integrity">&#956;&#949;&#955;&#955;&#959;&#957;&#964;&#953;&#954;&#942; &#967;&#961;&#942;&#963;&#951;</a>. &#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#945;&#957;&#959;&#943;&#947;&#949;&#953; &#941;&#957;&#945;
- &#960;&#945;&#961;&#949;&#956;&#966;&#949;&#961;&#941;&#962; &#960;&#945;&#961;&#940;&#952;&#965;&#961;&#959;:
+ <p>&#932;&#945; <code class="literal">md5sum</code>, <code class="literal">sha1sum</code> &#954;&#945;&#953;
+ <code class="literal">sha512sum</code> (&#964;&#959; &#960;&#953;&#959; &#945;&#963;&#966;&#945;&#955;&#941;&#962;) &#949;&#943;&#957;&#945;&#953; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#949;&#955;&#941;&#947;&#967;&#959;&#965; &#964;&#951;&#962;
+ &#945;&#954;&#949;&#961;&#945;&#953;&#972;&#964;&#951;&#964;&#945;&#962; &#964;&#959;&#965; ISO. &#913;&#957;&#964;&#953;&#947;&#961;&#940;&#968;&#964;&#949; &#941;&#957;&#945; &#940;&#952;&#961;&#959;&#953;&#963;&#956;&#945; &#949;&#955;&#941;&#947;&#967;&#959;&#965; (&#963;&#965;&#956;&#946;&#959;&#955;&#959;&#963;&#949;&#953;&#961;&#940;
+ &#945;&#955;&#966;&#945;&#961;&#953;&#952;&#956;&#951;&#964;&#953;&#954;&#974;&#957; &#967;&#945;&#961;&#945;&#954;&#964;&#942;&#961;&#969;&#957;) &#947;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#963;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#949;&#957;&#972;&#964;&#951;&#964;&#945;.
</p>
+
- <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#949;&#960;&#953;&#955;&#959;&#947;&#974;&#957; &#913;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; &#964;&#959;&#965; &#945;&#961;&#967;&#949;&#943;&#959;&#965;.</p>
+ <p>&#917;&#957; &#964;&#969; &#956;&#949;&#964;&#945;&#958;&#973;, &#952;&#945; &#945;&#957;&#959;&#943;&#958;&#949;&#953; &#941;&#957;&#945; &#960;&#945;&#961;&#940;&#952;&#965;&#961;&#959; &#947;&#953;&#945; &#964;&#951;&#957; &#955;&#942;&#968;&#951; &#964;&#959;&#965; ISO:</p>
+
+
+ <p>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#913;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; &#945;&#961;&#967;&#949;&#943;&#959;&#965;</em></span>, &#954;&#945;&#953; &#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;
+ &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#917;&#957;&#964;&#940;&#958;&#949;&#953;</em></span>.
+ </p>
</div>
@@ -484,37 +532,56 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e133"></a>&#904;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#951;&#962; &#945;&#954;&#949;&#961;&#945;&#953;&#972;&#964;&#951;&#964;&#945;&#962; &#964;&#959;&#965; &#955;&#951;&#966;&#952;&#941;&#957;&#964;&#959;&#962; &#945;&#961;&#967;&#949;&#943;&#959;&#965;
+ <h4 class="title"><a name="d5e149"></a>&#904;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#951;&#962; &#945;&#954;&#949;&#961;&#945;&#953;&#972;&#964;&#951;&#964;&#945;&#962; &#964;&#959;&#965; &#955;&#951;&#966;&#952;&#941;&#957;&#964;&#959;&#962; &#945;&#961;&#967;&#949;&#943;&#959;&#965;
</h4>
</div>
</div>
</div>
- <p>&#922;&#945;&#953; &#964;&#945; &#948;&#965;&#959; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#949;&#955;&#941;&#947;&#967;&#959;&#965; &#964;&#951;&#962; &#945;&#954;&#949;&#961;&#945;&#953;&#972;&#964;&#951;&#964;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#948;&#949;&#954;&#945;&#949;&#958;&#945;&#948;&#953;&#954;&#959;&#943; &#945;&#961;&#953;&#952;&#956;&#959;&#943;
- &#945;&#960;&#959;&#964;&#941;&#955;&#949;&#963;&#956;&#945; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#956;&#959;&#973; &#949;&#957;&#972;&#962; &#945;&#955;&#947;&#972;&#961;&#953;&#952;&#956;&#959;&#965; &#945;&#960;&#972; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; &#960;&#961;&#959;&#962; &#964;&#951;&#955;&#949;&#966;&#972;&#961;&#964;&#969;&#963;&#951;. &#908;&#964;&#945;&#957;
- &#950;&#951;&#964;&#940;&#964;&#949; &#945;&#960;&#972; &#964;&#959;&#965;&#962; &#945;&#955;&#947;&#972;&#961;&#953;&#952;&#956;&#959;&#965;&#962; &#957;&#945; &#949;&#960;&#945;&#957;&#965;&#960;&#959;&#955;&#959;&#947;&#943;&#963;&#959;&#965;&#957; &#964;&#959;&#957; &#945;&#961;&#953;&#952;&#956;&#972; &#945;&#965;&#964;&#972;&#957; &#945;&#960;&#972; &#964;&#959;
- &#945;&#961;&#967;&#949;&#943;&#959; &#955;&#942;&#968;&#951;&#962;, &#949;&#943;&#964;&#949; &#952;&#945; &#941;&#967;&#949;&#964;&#949; &#964;&#959;&#957; &#943;&#948;&#953;&#959; &#945;&#961;&#953;&#952;&#956;&#972; &#954;&#945;&#953; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; &#963;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#972;,
- &#949;&#943;&#964;&#949; &#959; &#945;&#961;&#953;&#952;&#956;&#972;&#962; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#972;&#962; &#954;&#945;&#953; &#941;&#967;&#949;&#964;&#949; &#956;&#953;&#945; &#945;&#960;&#959;&#964;&#965;&#967;&#943;&#945; &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
- &#960;&#961;&#959;&#963;&#960;&#945;&#952;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#954; &#957;&#941;&#959;&#965; &#955;&#942;&#968;&#951; &#964;&#959;&#965; &#945;&#961;&#967;&#949;&#943;&#959;&#965; &#942; &#964;&#951;&#957; &#949;&#960;&#953;&#963;&#954;&#949;&#965;&#942; &#956;&#941;&#963;&#969; Bittorrent.
+ <p>&#932;&#959; &#940;&#952;&#961;&#959;&#953;&#963;&#956;&#945; &#949;&#955;&#941;&#947;&#967;&#959;&#965; &#960;&#959;&#965; &#945;&#957;&#945;&#966;&#941;&#961;&#945;&#956;&#949; &#957;&#969;&#961;&#943;&#964;&#949;&#961;&#945; &#949;&#943;&#957;&#945;&#953; &#941;&#957;&#945; &#968;&#951;&#966;&#953;&#945;&#954;&#972; &#945;&#960;&#959;&#964;&#973;&#960;&#969;&#956;&#945;
+ &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#956;&#941;&#957;&#959; &#945;&#960;&#972; &#941;&#957;&#945;&#957; &#945;&#955;&#947;&#972;&#961;&#953;&#952;&#956;&#959; &#945;&#960;&#972; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; &#960;&#961;&#959;&#962; &#955;&#942;&#968;&#951;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
+ &#963;&#965;&#947;&#954;&#961;&#943;&#957;&#949;&#964;&#949; &#964;&#959; &#940;&#952;&#961;&#959;&#953;&#963;&#956;&#945; &#964;&#959;&#965; &#945;&#961;&#967;&#949;&#943;&#959;&#965; ISO &#960;&#959;&#965; &#964;&#951;&#955;&#949;&#966;&#959;&#961;&#964;&#974;&#963;&#945;&#964;&#949; &#956;&#949; &#945;&#965;&#964;&#972; &#964;&#959;&#965; &#945;&#961;&#967;&#949;&#943;&#959;&#965;
+ ISO &#964;&#951;&#962; &#960;&#951;&#947;&#942;&#962;. &#913;&#957; &#964;&#945; &#945;&#952;&#961;&#959;&#943;&#963;&#956;&#945;&#964;&#945; &#948;&#949;&#957; &#964;&#945;&#953;&#961;&#953;&#940;&#950;&#959;&#965;&#957;, &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#960;&#969;&#962; &#964;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#964;&#959;&#965;
+ &#945;&#961;&#967;&#949;&#943;&#959;&#965; &#960;&#959;&#965; &#964;&#951;&#955;&#949;&#966;&#959;&#961;&#964;&#974;&#963;&#945;&#964;&#949; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#945;&#957;&#964;&#953;&#963;&#964;&#959;&#953;&#967;&#959;&#973;&#957; &#954;&#945;&#953; &#963;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951;
+ &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949; &#964;&#951;&#957; &#955;&#942;&#968;&#951; &#942; &#957;&#945; &#960;&#961;&#959;&#963;&#960;&#945;&#952;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#963;&#954;&#949;&#965;&#942;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959; BitTorrent.
</p>
- <p>&#913;&#957;&#959;&#943;&#958;&#964;&#949; &#941;&#957;&#945; &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#954;&#972; &#65293;&#948;&#949;&#957; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#963;&#973;&#957;&#948;&#949;&#963;&#951; &#969;&#962; root &#65293; &#954;&#945;&#953;:</p>
-
- <p>- &#915;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#964;&#959;&#965; md5sum, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949;: [sam@localhost]$ <strong class="userinput"><code>md5sum
- path/to/the/image/file.iso</code></strong>.
+ <p>&#915;&#953;&#945; &#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#943;&#945; &#964;&#959;&#965; &#945;&#952;&#961;&#959;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#949;&#955;&#941;&#947;&#967;&#959;&#965; &#947;&#953;&#945; &#964;&#959; &#949;&#953;&#955;&#951;&#956;&#956;&#941;&#957;&#959; ISO, &#945;&#957;&#959;&#943;&#958;&#964;&#949; &#964;&#959;
+ &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#954;&#972; (&#948;&#949;&#957; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#963;&#973;&#957;&#948;&#949;&#963;&#951; &#969;&#962; root), &#954;&#945;&#953;:
</p>
- <p>- &#915;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#964;&#959;&#965; sha1sum, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949;: [sam@localhost]$ <strong class="userinput"><code>mdsum
- path/to/the/image/file.iso</code></strong>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#915;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#964;&#959;&#965; md5sum, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949;: <span class="command"><strong>md5sum
+ &#948;&#953;&#945;&#948;&#961;&#959;&#956;&#942;/&#960;&#961;&#959;&#962;/&#964;&#959;/&#945;&#961;&#967;&#949;&#943;&#959;/&#949;&#953;&#954;&#972;&#957;&#945;iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#915;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#964;&#959;&#965; sha1sum, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949;: <span class="command"><strong>sha1sum
+ &#948;&#953;&#945;&#948;&#961;&#959;&#956;&#942;/&#960;&#961;&#959;&#962;/&#964;&#959;/&#945;&#961;&#967;&#949;&#943;&#959;/&#949;&#953;&#954;&#972;&#957;&#945;.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#915;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#964;&#959;&#965; sha55122sum, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949;: <span class="command"><strong>sha1sum
+ &#948;&#953;&#945;&#948;&#961;&#959;&#956;&#942;/&#960;&#961;&#959;&#962;/&#964;&#959;/&#945;&#961;&#967;&#949;&#943;&#959;/&#949;&#953;&#954;&#972;&#957;&#945;.iso</strong></span></p>
+
+ </li>
+ </ul>
+ </div>
- <p>&#954;&#945;&#953; &#963;&#965;&#947;&#954;&#961;&#943;&#957;&#949;&#964;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#956;&#941;&#957;&#959; &#945;&#961;&#953;&#952;&#956;&#972; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962; (&#943;&#963;&#969;&#962; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943;
- &#957;&#945; &#960;&#949;&#961;&#953;&#956;&#941;&#957;&#949;&#964;&#949; &#955;&#943;&#947;&#959;) &#956;&#949; &#964;&#959;&#957; &#945;&#961;&#953;&#952;&#956;&#972; &#960;&#959;&#965; &#948;&#943;&#957;&#949;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#951; Mageia. &#915;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;:
- </p>
+ <p>&#928;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;:</p>
+
- <p></p>
+ <p>&#954;&#945;&#953; &#963;&#965;&#947;&#954;&#961;&#943;&#957;&#949;&#964;&#949; &#964;&#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#956;&#941;&#957;&#959; &#940;&#952;&#961;&#959;&#953;&#963;&#956;&#945; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962; (&#943;&#963;&#969;&#962; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943;
+ &#957;&#945; &#960;&#949;&#961;&#953;&#956;&#941;&#957;&#949;&#964;&#949; &#955;&#943;&#947;&#959;) &#956;&#949; &#964;&#959; &#940;&#952;&#961;&#959;&#953;&#963;&#956;&#945; ISO &#960;&#959;&#965; &#948;&#943;&#957;&#949;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#951; Mageia.
+ </p>
</div>
@@ -524,34 +591,34 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e146"></a>&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#942; &#945;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#964;&#959;&#965; ISO
+ <h3 class="title"><a name="d5e168"></a>&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#942; &#945;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#964;&#959;&#965; ISO
</h3>
</div>
</div>
</div>
- <p>To &#949;&#960;&#953;&#946;&#949;&#946;&#945;&#953;&#969;&#956;&#941;&#957;&#959; ISO &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#947;&#947;&#961;&#945;&#966;&#949;&#943; &#963;&#949; &#941;&#957;&#945; CD/DVD &#942; &#957;&#945; &#945;&#960;&#959;&#964;&#965;&#960;&#969;&#952;&#949;&#943; &#963;&#949; &#941;&#957;&#945;
- &#954;&#955;&#949;&#953;&#948;&#943; USB. &#913;&#965;&#964;&#941;&#962; &#959;&#953; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#949;&#962; &#948;&#949;&#957; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#956;&#953;&#945; &#945;&#960;&#955;&#942; &#945;&#957;&#964;&#953;&#947;&#961;&#945;&#966;&#942; &#954;&#945;&#953;
- &#963;&#954;&#959;&#960;&#949;&#973;&#959;&#965;&#957; &#963;&#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#943;&#945; &#949;&#957;&#972;&#962; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#953;&#956;&#959;&#965; &#956;&#941;&#963;&#959;&#965;.
+ <p>&#932;&#959; &#949;&#960;&#953;&#946;&#949;&#946;&#945;&#953;&#969;&#956;&#941;&#957;&#959; ISO &#956;&#960;&#959;&#961;&#949;&#943; &#964;&#974;&#961;&#945; &#957;&#945; &#949;&#947;&#947;&#961;&#945;&#966;&#949;&#943; &#963;&#949; &#941;&#957;&#945; CD/DVD &#942; &#957;&#945; &#945;&#960;&#959;&#964;&#965;&#960;&#969;&#952;&#949;&#943;
+ &#963;&#949; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB. &#913;&#965;&#964;&#942; &#951; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#948;&#949;&#957; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#956;&#953;&#945; &#945;&#960;&#955;&#942; &#945;&#957;&#964;&#953;&#947;&#961;&#945;&#966;&#942;
+ &#945;&#955;&#955;&#940; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#943;&#945; &#949;&#957;&#972;&#962; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#953;&#956;&#959;&#965; &#956;&#941;&#963;&#959;&#965;.
</p>
<div class="section" title="&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#964;&#959;&#965; ISO &#963;&#949; &#941;&#957;&#945; CD/DVD">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e149"></a>&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#964;&#959;&#965; ISO &#963;&#949; &#941;&#957;&#945; CD/DVD
+ <h4 class="title"><a name="d5e171"></a>&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#964;&#959;&#965; ISO &#963;&#949; &#941;&#957;&#945; CD/DVD
</h4>
</div>
</div>
</div>
- <p>&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#964;&#949; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#947;&#961;&#945;&#966;&#942;&#962; &#960;&#959;&#965; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949;, &#945;&#955;&#955;&#940; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
- &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#949;&#947;&#947;&#961;&#945;&#966;&#942;&#962; &#941;&#967;&#949;&#953; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#969;&#952;&#949;&#943; &#963;&#969;&#963;&#964;&#940; &#947;&#953;&#945; &#964;&#951;&#957;
- <span class="bold"><strong>&#949;&#947;&#947;&#961;&#945;&#966;&#942; &#956;&#953;&#945;&#962; &#949;&#953;&#954;&#972;&#957;&#945;&#962;</strong></span>&middot; &#951; &#949;&#947;&#947;&#961;&#945;&#966;&#942; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#942;
- &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#942;. &#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">Mageia
- wiki</a>.
+ <p>&#908;&#960;&#959;&#953;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; &#954;&#945;&#953; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;, &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#964;&#951;&#957;
+ &#949;&#947;&#947;&#961;&#945;&#966;&#942; &#956;&#953;&#945;&#962; <span class="emphasis"><em>&#949;&#953;&#954;&#972;&#957;&#945;&#962;</em></span>. &#927;&#953; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#949;&#947;&#947;&#961;&#945;&#966;&#942;&#962;
+ <span class="emphasis"><em>&#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957;</em></span> &#942; <span class="emphasis"><em>&#945;&#961;&#967;&#949;&#943;&#969;&#957;</em></span> &#916;&#917;&#925; &#949;&#943;&#957;&#945;&#953;
+ &#963;&#969;&#963;&#964;&#941;&#962;. &#913;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">Mageia
+ wiki</a> &#947;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;.
</p>
</div>
@@ -560,7 +627,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e154"></a>&#913;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#964;&#959;&#965; ISO &#963;&#949; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB
+ <h4 class="title"><a name="d5e178"></a>&#913;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#964;&#959;&#965; ISO &#963;&#949; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB
</h4>
</div>
</div>
@@ -581,10 +648,9 @@
<tr>
<td align="left" valign="top">
- <p>&#919; &laquo;&#945;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951;&raquo; &#956;&#953;&#945;&#962; &#949;&#953;&#954;&#972;&#957;&#945;&#962; &#963;&#949; &#941;&#957;&#945;&#957; &#959;&#948;&#951;&#947;&#972; flash &#952;&#945; &#941;&#967;&#949;&#953; &#969;&#962; &#945;&#960;&#959;&#964;&#941;&#955;&#949;&#963;&#956;&#945; &#964;&#951;&#957;
+ <p>&#919; &#945;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#956;&#953;&#945;&#962; &#949;&#953;&#954;&#972;&#957;&#945;&#962; &#963;&#949; &#941;&#957;&#945;&#957; &#959;&#948;&#951;&#947;&#972; flash &#952;&#945; &#941;&#967;&#949;&#953; &#969;&#962; &#945;&#960;&#959;&#964;&#941;&#955;&#949;&#963;&#956;&#945; &#964;&#951;&#957;
&#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942; &#964;&#969;&#957; &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#954;&#945;&#953; &#964;&#951;&#957; &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#959;&#966;&#942; &#959;&#960;&#959;&#953;&#959;&#965;&#948;&#942;&#960;&#959;&#964;&#949; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;
- &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#963;&#964;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942;. &#919; &#967;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945; &#964;&#959;&#965; &#959;&#948;&#951;&#947;&#959;&#973; &#952;&#945; &#963;&#965;&#961;&#961;&#953;&#954;&#957;&#969;&#952;&#949;&#943; &#963;&#964;&#959; &#956;&#941;&#947;&#949;&#952;&#959;&#962;
- &#964;&#951;&#962; &#949;&#953;&#954;&#972;&#957;&#945;&#962; ISO.
+ &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#963;&#964;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942;.
</p>
</td>
@@ -592,15 +658,37 @@
</table>
</div>
- <p>&#915;&#953;&#945; &#957;&#945; &#945;&#957;&#945;&#954;&#964;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#945;&#961;&#967;&#953;&#954;&#942; &#967;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#949;&#954;
- &#957;&#941;&#959;&#965; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#954;&#945;&#953; &#964;&#951;&#957; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; &#954;&#955;&#949;&#953;&#948;&#953;&#959;&#973; USB.
- </p>
+ <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#917;&#960;&#943;&#963;&#951;&#962; &#951; &#956;&#972;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#960;&#959;&#965; &#952;&#945; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#963;&#964;&#951;&#957; &#963;&#965;&#963;&#954;&#949;&#965;&#942; flash &#952;&#945; &#949;&#943;&#957;&#945;&#953; &#951;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#959;&#965; Mageia ISO.
+ </p>
+
+ <p>&#904;&#964;&#963;&#953;, &#945;&#957; &#941;&#957;&#945; ISO 4GB &#941;&#967;&#949;&#953; &#947;&#961;&#945;&#966;&#949;&#943; &#963;&#949; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB 4GB, &#964;&#959; &#954;&#955;&#949;&#953;&#948;&#943; &#952;&#945;
+ &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#953; &#972;&#964;&#953; &#941;&#967;&#949;&#953; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#942; &#967;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945; 4GB. &#913;&#965;&#964;&#972; &#963;&#965;&#956;&#946;&#945;&#943;&#957;&#949;&#953; &#948;&#953;&#972;&#964;&#953; &#964;&#959;
+ &#965;&#960;&#972;&#955;&#959;&#953;&#960;&#959; &#964;&#969;&#957; 4GB &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#951;&#956;&#941;&#957;&#959; &#954;&#945;&#953; &#969;&#962; &#949;&#954; &#964;&#959;&#973;&#964;&#959;&#965; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953;
+ &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959; &#960;&#961;&#959;&#962; &#967;&#961;&#942;&#963;&#951;. &#915;&#953;&#945; &#957;&#945; &#945;&#957;&#945;&#954;&#964;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#945;&#961;&#967;&#953;&#954;&#942; &#967;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953;
+ &#957;&#945; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#953; &#957;&#945; &#957;&#945; &#945;&#957;&#945;&#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#964;&#959;&#965; &#954;&#955;&#949;&#953;&#948;&#953;&#959;&#973;
+ USB.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<div class="section" title="&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; &#947;&#961;&#945;&#966;&#953;&#954;&#959;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#963;&#964;&#951;&#957; Mageia">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e160"></a>&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; &#947;&#961;&#945;&#966;&#953;&#954;&#959;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#963;&#964;&#951;&#957; Mageia
+ <h5 class="title"><a name="d5e186"></a>&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; &#947;&#961;&#945;&#966;&#953;&#954;&#959;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#963;&#964;&#951;&#957; Mageia
</h5>
</div>
</div>
@@ -616,7 +704,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e164"></a>&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; &#947;&#961;&#945;&#966;&#953;&#954;&#959;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#963;&#964;&#945; Windows
+ <h5 class="title"><a name="d5e190"></a>&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; &#947;&#961;&#945;&#966;&#953;&#954;&#959;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#963;&#964;&#945; Windows
</h5>
</div>
</div>
@@ -625,12 +713,23 @@
<p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949;:</p>
- <p>- &#932;&#959; <a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a>
- &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#951;&#962; &laquo;&#949;&#953;&#954;&#972;&#957;&#945;&#962; ISO&raquo;&middot;
- </p>
-
- <p>- &#932;&#959; <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
- Disk Imager</a></p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#932;&#959; <a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a>
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#951;&#962; &laquo;&#949;&#953;&#954;&#972;&#957;&#945;&#962; ISO&raquo;&middot;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#932;&#959; <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
+ Disk Imager</a></p>
+
+ </li>
+ </ul>
+ </div>
</div>
@@ -638,7 +737,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e171"></a>&#935;&#961;&#942;&#963;&#951; &#964;&#951;&#962; &#947;&#961;&#945;&#956;&#956;&#942;&#962; &#949;&#957;&#964;&#959;&#955;&#974;&#957; &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; GNU/Linux
+ <h5 class="title"><a name="d5e200"></a>&#935;&#961;&#942;&#963;&#951; &#964;&#951;&#962; &#947;&#961;&#945;&#956;&#956;&#942;&#962; &#949;&#957;&#964;&#959;&#955;&#974;&#957; &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; GNU/Linux
</h5>
</div>
</div>
@@ -654,9 +753,9 @@
<tr>
<td align="left" valign="top">
- <p>&#917;&#943;&#957;&#945;&#953; &#949;&#957; &#948;&#965;&#957;&#940;&#956;&#949;&#953; &laquo;&#949;&#960;&#953;&#954;&#943;&#957;&#948;&#965;&#957;&#959;&raquo; &#957;&#945; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;
- &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;. &#916;&#953;&#945;&#954;&#953;&#957;&#948;&#965;&#957;&#949;&#973;&#949;&#964;&#949; &#957;&#945; &#945;&#957;&#964;&#953;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#959;&#965; &#948;&#943;&#963;&#954;&#959;&#965; &#945;&#957;
- &#955;&#940;&#946;&#949;&#964;&#949; &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#945; &#964;&#959; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962;.
+ <p>&#917;&#943;&#957;&#945;&#953; &#949;&#957; &#948;&#965;&#957;&#940;&#956;&#949;&#953; *&#949;&#960;&#953;&#954;&#943;&#957;&#948;&#965;&#957;&#959;* &#957;&#945; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;
+ &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;. &#916;&#953;&#945;&#954;&#953;&#957;&#948;&#965;&#957;&#949;&#973;&#949;&#964;&#949; &#957;&#945; &#945;&#957;&#964;&#953;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#940; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#945;&#957;
+ &#954;&#945;&#952;&#959;&#961;&#943;&#963;&#949;&#964;&#949; &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#945; &#964;&#959; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962;.
</p>
</td>
@@ -664,8 +763,6 @@
</table>
</div>
- <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959; dd &#963;&#949; &#941;&#957;&#945; &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#954;&#972;:</p>
-
<div class="orderedlist">
<ol class="orderedlist" type="1">
<li class="listitem">
@@ -675,28 +772,38 @@
</li>
<li class="listitem">
- <p>&#931;&#965;&#957;&#948;&#949;&#952;&#949;&#943;&#964;&#949; &#969;&#962; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;&#962; &#956;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942; <strong class="userinput"><code>su -</code></strong> (&#956;&#951;&#957;
- &#958;&#949;&#967;&#940;&#963;&#949;&#964;&#949; &#964;&#959; &#964;&#949;&#955;&#953;&#954;&#972; &laquo;-&raquo; )
+ <p>&#931;&#965;&#957;&#948;&#949;&#952;&#949;&#943;&#964;&#949; &#969;&#962; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;&#962; <span class="emphasis"><em>root</em></span> &#956;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942;
+ <span class="command"><strong>su -</strong></span> (&#956;&#951;&#957; &#958;&#949;&#967;&#940;&#963;&#949;&#964;&#949; &#964;&#959; <span class="command"><strong>-</strong></span>)
</p>
</li>
<li class="listitem">
- <p>&#931;&#965;&#957;&#948;&#941;&#963;&#964;&#949; &#964;&#959; &#954;&#955;&#949;&#953;&#948;&#943; USB (&#956;&#951;&#957; &#964;&#959; &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#942;&#963;&#949;&#964;&#949;, &#954;&#945;&#953; &#956;&#951;&#957; &#945;&#957;&#959;&#943;&#958;&#949;&#964;&#949; &#956;&#953;&#945; &#949;&#966;&#945;&#961;&#956;&#959;&#947;&#942; &#942;
- &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#960;&#959;&#965; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#941;&#967;&#949;&#953; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#942; &#957;&#945; &#954;&#940;&#957;&#949;&#953; &#945;&#957;&#940;&#947;&#957;&#969;&#963;&#951; &#963;&#964;&#959;
- &#954;&#955;&#949;&#953;&#948;&#943;)
+ <p>&#931;&#965;&#957;&#948;&#941;&#963;&#964;&#949; &#964;&#959; &#954;&#955;&#949;&#953;&#948;&#943; USB &#945;&#955;&#955;&#940; &#956;&#951;&#957; &#964;&#959; &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#942;&#963;&#949;&#964;&#949; (&#954;&#945;&#953; &#956;&#951;&#957; &#945;&#957;&#959;&#943;&#958;&#949;&#964;&#949; &#956;&#953;&#945;
+ &#949;&#966;&#945;&#961;&#956;&#959;&#947;&#942; &#942; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#960;&#959;&#965; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#941;&#967;&#949;&#953; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#942; &#957;&#945; &#954;&#940;&#957;&#949;&#953;
+ &#945;&#957;&#940;&#947;&#957;&#969;&#963;&#951; &#963;&#964;&#959; &#954;&#955;&#949;&#953;&#948;&#943;)
</p>
</li>
<li class="listitem">
- <p>&#917;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942; <strong class="userinput"><code>fdisk -l</code></strong></p>
+ <p>&#917;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942; <span class="command"><strong>fdisk -l</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#913;&#957;&#945;&#950;&#951;&#964;&#942;&#963;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962; &#964;&#959;&#965; &#954;&#955;&#949;&#953;&#948;&#953;&#959;&#973; USB (&#946;&#940;&#963;&#949;&#953; &#964;&#959;&#965; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#964;&#959;&#965;)&middot;
+ &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; <code class="filename">/dev/sdb</code> &#963;&#964;&#959; &#960;&#945;&#961;&#945;&#960;&#940;&#957;&#969; &#963;&#964;&#953;&#947;&#956;&#953;&#972;&#964;&#965;&#960;&#959;&middot;
+ &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB 8GB.
+ </p>
- <p>&#917;&#957;&#945;&#955;&#955;&#945;&#954;&#964;&#953;&#954;&#940;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#955;&#940;&#946;&#949;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962; &#956;&#941;&#963;&#969; &#964;&#951;&#962; &#949;&#957;&#964;&#959;&#955;&#942;&#962;
- <code class="code">dmesg</code>: &#963;&#964;&#959; &#964;&#941;&#955;&#959;&#962; &#952;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962; &#945;&#961;&#967;&#943;&#950;&#959;&#957;&#964;&#945;&#962; &#945;&#960;&#972;
- <span class="emphasis"><em>sd</em></span>, &#954;&#945;&#953; <span class="emphasis"><em>sdd</em></span> &#963;&#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#942; &#956;&#945;&#962;:
+ <p>&#917;&#957;&#945;&#955;&#955;&#945;&#954;&#964;&#953;&#954;&#940;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962; &#956;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942;
+ <span class="command"><strong>dmesg</strong></span>: &#960;&#961;&#959;&#962; &#964;&#959; &#964;&#941;&#955;&#959;&#962; &#964;&#959;&#965; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#960;&#945;&#961;&#945;&#948;&#949;&#943;&#947;&#956;&#945;&#964;&#959;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949;
+ &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962; &#960;&#959;&#965; &#945;&#961;&#967;&#943;&#950;&#949;&#953; &#956;&#949; <code class="filename">sd</code>, &#954;&#945;&#953;
+ &#963;&#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#942; &#956;&#945;&#962;, <code class="filename">sdd</code> &#949;&#943;&#957;&#945;&#953; &#951; &#964;&#961;&#941;&#967;&#959;&#965;&#963;&#945;
+ &#963;&#965;&#963;&#954;&#949;&#965;&#942;. &#914;&#955;&#941;&#960;&#959;&#965;&#956;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#972;&#964;&#953; &#951; &#967;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945; &#949;&#943;&#957;&#945;&#953; 2GB:
</p>
<pre class="screen">[72594.604531] usb 1-1: new high-speed USB device number 27 using xhci_hcd
[72594.770528] usb 1-1: New USB device found, idVendor=8564, idProduct=1000
@@ -719,31 +826,44 @@
</li>
<li class="listitem">
- <p>&#913;&#957;&#945;&#950;&#951;&#964;&#942;&#963;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962; &#964;&#959;&#965; &#954;&#955;&#949;&#953;&#948;&#953;&#959;&#973; USB (&#946;&#940;&#963;&#949;&#953; &#964;&#959;&#965; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#964;&#959;&#965;),
- &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; <code class="code">/dev/sdb</code> &#963;&#964;&#959; &#960;&#945;&#961;&#945;&#960;&#940;&#957;&#969; &#963;&#964;&#953;&#947;&#956;&#953;&#972;&#964;&#965;&#960;&#959;&middot; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945;
- &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB 8GB.
- </p>
-
- </li>
- <li class="listitem">
+ <p>&#917;&#953;&#963;&#945;&#947;&#940;&#947;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942;: <span class="command"><strong>dd if=path/to/the/ISO/file
+ of=/dev/sd<em class="replaceable"><code>X</code></em> bs=1M</strong></span></p>
- <p>&#917;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942;: # <strong class="userinput"><code>dd if=path/to/the/ISO/file of=/dev/sdX
- bs=1M</code></strong></p>
+ <p>&#908;&#960;&#959;&#965; <em class="replaceable"><code>X</code></em> = &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962;, &#960;&#967;:
+ <code class="filename">/dev/sdd</code></p>
- <p>&#908;&#960;&#959;&#965; &laquo;X&raquo; = &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#942;&#962;, &#960;&#967;: /dev/sdc</p>
+ <p>&#928;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;:<code class="literal"> dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso
+ of=/dev/sdd bs=1M</code></p>
- <p>&#928;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;: # <strong class="userinput"><code>dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso
- of=/dev/sdb bs=1M</code></strong></p>
+ <div class="tip" title="&#933;&#960;&#972;&#948;&#949;&#953;&#958;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#933;&#960;&#972;&#948;&#949;&#953;&#958;&#951;]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#963;&#945;&#962; &#966;&#945;&#957;&#949;&#943; &#967;&#961;&#942;&#963;&#953;&#956;&#959; &#972;&#964;&#953; <span class="bold"><strong>if</strong></span> &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953;
+ <span class="bold"><strong>i</strong></span>nput <span class="bold"><strong>f</strong></span>ile
+ (&#945;&#961;&#967;&#949;&#943;&#959; &#949;&#953;&#963;&#972;&#948;&#959;&#965;) &#954;&#945;&#953; <span class="bold"><strong>of</strong></span> &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; <span class="bold"><strong>o</strong></span>utput <span class="bold"><strong>f</strong></span>ile (&#945;&#961;&#967;&#949;&#943;&#959;
+ &#949;&#958;&#972;&#948;&#959;&#965;)
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p>&#917;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942;: # <strong class="userinput"><code>sync</code></strong></p>
+ <p>&#917;&#953;&#963;&#945;&#947;&#940;&#947;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#964;&#959;&#955;&#942;: <span class="command"><strong>sync</strong></span></p>
</li>
<li class="listitem">
- <p>&#913;&#960;&#959;&#963;&#965;&#957;&#948;&#941;&#963;&#964;&#949; &#964;&#959; &#954;&#955;&#949;&#953;&#948;&#943; USB, &#972;&#955;&#945; &#959;&#955;&#959;&#954;&#955;&#951;&#961;&#974;&#952;&#951;&#954;&#945;&#957;</p>
+ <p>&#934;&#964;&#940;&#963;&#945;&#956;&#949; &#963;&#964;&#959; &#964;&#941;&#955;&#959;&#962; &#964;&#951;&#962; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962; &#954;&#945;&#953; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#960;&#959;&#963;&#965;&#957;&#948;&#941;&#963;&#949;&#964;&#949; &#964;&#959; &#954;&#955;&#949;&#953;&#948;&#943; USB.</p>
</li>
</ol>
diff --git a/el/acceptLicense.html b/el/acceptLicense.html
index 70b205f..f1236b3 100644
--- a/el/acceptLicense.html
+++ b/el/acceptLicense.html
@@ -45,6 +45,12 @@
+
+
+
+
+
+
<div class="section" title="&#902;&#948;&#949;&#953;&#945; &#967;&#961;&#942;&#963;&#951;&#962;">
<div class="titlepage">
<div>
@@ -57,24 +63,35 @@
- <p>&#928;&#961;&#953;&#957; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; <span class="application">Mageia</span>, &#960;&#945;&#961;&#945;&#954;&#945;&#955;&#974;
- &#948;&#953;&#945;&#946;&#940;&#963;&#964;&#949; &#964;&#959;&#965;&#962; &#972;&#961;&#959;&#965;&#962; &#954;&#945;&#953; &#964;&#953;&#962; &#963;&#965;&#957;&#952;&#942;&#954;&#949;&#962; &#964;&#951;&#962; &#940;&#948;&#949;&#953;&#945;&#962; &#967;&#961;&#942;&#963;&#951;&#962; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#940;.
- </p>
-
-
- <p>&#927;&#953; &#972;&#961;&#959;&#953; &#954;&#945;&#953; &#959;&#953; &#963;&#965;&#957;&#952;&#942;&#954;&#949;&#962; &#953;&#963;&#967;&#973;&#959;&#965;&#957; &#947;&#953;&#945; &#959;&#955;&#972;&#954;&#955;&#951;&#961;&#951; &#964;&#951; &#948;&#953;&#945;&#957;&#959;&#956;&#942;
- <span class="application">Mageia</span> &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#964;&#959;&#965;&#962; &#945;&#960;&#959;&#948;&#949;&#967;&#964;&#949;&#943;&#964;&#949; &#960;&#961;&#953;&#957; &#957;&#945;
- &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;.
- </p>
-
-
- <p>&#915;&#953;&#945; &#957;&#945; &#964;&#959;&#965;&#962; &#945;&#960;&#959;&#948;&#949;&#967;&#964;&#949;&#943;&#964;&#949;, &#945;&#960;&#955;&#940; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guilabel">&#913;&#960;&#959;&#948;&#959;&#967;&#942;</span> &#954;&#945;&#953;
- &#941;&#960;&#949;&#953;&#964;&#945; &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#928;&#961;&#953;&#957; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia, &#960;&#945;&#961;&#945;&#954;&#945;&#955;&#974; &#948;&#953;&#945;&#946;&#940;&#963;&#964;&#949; &#964;&#959;&#965;&#962; &#972;&#961;&#959;&#965;&#962; &#954;&#945;&#953; &#964;&#953;&#962;
+ &#963;&#965;&#957;&#952;&#942;&#954;&#949;&#962; &#964;&#951;&#962; &#940;&#948;&#949;&#953;&#945;&#962; &#967;&#961;&#942;&#963;&#951;&#962; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#940;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#927;&#953; &#972;&#961;&#959;&#953; &#954;&#945;&#953; &#959;&#953; &#963;&#965;&#957;&#952;&#942;&#954;&#949;&#962; &#953;&#963;&#967;&#973;&#959;&#965;&#957; &#947;&#953;&#945; &#959;&#955;&#972;&#954;&#955;&#951;&#961;&#951; &#964;&#951; &#948;&#953;&#945;&#957;&#959;&#956;&#942; Mageia &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953;
+ &#957;&#945; &#964;&#959;&#965;&#962; &#945;&#960;&#959;&#948;&#949;&#967;&#964;&#949;&#943;&#964;&#949; &#960;&#961;&#953;&#957; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#915;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;, &#945;&#960;&#955;&#940; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="emphasis"><em>&#913;&#960;&#959;&#948;&#959;&#967;&#942;</em></span> &#954;&#945;&#953; &#941;&#960;&#949;&#953;&#964;&#945;
+ &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#917;&#960;&#972;&#956;&#949;&#957;&#959;</em></span></p>
+
+ </li>
+ </ul>
+ </div>
- <p>&#913;&#957; &#964;&#949;&#955;&#953;&#954;&#940; &#945;&#960;&#959;&#966;&#945;&#963;&#943;&#963;&#949;&#964;&#949; &#957;&#945; &#956;&#951;&#957; &#945;&#960;&#959;&#948;&#949;&#967;&#964;&#949;&#943;&#964;&#949; &#964;&#959;&#965;&#962; &#972;&#961;&#959;&#965;&#962;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
- <span class="guibutton">&#904;&#958;&#959;&#948;&#959;&#962;</span> &#947;&#953;&#945; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;.
+ <p>&#913;&#957; &#964;&#949;&#955;&#953;&#954;&#940; &#945;&#960;&#959;&#966;&#945;&#963;&#943;&#963;&#949;&#964;&#949; &#957;&#945; &#956;&#951;&#957; &#945;&#960;&#959;&#948;&#949;&#967;&#964;&#949;&#943;&#964;&#949; &#964;&#959;&#965;&#962; &#972;&#961;&#959;&#965;&#962;, &#963;&#945;&#962; &#949;&#965;&#967;&#945;&#961;&#953;&#963;&#964;&#959;&#973;&#956;&#949; &#947;&#953;&#945; &#964;&#959;
+ &#949;&#957;&#948;&#953;&#945;&#966;&#941;&#961;&#959;&#957; &#963;&#945;&#962; &#947;&#953;&#945; &#964;&#951;&#957; Mageia &#954;&#945;&#953; &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949; &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
+ <span class="emphasis"><em>&#904;&#958;&#959;&#948;&#959;&#962;</em></span> &#947;&#953;&#945; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;.
</p>
@@ -98,9 +115,8 @@
- <p>&#922;&#940;&#957;&#959;&#957;&#964;&#945;&#962; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="guibutton">&#931;&#951;&#956;&#949;&#953;&#974;&#963;&#949;&#953;&#962; &#941;&#954;&#948;&#959;&#963;&#951;&#962;</span>, &#952;&#945;
- &#946;&#961;&#949;&#943;&#964;&#949; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#941;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#951;&#957; &#954;&#965;&#954;&#955;&#959;&#966;&#959;&#961;&#943;&#945; &#964;&#951;&#962;
- <span class="application">Mageia</span>.
+ <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#941;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962;
+ Mageia &#954;&#940;&#957;&#959;&#957;&#964;&#945;&#962; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="emphasis"><em>&#931;&#951;&#956;&#949;&#953;&#974;&#963;&#949;&#953;&#962; &#941;&#954;&#948;&#959;&#963;&#951;&#962;</em></span>.
</p>
</div>
diff --git a/el/addUser.html b/el/addUser.html
index a06528e..58bf6b7 100644
--- a/el/addUser.html
+++ b/el/addUser.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;</title>
+ <title>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="el" class="section" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;">
+ <div lang="el" class="section" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="addUser"></a>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;
+ <h2 class="title"><a name="addUser"></a>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:
</h2>
</div>
</div>
@@ -26,6 +26,10 @@
+
+
+
+
<div class="section" title="&#927;&#961;&#943;&#963;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; (root):">
<div class="titlepage">
<div>
@@ -37,15 +41,14 @@
</div>
- <p>&#917;&#943;&#957;&#945;&#953; &#959;&#961;&#952;&#972; &#947;&#953;&#945; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#963;&#949;&#953;&#962; <span class="application">Mageia</span> &#957;&#945;
- &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#941;&#957;&#945;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#965;&#960;&#949;&#961;&#967;&#961;&#942;&#963;&#964;&#951; &#942; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; (&#963;&#964;&#959; Linux &#963;&#965;&#957;&#942;&#952;&#969;&#962; &#955;&#941;&#947;&#949;&#964;&#945;&#953;
- <span class="emphasis"><em>&#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; root</em></span>. &#922;&#945;&#952;&#974;&#962; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#949;&#943;&#964;&#949; &#941;&#957;&#945;&#957;
- &#954;&#969;&#948;&#953;&#954;&#972; &#963;&#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962; &#964;&#959; &#967;&#961;&#974;&#956;&#945; &#964;&#951;&#962; &#945;&#963;&#960;&#943;&#948;&#945;&#962; &#952;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#953; &#945;&#960;&#972; &#954;&#972;&#954;&#954;&#953;&#957;&#959;
- &#960;&#961;&#959;&#962; &#964;&#959; &#960;&#961;&#940;&#963;&#953;&#957;&#959; &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#959; &#960;&#972;&#963;&#959; &#953;&#963;&#967;&#965;&#961;&#972;&#962; &#949;&#943;&#957;&#945;&#953; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#963;&#945;&#962;. &#919; &#960;&#961;&#940;&#963;&#953;&#957;&#951;
- &#945;&#963;&#960;&#943;&#948;&#945; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#972;&#964;&#953; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#963;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#953;&#963;&#967;&#965;&#961;&#972;&#962;. &#935;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#957;&#945; &#949;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949;
- &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#945;&#954;&#972;&#956;&#945; &#956;&#953;&#945; &#966;&#959;&#961;&#940; &#963;&#964;&#959; &#945;&#956;&#941;&#963;&#969;&#962; &#949;&#960;&#972;&#956;&#949;&#957;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962;, &#974;&#963;&#964;&#949; &#957;&#945;
- &#949;&#955;&#949;&#947;&#967;&#952;&#949;&#943; &#945;&#957; &#964;&#965;&#967;&#972;&#957; &#954;&#940;&#957;&#945;&#964;&#949; &#955;&#940;&#952;&#959;&#962; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#951;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#974;&#964;&#959;&#965; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#963;&#945;&#962;
- &#963;&#965;&#947;&#954;&#961;&#943;&#957;&#959;&#957;&#964;&#940;&#962; &#964;&#959;&#965;&#962;.
+ <p>&#931;&#965;&#957;&#953;&#963;&#964;&#940;&#964;&#945;&#953; &#947;&#953;&#945; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#963;&#949;&#953;&#962; Mageia &#959; &#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#972;&#962; &#949;&#957;&#972;&#962; &#954;&#969;&#948;&#953;&#954;&#959;&#973;
+ &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; <code class="literal">&#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;</code>&middot; &#963;&#964;&#959; Linux &#963;&#965;&#957;&#951;&#952;&#943;&#950;&#949;&#964;&#945;&#953; &#957;&#945; &#955;&#941;&#947;&#949;&#964;&#945;&#953;
+ <span class="emphasis"><em>&#954;&#969;&#948;&#953;&#954;&#972;&#962; root</em></span>. &#922;&#945;&#952;&#974;&#962; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#949;&#943;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;
+ &#963;&#964;&#959; &#960;&#949;&#948;&#943;&#959; &#952;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#959; &#949;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959; &#956;&#949; &#964;&#951;&#957; &#945;&#963;&#960;&#943;&#948;&#945; &#957;&#945; &#945;&#955;&#955;&#940;&#950;&#949;&#953; &#945;&#960;&#972; &#949;&#961;&#965;&#952;&#961;&#972; &#963;&#949;
+ &#954;&#943;&#964;&#961;&#953;&#957;&#959; &#954;&#945;&#953; &#963;&#949; &#960;&#961;&#940;&#963;&#953;&#957;&#959; &#945;&#957;&#945;&#955;&#972;&#947;&#969;&#962; &#956;&#949; &#964;&#951;&#957; &#953;&#963;&#967;&#973; &#964;&#959;&#965; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;. &#924;&#953;&#945;
+ &#960;&#961;&#940;&#963;&#953;&#957;&#951; &#945;&#963;&#960;&#943;&#948;&#945; &#948;&#949;&#943;&#967;&#957;&#949;&#953; &#964;&#951;&#957; &#967;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#953;&#963;&#967;&#965;&#961;&#959;&#973; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;. &#915;&#953;&#945; &#964;&#951;&#957;
+ &#945;&#960;&#959;&#966;&#965;&#947;&#942; &#955;&#945;&#952;&#974;&#957; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#951;&#963;&#951;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;
+ &#963;&#964;&#959; &#949;&#960;&#972;&#956;&#949;&#957;&#959; &#960;&#949;&#948;&#943;&#959;.
</p>
<div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -80,51 +83,51 @@
</div>
- <p>&#928;&#961;&#959;&#963;&#952;&#941;&#963;&#964;&#949; &#941;&#957;&#945;&#957; &#967;&#961;&#942;&#963;&#964;&#951; &#949;&#948;&#974;. &#904;&#957;&#945;&#962; &#967;&#961;&#942;&#963;&#964;&#951;&#962; &#941;&#967;&#949;&#953; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#945; &#948;&#953;&#954;&#945;&#953;&#974;&#956;&#945;&#964;&#945; &#945;&#960;&#972; &#964;&#959;&#957;
- &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; (root), &#945;&#955;&#955;&#940; &#945;&#961;&#954;&#949;&#964;&#940; &#945;&#960;&#972; &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#974;&#963;&#964;&#949; &#957;&#945; &#960;&#955;&#959;&#951;&#947;&#951;&#952;&#949;&#943; &#963;&#964;&#959;
- &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959;, &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#949;&#966;&#945;&#961;&#956;&#959;&#947;&#941;&#962; &#947;&#961;&#945;&#966;&#949;&#943;&#959;&#965; &#942; &#957;&#945; &#960;&#945;&#943;&#958;&#949;&#953; &#960;&#945;&#953;&#967;&#957;&#943;&#948;&#953;&#945; &#954;&#945;&#953;
- &#959;&#964;&#953;&#948;&#942;&#960;&#959;&#964;&#949; &#940;&#955;&#955;&#959; &#954;&#940;&#957;&#949;&#953; &#941;&#957;&#945;&#962; &#956;&#941;&#963;&#959;&#962; &#967;&#961;&#942;&#963;&#964;&#951;&#962; &#956;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#964;&#959;&#965;.
+ <p>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#941;&#957;&#945;&#957; &#967;&#961;&#942;&#963;&#964;&#951;. &#904;&#957;&#945;&#962; &#967;&#961;&#942;&#963;&#964;&#951;&#962; &#941;&#967;&#949;&#953; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#945;
+ &#948;&#953;&#954;&#945;&#953;&#974;&#956;&#945;&#964;&#945; &#945;&#960;&#972; &#964;&#959;&#957; <code class="literal">&#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;</code> (root), &#945;&#955;&#955;&#940; &#945;&#961;&#954;&#949;&#964;&#940; &#945;&#960;&#972;
+ &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#974;&#963;&#964;&#949; &#957;&#945; &#960;&#955;&#959;&#951;&#947;&#949;&#943;&#964;&#945;&#953; &#963;&#964;&#959; &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959;, &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#949;&#966;&#945;&#961;&#956;&#959;&#947;&#941;&#962;
+ &#947;&#961;&#945;&#966;&#949;&#943;&#959;&#965; &#942; &#957;&#945; &#960;&#945;&#943;&#950;&#949;&#953; &#960;&#945;&#953;&#967;&#957;&#943;&#948;&#953;&#945; &#954;&#945;&#953; &#959;&#964;&#953;&#948;&#942;&#960;&#959;&#964;&#949; &#940;&#955;&#955;&#959; &#954;&#940;&#957;&#949;&#953; &#941;&#957;&#945;&#962; &#956;&#941;&#963;&#959;&#962; &#967;&#961;&#942;&#963;&#964;&#951;&#962;
+ &#956;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#964;&#959;&#965;.
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guibutton">&#917;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959;</span>: &#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#952;&#945;
- &#945;&#955;&#955;&#940;&#958;&#949;&#953; &#964;&#959; &#949;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;.
- </p>
+ <p><span class="bold"><strong>&#917;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959;</strong></span></p>
+
+ <p>&#922;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#959; &#949;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#928;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#972; &#972;&#957;&#959;&#956;&#945;</span>: &#917;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#972; &#972;&#957;&#959;&#956;&#945; &#964;&#959;&#965;
- &#967;&#961;&#942;&#963;&#964;&#951; &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965;.
- </p>
+ <p><span class="bold"><strong>&#928;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#972; &#972;&#957;&#959;&#956;&#945;</strong></span></p>
+
+ <p>&#917;&#953;&#963;&#945;&#947;&#940;&#947;&#949;&#964;&#949; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#972; &#972;&#957;&#959;&#956;&#945; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951; &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965;</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#908;&#957;&#959;&#956;&#945; &#967;&#961;&#942;&#963;&#964;&#951;</span>: &#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#949;&#964;&#949; &#941;&#957;&#945; &#972;&#957;&#959;&#956;&#945;
- &#963;&#973;&#957;&#948;&#949;&#963;&#951;&#962; &#967;&#961;&#942;&#963;&#964;&#951; &#942; &#964;&#959; drakx &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#956;&#953;&#945; &#956;&#959;&#961;&#966;&#942; &#964;&#959;&#965; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#959;&#973;
- &#959;&#957;&#972;&#956;&#945;&#964;&#959;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;. <span class="emphasis"><em>&#932;&#959; &#972;&#957;&#959;&#956;&#945; &#963;&#973;&#957;&#948;&#949;&#963;&#951;&#962; &#954;&#940;&#957;&#949;&#953; &#948;&#953;&#940;&#954;&#961;&#953;&#963;&#951; &#956;&#949;&#964;&#945;&#958;&#973; &#960;&#949;&#950;&#974;&#957;
- &#954;&#945;&#953; &#954;&#949;&#966;&#945;&#955;&#945;&#943;&#969;&#957;.</em></span></p>
+ <p><span class="bold"><strong>&#908;&#957;&#959;&#956;&#945; &#963;&#973;&#957;&#948;&#949;&#963;&#951;&#962;</strong></span></p>
+
+ <p>&#917;&#953;&#963;&#945;&#947;&#940;&#947;&#949;&#964;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#963;&#973;&#957;&#948;&#949;&#963;&#951;&#962; &#967;&#961;&#942;&#963;&#964;&#951; &#942; &#945;&#966;&#942;&#963;&#964;&#949; &#964;&#959; DrakX &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#956;&#953;&#945;
+ &#956;&#959;&#961;&#966;&#942; &#964;&#959;&#965; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#959;&#973; &#959;&#957;&#972;&#956;&#945;&#964;&#959;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;. <span class="bold"><strong>&#932;&#959; &#972;&#957;&#959;&#956;&#945;
+ &#963;&#973;&#957;&#948;&#949;&#963;&#951;&#962; &#954;&#940;&#957;&#949;&#953; &#948;&#953;&#940;&#954;&#961;&#953;&#963;&#951; &#956;&#949;&#964;&#945;&#958;&#973; &#960;&#949;&#950;&#974;&#957; &#954;&#945;&#953; &#954;&#949;&#966;&#945;&#955;&#945;&#943;&#969;&#957;.</strong></span></p>
+
</li>
<li class="listitem">
- <p><span class="guilabel">&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;</span>: &#931;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965; &#952;&#945;
- &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;. &#922;&#945;&#953; &#949;&#948;&#974;, &#965;&#960;&#940;&#961;&#967;&#949;&#953;
- &#956;&#953;&#945; &#945;&#963;&#960;&#943;&#948;&#945; &#963;&#964;&#951;&#957; &#940;&#954;&#961;&#951; &#964;&#959;&#965; &#960;&#955;&#945;&#953;&#963;&#943;&#959;&#965; &#960;&#959;&#965; &#948;&#949;&#943;&#967;&#957;&#949;&#953; &#954;&#945;&#964;&#940; &#960;&#972;&#963;&#959; &#949;&#943;&#957;&#945;&#953; &#953;&#963;&#967;&#965;&#961;&#972;&#962; &#959;
- &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;. (&#916;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; <a class="xref" href="addUser.html#givePassword" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;">&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;</a>)
+ <p><span class="bold"><strong>&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;</strong></span></p>
+
+ <p>&#928;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;. &#922;&#945;&#953; &#949;&#948;&#974;, &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#956;&#953;&#945; &#945;&#963;&#960;&#943;&#948;&#945;
+ &#963;&#964;&#951;&#957; &#940;&#954;&#961;&#951; &#964;&#959;&#965; &#960;&#955;&#945;&#953;&#963;&#943;&#959;&#965; &#960;&#959;&#965; &#948;&#949;&#943;&#967;&#957;&#949;&#953; &#954;&#945;&#964;&#940; &#960;&#972;&#963;&#959; &#949;&#943;&#957;&#945;&#953; &#953;&#963;&#967;&#965;&#961;&#972;&#962; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962;
+ &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;. (&#916;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; <a class="xref" href="addUser.html#givePassword" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;">&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;</a>)
</p>
-
- </li>
- <li class="listitem">
- <p><span class="guilabel">&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; (&#958;&#945;&#957;&#940;)</span>: &#917;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949; &#949;&#948;&#974; &#964;&#951;&#957;
- &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#951;&#963;&#951; &#964;&#959;&#965; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#964;&#959; drakx &#952;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#953; &#972;&#964;&#953;
- &#941;&#967;&#949;&#964;&#949; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#949;&#953; &#964;&#959;&#957; &#943;&#948;&#953;&#959; &#954;&#969;&#948;&#953;&#954;&#972; &#963;&#949; &#972;&#955;&#945; &#964;&#945; &#960;&#949;&#948;&#943;&#945; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962; &#954;&#969;&#948;&#953;&#954;&#959;&#973;
- &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;.
+ <p><span class="bold"><strong>&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; (&#958;&#945;&#957;&#940;)</strong></span>: &#917;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949; &#964;&#959;&#957;
+ &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951;&middot; &#964;&#959; DrakX &#952;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#953; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#949;&#953;
+ &#964;&#959;&#957; &#943;&#948;&#953;&#959; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;.
</p>
</li>
@@ -140,11 +143,11 @@
<tr>
<td align="left" valign="top">
- <p>&#922;&#940;&#952;&#949; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia, &#952;&#945; &#941;&#967;&#949;&#953; &#941;&#957;&#945;&#957;
- &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#959; &#956;&#949; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945; &#949;&#947;&#947;&#961;&#945;&#966;&#942;&#962; &#954;&#945;&#953; &#945;&#957;&#940;&#947;&#957;&#969;&#963;&#951;&#962; (umask=27).
+ <p>&#922;&#940;&#952;&#949; &#967;&#961;&#942;&#963;&#964;&#951;&#962; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia, &#952;&#945; &#941;&#967;&#949;&#953; &#941;&#957;&#945;&#957;
+ &#960;&#961;&#959;&#963;&#969;&#960;&#953;&#954;&#972; &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#959; &#956;&#949; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945; &#949;&#947;&#947;&#961;&#945;&#966;&#942;&#962; &#954;&#945;&#953; &#945;&#957;&#940;&#947;&#957;&#969;&#963;&#951;&#962; (umask=0027)
</p>
- <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#972;&#955;&#959;&#965;&#962; &#964;&#959;&#965;&#962; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#959;&#965;&#962; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#949;&#962; &#945;&#960;&#972; &#964;&#959; &#946;&#942;&#956;&#945;
+ <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#972;&#955;&#959;&#965;&#962; &#964;&#959;&#965;&#962; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#959;&#965;&#962; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#949;&#962; &#945;&#960;&#972; &#964;&#959; &#946;&#942;&#956;&#945;
<span class="emphasis"><em>&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; - &#931;&#973;&#957;&#959;&#968;&#951;</em></span> &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949;
<span class="emphasis"><em>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;</em></span>.
</p>
@@ -160,79 +163,43 @@
</div>
- <div class="section" title="&#928;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#951; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951;">
+ <div class="section" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957; (&#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#951;)">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="addUserAdvanced"></a>&#928;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#951; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951;
+ <h3 class="title"><a name="addUserAdvanced"></a>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957; (&#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#951;)
</h3>
</div>
</div>
</div>
- <p>&#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="guibutton">&#947;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</span> &#952;&#945;
- &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#949;&#943; &#945;&#965;&#964;&#942; &#951; &#959;&#952;&#972;&#957;&#951; &#960;&#959;&#965; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962;
- &#947;&#953;&#945; &#964;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#954;&#940;&#957;&#949;&#964;&#949; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949;.
+ <p>&#932;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="emphasis"><em>&#947;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</em></span> &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
+ &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#947;&#953;&#945; &#964;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949;.
</p>
- <p>&#917;&#960;&#953;&#960;&#961;&#959;&#963;&#952;&#941;&#964;&#969;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#942; &#957;&#945; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#941;&#957;&#945;
- &#955;&#959;&#947;&#945;&#961;&#953;&#945;&#963;&#956;&#972; &#949;&#960;&#953;&#963;&#954;&#941;&#960;&#964;&#951;.
- </p>
-
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#927;&#964;&#953;&#948;&#942;&#960;&#959;&#964;&#949; &#945;&#960;&#959;&#952;&#951;&#954;&#949;&#973;&#949;&#953; &#941;&#957;&#945;&#962; &#949;&#960;&#953;&#963;&#954;&#941;&#960;&#964;&#951;&#962; &#956;&#949; &#964;&#959;&#957; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959; &#955;&#959;&#947;&#945;&#961;&#953;&#945;&#963;&#956;&#972; guest
- <span class="emphasis"><em>rbash</em></span> &#963;&#964;&#959;&#957; &#960;&#961;&#959;&#963;&#969;&#960;&#953;&#954;&#972; &#964;&#959;&#965; &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#972; /home &#952;&#945;
- &#948;&#953;&#945;&#947;&#961;&#940;&#966;&#949;&#964;&#945;&#953;. &#927; guest &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#945;&#960;&#959;&#952;&#951;&#954;&#949;&#973;&#949;&#953; &#964;&#945; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#940; &#964;&#959;&#965; &#945;&#961;&#967;&#949;&#943;&#945; &#963;&#949; &#941;&#957;&#945;
- stick USB.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#955;&#959;&#947;&#945;&#961;&#953;&#945;&#963;&#956;&#959;&#973; guest</span>: &#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#942; &#957;&#945; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#941;&#957;&#945; &#955;&#959;&#947;&#945;&#961;&#953;&#945;&#963;&#956;&#972; &#949;&#960;&#953;&#963;&#954;&#941;&#960;&#964;&#951;. &#927; &#955;&#959;&#947;&#945;&#961;&#953;&#945;&#963;&#956;&#972;&#962;
- guest &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#963;&#949; &#941;&#957;&#945;&#957; &#949;&#960;&#953;&#963;&#954;&#941;&#960;&#964;&#951; &#957;&#945; &#963;&#965;&#957;&#948;&#949;&#952;&#949;&#943; &#954;&#945;&#953; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#964;&#959;&#957;
- &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;, &#945;&#955;&#955;&#940; &#941;&#967;&#949;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#951; &#960;&#949;&#961;&#953;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#963;&#949; &#963;&#967;&#941;&#963;&#951; &#956;&#949; &#964;&#959;&#965;&#962;
- &#964;&#965;&#960;&#953;&#954;&#959;&#973;&#962; &#967;&#961;&#942;&#963;&#964;&#949;&#962;.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">&#922;&#941;&#955;&#965;&#966;&#959;&#962;</span>: &#913;&#965;&#964;&#942; &#951; &#954;&#965;&#955;&#953;&#972;&#956;&#949;&#957;&#951; &#955;&#943;&#963;&#964;&#945; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
- &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#959; &#954;&#941;&#955;&#965;&#966;&#959;&#962; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949; &#963;&#964;&#951;&#957;
- &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951;. &#927;&#953; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#949;&#943;&#957;&#945;&#953; Bash, Dash &#954;&#945;&#953; Sh.
- </p>
+ <p><span class="emphasis"><em>&#922;&#941;&#955;&#965;&#966;&#959;&#962;</em></span>: &#913;&#965;&#964;&#972; &#964;&#959; &#945;&#957;&#945;&#960;&#964;&#965;&#963;&#963;&#972;&#956;&#949;&#957;&#959; &#954;&#945;&#964;&#940;&#963;&#964;&#953;&#967;&#959; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953;
+ &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#959; &#954;&#941;&#955;&#965;&#966;&#959;&#962; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949;
+ &#963;&#964;&#951;&#957; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951;. &#927;&#953; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#949;&#943;&#957;&#945;&#953; <code class="literal">Bash</code>,
+ <code class="literal">Dash</code> &#954;&#945;&#953; <code class="literal">Sh</code></p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#913;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#967;&#961;&#942;&#963;&#964;&#951;</span>: &#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959; ID &#964;&#959;&#965;
- &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#964;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951;. &#928;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#941;&#957;&#945;&#957;
- &#945;&#961;&#953;&#952;&#956;&#972;. &#924;&#951;&#957; &#949;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#954;&#940;&#964;&#953; &#949;&#948;&#974; &#945;&#957; &#948;&#949;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#947;&#953;&#945; &#964;&#959; &#964;&#953; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953;.
+ <p><span class="emphasis"><em>&#913;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#967;&#961;&#942;&#963;&#964;&#951;</em></span>: &#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959;
+ &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#945;&#964;&#949; &#963;&#964;&#951;&#957; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951;. &#913;&#957; &#948;&#949;&#957;
+ &#958;&#941;&#961;&#949;&#964;&#949; &#964;&#953; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#966;&#942;&#963;&#964;&#949; &#964;&#959; &#954;&#949;&#957;&#972;.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#913;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#959;&#956;&#940;&#948;&#945;&#962;</span>: &#931;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959; ID
- &#964;&#951;&#962; &#959;&#956;&#940;&#948;&#945;&#962;. &#917;&#960;&#943;&#963;&#951;&#962; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#941;&#957;&#945;&#957; &#945;&#961;&#953;&#952;&#956;&#972;, &#963;&#965;&#957;&#942;&#952;&#969;&#962; &#959; &#943;&#948;&#953;&#959;&#962; &#956;&#949; &#945;&#965;&#964;&#972;&#957; &#964;&#959;&#965;
- &#967;&#961;&#942;&#963;&#964;&#951;.
+ <p><span class="emphasis"><em>&#913;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#959;&#956;&#940;&#948;&#959;&#962;</em></span>: &#931;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959;
+ &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#953;&#954;&#972; &#964;&#951;&#962; &#959;&#956;&#940;&#948;&#959;&#962;. &#913;&#957; &#948;&#949;&#957; &#958;&#941;&#961;&#949;&#964;&#949; &#964;&#953; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#966;&#942;&#963;&#964;&#949; &#964;&#959; &#954;&#949;&#957;&#972;.
</p>
</li>
diff --git a/el/add_supplemental_media.html b/el/add_supplemental_media.html
index 7c38886..010926e 100644
--- a/el/add_supplemental_media.html
+++ b/el/add_supplemental_media.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#949;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;)</title>
+ <title>&#917;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#959; &#956;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="prev" href="formatPartitions.html" title="&#924;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951;">
- <link rel="next" href="media_selection.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (Nonfree)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="media_selection.html" title="&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#956;&#941;&#963;&#945;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="el" class="section" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#949;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;)">
+ <div lang="el" class="section" title="&#917;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#959; &#956;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="add_supplemental_media"></a>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#949;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;)
+ <h2 class="title"><a name="add_supplemental_media"></a>&#917;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#959; &#956;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
</h2>
</div>
</div>
@@ -25,16 +25,22 @@
+
+
+
+
+
+
<p>&#931;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#941;&#967;&#949;&#964;&#949; &#956;&#953;&#945; &#955;&#943;&#963;&#964;&#945; &#964;&#969;&#957; &#942;&#948;&#951; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957;
&#945;&#960;&#959;&#952;&#949;&#964;&#951;&#961;&#943;&#969;&#957;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#954;&#945;&#953; &#940;&#955;&#955;&#949;&#962; &#960;&#951;&#947;&#941;&#962; &#960;&#945;&#954;&#941;&#964;&#969;&#957;, &#972;&#960;&#969;&#962; &#941;&#957;&#945;&#957;
&#959;&#960;&#964;&#953;&#954;&#972; &#959;&#948;&#951;&#947;&#972; &#942; &#956;&#953;&#945; &#945;&#960;&#959;&#956;&#945;&#954;&#961;&#965;&#963;&#956;&#941;&#957;&#951; &#960;&#951;&#947;&#942;. &#919; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#969;&#957; &#960;&#951;&#947;&#974;&#957; &#954;&#945;&#952;&#959;&#961;&#943;&#950;&#949;&#953; &#960;&#959;&#953;&#945;
- &#960;&#945;&#954;&#941;&#964;&#945; &#952;&#945; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#947;&#953;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#964;&#945; &#949;&#960;&#972;&#956;&#949;&#957;&#945; &#946;&#942;&#956;&#945;&#964;&#945;.
+ &#960;&#945;&#954;&#941;&#964;&#945; &#952;&#945; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#963;&#949; &#956;&#949;&#964;&#945;&#947;&#949;&#957;&#941;&#963;&#964;&#949;&#961;&#945; &#946;&#942;&#956;&#945;&#964;&#945;.
</p>
@@ -45,23 +51,24 @@
<ol class="orderedlist" type="1">
<li class="listitem">
- <p>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#954;&#945;&#953; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965;, &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#942;&#948;&#951; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#956;&#941;&#957;&#959;. </p>
+ <p>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#954;&#945;&#953; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965;, &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#942;&#948;&#951; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#956;&#941;&#957;&#959;.</p>
</li>
<li class="listitem">
- <p>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#957;&#972;&#962; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#959;&#973; &#942; &#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#972;&#962; &#964;&#959;&#965; URL (&#951; &#960;&#961;&#974;&#964;&#951;
- &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;). &#917;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#941;&#957;&#945;&#957; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#972; , &#941;&#967;&#949;&#964;&#949; &#964;&#951; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;
- &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; &#945;&#960;&#959;&#952;&#949;&#964;&#951;&#961;&#943;&#969;&#957; &#960;&#959;&#965; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#951; Mageia, &#972;&#960;&#969;&#962; &#964;&#959; nonfree ,
- tainted &#954;&#945;&#953; updates. &#924;&#949; &#964;&#959; URL, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#965;&#960;&#959;&#948;&#949;&#943;&#958;&#949;&#964;&#949; &#941;&#957;&#945; &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#959;
- &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#959; &#942; &#964;&#951; &#948;&#953;&#954;&#942; &#963;&#945;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; NFS.
+ <p>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#957;&#972;&#962; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#959;&#973; &#942; &#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#972;&#962; &#964;&#959;&#965; URL (&#951; &#960;&#961;&#974;&#964;&#951; &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;)
+ &#917;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#941;&#957;&#945;&#957; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#972; , &#941;&#967;&#949;&#964;&#949; &#964;&#951; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957;
+ &#945;&#960;&#959;&#952;&#949;&#964;&#951;&#961;&#943;&#969;&#957; &#960;&#959;&#965; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#951; Mageia, &#972;&#960;&#969;&#962; &#964;&#959;
+ <span class="emphasis"><em>Nonfree</em></span>, <span class="emphasis"><em>Tainted</em></span> &#954;&#945;&#953;
+ <span class="emphasis"><em>Updates</em></span>. &#924;&#949; &#964;&#959; URL, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#965;&#960;&#959;&#948;&#949;&#943;&#958;&#949;&#964;&#949; &#941;&#957;&#945;
+ &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#959; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#959; &#942; &#964;&#951; &#948;&#953;&#954;&#942; &#963;&#945;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; NFS.
</p>
</li>
</ol>
</div>
-
+
<div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
@@ -70,21 +77,21 @@
</tr>
<tr>
<td align="left" valign="top">
-
+
<p>&#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#957;&#951;&#956;&#941;&#961;&#969;&#963;&#951; &#956;&#953;&#945;&#962; 64bit &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#951; &#959;&#960;&#959;&#943;&#945; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953;
&#956;&#949;&#961;&#953;&#954;&#940; 32bit &#960;&#945;&#954;&#941;&#964;&#945;, &#963;&#965;&#957;&#953;&#963;&#964;&#940;&#964;&#945;&#953; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951;&#962; &#949;&#957;&#972;&#962;
&#948;&#953;&#945;&#948;&#953;&#954;&#964;&#965;&#945;&#954;&#959;&#973; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#959;&#973; &#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#941;&#957;&#945; &#945;&#960;&#972; &#964;&#945; &#960;&#945;&#961;&#972;&#957;&#964;&#945; &#948;&#953;&#954;&#964;&#965;&#945;&#954;&#940;
- &#960;&#961;&#969;&#964;&#972;&#954;&#959;&#955;&#955;&#945;. &#932;&#959; 64bit DVD iso &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#956;&#972;&#957;&#959; 64bit &#954;&#945;&#953; noarch &#960;&#945;&#954;&#941;&#964;&#945;, &#948;&#949;&#957; &#952;&#945;
- &#949;&#943;&#957;&#945;&#953; &#963;&#949; &#952;&#941;&#963;&#951; &#957;&#945; &#949;&#957;&#951;&#956;&#949;&#961;&#974;&#963;&#949;&#953; &#964;&#945; 32bit &#960;&#945;&#954;&#941;&#964;&#945;. &#937;&#963;&#964;&#972;&#963;&#959;, &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#949;&#957;&#972;&#962;
- &#948;&#953;&#945;&#948;&#953;&#954;&#964;&#965;&#945;&#954;&#959;&#973; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#959;&#973;, &#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#952;&#945; &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#949;&#953; &#949;&#954;&#949;&#943; &#964;&#945; 32bit &#960;&#945;&#954;&#941;&#964;&#945;.
+ &#960;&#961;&#969;&#964;&#972;&#954;&#959;&#955;&#955;&#945;. &#932;&#959; 64bit DVD ISO &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#956;&#972;&#957;&#959; 64bit &#954;&#945;&#953;
+ <span class="emphasis"><em>noarch</em></span> &#960;&#945;&#954;&#941;&#964;&#945;&middot; &#948;&#949;&#957; &#952;&#945; &#949;&#943;&#957;&#945;&#953; &#963;&#949; &#952;&#941;&#963;&#951; &#957;&#945; &#949;&#957;&#951;&#956;&#949;&#961;&#974;&#963;&#949;&#953; &#964;&#945;
+ 32bit &#960;&#945;&#954;&#941;&#964;&#945;. &#937;&#963;&#964;&#972;&#963;&#959;, &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#949;&#957;&#972;&#962; &#948;&#953;&#945;&#948;&#953;&#954;&#964;&#965;&#945;&#954;&#959;&#973; &#954;&#945;&#952;&#961;&#949;&#960;&#964;&#953;&#963;&#956;&#959;&#973;, &#959;
+ &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#952;&#945; &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#949;&#953; &#949;&#954;&#949;&#943; &#964;&#945; 32bit &#960;&#945;&#954;&#941;&#964;&#945;.
</p>
-
+
</td>
</tr>
</table>
</div>
-
</div>
</body>
</html>
diff --git a/el/ask_mntpoint_s.html b/el/ask_mntpoint_s.html
index e2f2feb..0ac1e6b 100644
--- a/el/ask_mntpoint_s.html
+++ b/el/ask_mntpoint_s.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
- <link rel="prev" href="doPartitionDisks.html" title="&#916;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;">
+ <link rel="prev" href="doPartitionDisks.html" title="&#928;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#959;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;">
<link rel="next" href="takeOverHdConfirm.html" title="&#917;&#960;&#953;&#946;&#949;&#946;&#945;&#943;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#954;&#955;&#951;&#961;&#959;&#973; &#948;&#943;&#963;&#954;&#959;&#965; &#960;&#961;&#959;&#962; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,79 +22,67 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
+
+
+
+
<p>&#917;&#948;&#974; &#946;&#955;&#941;&#960;&#949;&#964;&#949; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; Linux &#960;&#959;&#965; &#946;&#961;&#941;&#952;&#951;&#954;&#945;&#957; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;. &#913;&#957; &#948;&#949;&#957;
- &#963;&#965;&#956;&#966;&#969;&#957;&#949;&#943;&#964;&#949; &#956;&#949; &#964;&#953;&#962; &#960;&#961;&#959;&#964;&#940;&#963;&#949;&#953;&#962; &#964;&#959;&#965; <span class="application">DrakX</span>, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949;
- &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#945; &#963;&#951;&#956;&#949;&#943;&#945; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;.
+ &#963;&#965;&#956;&#966;&#969;&#957;&#949;&#943;&#964;&#949; &#956;&#949; &#964;&#953;&#962; &#960;&#961;&#959;&#964;&#940;&#963;&#949;&#953;&#962; &#964;&#959;&#965; DrakX, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#945; &#963;&#951;&#956;&#949;&#943;&#945;
+ &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;.
</p>
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#913;&#957; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#959;&#960;&#959;&#953;&#945;&#948;&#942;&#960;&#959;&#964;&#949; &#945;&#955;&#955;&#945;&#947;&#942;, &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#960;&#940;&#957;&#964;&#945; &#956;&#953;&#945;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;<code class="literal"> /</code> (root).
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#922;&#940;&#952;&#949; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#969;&#962; &#945;&#954;&#959;&#955;&#959;&#973;&#952;&#969;&#962;: &laquo;&#931;&#965;&#963;&#954;&#949;&#965;&#942;&raquo; (&laquo;&#935;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945;&raquo;, &laquo;&#931;&#951;&#956;&#949;&#943;&#959;
- &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;&raquo;, &laquo;&#932;&#973;&#960;&#959;&#962;&raquo;).
+ <p>&#931;&#964;&#945; &#945;&#961;&#953;&#963;&#964;&#949;&#961;&#940; &#964;&#959;&#965; &#945;&#957;&#945;&#960;&#964;&#965;&#963;&#963;&#972;&#956;&#949;&#957;&#959;&#965; &#956;&#949;&#957;&#959;&#973; &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#941;&#957;&#945; &#954;&#945;&#964;&#940;&#963;&#964;&#953;&#967;&#959; &#956;&#949; &#964;&#953;&#962;
+ &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;. &#915;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;: <code class="filename">sda</code> &#949;&#943;&#957;&#945;&#953; &#941;&#957;&#945;&#962;
+ &#963;&#954;&#955;&#951;&#961;&#972;&#962; &#948;&#943;&#963;&#954;&#959;&#962; &#954;&#945;&#953; <code class="filename">5</code> &#949;&#943;&#957;&#945;&#953; &#941;&#957;&#945;&#962; <span class="emphasis"><em>&#945;&#961;&#953;&#952;&#956;&#972;&#962;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;</em></span>, &#945;&#954;&#959;&#955;&#959;&#965;&#952;&#959;&#973;&#956;&#949;&#957;&#959;&#962; &#945;&#960;&#972; &#964;&#945; <span class="emphasis"><em>(&#967;&#969;&#961;&#951;&#964;&#953;&#954;&#972;&#964;&#951;&#964;&#945;, &#963;&#951;&#956;&#949;&#943;&#959;
+ &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;, &#964;&#973;&#960;&#959;&#962; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; &#945;&#961;&#967;&#949;&#943;&#969;&#957;)</em></span> &#964;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;.
</p>
</li>
<li class="listitem">
- <p>&#919; &laquo;&#931;&#965;&#963;&#954;&#949;&#965;&#942;&raquo;, &#963;&#965;&#957;&#964;&#949;&#955;&#949;&#943;&#964;&#945;&#953; &#945;&#960;&#972;: &laquo;&#963;&#954;&#955;&#951;&#961;&#972;&#962; &#948;&#943;&#963;&#954;&#959;&#962;&raquo;, [&laquo;&#945;&#961;&#953;&#952;&#956;&#972;&#962; &#963;&#954;&#955;&#951;&#961;&#959;&#973;
- &#948;&#943;&#963;&#954;&#959;&#965;&raquo;(&#947;&#961;&#940;&#956;&#956;&#945;)], &laquo;&#945;&#961;&#953;&#952;&#956;&#972;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;&raquo; (&#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;, &laquo;sda5&raquo;).
+ <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#960;&#959;&#955;&#955;&#945;&#960;&#955;&#941;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#948;&#953;&#940;&#966;&#959;&#961;&#945;
+ <span class="emphasis"><em>&#963;&#951;&#956;&#949;&#943;&#945; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;</em></span> &#945;&#960;&#972; &#964;&#959; &#945;&#957;&#945;&#960;&#964;&#965;&#963;&#963;&#972;&#956;&#949;&#957;&#959; &#956;&#949;&#957;&#959;&#973;, &#972;&#960;&#969;&#962;
+ <code class="filename">/</code>, <code class="filename">/home</code> &#954;&#945;&#953;
+ <code class="filename">/var</code>. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#945; &#948;&#953;&#954;&#940; &#963;&#945;&#962; &#963;&#951;&#956;&#949;&#943;&#945;
+ &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;, &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; <code class="filename">/video</code> &#947;&#953;&#945; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ &#972;&#960;&#959;&#965; &#952;&#945; &#945;&#960;&#959;&#952;&#951;&#954;&#949;&#973;&#949;&#964;&#949; &#964;&#953;&#962; &#964;&#945;&#953;&#957;&#943;&#949;&#962; &#963;&#945;&#962;, &#942; <code class="filename">/Data</code> (&#942; &#954;&#940;&#960;&#959;&#953;&#959;
+ &#940;&#955;&#955;&#959; &#972;&#957;&#959;&#956;&#945;) &#947;&#953;&#945; &#964;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#963;&#945;&#962;.
</p>
</li>
<li class="listitem">
- <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#960;&#959;&#955;&#955;&#941;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#960;&#959;&#955;&#955;&#945;&#960;&#955;&#940; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940;
- &#963;&#951;&#956;&#949;&#943;&#945; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962; &#945;&#960;&#972; &#964;&#959; &#954;&#965;&#955;&#953;&#972;&#956;&#949;&#957;&#959; &#956;&#949;&#957;&#959;&#973;, &#972;&#960;&#969;&#962; <code class="literal">/</code>,
- <code class="literal">/home</code> &#954;&#945;&#953; <code class="literal">/var</code>. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#945;&#954;&#972;&#956;&#945; &#957;&#945;
- &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#948;&#953;&#954;&#972; &#963;&#945;&#962; &#963;&#951;&#956;&#949;&#943;&#959; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;, &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;
- <code class="literal">/video</code> &#947;&#953;&#945; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#947;&#953;&#945; &#964;&#951;&#957; &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; &#964;&#969;&#957; &#964;&#945;&#953;&#957;&#953;&#974;&#957;
- &#963;&#945;&#962;, &#942; <code class="literal">/cauldron-home</code> &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
- <code class="literal">/home</code> &#956;&#953;&#945;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; cauldron.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>&#915;&#953;&#945; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#948;&#949;&#957; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#945;&#966;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#960;&#949;&#948;&#943;&#959; &#964;&#959;&#965; &#963;&#951;&#956;&#949;&#943;&#959;&#965; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962; &#954;&#949;&#957;&#972;.
+ <p>&#915;&#953;&#945; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#948;&#949;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#966;&#942;&#963;&#949;&#964;&#949;
+ &#964;&#959; &#960;&#949;&#948;&#943;&#959; &#964;&#959;&#965; &#963;&#951;&#956;&#949;&#943;&#959;&#965; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962; &#954;&#949;&#957;&#972;.
</p>
</li>
@@ -111,10 +99,30 @@
<tr>
<td align="left" valign="top">
- <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guibutton">&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</span> &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#964;&#953; &#957;&#945;
- &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;, &#954;&#945;&#953; &#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guilabel">&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#959;&#965;
- &#948;&#943;&#963;&#954;&#959;&#965;</span>. &#931;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#960;&#959;&#965; &#945;&#954;&#959;&#955;&#959;&#965;&#952;&#949;&#943;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#949; &#956;&#953;&#945;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#947;&#953;&#945; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#954;&#945;&#953; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#972;&#962; &#964;&#951;&#962;.
+ <p>&#913;&#957; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#959;&#960;&#959;&#953;&#945;&#948;&#942;&#960;&#959;&#964;&#949; &#945;&#955;&#955;&#945;&#947;&#942; &#949;&#948;&#974;, &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#960;&#940;&#957;&#964;&#945;
+ &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="filename">/</code> (root).
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="tip" title="&#933;&#960;&#972;&#948;&#949;&#953;&#958;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#933;&#960;&#972;&#948;&#949;&#953;&#958;&#951;]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#913;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#964;&#953; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</em></span> &#947;&#953;&#945; &#957;&#945; &#959;&#960;&#953;&#963;&#952;&#959;&#948;&#961;&#959;&#956;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#953; &#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;
+ &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#959;&#965; &#948;&#943;&#963;&#954;&#959;&#965;</em></span>, &#972;&#960;&#959;&#965;
+ &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#947;&#953;&#945; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#954;&#945;&#953; &#964;&#959;
+ &#956;&#941;&#947;&#949;&#952;&#972;&#962; &#964;&#951;&#962;.
</p>
</td>
@@ -124,8 +132,8 @@
<p>&#913;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#972;&#964;&#953; &#964;&#945; &#963;&#951;&#956;&#949;&#943;&#945; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#940;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
- <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span>, &#954;&#945;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951;
- (&#956;&#949; &#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957;) &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#960;&#959;&#965; &#960;&#961;&#959;&#964;&#949;&#943;&#957;&#949;&#953; &#964;&#959; DrakX, &#942; &#940;&#955;&#955;&#949;&#962;
+ <span class="emphasis"><em>&#917;&#960;&#972;&#956;&#949;&#957;&#959;</em></span>, &#954;&#945;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951; (&#956;&#949;
+ &#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957;) &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#960;&#959;&#965; &#960;&#961;&#959;&#964;&#949;&#943;&#957;&#949;&#953; &#964;&#959; DrakX, &#942; &#940;&#955;&#955;&#949;&#962;
&#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;.
</p>
diff --git a/el/chooseDesktop.html b/el/chooseDesktop.html
index af4086d..1ff87f7 100644
--- a/el/chooseDesktop.html
+++ b/el/chooseDesktop.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
- <link rel="prev" href="media_selection.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (Nonfree)">
+ <link rel="prev" href="media_selection.html" title="&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#956;&#941;&#963;&#945;">
<link rel="next" href="choosePackageGroups.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#959;&#956;&#940;&#948;&#945;&#962; &#960;&#945;&#954;&#941;&#964;&#969;&#957;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -24,32 +24,54 @@
</div>
+
- <p>&#913;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#945;&#962; &#963;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951;, &#960;&#953;&#952;&#945;&#957;&#974;&#962; &#957;&#945; &#949;&#961;&#969;&#964;&#951;&#952;&#949;&#943;&#964;&#949; &#963;&#964;&#951;
- &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#947;&#953;&#945; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;.
- </p>
+
+
+
+
- <p>&#924;&#949;&#964;&#940; &#964;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962;, &#952;&#945; &#948;&#949;&#943;&#964;&#949; &#956;&#953;&#945; &#960;&#961;&#959;&#946;&#959;&#955;&#942; &#963;&#955;&#940;&#953;&#957;&#964; &#954;&#945;&#964;&#940; &#964;&#951; &#948;&#953;&#940;&#961;&#954;&#949;&#953;&#945; &#964;&#951;&#962;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;. &#919; &#960;&#961;&#959;&#946;&#959;&#955;&#942; &#963;&#955;&#940;&#953;&#957;&#964; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943;
- &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="guilabel">&#923;&#949;&#960;&#964;&#959;&#956;&#941;&#961;&#949;&#953;&#949;&#962;</span></p>
+ <p>&#924;&#949;&#961;&#953;&#954;&#941;&#962; &#945;&#960;&#972; &#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#963;&#964;&#940;&#948;&#953;&#959; &#952;&#945; &#945;&#957;&#959;&#943;&#958;&#959;&#965;&#957; &#940;&#955;&#955;&#949;&#962; &#959;&#952;&#972;&#957;&#949;&#962; &#956;&#949;
+ &#963;&#967;&#949;&#964;&#953;&#954;&#941;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;.
+ </p>
- <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#945;&#957; &#960;&#961;&#959;&#964;&#953;&#956;&#940;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;
- <span class="application">KDE</span> &#942; <span class="application">Gnome</span>. &#922;&#945;&#953; &#964;&#945;
- &#948;&#965;&#959; &#941;&#961;&#967;&#959;&#957;&#964;&#945;&#953; &#956;&#949; &#941;&#957;&#945; &#960;&#955;&#942;&#961;&#949;&#962; &#963;&#973;&#957;&#959;&#955;&#959; &#949;&#966;&#945;&#961;&#956;&#959;&#947;&#974;&#957; &#954;&#945;&#953; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#969;&#957;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949;
- <span class="guilabel">&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</span> &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#956;&#951;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#959;&#973;&#964;&#949;
- &#964;&#959; &#941;&#957;&#945; &#959;&#973;&#964;&#949; &#964;&#959; &#940;&#955;&#955;&#959; &#942; &#954;&#945;&#953; &#964;&#945; &#948;&#965;&#959;, &#942; &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#954;&#940;&#964;&#953; &#940;&#955;&#955;&#959; &#945;&#960;&#972; &#964;&#945;
- &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#945; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#945;. &#932;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; LXDE &#949;&#943;&#957;&#945;&#953; &#960;&#953;&#959; &#949;&#955;&#945;&#966;&#961;&#973; &#954;&#945;&#953; &#945;&#960;&#972; &#964;&#945;
- &#948;&#973;&#959; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#945;, &#956;&#949; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#945; &#954;&#945;&#955;&#955;&#969;&#960;&#953;&#963;&#964;&#953;&#954;&#940; &#963;&#964;&#959;&#953;&#967;&#949;&#943;&#945; &#954;&#945;&#953; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#945;
- &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#945;&#960;&#972; &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#959;&#947;&#942;.
+ <p>&#924;&#949;&#964;&#940; &#964;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962;, &#952;&#945; &#948;&#949;&#943;&#964;&#949; &#941;&#957;&#945; &#948;&#953;&#945;&#960;&#972;&#961;&#945;&#956;&#945; &#954;&#945;&#964;&#940; &#964;&#951; &#948;&#953;&#940;&#961;&#954;&#949;&#953;&#945; &#964;&#951;&#962;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#932;&#959; &#948;&#953;&#945;&#960;&#972;&#961;&#945;&#956;&#945; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; &#963;&#964;&#959;
+ &#954;&#959;&#965;&#956;&#960;&#943; <span class="emphasis"><em>&#923;&#949;&#960;&#964;&#959;&#956;&#941;&#961;&#949;&#953;&#949;&#962;</em></span>.
</p>
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#960;&#961;&#959;&#962; &#967;&#961;&#942;&#963;&#951; &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; KDE Plasma &#954;&#945;&#953; GNOME. &#922;&#945;&#953; &#964;&#945;
+ &#948;&#965;&#959; &#941;&#961;&#967;&#959;&#957;&#964;&#945;&#953; &#956;&#949; &#941;&#957;&#945; &#960;&#955;&#942;&#961;&#949;&#962; &#963;&#973;&#957;&#959;&#955;&#959; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#969;&#957; &#954;&#945;&#953; &#949;&#966;&#945;&#961;&#956;&#959;&#947;&#974;&#957;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</em></span> &#945;&#957; &#948;&#949;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#949;&#943;&#964;&#949; &#957;&#945;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#940; (&#942; &#954;&#945;&#953; &#964;&#945; &#948;&#965;&#959;), &#942; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#964;&#961;&#959;&#960;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#953;&#962;
+ &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#947;&#953;&#945; &#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#940; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#945;. &#932;&#959; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;
+ LXDE &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;, &#949;&#943;&#957;&#945;&#953; &#949;&#955;&#945;&#966;&#961;&#973;&#964;&#949;&#961;&#959; &#945;&#960;&#972; &#964;&#945; &#940;&#955;&#955;&#945; &#948;&#965;&#959;, &#956;&#949; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#945;
+ &#948;&#953;&#945;&#954;&#959;&#963;&#956;&#951;&#964;&#953;&#954;&#940; &#963;&#964;&#959;&#953;&#967;&#949;&#943;&#945; &#954;&#945;&#953; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#945; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
</div>
</body>
</html>
diff --git a/el/choosePackageGroups.html b/el/choosePackageGroups.html
index d6ba299..25e13d9 100644
--- a/el/choosePackageGroups.html
+++ b/el/choosePackageGroups.html
@@ -29,11 +29,13 @@
- <p>&#932;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#941;&#967;&#959;&#965;&#957; &#964;&#945;&#958;&#953;&#957;&#959;&#956;&#951;&#952;&#949;&#943; &#963;&#949; &#959;&#956;&#940;&#948;&#949;&#962;, &#947;&#953;&#945; &#957;&#945; &#963;&#945;&#962; &#948;&#953;&#949;&#965;&#954;&#959;&#955;&#973;&#957;&#959;&#965;&#957; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
- &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#960;&#959;&#965; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949;. &#932;&#959; &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#959; &#964;&#969;&#957; &#959;&#956;&#940;&#948;&#969;&#957; &#948;&#953;&#945;&#954;&#961;&#943;&#957;&#949;&#964;&#945;&#953; &#949;&#973;&#954;&#959;&#955;&#945; &#945;&#960;&#972;
- &#964;&#959;&#957; &#964;&#943;&#964;&#955;&#959; &#964;&#959;&#965;&#962;, &#969;&#963;&#964;&#972;&#963;&#959; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#959; &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#959;
- &#964;&#959;&#965; &#954;&#945;&#952;&#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#963;&#964;&#953;&#962; &#965;&#960;&#959;&#948;&#949;&#943;&#958;&#949;&#953;&#962; &#960;&#959;&#965; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#954;&#945;&#964;&#940; &#964;&#959; &#960;&#941;&#961;&#945;&#963;&#956;&#945; &#964;&#959;&#965;
- &#960;&#959;&#957;&#964;&#953;&#954;&#953;&#959;&#973; &#945;&#960;&#972; &#960;&#940;&#957;&#969; &#964;&#959;&#965;&#962;.
+
+
+ <p>&#932;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#941;&#967;&#959;&#965;&#957; &#964;&#945;&#958;&#953;&#957;&#959;&#956;&#951;&#952;&#949;&#943; &#963;&#949; &#954;&#959;&#953;&#957;&#941;&#962; &#959;&#956;&#940;&#948;&#949;&#962;, &#947;&#953;&#945; &#957;&#945; &#963;&#945;&#962; &#948;&#953;&#949;&#965;&#954;&#959;&#955;&#973;&#957;&#959;&#965;&#957; &#963;&#964;&#951;&#957;
+ &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#960;&#959;&#965; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949;. &#932;&#959; &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#959; &#964;&#969;&#957; &#959;&#956;&#940;&#948;&#969;&#957; &#948;&#953;&#945;&#954;&#961;&#943;&#957;&#949;&#964;&#945;&#953;
+ &#949;&#973;&#954;&#959;&#955;&#945; &#945;&#960;&#972; &#964;&#959;&#957; &#964;&#943;&#964;&#955;&#959; &#964;&#959;&#965;&#962;, &#969;&#963;&#964;&#972;&#963;&#959; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#959;
+ &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#959; &#964;&#959;&#965; &#954;&#945;&#952;&#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#963;&#964;&#953;&#962; &#965;&#960;&#959;&#948;&#949;&#943;&#958;&#949;&#953;&#962; &#960;&#959;&#965; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#954;&#945;&#964;&#940; &#964;&#959;
+ &#960;&#941;&#961;&#945;&#963;&#956;&#945; &#964;&#959;&#965; &#960;&#959;&#957;&#964;&#953;&#954;&#953;&#959;&#973; &#945;&#960;&#972; &#960;&#940;&#957;&#969; &#964;&#959;&#965;&#962;.
</p>
@@ -41,23 +43,24 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#931;&#964;&#945;&#952;&#956;&#972;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;.</p>
+ <p><span class="bold"><strong>&#931;&#964;&#945;&#952;&#956;&#972;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;</strong></span></p>
</li>
<li class="listitem">
- <p>&#917;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942;&#962;.</p>
+ <p><span class="bold"><strong>&#917;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942;&#962;</strong></span></p>
</li>
<li class="listitem">
- <p>&#915;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;.</p>
+ <p><span class="bold"><strong>&#915;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;</strong></span></p>
</li>
<li class="listitem">
- <p>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;: &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
- &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;.
+ <p><span class="bold"><strong>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;</strong></span>: &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#947;&#953;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;
+ &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;.
</p>
</li>
@@ -65,8 +68,8 @@
</div>
- <p>&#913;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="minimal-install.html" title="&#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;">&amp;#x201C;&#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&amp;#x201D;</a> &#947;&#953;&#945; &#959;&#948;&#951;&#947;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#959;
- &#960;&#974;&#962; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#956;&#953;&#945; &#949;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; (&#948;&#943;&#967;&#969;&#962; &#942; &#956;&#949; X &amp; IceWM).
+ <p>&#913;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="minimal-install.html" title="&#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;">Minimal Install</a> &#947;&#953;&#945; &#959;&#948;&#951;&#947;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#951;&#957;
+ &#949;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; (&#956;&#949; &#942; &#967;&#969;&#961;&#943;&#962; X &amp; IceWM).
</p>
</div>
diff --git a/el/choosePackagesTree.html b/el/choosePackagesTree.html
index bab69c8..240e732 100644
--- a/el/choosePackagesTree.html
+++ b/el/choosePackagesTree.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="prev" href="minimal-install.html" title="&#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;">
- <link rel="next" href="addUser.html" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="addUser.html" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,28 +22,31 @@
</div>
</div>
</div>
+
-
+
-
+
+
+
-
+
<p>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#959;&#960;&#959;&#953;&#945;&#948;&#942;&#960;&#959;&#964;&#949; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#960;&#945;&#954;&#941;&#964;&#945; &#947;&#953;&#945; &#957;&#945; &#960;&#961;&#959;&#963;&#945;&#961;&#956;&#972;&#963;&#949;&#964;&#949;
&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#942; &#963;&#945;&#962;.
</p>
-
- <p>&#913;&#966;&#959;&#973; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
- <span class="guibutton">&#949;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959; &#964;&#951;&#962; &#948;&#953;&#963;&#954;&#941;&#964;&#945;&#962;</span> &#963;&#964;&#959; &#954;&#940;&#964;&#969; &#956;&#941;&#961;&#959;&#962; &#964;&#951;&#962; &#963;&#949;&#955;&#943;&#948;&#945;&#962;
- &#974;&#963;&#964;&#949; &#957;&#945; &#945;&#960;&#959;&#952;&#951;&#954;&#949;&#973;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#963;&#945;&#962; (&#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949;
- &#964;&#951;&#957; &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; &#963;&#949; &#941;&#957;&#945; stick USB). &#924;&#949; &#945;&#965;&#964;&#972;&#957; &#964;&#959;&#957; &#964;&#961;&#972;&#960;&#959; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
+
+ <p>&#913;&#966;&#959;&#973; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#949;&#953;&#954;&#959;&#957;&#943;&#948;&#953;&#959;
+ &#964;&#951;&#962; <span class="emphasis"><em>&#948;&#953;&#963;&#954;&#941;&#964;&#945;&#962;</em></span> &#963;&#964;&#959; &#954;&#940;&#964;&#969; &#956;&#941;&#961;&#959;&#962; &#964;&#951;&#962; &#963;&#949;&#955;&#943;&#948;&#945;&#962; &#974;&#963;&#964;&#949; &#957;&#945;
+ &#945;&#960;&#959;&#952;&#951;&#954;&#949;&#973;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957; &#963;&#945;&#962; (&#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#964;&#951;&#957;
+ &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; &#963;&#949; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB). &#924;&#949; &#945;&#965;&#964;&#972;&#957; &#964;&#959;&#957; &#964;&#961;&#972;&#960;&#959; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
&#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#945;&#961;&#967;&#949;&#943;&#959; &#947;&#953;&#945; &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#964;&#945; &#943;&#948;&#953;&#945; &#960;&#945;&#954;&#941;&#964;&#945; &#963;&#949; &#954;&#940;&#960;&#959;&#953;&#959;
&#940;&#955;&#955;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945;, &#954;&#940;&#957;&#959;&#957;&#964;&#945;&#962; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#943;&#948;&#953;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953;
&#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#964;&#951;&#957; &#966;&#972;&#961;&#964;&#969;&#963;&#942; &#964;&#959;&#965;.
</p>
-
+
</div>
</body>
</html>
diff --git a/el/configureServices.html b/el/configureServices.html
index 66eefca..798682c 100644
--- a/el/configureServices.html
+++ b/el/configureServices.html
@@ -22,40 +22,47 @@
</div>
</div>
</div>
+
+
-
-
-
-
-
-
-
+
+
-
- <p><a name="configureServices-pa1"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#960;&#959;&#953;&#949;&#962; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; (&#948;&#949;&#957;) &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#954;&#954;&#953;&#957;&#951;&#952;&#959;&#973;&#957; &#954;&#945;&#964;&#940;
- &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962;.
- </p>
+
-
- <p><a name="configureServices-pa2"></a>&#933;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#964;&#941;&#963;&#963;&#949;&#961;&#953;&#962; &#959;&#956;&#940;&#948;&#949;&#962;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#964;&#961;&#943;&#947;&#969;&#957;&#959; &#956;&#960;&#961;&#959;&#963;&#964;&#940; &#945;&#960;&#972; &#956;&#953;&#945; &#959;&#956;&#940;&#948;&#945; &#947;&#953;&#945;
- &#964;&#951;&#957; &#945;&#957;&#940;&#960;&#964;&#965;&#958;&#942; &#964;&#959;&#965;&#962; &#954;&#945;&#953; &#947;&#953;&#945; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; &#963;&#949; &#945;&#965;&#964;&#942;&#957;.
- </p>
+
-
- <p><a name="configureServices-pa3"></a>&#927;&#953; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#949;&#960;&#953;&#955;&#941;&#947;&#949;&#953; &#964;&#959; DrakX &#949;&#943;&#957;&#945;&#953; &#963;&#965;&#957;&#942;&#952;&#969;&#962; &#963;&#969;&#963;&#964;&#941;&#962;.
+
+ <p><a name="configureServices-pa1"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#969;&#957; &#965;&#960;&#951;&#961;&#949;&#963;&#953;&#974;&#957; &#956;&#949; &#964;&#951;&#957; &#941;&#957;&#945;&#961;&#958;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
</p>
-
- <p><a name="configureServices-pa4"></a>&#913;&#957; &#964;&#959;&#957;&#943;&#963;&#949;&#964;&#949; &#956;&#949; &#964;&#959; &#960;&#959;&#957;&#964;&#943;&#954;&#953; &#956;&#953;&#945; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#945;, &#952;&#945; &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#949;&#943; &#956;&#953;&#945; &#965;&#960;&#972;&#948;&#949;&#953;&#958;&#951; &#956;&#949;
- &#963;&#967;&#949;&#964;&#953;&#954;&#941;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;.
- </p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureServices-pa2"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#964;&#961;&#943;&#947;&#969;&#957;&#959; &#964;&#951;&#957; &#945;&#957;&#940;&#960;&#964;&#965;&#958;&#951; &#964;&#951;&#962; &#959;&#956;&#940;&#948;&#959;&#962; &#954;&#945;&#953; &#972;&#955;&#969;&#957; &#964;&#969;&#957; &#963;&#967;&#949;&#964;&#953;&#954;&#974;&#957;
+ &#965;&#960;&#951;&#961;&#949;&#963;&#953;&#974;&#957;. &#927;&#953; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#964;&#959;&#965; DrakX &#954;&#945;&#955;&#973;&#960;&#964;&#959;&#965;&#957; &#963;&#949; &#947;&#949;&#957;&#953;&#954;&#941;&#962; &#947;&#961;&#945;&#956;&#956;&#941;&#962;
+ &#964;&#953;&#962; &#945;&#957;&#940;&#947;&#954;&#949;&#962; &#967;&#961;&#942;&#963;&#951;&#962;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="configureServices-pa4"></a>&#913;&#957; &#964;&#959;&#957;&#943;&#963;&#949;&#964;&#949; &#956;&#949; &#964;&#959; &#960;&#959;&#957;&#964;&#943;&#954;&#953; &#956;&#953;&#945; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#945;, &#952;&#945; &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#949;&#943; &#956;&#953;&#945; &#965;&#960;&#972;&#948;&#949;&#953;&#958;&#951; &#956;&#949;
+ &#963;&#967;&#949;&#964;&#953;&#954;&#941;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
-
+
<p><a name="configureServices-pa5"></a>&#913;&#955;&#955;&#940;&#958;&#964;&#949; &#954;&#940;&#964;&#953; &#956;&#972;&#957;&#959; &#945;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#960;&#959;&#955;&#973; &#954;&#945;&#955;&#940; &#964;&#953; &#954;&#940;&#957;&#949;&#964;&#949;.
</p>
-
+
</div>
</body>
</html>
diff --git a/el/configureTimezoneUTC.html b/el/configureTimezoneUTC.html
index c406b5e..b8d9bd8 100644
--- a/el/configureTimezoneUTC.html
+++ b/el/configureTimezoneUTC.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
- <link rel="prev" href="misc-params.html" title="&#931;&#973;&#957;&#959;&#968;&#951; &#964;&#969;&#957; &#948;&#953;&#940;&#966;&#959;&#961;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;">
+ <link rel="prev" href="misc-params.html" title="&#931;&#973;&#957;&#959;&#968;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;">
<link rel="next" href="selectCountry.html" title="&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945;/&#960;&#949;&#961;&#953;&#959;&#967;&#942; &#963;&#945;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -31,13 +31,25 @@
- <p><a name="configureTimezoneUTC-pa1"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#950;&#974;&#957;&#951; &#974;&#961;&#945;&#962; &#963;&#945;&#962; &#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#964;&#951; &#967;&#974;&#961;&#945; &#942; &#956;&#953;&#945; &#960;&#972;&#955;&#951; &#954;&#959;&#957;&#964;&#940; &#963;&#945;&#962; &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945;
- &#950;&#974;&#957;&#951; &#974;&#961;&#945;&#962;.
- </p>
- <p><a name="configureTimezoneUTC-pa2"></a>&#931;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#961;&#959;&#955;&#959;&#947;&#953;&#959;&#973; &#964;&#959;&#965; BIOS
- &#963;&#964;&#951;&#957; &#964;&#959;&#960;&#953;&#954;&#942; &#974;&#961;&#945; &#942; GMT, &#947;&#957;&#969;&#963;&#964;&#942; &#954;&#945;&#953; &#969;&#962; UTC.
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureTimezoneUTC-pa1"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#969;&#961;&#959;&#955;&#959;&#947;&#953;&#945;&#954;&#942; &#963;&#945;&#962; &#950;&#974;&#957;&#951; &#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#964;&#951;&#957; &#967;&#974;&#961;&#945; &#942; &#956;&#953;&#945; &#960;&#972;&#955;&#951; &#954;&#959;&#957;&#964;&#940; &#963;&#945;&#962;
+ &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945; &#950;&#974;&#957;&#951; &#974;&#961;&#945;&#962;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><a name="configureTimezoneUTC-pa2"></a>&#931;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#951;&#962; &#964;&#959;&#960;&#953;&#954;&#942;&#962; &#974;&#961;&#945;&#962; &#946;&#940;&#963;&#949;&#953;
+ &#964;&#959;&#965; &#961;&#959;&#955;&#959;&#947;&#953;&#959;&#973; &#964;&#951;&#962; &#956;&#951;&#964;&#961;&#953;&#954;&#942;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#942; GMT (&#915;&#954;&#961;&#943;&#957;&#959;&#965;&#970;&#964;&#962;), &#947;&#957;&#969;&#963;&#964;&#942; &#954;&#945;&#953; &#969;&#962; UTC.
</p>
diff --git a/el/configureX_card_list.html b/el/configureX_card_list.html
index f3c2d15..6d3e210 100644
--- a/el/configureX_card_list.html
+++ b/el/configureX_card_list.html
@@ -29,7 +29,13 @@
+
+
+
+
+
+
@@ -47,49 +53,57 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942;</p>
+ <p>&#922;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942;&#962;</p>
</li>
<li class="listitem">
- <p>&#941;&#960;&#949;&#953;&#964;&#945; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#959;&#965; &#956;&#959;&#957;&#964;&#941;&#955;&#959;&#965; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;</p>
+ <p>&#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#964;&#959;&#957; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;</p>
</li>
<li class="listitem">
- <p>&#954;&#945;&#953; &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;</p>
+ <p>&#954;&#945;&#953; &#964;&#959; &#956;&#959;&#957;&#964;&#941;&#955;&#959; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;</p>
</li>
</ul>
</div>
- <p>&#913;&#957; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#963;&#945;&#962; &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#974;&#957; (&#948;&#953;&#972;&#964;&#953; &#948;&#949;&#957;
- &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#945;&#954;&#972;&#956;&#945; &#963;&#964;&#951; &#946;&#940;&#963;&#951; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#942; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#956;&#953;&#945; &#960;&#945;&#955;&#953;&#940; &#954;&#940;&#961;&#964;&#945;) &#943;&#963;&#969;&#962; &#957;&#945;
- &#946;&#961;&#949;&#943;&#964;&#949; &#941;&#957;&#945;&#957; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959; &#959;&#948;&#951;&#947;&#972; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#951;&#947;&#959;&#961;&#943;&#945; Xorg
- </p>
-
-
- <p>&#919; &#955;&#943;&#963;&#964;&#945; &#964;&#959;&#965; Xorg &#960;&#949;&#961;&#953;&#955;&#945;&#956;&#946;&#940;&#957;&#949;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959;&#965;&#962; &#945;&#960;&#972; 40 &#947;&#949;&#957;&#953;&#954;&#959;&#973;&#962; &#954;&#945;&#953; &#945;&#957;&#959;&#953;&#967;&#964;&#959;&#973;
- &#954;&#974;&#948;&#953;&#954;&#945; &#959;&#948;&#951;&#947;&#959;&#973;&#962; &#954;&#945;&#961;&#964;&#974;&#957; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;. &#913;&#957; &#945;&#954;&#972;&#956;&#945; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#941;&#957;&#945;&#957; &#959;&#948;&#951;&#947;&#972;
- &#956;&#949; &#964;&#951;&#957; &#959;&#957;&#959;&#956;&#945;&#963;&#943;&#945; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#963;&#945;&#962; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#967;&#961;&#942;&#963;&#951;&#962; &#964;&#959;&#965; &#959;&#948;&#951;&#947;&#959;&#973; vesa &#959;
- &#959;&#960;&#959;&#943;&#959;&#962; &#960;&#945;&#961;&#941;&#967;&#949;&#953; &#964;&#953;&#962; &#946;&#945;&#963;&#953;&#954;&#941;&#962; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#949;&#962; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;.
+ <p>&#913;&#957; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#963;&#945;&#962; &#963;&#964;&#959; &#954;&#945;&#964;&#940;&#963;&#964;&#953;&#967;&#959; &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#974;&#957;
+ (&#948;&#953;&#972;&#964;&#953; &#948;&#949;&#957; &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#945;&#954;&#972;&#956;&#945; &#963;&#964;&#951;&#957; &#946;&#940;&#963;&#951; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#942; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#960;&#945;&#955;&#953;&#940; &#954;&#940;&#961;&#964;&#945;)
+ &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#941;&#957;&#945;&#957; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959; &#959;&#948;&#951;&#947;&#972; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#951;&#947;&#959;&#961;&#943;&#945;
+ <span class="emphasis"><em>Xorg</em></span>, &#951; &#959;&#960;&#959;&#943;&#945; &#960;&#945;&#961;&#941;&#967;&#949;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959;&#965;&#962; &#945;&#960;&#972; 40 &#947;&#949;&#957;&#953;&#954;&#959;&#973;&#962; &#954;&#945;&#953;
+ &#945;&#957;&#959;&#953;&#967;&#964;&#959;&#973; &#954;&#974;&#948;&#953;&#954;&#945; &#959;&#948;&#951;&#947;&#959;&#973;&#962;. &#913;&#957; &#960;&#945;&#961;' &#972;&#955;&#945; &#945;&#965;&#964;&#940; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#941;&#957;&#945;&#957;
+ &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#959; &#959;&#948;&#951;&#947;&#972; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#963;&#945;&#962; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972;
+ VESA &#959; &#959;&#960;&#959;&#943;&#959;&#962; &#960;&#961;&#959;&#963;&#966;&#941;&#961;&#949;&#953; &#946;&#945;&#963;&#953;&#954;&#942; &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951;.
</p>
- <p>&#928;&#961;&#959;&#963;&#941;&#958;&#964;&#949; &#948;&#953;&#972;&#964;&#953; &#945;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#941;&#957;&#945;&#957; &#945;&#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959; &#959;&#948;&#951;&#947;&#972; &#952;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#956;&#972;&#957;&#959; &#963;&#964;&#951;
- &#947;&#961;&#945;&#956;&#956;&#942; &#949;&#957;&#964;&#959;&#955;&#974;&#957;.
- </p>
+ <div class="caution" title="&#928;&#961;&#959;&#963;&#959;&#967;&#942;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#963;&#959;&#967;&#942;]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#928;&#961;&#959;&#963;&#941;&#958;&#964;&#949; &#948;&#953;&#972;&#964;&#953; &#945;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#941;&#957;&#945;&#957; &#945;&#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959; &#959;&#948;&#951;&#947;&#972; &#952;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#956;&#972;&#957;&#959; &#963;&#964;&#951;
+ <span class="emphasis"><em>&#947;&#961;&#945;&#956;&#956;&#942; &#949;&#957;&#964;&#959;&#955;&#974;&#957;</em></span></p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<p>&#924;&#949;&#961;&#953;&#954;&#959;&#943; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#941;&#962; &#954;&#945;&#961;&#964;&#974;&#957; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#960;&#945;&#961;&#941;&#967;&#959;&#965;&#957; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959;&#965;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962; &#947;&#953;&#945; Linux
- &#959;&#953; &#959;&#960;&#959;&#943;&#959;&#953; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#953;&#945;&#964;&#949;&#952;&#959;&#973;&#957; &#956;&#972;&#957;&#959; &#945;&#960;&#972; &#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945; Nonfree &#954;&#945;&#953; &#963;&#949;
- &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962; &#956;&#972;&#957;&#959; &#945;&#960;&#972; &#964;&#951;&#957; &#953;&#963;&#964;&#959;&#963;&#949;&#955;&#943;&#948;&#945; &#964;&#959;&#965; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;
- </p>
-
-
- <p>&#932;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945; Nonfree &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957; &#974;&#963;&#964;&#949; &#957;&#945; &#945;&#960;&#959;&#954;&#964;&#942;&#963;&#949;&#964;&#949;
- &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#963;&#945;&#962; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
+ &#959;&#953; &#959;&#960;&#959;&#943;&#959;&#953; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#953;&#945;&#964;&#949;&#952;&#959;&#973;&#957; &#956;&#972;&#957;&#959; &#945;&#960;&#972; &#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945;
+ <span class="emphasis"><em>Nonfree</em></span> &#954;&#945;&#953; &#963;&#949; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962; &#956;&#972;&#957;&#959; &#945;&#960;&#972; &#964;&#951;&#957;
+ &#953;&#963;&#964;&#959;&#963;&#949;&#955;&#943;&#948;&#945; &#964;&#959;&#965; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;. &#932;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945;
+ <span class="emphasis"><em>Nonfree</em></span> &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957; &#961;&#951;&#964;&#974;&#962;. &#913;&#957; &#948;&#949;&#957; &#964;&#959;
+ &#954;&#940;&#957;&#945;&#964;&#949; &#960;&#961;&#959;&#951;&#947;&#959;&#965;&#956;&#941;&#957;&#969;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#964;&#959; &#960;&#961;&#940;&#958;&#949;&#964;&#949; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
</p>
</div>
diff --git a/el/configureX_chooser.html b/el/configureX_chooser.html
index 4ab6f47..69b7fa9 100644
--- a/el/configureX_chooser.html
+++ b/el/configureX_chooser.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
- <link rel="prev" href="addUser.html" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;">
+ <link rel="prev" href="addUser.html" title="&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:">
<link rel="next" href="configureX_card_list.html" title="&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945;&#957; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942; X (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,13 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
@@ -30,14 +37,18 @@
- <p><a name="configureX_chooser-pa1"></a>&#916;&#949;&#957; &#941;&#967;&#949;&#953; &#963;&#951;&#956;&#945;&#963;&#943;&#945; &#964;&#959; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; (&#949;&#960;&#943;&#963;&#951;&#962; &#947;&#957;&#969;&#963;&#964;&#972; &#969;&#962; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;
- &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;) &#960;&#959;&#965; &#949;&#960;&#953;&#955;&#941;&#947;&#949;&#964;&#949; &#947;&#953;&#945; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962;
- <span class="application">Mageia</span>, &#972;&#955;&#945; &#949;&#943;&#957;&#945;&#953; &#946;&#945;&#963;&#953;&#963;&#956;&#941;&#957;&#945; &#963;&#949; &#956;&#953;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#942;
- &#948;&#953;&#949;&#960;&#945;&#966;&#942; &#967;&#961;&#942;&#963;&#964;&#951; &#964;&#959; X Window System, &#942; &#945;&#960;&#955;&#940; X. &#904;&#964;&#963;&#953;, &#947;&#953;&#945; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#963;&#949; &#952;&#941;&#963;&#951; &#964;&#959;
- KDE, Gnome, LXDE &#942; &#959;&#960;&#959;&#953;&#959;&#948;&#942;&#960;&#959;&#964;&#949; &#940;&#955;&#955;&#959; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#957;&#945; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#949;&#943; &#963;&#969;&#963;&#964;&#940;,
- &#959;&#953; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#964;&#959;&#965; X &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#941;&#962;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#953;&#962; &#963;&#969;&#963;&#964;&#941;&#962;
- &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#945;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#964;&#959; DrakX &#948;&#949;&#957; &#941;&#967;&#949;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#945;, &#942; &#945;&#957;
- &#945;&#956;&#966;&#953;&#946;&#940;&#955;&#955;&#949;&#964;&#949; &#972;&#964;&#953; &#949;&#943;&#957;&#945;&#953; &#951; &#963;&#969;&#963;&#964;&#942; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
+ <p><a name="configureX_chooser-pa1"></a>&#913;&#957;&#949;&#958;&#945;&#961;&#964;&#942;&#964;&#959;&#965; &#964;&#951;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#964;&#959;&#965; &#947;&#961;&#945;&#966;&#953;&#954;&#959;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962;
+ Mageia, &#972;&#955;&#945; &#964;&#945; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#945; &#946;&#945;&#963;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#942;&#962; &#948;&#953;&#949;&#960;&#945;&#966;&#942;&#962;
+ &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#955;&#941;&#947;&#949;&#964;&#945;&#953; <code class="literal">X Window system</code>, &#942; &#945;&#960;&#955;&#974;&#962;
+ <span class="quote">&amp;#x201C;<span class="quote">X</span>&amp;#x201D;</span> &#937;&#962; &#949;&#954; &#964;&#959;&#973;&#964;&#959;&#965;, &#947;&#953;&#945; &#957;&#945; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#959;&#973;&#957; &#963;&#969;&#963;&#964;&#940; &#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#940;
+ &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#945; &#972;&#960;&#969;&#962; &#964;&#959; KDE Plasma, GNOME, LXDE &#942; &#940;&#955;&#955;&#959;, &#959;&#953; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;
+ &#964;&#959;&#965; <span class="quote">&amp;#x201C;<span class="quote">X</span>&amp;#x201D;</span> &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#941;&#962;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#953;&#962; &#963;&#969;&#963;&#964;&#941;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;
+ &#945;&#957; &#948;&#949;&#957; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#954;&#940;&#960;&#959;&#953;&#945;, &#942; &#945;&#957; &#960;&#953;&#963;&#964;&#949;&#973;&#949;&#964;&#949; &#972;&#964;&#953; &#949;&#943;&#957;&#945;&#953; &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#949;&#962;.
+ </p>
+
+
+ <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#953;&#962; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#949;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945; &#945;&#957; &#960;&#953;&#963;&#964;&#949;&#973;&#949;&#964;&#949; &#972;&#964;&#953; &#959;&#953;
+ &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#949;&#943;&#957;&#945;&#953; &#949;&#963;&#966;&#945;&#955;&#956;&#941;&#957;&#949;&#962;, &#942; &#945;&#957; &#948;&#949;&#957; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#964;&#943;&#960;&#959;&#964;&#945;.
</p>
@@ -45,70 +56,85 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="configureX_chooser-pa2"></a><span class="emphasis"><em><span class="guibutton">&#922;&#940;&#961;&#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;</span></em></span>: &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957;
- &#954;&#940;&#961;&#964;&#945; &#963;&#945;&#962; &#945;&#960;&#972; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#945;&#957; &#949;&#943;&#957;&#945;&#953; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#959;.
+ <p><a name="configureX_chooser-pa2"></a><span class="bold"><strong>&#922;&#940;&#961;&#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;</strong></span></p>
+
+
+ <p>&#913;&#957; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#953;&#945; &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#951; &#954;&#940;&#961;&#964;&#945; &#945;&#960;&#972; &#964;&#959;
+ &#945;&#957;&#945;&#960;&#964;&#965;&#963;&#963;&#972;&#956;&#949;&#957;&#959; &#954;&#945;&#964;&#940;&#963;&#964;&#953;&#967;&#959;. &#913;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="configureX_card_list.html" title="&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945;&#957; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942; X (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;)">&amp;#x201C;&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945;&#957; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942; X (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;)&amp;#x201D;</a>.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa3"></a><span class="emphasis"><em><span class="guibutton">&#927;&#952;&#972;&#957;&#951;</span></em></span>: &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;
- <span class="guilabel">&#902;&#956;&#949;&#963;&#951;&#962; &#964;&#959;&#960;&#959;&#952;&#941;&#964;&#951;&#963;&#951;&#962; &#954;&#945;&#953; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;&#962;</span> &#945;&#957; &#949;&#943;&#957;&#945;&#953; &#949;&#966;&#953;&#954;&#964;&#972;, &#942;
- &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962; &#945;&#960;&#972; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#964;&#969;&#957; <span class="guilabel">&#922;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#974;&#957;</span> &#942;
- <span class="guilabel">&#915;&#949;&#957;&#953;&#954;&#959;&#973; &#964;&#973;&#960;&#959;&#965;</span>. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949;
- <span class="guilabel">&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</span> &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#959;&#961;&#953;&#950;&#972;&#957;&#964;&#953;&#949;&#962;
- &#954;&#945;&#953; &#954;&#940;&#952;&#949;&#964;&#949;&#962; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#949;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;.
- </p>
+ <p><a name="configureX_chooser-pa3"></a><span class="bold"><strong>&#927;&#952;&#972;&#957;&#951;:</strong></span></p>
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="configureX_chooser-pa3a"></a>&#924;&#953;&#945; &#949;&#963;&#966;&#945;&#955;&#956;&#941;&#957;&#951; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#941;&#968;&#949;&#953; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962;
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+ <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#902;&#956;&#949;&#963;&#951;&#962; &#964;&#959;&#960;&#959;&#952;&#941;&#964;&#951;&#963;&#951;&#962; &#954;&#945;&#953; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;&#962; &#945;&#957; &#949;&#943;&#957;&#945;&#953; &#949;&#966;&#953;&#954;&#964;&#972;, &#942;
+ &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962; &#945;&#960;&#972; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#964;&#969;&#957; <span class="emphasis"><em>&#922;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#974;&#957;</em></span> &#942;
+ <span class="emphasis"><em>&#915;&#949;&#957;&#953;&#954;&#959;&#973; &#964;&#973;&#960;&#959;&#965;</em></span> &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</em></span> &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#959;&#961;&#953;&#950;&#972;&#957;&#964;&#953;&#949;&#962;
+ &#954;&#945;&#953; &#954;&#940;&#952;&#949;&#964;&#949;&#962; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#949;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;. &#916;&#949;&#943;&#964;&#949; &#963;&#967;&#949;&#964;&#953;&#954;&#940;
+ &#963;&#964;&#959; <a class="xref" href="configureX_monitor.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;">&amp;#x201C;&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;&amp;#x201D;</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa4"></a><span class="emphasis"><em><span class="guibutton">&#913;&#957;&#940;&#955;&#965;&#963;&#951;</span></em></span>: &#927;&#961;&#943;&#963;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#951;&#964;&#942;
- &#945;&#957;&#940;&#955;&#965;&#963;&#951; &#954;&#945;&#953; &#946;&#940;&#952;&#959;&#962; &#967;&#961;&#974;&#956;&#945;&#964;&#959;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962; &#949;&#948;&#974;.
- </p>
+ <p><a name="configureX_chooser-pa4"></a><span class="bold"><strong>&#913;&#957;&#940;&#955;&#965;&#963;&#951;</strong></span></p>
+
+
+ <p>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#945;&#957;&#940;&#955;&#965;&#963;&#951; &#954;&#945;&#953; &#964;&#959; &#946;&#940;&#952;&#959;&#962; &#967;&#961;&#974;&#956;&#945;&#964;&#959;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;.</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa5"></a><span class="emphasis"><em><span class="guibutton">&#916;&#959;&#954;&#953;&#956;&#942;</span></em></span>: &#932;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#948;&#959;&#954;&#953;&#956;&#942; &#948;&#949;&#957;
- &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#960;&#940;&#957;&#964;&#945; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;. &#913;&#957; &#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#965;&#960;&#940;&#961;&#967;&#949;&#953;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#949;&#955;&#941;&#947;&#958;&#949;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#963;&#945;&#962; &#954;&#940;&#957;&#959;&#957;&#964;&#945;&#962; &#954;&#955;&#953;&#954; &#963;&#949; &#945;&#965;&#964;&#972;. &#913;&#957; &#949;&#961;&#969;&#964;&#951;&#952;&#949;&#943;&#964;&#949; &#945;&#957; &#959;&#953;
- &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#963;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#941;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#960;&#945;&#957;&#964;&#942;&#963;&#949;&#964;&#949; &laquo;&#925;&#945;&#953;&raquo;, &#954;&#945;&#953; &#959;&#953; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962;
- &#952;&#945; &#948;&#953;&#945;&#964;&#951;&#961;&#951;&#952;&#959;&#973;&#957;. &#913;&#957; &#948;&#949;&#957; &#948;&#949;&#943;&#964;&#949; &#964;&#943;&#960;&#959;&#964;&#945;, &#952;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;
- &#974;&#963;&#964;&#949; &#957;&#945; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#949;&#954; &#957;&#941;&#959;&#965; &#964;&#953;&#962; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962; &#941;&#969;&#962; &#951; &#948;&#959;&#954;&#953;&#956;&#942; &#960;&#959;&#965; &#952;&#945;
- &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#949;&#960;&#953;&#964;&#965;&#967;&#942;&#962;. <span class="emphasis"><em>&#931;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#959;&#953;
- &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#963;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#941;&#962; &#945;&#957; &#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#948;&#959;&#954;&#953;&#956;&#942;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953;
- &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;</em></span></p>
+ <p><a name="configureX_chooser-pa5"></a><span class="bold"><strong>&#916;&#959;&#954;&#953;&#956;&#942;</strong></span></p>
+
+
+ <p>&#932;&#959; &#954;&#959;&#965;&#956;&#960;&#943; &#948;&#959;&#954;&#953;&#956;&#942;&#962; &#948;&#949;&#957; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#960;&#940;&#957;&#964;&#945; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;. &#913;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953;
+ &#945;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#954;&#945;&#953; &#948;&#959;&#954;&#953;&#956;&#940;&#950;&#949;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#963;&#945;&#962;, &#952;&#945; &#949;&#961;&#969;&#964;&#951;&#952;&#949;&#943;&#964;&#949; &#945;&#957; &#959;&#953;
+ &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#963;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#963;&#969;&#963;&#964;&#941;&#962;. &#913;&#957; &#945;&#960;&#945;&#957;&#964;&#942;&#963;&#949;&#964;&#949; <span class="emphasis"><em>&#925;&#945;&#953;</em></span>, &#959;&#953;
+ &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#952;&#945; &#948;&#953;&#945;&#964;&#951;&#961;&#951;&#952;&#959;&#973;&#957;. &#913;&#957; &#948;&#949;&#957; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#954;&#940;&#964;&#953;, &#952;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951;
+ &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962; &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#949;&#954; &#957;&#941;&#959;&#965; &#964;&#953;&#962; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#949;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962;. &#913;&#957; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
+ &#948;&#959;&#954;&#953;&#956;&#942;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#951;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953;
+ &#964;&#953;&#962; &#963;&#969;&#963;&#964;&#941;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962;.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa6"></a><span class="emphasis"><em><span class="guibutton">&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962;</span></em></span>: &#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#942; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;.
+ <p><a name="configureX_chooser-pa6"></a><span class="bold"><strong>&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962;</strong></span></p>
+
+
+ <p>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#942; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957;
+ &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;.
</p>
</li>
</ul>
</div>
+
+ <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="configureX_chooser-pa3a"></a>&#933;&#960;&#940;&#961;&#967;&#949;&#953; &#954;&#943;&#957;&#948;&#965;&#957;&#959;&#962; &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#959;&#966;&#942;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#945;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#949;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962;
+ &#949;&#954;&#964;&#972;&#962; &#964;&#969;&#957; &#945;&#960;&#959;&#948;&#949;&#954;&#964;&#974;&#957; &#959;&#961;&#943;&#969;&#957; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;. &#913;&#965;&#964;&#972; &#953;&#963;&#967;&#973;&#949;&#953; &#947;&#953;&#945; &#964;&#953;&#962; &#960;&#945;&#955;&#945;&#953;&#972;&#964;&#949;&#961;&#949;&#962;
+ &#964;&#973;&#960;&#959;&#965; CRT &#959;&#952;&#972;&#957;&#949;&#962;. &#927;&#953; &#963;&#973;&#947;&#967;&#961;&#959;&#957;&#949;&#962; &#959;&#952;&#972;&#957;&#949;&#962; &#952;&#945; &#945;&#960;&#959;&#961;&#961;&#943;&#968;&#959;&#965;&#957; &#956;&#953;&#945; &#956;&#951; &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#953;&#950;&#972;&#956;&#949;&#957;&#951;
+ &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#954;&#945;&#953; &#954;&#945;&#957;&#959;&#957;&#953;&#954;&#940; &#952;&#945; &#956;&#949;&#964;&#945;&#946;&#959;&#973;&#957; &#963;&#949; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#945;&#957;&#945;&#956;&#959;&#957;&#942;&#962;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</div>
</body>
</html>
diff --git a/el/configureX_monitor.html b/el/configureX_monitor.html
index 89e2ea4..55127f8 100644
--- a/el/configureX_monitor.html
+++ b/el/configureX_monitor.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="prev" href="configureX_card_list.html" title="&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945;&#957; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942; X (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;)">
- <link rel="next" href="setupBootloader.html" title="&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="setupBootloader.html" title="&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -33,6 +33,10 @@
+
+
+
+
<p><a name="configureX_monitor-pa1"></a>&#932;&#959; DrakX &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#953; &#956;&#953;&#945; &#945;&#961;&#954;&#949;&#964;&#940; &#960;&#949;&#961;&#953;&#949;&#954;&#964;&#953;&#954;&#942; &#946;&#940;&#963;&#951; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#963;&#965;&#963;&#954;&#949;&#965;&#974;&#957; &#959;&#952;&#959;&#957;&#974;&#957; &#954;&#945;&#953;
&#963;&#965;&#957;&#942;&#952;&#969;&#962; &#952;&#945; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#943;&#963;&#949;&#953; &#963;&#969;&#963;&#964;&#940; &#954;&#945;&#953; &#964;&#951; &#948;&#953;&#954;&#942; &#963;&#945;&#962;.
</p>
@@ -47,10 +51,11 @@
<tr>
<td align="left" valign="top">
- <p><a name="configureX_monitor-pa1w"></a><span class="emphasis"><em>&#919; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#953;&#945;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#956;&#949; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945;
- &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#941;&#968;&#949;&#953; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962; &#942; &#964;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;. &#928;&#945;&#961;&#945;&#954;&#945;&#955;&#974; &#956;&#951;&#957; &#960;&#961;&#959;&#963;&#960;&#945;&#952;&#949;&#943;&#964;&#949; &#957;&#945;
- &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#960;&#955;&#940; &#948;&#959;&#954;&#953;&#956;&#941;&#962; &#945;&#957; &#948;&#949;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#964;&#953; &#945;&#954;&#961;&#953;&#946;&#974;&#962; &#954;&#940;&#957;&#949;&#964;&#949;. </em></span> &#913;&#957;
- &#941;&#967;&#949;&#964;&#949; &#945;&#956;&#966;&#953;&#946;&#959;&#955;&#943;&#949;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#963;&#965;&#956;&#946;&#959;&#965;&#955;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;
+ <p><a name="configureX_monitor-pa1w"></a><span class="bold"><strong>&#919; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#953;&#945;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#956;&#949; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#967;&#945;&#961;&#945;&#954;&#964;&#951;&#961;&#953;&#963;&#964;&#953;&#954;&#940;
+ &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#941;&#968;&#949;&#953; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962; &#942; &#964;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;. &#928;&#945;&#961;&#945;&#954;&#945;&#955;&#974; &#956;&#951;&#957;
+ &#960;&#961;&#959;&#963;&#960;&#945;&#952;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#960;&#955;&#940; &#948;&#959;&#954;&#953;&#956;&#941;&#962; &#945;&#957; &#948;&#949;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#964;&#953; &#945;&#954;&#961;&#953;&#946;&#974;&#962;
+ &#954;&#940;&#957;&#949;&#964;&#949;.</strong></span> &#913;&#957; &#941;&#967;&#949;&#964;&#949; &#945;&#956;&#966;&#953;&#946;&#959;&#955;&#943;&#949;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#963;&#965;&#956;&#946;&#959;&#965;&#955;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#964;&#951;&#957;
+ &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;
</p>
</td>
@@ -61,70 +66,80 @@
- <p><a name="configureX_monitor-pa2"></a><span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</em></span></p>
-
-
- <p><a name="configureX_monitor-pa3"></a>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#948;&#973;&#959; &#954;&#961;&#943;&#963;&#953;&#956;&#949;&#962; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962;, &#964;&#951;
- &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#964;&#951;&#962; &#954;&#945;&#964;&#945;&#954;&#972;&#961;&#965;&#966;&#951;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#954;&#945;&#953; &#964;&#951; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#964;&#959;&#965; &#959;&#961;&#953;&#950;&#972;&#957;&#964;&#953;&#959;&#965;
- &#963;&#965;&#947;&#967;&#961;&#959;&#957;&#953;&#963;&#956;&#959;&#973;. &#919; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#964;&#951;&#962; &#954;&#945;&#964;&#945;&#954;&#972;&#961;&#965;&#966;&#951;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#959;&#961;&#943;&#950;&#949;&#953; &#960;&#972;&#963;&#959; &#963;&#965;&#967;&#957;&#940; &#952;&#945;
- &#945;&#957;&#945;&#957;&#949;&#974;&#957;&#949;&#964;&#945;&#953; &#951; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#953; &#959; &#959;&#961;&#953;&#950;&#972;&#957;&#964;&#953;&#959;&#962; &#963;&#965;&#947;&#967;&#961;&#959;&#957;&#953;&#963;&#956;&#972;&#962; &#949;&#943;&#957;&#945;&#953; &#951; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#963;&#964;&#951;&#957;
- &#959;&#960;&#959;&#943;&#945; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#959;&#953; &#947;&#961;&#945;&#956;&#956;&#941;&#962; &#963;&#940;&#961;&#969;&#963;&#951;&#962;.
- </p>
-
-
- <p><a name="configureX_monitor-pa4"></a>&#917;&#943;&#957;&#945;&#953; <span class="emphasis"><em>&#928;&#927;&#923;&#933; &#931;&#919;&#924;&#913;&#925;&#932;&#921;&#922;&#927;</em></span> &#957;&#945; &#956;&#951;&#957; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#959;&#952;&#972;&#957;&#951; &#956;&#949; &#949;&#973;&#961;&#959;&#962;
- &#963;&#965;&#947;&#967;&#961;&#959;&#957;&#953;&#963;&#956;&#959;&#973; &#949;&#954;&#964;&#972;&#962; &#964;&#969;&#957; &#948;&#965;&#957;&#945;&#964;&#959;&#964;&#942;&#964;&#969;&#957; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;: &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949;
- &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962;. &#913;&#957; &#941;&#967;&#949;&#964;&#949; &#945;&#956;&#966;&#953;&#946;&#959;&#955;&#943;&#945;, &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#956;&#953;&#945; &#963;&#965;&#957;&#964;&#951;&#961;&#951;&#964;&#953;&#954;&#942; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#954;&#945;&#953;
- &#963;&#965;&#956;&#946;&#959;&#965;&#955;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;.
- </p>
-
-
- <p><a name="configureX_monitor-pa5"></a><span class="emphasis"><em>&#902;&#956;&#949;&#963;&#951;&#962; &#964;&#959;&#960;&#959;&#952;&#941;&#964;&#951;&#963;&#951;&#962; &#954;&#945;&#953; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;&#962;</em></span></p>
-
-
- <p><a name="configureX_monitor-pa6"></a>&#913;&#965;&#964;&#942; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#953; &#951; &#949;&#958;' &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#954;&#945;&#953; &#947;&#943;&#957;&#949;&#964;&#945;&#953; &#960;&#961;&#959;&#963;&#960;&#940;&#952;&#949;&#953;&#945; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#959;&#973; &#964;&#959;&#965;
- &#964;&#973;&#960;&#959;&#965; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#945;&#960;&#972; &#964;&#951; &#946;&#940;&#963;&#951; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#956;&#949; &#964;&#953;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962; &#959;&#952;&#959;&#957;&#974;&#957;.
- </p>
-
-
- <p><a name="configureX_monitor-pa7"></a><span class="emphasis"><em>&#922;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942;&#962;</em></span></p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa2"></a>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa3"></a>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#948;&#973;&#959; &#954;&#961;&#943;&#963;&#953;&#956;&#949;&#962; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962;: &#964;&#951;
+ &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#964;&#951;&#962; &#954;&#945;&#964;&#945;&#954;&#972;&#961;&#965;&#966;&#951;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#954;&#945;&#953; &#964;&#951; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#964;&#959;&#965; &#959;&#961;&#953;&#950;&#972;&#957;&#964;&#953;&#959;&#965;
+ &#963;&#965;&#947;&#967;&#961;&#959;&#957;&#953;&#963;&#956;&#959;&#973;. &#919; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#964;&#951;&#962; &#954;&#945;&#964;&#945;&#954;&#972;&#961;&#965;&#966;&#951;&#962; &#945;&#957;&#945;&#957;&#941;&#969;&#963;&#951;&#962; &#959;&#961;&#943;&#950;&#949;&#953; &#960;&#972;&#963;&#959; &#963;&#965;&#967;&#957;&#940; &#952;&#945;
+ &#945;&#957;&#945;&#957;&#949;&#974;&#957;&#949;&#964;&#945;&#953; &#951; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#953; &#959; &#959;&#961;&#953;&#950;&#972;&#957;&#964;&#953;&#959;&#962; &#963;&#965;&#947;&#967;&#961;&#959;&#957;&#953;&#963;&#956;&#972;&#962; &#949;&#943;&#957;&#945;&#953; &#951; &#963;&#965;&#967;&#957;&#972;&#964;&#951;&#964;&#945; &#963;&#964;&#951;&#957;
+ &#959;&#960;&#959;&#943;&#945; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#959;&#953; &#947;&#961;&#945;&#956;&#956;&#941;&#962; &#963;&#940;&#961;&#969;&#963;&#951;&#962;.
+ </p>
+
+
+ <p><a name="configureX_monitor-pa4"></a>&#917;&#943;&#957;&#945;&#953; <span class="emphasis"><em>&#928;&#927;&#923;&#933; &#931;&#919;&#924;&#913;&#925;&#932;&#921;&#922;&#927;</em></span> &#957;&#945; &#956;&#951;&#957; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#959;&#952;&#972;&#957;&#951; &#956;&#949; &#949;&#973;&#961;&#959;&#962;
+ &#963;&#965;&#947;&#967;&#961;&#959;&#957;&#953;&#963;&#956;&#959;&#973; &#949;&#954;&#964;&#972;&#962; &#964;&#969;&#957; &#948;&#965;&#957;&#945;&#964;&#959;&#964;&#942;&#964;&#969;&#957; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;: &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#954;&#945;&#964;&#945;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949;
+ &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962;. &#913;&#957; &#941;&#967;&#949;&#964;&#949; &#945;&#956;&#966;&#953;&#946;&#959;&#955;&#943;&#945;, &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#956;&#953;&#945; &#963;&#965;&#957;&#964;&#951;&#961;&#951;&#964;&#953;&#954;&#942; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#954;&#945;&#953;
+ &#963;&#965;&#956;&#946;&#959;&#965;&#955;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#963;&#945;&#962;.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa5"></a>&#902;&#956;&#949;&#963;&#951;&#962; &#964;&#959;&#960;&#959;&#952;&#941;&#964;&#951;&#963;&#951;&#962; &#954;&#945;&#953; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;&#962;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa6"></a>&#913;&#965;&#964;&#942; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#953; &#951; &#949;&#958;' &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#954;&#945;&#953; &#947;&#943;&#957;&#949;&#964;&#945;&#953; &#960;&#961;&#959;&#963;&#960;&#940;&#952;&#949;&#953;&#945; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#959;&#965;
+ &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#959;&#973; &#964;&#959;&#965; &#964;&#973;&#960;&#959;&#965; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#945;&#960;&#972; &#964;&#951; &#946;&#940;&#963;&#951; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#956;&#949; &#964;&#953;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962;
+ &#959;&#952;&#959;&#957;&#974;&#957;.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa7"></a>&#922;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942;&#962;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa8"></a>&#945;&#957; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#949;&#957; &#949;&#957;&#964;&#972;&#960;&#953;&#963;&#949; &#963;&#969;&#963;&#964;&#940; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962; &#954;&#945;&#953; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#945;&#953;
+ &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#964;&#951;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#945;&#960;&#972; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#948;&#941;&#957;&#964;&#961;&#959;&#965; &#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962;
+ &#945;&#957;&#940;:
+ </p>
+
+ </dd>
+ </dl>
+ </div>
- <p><a name="configureX_monitor-pa8"></a>&#945;&#957; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#949;&#957; &#949;&#957;&#964;&#972;&#960;&#953;&#963;&#949; &#963;&#969;&#963;&#964;&#940; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#963;&#945;&#962; &#954;&#945;&#953; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#945;&#953;
- &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#964;&#951;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#945;&#960;&#972; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#948;&#941;&#957;&#964;&#961;&#959;&#965; &#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962;
- &#945;&#957;&#940;:
- </p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>&#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942;</p>
+ <p>&#922;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#945;&#963;&#964;&#942;&#962;</p>
+
</li>
<li class="listitem">
-
- <p>&#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#959;&#965; &#956;&#959;&#957;&#964;&#941;&#955;&#959;&#965; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;</p>
-
- </li>
- <li class="listitem">
-
- <p>&#964;&#951;&#957; &#960;&#949;&#961;&#953;&#947;&#961;&#945;&#966;&#942; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;</p>
+ <p>&#924;&#959;&#957;&#964;&#941;&#955;&#959; &#959;&#952;&#972;&#957;&#951;&#962;</p>
+
</li>
</ul>
</div>
- <p><a name="configureX_monitor-pa9"></a><span class="emphasis"><em>&#915;&#949;&#957;&#953;&#954;&#959;&#973; &#964;&#973;&#960;&#959;&#965;</em></span></p>
-
-
- <p><a name="configureX_monitor-pa10"></a>&#917;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#956;&#940;&#948;&#945; &#952;&#945; &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#959;&#973;&#957; &#947;&#973;&#961;&#969; &#963;&#964;&#953;&#962; 30 &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#953;&#962; &#959;&#952;&#959;&#957;&#974;&#957;
- &#972;&#960;&#969;&#962; 1024x768 @ 60Hz &#963;&#965;&#956;&#960;&#949;&#961;&#953;&#955;&#945;&#956;&#946;&#940;&#957;&#959;&#957;&#964;&#945;&#953; &#954;&#945;&#953; &#959;&#953; &#959;&#952;&#972;&#957;&#949;&#962; Flat &#964;&#969;&#957; &#966;&#959;&#961;&#951;&#964;&#974;&#957;
- &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#974;&#957;. &#931;&#965;&#967;&#957;&#940; &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#945; &#954;&#945;&#955;&#942; &#959;&#956;&#940;&#948;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#945;&#957; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
- &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; Vesa &#972;&#964;&#945;&#957; &#964;&#959; &#965;&#955;&#953;&#954;&#972; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;
- &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#963;&#945;&#962; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#964;&#949;&#943; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#945;. &#913;&#954;&#972;&#956;&#945; &#956;&#953;&#945; &#966;&#959;&#961;&#940; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
- &#949;&#943;&#963;&#964;&#949; &#963;&#965;&#957;&#964;&#951;&#961;&#951;&#964;&#953;&#954;&#959;&#943; &#963;&#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#945;&#962;.
- </p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa9"></a>&#915;&#949;&#957;&#953;&#954;&#959;&#973; &#964;&#973;&#960;&#959;&#965;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa10"></a>&#917;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#956;&#940;&#948;&#945; &#952;&#945; &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#959;&#973;&#957; &#947;&#973;&#961;&#969; &#963;&#964;&#953;&#962; 30 &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#953;&#962; &#959;&#952;&#959;&#957;&#974;&#957;
+ &#972;&#960;&#969;&#962; 1024x768 @ 60Hz &#963;&#965;&#956;&#960;&#949;&#961;&#953;&#955;&#945;&#956;&#946;&#940;&#957;&#959;&#957;&#964;&#945;&#953; &#954;&#945;&#953; &#959;&#953; &#959;&#952;&#972;&#957;&#949;&#962; Flat &#964;&#969;&#957; &#966;&#959;&#961;&#951;&#964;&#974;&#957;
+ &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#974;&#957;. &#931;&#965;&#967;&#957;&#940; &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#945; &#954;&#945;&#955;&#942; &#959;&#956;&#940;&#948;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#945;&#957; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; VESA &#972;&#964;&#945;&#957; &#964;&#959; &#965;&#955;&#953;&#954;&#972; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962;
+ &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#963;&#945;&#962; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#964;&#949;&#943; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#945;. &#913;&#954;&#972;&#956;&#945; &#956;&#953;&#945; &#966;&#959;&#961;&#940; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
+ &#949;&#943;&#963;&#964;&#949; &#963;&#965;&#957;&#964;&#951;&#961;&#951;&#964;&#953;&#954;&#959;&#943; &#963;&#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#945;&#962;.
+ </p>
+
+ </dd>
+ </dl>
+ </div>
</div>
</body>
diff --git a/el/diskdrake.html b/el/diskdrake.html
index 0b48441..c3a89f4 100644
--- a/el/diskdrake.html
+++ b/el/diskdrake.html
@@ -29,75 +29,87 @@
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="diskdrake-pa1"></a>&#913;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#954;&#961;&#965;&#960;&#964;&#959;&#947;&#961;&#940;&#966;&#951;&#963;&#951; &#963;&#949; &#954;&#940;&#960;&#959;&#953;&#945; &#945;&#960;&#972; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;
- &#963;&#945;&#962; &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#956;&#953;&#945; &#958;&#949;&#967;&#969;&#961;&#953;&#963;&#964;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; /boot. &#919; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
- &#954;&#961;&#965;&#960;&#964;&#959;&#947;&#961;&#940;&#966;&#951;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; /boot &#916;&#917;&#925; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#953;&#963;&#964;&#949;&#943;, &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940;
- &#948;&#949;&#957; &#952;&#945; &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#942; &#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
- <p><a name="diskdrake-pa3"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#964;&#951; &#948;&#953;&#940;&#964;&#945;&#958;&#951; &#964;&#969;&#957; &#948;&#943;&#963;&#954;&#969;&#957; &#963;&#945;&#962;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#966;&#945;&#953;&#961;&#941;&#963;&#949;&#964;&#949;
- &#942; &#957;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;, &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#956;&#953;&#945;&#962;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962; &#942; &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#972;&#962; &#964;&#951;&#962; &#954;&#945;&#953; &#949;&#960;&#953;&#960;&#961;&#959;&#963;&#952;&#941;&#964;&#969;&#962; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#959;
- &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#972; &#964;&#951;&#962; &#960;&#961;&#953;&#957; &#957;&#945; &#958;&#949;&#954;&#953;&#957;&#942;&#963;&#949;&#964;&#949;.
- </p>
-
-
- <p><a name="diskdrake-pa4"></a>&#933;&#960;&#940;&#961;&#967;&#949;&#953; &#956;&#953;&#945; &#954;&#945;&#961;&#964;&#941;&#955;&#945; &#947;&#953;&#945; &#954;&#940;&#952;&#949; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#941;&#957;&#959; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959; &#942; &#940;&#955;&#955;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942;
- &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951;&#962;, &#972;&#960;&#969;&#962; &#941;&#957;&#945; stick USB. &#915;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; sda, sdb &#954;&#945;&#953; sdc &#945;&#957; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957;
- &#964;&#961;&#943;&#945; &#945;&#960;&#972; &#945;&#965;&#964;&#940;.
- </p>
-
-
- <p><a name="diskdrake-pa5"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#922;&#945;&#952;&#945;&#961;&#953;&#963;&#956;&#972;&#962; &#972;&#955;&#969;&#957;</span> &#947;&#953;&#945; &#957;&#945; &#954;&#945;&#952;&#945;&#961;&#943;&#963;&#949;&#964;&#949; &#972;&#955;&#949;&#962;
- &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951;&#962;
- </p>
+
+
- <p><a name="diskdrake-pa6"></a>&#915;&#953;&#945; &#964;&#953;&#962; &#965;&#960;&#972;&#955;&#959;&#953;&#960;&#949;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#949;&#962;: &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#951;&#964;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#960;&#961;&#974;&#964;&#945;. &#931;&#964;&#951;
- &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#951;&#957;, &#942; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#954;&#945;&#953; &#941;&#957;&#945; &#963;&#951;&#956;&#949;&#943;&#959;
- &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;, &#945;&#955;&#955;&#940;&#958;&#964;&#949; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#972;&#962; &#964;&#951;&#962; &#942; &#954;&#945;&#952;&#945;&#961;&#943;&#963;&#964;&#949; &#964;&#951;&#957;.
- </p>
- <p><a name="diskdrake-pa6a"></a>&#931;&#965;&#957;&#949;&#967;&#943;&#963;&#964;&#949; &#941;&#969;&#962; &#972;&#964;&#959;&#965; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#959;&#964;&#953;&#948;&#942;&#960;&#959;&#964;&#949; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949;.
- </p>
- <p><a name="diskdrake-pa7"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#904;&#947;&#953;&#957;&#949;</span> &#972;&#964;&#945;&#957; &#949;&#943;&#963;&#964;&#949; &#941;&#964;&#959;&#953;&#956;&#959;&#962;-&#951;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa3"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#961;&#959;&#960;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951; &#948;&#953;&#940;&#964;&#945;&#958;&#951; &#964;&#969;&#957; &#948;&#943;&#963;&#954;&#969;&#957; &#963;&#945;&#962;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
+ &#945;&#966;&#945;&#953;&#961;&#941;&#963;&#949;&#964;&#949; &#942; &#957;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;, &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#945;&#961;&#967;&#949;&#943;&#969;&#957; &#942;
+ &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#956;&#953;&#945;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962; &#954;&#945;&#953; &#949;&#960;&#953;&#960;&#961;&#959;&#963;&#952;&#941;&#964;&#969;&#962; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#955;&#949;&#960;&#964;&#959;&#956;&#941;&#961;&#949;&#953;&#941;&#962; &#964;&#959;&#965;&#962;
+ &#960;&#961;&#953;&#957; &#957;&#945; &#958;&#949;&#954;&#953;&#957;&#942;&#963;&#949;&#964;&#949;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa4"></a>&#933;&#960;&#940;&#961;&#967;&#949;&#953; &#956;&#953;&#945; &#954;&#945;&#961;&#964;&#941;&#955;&#945; &#963;&#964;&#951;&#957; &#954;&#959;&#961;&#965;&#966;&#942; &#954;&#940;&#952;&#949; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#941;&#957;&#959;&#965; &#963;&#954;&#955;&#951;&#961;&#959;&#973; &#948;&#943;&#963;&#954;&#959;&#965; (&#942; &#940;&#955;&#955;&#951;
+ &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951;&#962; &#972;&#960;&#969;&#962; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB). &#931;&#964;&#959; &#945;&#957;&#969;&#964;&#941;&#961;&#969; &#963;&#964;&#953;&#947;&#956;&#953;&#972;&#964;&#965;&#960;&#959; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957;
+ &#948;&#965;&#959; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962;: <code class="filename">sda </code>&#954;&#945;&#953;
+ <code class="filename">sdb</code>.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6"></a>&#915;&#953;&#945; &#964;&#953;&#962; &#965;&#960;&#972;&#955;&#959;&#953;&#960;&#949;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#949;&#962;: &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#951;&#964;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#960;&#961;&#974;&#964;&#945;. &#931;&#964;&#951;
+ &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#960;&#961;&#959;&#946;&#940;&#955;&#949;&#964;&#949; &#942; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#945;&#961;&#967;&#949;&#943;&#969;&#957;, &#941;&#957;&#945;
+ &#963;&#951;&#956;&#949;&#943;&#959; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;, &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#964;&#949; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#972;&#962; &#964;&#951;&#962; &#942; &#957;&#945; &#964;&#951;&#957; &#954;&#945;&#952;&#945;&#961;&#943;&#963;&#949;&#964;&#949;. &#919;
+ <span class="emphasis"><em>&#923;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#949;&#953;&#948;&#942;&#956;&#959;&#957;&#945;</em></span> &#960;&#945;&#961;&#941;&#967;&#949;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;
+ &#972;&#960;&#969;&#962; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#964;&#953;&#954;&#941;&#964;&#945;&#962; &#956;&#949; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;, &#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#959;&#965;
+ &#964;&#973;&#960;&#959;&#965; &#964;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6a"></a>&#931;&#965;&#957;&#949;&#967;&#943;&#963;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#956;&#941;&#967;&#961;&#953; &#957;&#945; &#953;&#954;&#945;&#957;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#945;&#957;&#940;&#947;&#954;&#949;&#962; &#963;&#945;&#962; &#954;&#945;&#953; &#954;&#940;&#957;&#964;&#949;
+ &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#917;&#957;&#964;&#940;&#958;&#949;&#953;</em></span> &#972;&#964;&#945;&#957; &#949;&#943;&#963;&#964;&#949; &#941;&#964;&#959;&#953;&#956;&#959;&#962;-&#951;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>&#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; UEFI, &#949;&#955;&#941;&#947;&#958;&#964;&#949; &#972;&#964;&#953; &#956;&#953;&#945;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; ESP (EFI System Partition) &#949;&#943;&#957;&#945;&#953; &#960;&#945;&#961;&#959;&#973;&#963;&#945; &#954;&#945;&#953; &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#951;&#956;&#941;&#957;&#951; &#963;&#969;&#963;&#964;&#940;
- &#963;&#964;&#959; /boot.EFI (&#948;&#949;&#943;&#964;&#949; &#954;&#945;&#964;&#969;&#964;&#941;&#961;&#969;)
- </p>
-
-
- <p></p>
+ <div class="orderedlist">
+ <ol class="orderedlist" type="1">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa5"></a>&#928;&#961;&#959;&#963;&#941;&#958;&#964;&#949; &#956;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#959;&#965; <span class="emphasis"><em>&#922;&#945;&#952;&#945;&#961;&#953;&#963;&#956;&#972;&#962; &#972;&#955;&#969;&#957;</em></span>,
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#964;&#949; &#964;&#951;&#957; &#956;&#972;&#957;&#959; &#945;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#972;&#964;&#953; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#954;&#945;&#952;&#945;&#961;&#943;&#963;&#949;&#964;&#949; &#972;&#955;&#949;&#962;
+ &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951;&#962;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa1"></a>&#913;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#954;&#961;&#965;&#960;&#964;&#959;&#947;&#961;&#940;&#966;&#951;&#963;&#951; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ <code class="filename">/</code> &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#956;&#953;&#945; &#958;&#949;&#967;&#969;&#961;&#953;&#963;&#964;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ <code class="filename">/boot</code>. &#919; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#954;&#961;&#965;&#960;&#964;&#959;&#947;&#961;&#940;&#966;&#951;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ <code class="filename">/boot</code> &#916;&#917;&#925; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#953;&#963;&#964;&#949;&#943;, &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#940; &#948;&#949;&#957; &#952;&#945;
+ &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#942; &#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;.
+ </p>
+
+ </li>
+ </ol>
+ </div>
</td>
</tr>
@@ -105,26 +117,45 @@
</div>
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>&#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#960;&#945;&#955;&#953;&#972;/GPT &#963;&#973;&#963;&#964;&#951;&#956;&#945;, &#949;&#955;&#941;&#947;&#958;&#964;&#949;
- &#972;&#964;&#953; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; BIOS &#949;&#943;&#957;&#945;&#953; &#960;&#945;&#961;&#959;&#973;&#963;&#945; &#956;&#949; &#941;&#957;&#945;&#957; &#963;&#969;&#963;&#964;&#972; &#964;&#973;&#960;&#959;
- </p>
-
-
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; UEFI, &#949;&#955;&#941;&#947;&#958;&#964;&#949; &#972;&#964;&#953; &#956;&#953;&#945;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; ESP (EFI System Partition) &#949;&#943;&#957;&#945;&#953; &#960;&#945;&#961;&#959;&#973;&#963;&#945; &#954;&#945;&#953; &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#951;&#956;&#941;&#957;&#951; &#963;&#969;&#963;&#964;&#940;
+ &#963;&#964;&#959; <code class="filename">/boot.EFI</code> (&#948;&#949;&#943;&#964;&#949; &#954;&#945;&#964;&#969;&#964;&#941;&#961;&#969;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia &#963;&#949; &#941;&#957;&#945; &#960;&#945;&#955;&#953;&#972;/GPT &#963;&#973;&#963;&#964;&#951;&#956;&#945;, &#949;&#955;&#941;&#947;&#958;&#964;&#949; &#972;&#964;&#953; &#956;&#953;&#945;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; BIOS &#949;&#943;&#957;&#945;&#953; &#960;&#945;&#961;&#959;&#973;&#963;&#945; &#954;&#945;&#953; &#949;&#957;&#972;&#962; &#963;&#969;&#963;&#964;&#959;&#973; &#964;&#973;&#960;&#959;&#965;. &#916;&#949;&#943;&#964;&#949; &#964;&#951;&#957;
+ &#949;&#953;&#954;&#972;&#957;&#945; 2 &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</td>
</tr>
</table>
</div>
+
+
+
+
</div>
</body>
</html>
diff --git a/el/doPartitionDisks.html b/el/doPartitionDisks.html
index 293fe23..305ca7a 100644
--- a/el/doPartitionDisks.html
+++ b/el/doPartitionDisks.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#916;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;</title>
+ <title>&#928;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#959;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="el" class="section" title="&#916;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;">
+ <div lang="el" class="section" title="&#928;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#959;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="doPartitionDisks"></a>&#916;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;
+ <h2 class="title"><a name="doPartitionDisks"></a>&#928;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#959;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;
</h2>
</div>
</div>
@@ -29,205 +29,219 @@
+
+
+
+
+
+
+
+
+
+
<p><a name="doPartitionDisks-pa1"></a>&#931;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#959; &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#959; &#964;&#969;&#957; &#963;&#954;&#955;&#951;&#961;&#974;&#957; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#969;&#957;
- &#954;&#945;&#953; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#955;&#973;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#946;&#961;&#942;&#954;&#949; &#959; &#959;&#948;&#951;&#947;&#972;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#959;&#973; DrakX &#947;&#953;&#945; &#964;&#945; &#960;&#953;&#952;&#945;&#957;&#940;
- &#956;&#941;&#961;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962; <span class="application">Mageia</span>.
+ &#954;&#945;&#953; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#960;&#961;&#959;&#964;&#940;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#946;&#961;&#942;&#954;&#949; &#959; &#959;&#948;&#951;&#947;&#972;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#959;&#973; DrakX &#947;&#953;&#945; &#964;&#959; &#960;&#959;&#965;
+ &#952;&#945; &#947;&#943;&#957;&#949;&#953; &#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia.
</p>
- <p><a name="doPartitionDisks-pa2"></a>&#927;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#945;&#960;&#972; &#964;&#951;&#957; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#955;&#943;&#963;&#964;&#945; &#960;&#959;&#953;&#954;&#943;&#955;&#959;&#965;&#957; &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#953;&#962;
- &#953;&#948;&#953;&#972;&#964;&#951;&#964;&#949;&#962; &#964;&#969;&#957; &#963;&#954;&#955;&#951;&#961;&#974;&#957; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#969;&#957; &#954;&#945;&#953; &#964;&#959; &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#972; &#964;&#959;&#965;&#962;.
+ <p><a name="doPartitionDisks-pa2"></a>&#927;&#953; &#964;&#961;&#941;&#967;&#959;&#965;&#963;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#945;&#960;&#972; &#964;&#951;&#957; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#955;&#943;&#963;&#964;&#945; &#960;&#959;&#953;&#954;&#943;&#955;&#959;&#965;&#957; &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#951; &#948;&#953;&#940;&#964;&#945;&#958;&#951;
+ &#954;&#945;&#953; &#964;&#959; &#960;&#949;&#961;&#953;&#949;&#967;&#972;&#956;&#949;&#957;&#959; &#964;&#969;&#957; &#963;&#954;&#955;&#951;&#961;&#974;&#957; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#969;&#957;.
</p>
- <p><a name="doPartitionDisks-pa3"></a></p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;">
+ <p class="title"><b>&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;</b></p>
<ul class="itemizedlist">
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa4"></a>&#935;&#961;&#942;&#963;&#951; &#964;&#969;&#957; &#965;&#960;&#945;&#961;&#967;&#959;&#965;&#963;&#974;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;
- </p>
+
+ <p><a name="doPartitionDisks-pa4"></a><span class="bold"><strong>&#935;&#961;&#942;&#963;&#951; &#964;&#969;&#957; &#965;&#960;&#945;&#961;&#967;&#959;&#965;&#963;&#974;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;</strong></span></p>
-
+
<p><a name="doPartitionDisks-pa5"></a>&#913;&#957; &#945;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#951;, &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#972;&#964;&#953; &#941;&#967;&#959;&#965;&#957; &#946;&#961;&#949;&#952;&#949;&#943; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;
&#963;&#965;&#956;&#946;&#945;&#964;&#941;&#962; &#956;&#949; &#964;&#959; Linux &#954;&#945;&#953; &#956;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;.
</p>
-
+
</li>
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa6"></a>&#935;&#961;&#942;&#963;&#951; &#964;&#959;&#965; &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965; &#967;&#974;&#961;&#959;&#965;
- </p>
+
+ <p><a name="doPartitionDisks-pa6"></a><span class="bold"><strong>&#935;&#961;&#942;&#963;&#951; &#964;&#959;&#965; &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965; &#967;&#974;&#961;&#959;&#965;</strong></span></p>
-
+
<p><a name="doPartitionDisks-pa7"></a>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#956;&#951; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#956;&#949;&#957;&#959; &#967;&#974;&#961;&#959; &#963;&#964;&#959; &#963;&#954;&#955;&#951;&#961;&#972; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#959; &#964;&#972;&#964;&#949; &#945;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
&#952;&#945; &#964;&#959;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#947;&#953;&#945; &#964;&#951; &#957;&#941;&#945; &#963;&#945;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia.
</p>
-
+
</li>
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa8"></a>&#935;&#961;&#942;&#963;&#951; &#964;&#959;&#965; &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#963;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#969;&#957; Windows
- </p>
-
-
- <p><a name="doPartitionDisks-pa9"></a>&#913;&#957; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949; &#956;&#951; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#956;&#949;&#957;&#959; &#967;&#974;&#961;&#959; &#963;&#949; &#956;&#953;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; Windows, &#959;
- &#959;&#948;&#951;&#947;&#972;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#968;&#949;&#953; &#957;&#945; &#964;&#959;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;.
- </p>
+
+ <p><a name="doPartitionDisks-pa8"></a><span class="bold"><strong>&#935;&#961;&#942;&#963;&#951; &#964;&#959;&#965; &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#963;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#969;&#957;
+ Windows</strong></span></p>
-
- <p><a name="doPartitionDisks-pa10"></a>&#913;&#965;&#964;&#972; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#957;&#949;&#943; &#967;&#961;&#942;&#963;&#953;&#956;&#959; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#943;&#945; &#964;&#959;&#965; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#947;&#953;&#945; &#964;&#951;&#957;
+
+ <p><a name="suggestedPartitioning-pa9"></a>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#945;&#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#943;&#951;&#964;&#959; &#967;&#974;&#961;&#959; &#963;&#949; &#956;&#953;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; Windows, &#959;
+ &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#963;&#945;&#962; &#964;&#959;&#957; &#948;&#953;&#945;&#952;&#941;&#963;&#949;&#953; &#947;&#953;&#945; &#957;&#945; &#964;&#959;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;. &#913;&#965;&#964;&#972;
+ &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#957;&#949;&#943; &#967;&#961;&#942;&#963;&#953;&#956;&#959; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#943;&#945; &#964;&#959;&#965; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#947;&#953;&#945; &#964;&#951;&#957;
&#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia.
</p>
-
- <p><a name="doPartitionDisks-pa11"></a>&#931;&#951;&#956;&#949;&#953;&#974;&#963;&#964;&#949; &#972;&#964;&#953; &#945;&#965;&#964;&#972; &#952;&#945; &#960;&#961;&#959;&#954;&#945;&#955;&#941;&#963;&#949;&#953; &#964;&#951;&#957; &#963;&#965;&#961;&#961;&#943;&#954;&#957;&#969;&#963;&#951; &#964;&#959;&#965; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#964;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;
- &#964;&#969;&#957; Windows, &#954;&#940;&#964;&#953; &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#953;&#945;&#964;&#961;&#941;&#967;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#959;&#957; &#954;&#943;&#957;&#948;&#965;&#957;&#959;. &#919; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
- &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &laquo;&#954;&#945;&#952;&#945;&#961;&#942;&raquo; &#948;&#951;&#955;&#945;&#948;&#942; &#964;&#945; Windows &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#959;&#965;&#957; &#954;&#955;&#949;&#943;&#963;&#949;&#953; &#963;&#969;&#963;&#964;&#940;
- &#964;&#951;&#957; &#964;&#949;&#955;&#949;&#965;&#964;&#945;&#943;&#945; &#966;&#959;&#961;&#940; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#952;&#951;&#954;&#945;&#957;. &#917;&#960;&#943;&#963;&#951;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#954;&#940;&#957;&#949;&#953;
- &#945;&#960;&#959;&#954;&#949;&#961;&#956;&#940;&#964;&#969;&#963;&#951;, &#969;&#963;&#964;&#972;&#963;&#959; &#948;&#949;&#957; &#945;&#960;&#959;&#964;&#949;&#955;&#949;&#943; &#949;&#947;&#947;&#973;&#951;&#963;&#951; &#972;&#964;&#953; &#972;&#955;&#945; &#964;&#945; &#945;&#961;&#967;&#949;&#943;&#945; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
- &#941;&#967;&#959;&#965;&#957; &#956;&#949;&#964;&#945;&#954;&#953;&#957;&#951;&#952;&#949;&#943; &#949;&#954;&#964;&#972;&#962; &#964;&#951;&#962; &#960;&#949;&#961;&#953;&#959;&#967;&#942;&#962; &#960;&#959;&#965; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943;. &#931;&#949; &#954;&#940;&#952;&#949;
- &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#940;&#961;&#949;&#953; &#945;&#957;&#964;&#943;&#947;&#961;&#945;&#966;&#945; &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962; &#964;&#969;&#957; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#974;&#957; &#963;&#945;&#962;
- &#945;&#961;&#967;&#949;&#943;&#969;&#957;. &#920;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#964;&#959; &#949;&#955;&#941;&#947;&#958;&#949;&#964;&#949; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#940; &#960;&#961;&#953;&#957; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;.
- </p>
-
-
+
<p>&#924;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#953; &#964;&#951;&#957; &#965;&#960;&#959;&#955;&#949;&#953;&#960;&#972;&#956;&#949;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
- &#964;&#969;&#957; Windows &#956;&#949; &#945;&#957;&#959;&#953;&#967;&#964;&#972; &#954;&#965;&#945;&#957;&#972; &#954;&#945;&#953; &#964;&#951;&#962; &#949;&#960;&#953;&#954;&#949;&#943;&#956;&#949;&#957;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962; Mageia &#963;&#949; &#946;&#945;&#952;&#973;
+ &#964;&#969;&#957; Windows &#956;&#949; &#945;&#957;&#959;&#953;&#967;&#964;&#972; &#954;&#965;&#945;&#957;&#972; &#954;&#945;&#953; &#964;&#951;&#962; &#960;&#961;&#959;&#964;&#949;&#953;&#957;&#972;&#956;&#949;&#957;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962; Mageia &#963;&#949; &#946;&#945;&#952;&#973;
&#954;&#965;&#945;&#957;&#972; &#956;&#949; &#964;&#959; &#960;&#961;&#959;&#959;&#961;&#953;&#950;&#972;&#956;&#949;&#957;&#959; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#957;&#945; &#945;&#957;&#945;&#947;&#961;&#940;&#966;&#949;&#964;&#945;&#953; &#963;&#964;&#959; &#954;&#940;&#964;&#969; &#956;&#941;&#961;&#959;&#962;. &#904;&#967;&#949;&#964;&#949; &#964;&#951;
&#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#960;&#961;&#959;&#963;&#945;&#961;&#956;&#972;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#940; &#964;&#945; &#956;&#949;&#947;&#941;&#952;&#951; &#954;&#940;&#957;&#959;&#957;&#964;&#945;&#962; &#954;&#955;&#953;&#954; &#954;&#945;&#953; &#963;&#973;&#961;&#963;&#953;&#956;&#959; &#964;&#959;&#965;
- &#948;&#953;&#945;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; &#948;&#965;&#959; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;. &#916;&#949;&#943;&#964;&#949; &#963;&#964;&#959; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#963;&#964;&#953;&#947;&#956;&#953;&#972;&#964;&#965;&#960;&#959;.
+ &#948;&#953;&#945;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; &#948;&#965;&#959; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;. &#916;&#949;&#943;&#964;&#949; &#963;&#964;&#959; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#963;&#964;&#953;&#947;&#956;&#953;&#972;&#964;&#965;&#960;&#959;:
</p>
-
-
-
+
</li>
- </ul>
- </div>
- <p> </p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa12"></a>&#916;&#953;&#945;&#947;&#961;&#945;&#966;&#942; &#954;&#945;&#953; &#967;&#961;&#942;&#963;&#951; &#959;&#955;&#972;&#954;&#955;&#951;&#961;&#959;&#965; &#964;&#959;&#965; &#948;&#943;&#963;&#954;&#959;&#965;.
- </p>
+
+ <p><a name="doPartitionDisks-pa12"></a><span class="bold"><strong>&#916;&#953;&#945;&#947;&#961;&#945;&#966;&#942; &#954;&#945;&#953; &#967;&#961;&#942;&#963;&#951; &#959;&#955;&#972;&#954;&#955;&#951;&#961;&#959;&#965; &#964;&#959;&#965; &#948;&#943;&#963;&#954;&#959;&#965;</strong></span></p>
-
- <p><a name="doPartitionDisks-pa13"></a>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#959;&#955;&#972;&#954;&#955;&#951;&#961;&#959; &#964;&#959;&#957; &#948;&#943;&#963;&#954;&#959; &#947;&#953;&#945; &#964;&#951; Mageia.
+
+ <p><a name="doPartitionDisks-pa13"></a>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#959;&#955;&#972;&#954;&#955;&#951;&#961;&#959; &#964;&#959;&#957; &#948;&#943;&#963;&#954;&#959; &#947;&#953;&#945; &#964;&#951; Mageia
</p>
-
- <p><a name="doPartitionDisks-pa14"></a>&#928;&#961;&#959;&#963;&#959;&#967;&#942;! &#913;&#965;&#964;&#942; &#951; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945; &#952;&#945; &#948;&#953;&#945;&#947;&#961;&#940;&#968;&#949;&#953; &#927;&#923;&#913; &#964;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#963;&#964;&#959;&#957; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#959; &#963;&#954;&#955;&#951;&#961;&#972;
- &#948;&#943;&#963;&#954;&#959;. &#925;&#945; &#949;&#943;&#963;&#964;&#949; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#972;&#962;-&#942;!
- </p>
+
+ <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa14"></a>&#928;&#929;&#927;&#931;&#927;&#935;&#919;! &#913;&#965;&#964;&#972; &#952;&#945; &#948;&#953;&#945;&#947;&#961;&#940;&#968;&#949;&#953; &#927;&#923;&#913; &#964;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#963;&#964;&#959;&#957; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#959; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;. &#913;&#957;
+ &#963;&#954;&#959;&#960;&#949;&#973;&#949;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#941;&#957;&#945; &#964;&#956;&#942;&#956;&#945; &#964;&#959;&#965; &#948;&#943;&#963;&#954;&#959;&#965; &#947;&#953;&#945; &#940;&#955;&#955;&#959;&#957; &#963;&#954;&#959;&#960;&#972;, &#942; &#945;&#957;
+ &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949; &#942;&#948;&#951; &#954;&#940;&#960;&#959;&#953;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#963;&#964;&#959;&#957; &#948;&#943;&#963;&#954;&#959; &#964;&#945; &#959;&#960;&#959;&#943;&#945; &#948;&#949;&#957; &#952;&#945; &#952;&#941;&#955;&#945;&#964;&#949; &#957;&#945; &#967;&#940;&#963;&#949;&#964;&#949;,
+ &#964;&#972;&#964;&#949; &#956;&#951;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
-
- <p><a name="doPartitionDisks-pa15"></a>&#913;&#957; &#963;&#954;&#959;&#960;&#949;&#973;&#949;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#941;&#957;&#945; &#964;&#956;&#942;&#956;&#945; &#964;&#959;&#965; &#948;&#943;&#963;&#954;&#959;&#965; &#947;&#953;&#945; &#940;&#955;&#955;&#959;&#957; &#963;&#954;&#959;&#960;&#972;, &#942; &#945;&#957;
- &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949; &#942;&#948;&#951; &#954;&#940;&#960;&#959;&#953;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#945; &#963;&#964;&#959;&#957; &#948;&#943;&#963;&#954;&#959; &#964;&#945; &#959;&#960;&#959;&#943;&#945; &#948;&#949;&#957; &#952;&#945; &#952;&#941;&#955;&#945;&#964;&#949; &#957;&#945; &#967;&#940;&#963;&#949;&#964;&#949;,
- &#964;&#972;&#964;&#949; &#956;&#951;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
- </p>
+ <div class="important" title="&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa11"></a>&#931;&#951;&#956;&#949;&#953;&#974;&#963;&#964;&#949; &#972;&#964;&#953; &#945;&#965;&#964;&#972; &#952;&#945; &#960;&#961;&#959;&#954;&#945;&#955;&#941;&#963;&#949;&#953; &#964;&#951;&#957; &#963;&#965;&#961;&#961;&#943;&#954;&#957;&#969;&#963;&#951; &#964;&#959;&#965; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#964;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;
+ &#964;&#969;&#957; Windows, &#954;&#940;&#964;&#953; &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#953;&#945;&#964;&#961;&#941;&#967;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#959;&#957; &#954;&#943;&#957;&#948;&#965;&#957;&#959;. &#919; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &laquo;&#954;&#945;&#952;&#945;&#961;&#942;&raquo; &#948;&#951;&#955;&#945;&#948;&#942; &#964;&#945; Windows &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#959;&#965;&#957; &#954;&#955;&#949;&#943;&#963;&#949;&#953; &#963;&#969;&#963;&#964;&#940;
+ &#964;&#951;&#957; &#964;&#949;&#955;&#949;&#965;&#964;&#945;&#943;&#945; &#966;&#959;&#961;&#940; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#952;&#951;&#954;&#945;&#957;. &#917;&#960;&#943;&#963;&#951;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#954;&#940;&#957;&#949;&#953;
+ &#945;&#960;&#959;&#954;&#949;&#961;&#956;&#940;&#964;&#969;&#963;&#951;, &#969;&#963;&#964;&#972;&#963;&#959; &#948;&#949;&#957; &#945;&#960;&#959;&#964;&#949;&#955;&#949;&#943; &#949;&#947;&#947;&#973;&#951;&#963;&#951; &#972;&#964;&#953; &#972;&#955;&#945; &#964;&#945; &#945;&#961;&#967;&#949;&#943;&#945; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ &#941;&#967;&#959;&#965;&#957; &#956;&#949;&#964;&#945;&#954;&#953;&#957;&#951;&#952;&#949;&#943; &#949;&#954;&#964;&#972;&#962; &#964;&#951;&#962; &#960;&#949;&#961;&#953;&#959;&#967;&#942;&#962; &#960;&#959;&#965; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943;. &#931;&#949; &#954;&#940;&#952;&#949;
+ &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#940;&#961;&#949;&#953; &#945;&#957;&#964;&#943;&#947;&#961;&#945;&#966;&#945; &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962; &#964;&#969;&#957; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#974;&#957; &#963;&#945;&#962;
+ &#945;&#961;&#967;&#949;&#943;&#969;&#957;. &#920;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#964;&#959; &#949;&#955;&#941;&#947;&#958;&#949;&#964;&#949; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#940; &#960;&#961;&#953;&#957; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</li>
- </ul>
- </div>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa16"></a>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;
- </p>
+
+ <p><a name="doPartitionDisks-pa16"></a><span class="bold"><strong>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#948;&#943;&#963;&#954;&#969;&#957;</strong></span></p>
-
+
<p><a name="doPartitionDisks-pa17"></a>&#913;&#965;&#964;&#972; &#963;&#945;&#962; &#948;&#943;&#957;&#949;&#953; &#960;&#955;&#942;&#961;&#951; &#941;&#955;&#949;&#947;&#967;&#959; &#963;&#964;&#959;&#957; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#963;&#964;&#959;&#965;&#962; &#963;&#954;&#955;&#951;&#961;&#959;&#973;&#962;
&#963;&#945;&#962; &#948;&#943;&#963;&#954;&#959;&#965;&#962;.
</p>
-
+
</li>
</ul>
</div>
- <p><span class="bold"><strong>&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;:</strong></span></p>
- <p>&#932;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#952;&#945; &#948;&#953;&#945;&#956;&#959;&#953;&#961;&#940;&#963;&#949;&#953; &#964;&#959;&#957; &#954;&#959;&#953;&#957;&#972;&#967;&#961;&#951;&#963;&#964;&#959; &#967;&#974;&#961;&#959; &#946;&#940;&#963;&#949;&#953; &#964;&#969;&#957;
- &#945;&#954;&#972;&#955;&#959;&#965;&#952;&#969;&#957; &#954;&#945;&#957;&#972;&#957;&#969;&#957;:
+ <p>&#913;&#957; &#948;&#949;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#959;&#965;
+ &#948;&#943;&#963;&#954;&#959;&#965;</em></span>, &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#952;&#945; &#948;&#953;&#945;&#956;&#959;&#953;&#961;&#940;&#963;&#949;&#953; &#964;&#959;&#957; &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;
+ &#954;&#959;&#953;&#957;&#972;&#967;&#961;&#951;&#963;&#964;&#959; &#967;&#974;&#961;&#959; &#946;&#940;&#963;&#949;&#953; &#964;&#969;&#957; &#945;&#954;&#972;&#955;&#959;&#965;&#952;&#969;&#957; &#954;&#945;&#957;&#972;&#957;&#969;&#957;:
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>&#913;&#957; &#959; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#972;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#962; &#967;&#974;&#961;&#959;&#962; &#949;&#943;&#957;&#945;&#953; &#955;&#953;&#947;&#972;&#964;&#949;&#961;&#959;&#962; &#945;&#960;&#972; 50GB, &#952;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943;
- &#956;&#972;&#957;&#959; &#951; &#961;&#953;&#950;&#953;&#954;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &laquo;/&raquo; &#954;&#945;&#953; &#948;&#949;&#957; &#952;&#945;
- </p>
+ <p>&#913;&#957; &#959; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#972;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#962; &#967;&#974;&#961;&#959;&#962; &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#954;&#961;&#972;&#964;&#949;&#961;&#959;&#962; &#945;&#960;&#972; 50GB, &#964;&#972;&#964;&#949; &#952;&#945;
+ &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943; &#956;&#972;&#957;&#959; &#951; &#961;&#953;&#950;&#953;&#954;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="filename">/</code> (root).
+ </p>
+
</li>
<li class="listitem">
-
+
<p>&#913;&#957; &#959; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#940; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#962; &#967;&#974;&#961;&#959;&#962; &#949;&#943;&#957;&#945;&#953; &#956;&#949;&#947;&#945;&#955;&#973;&#964;&#949;&#961;&#959;&#962; &#945;&#960;&#972; 50 GB, &#964;&#972;&#964;&#949;
&#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#959;&#973;&#957;&#964;&#945;&#953; &#964;&#961;&#949;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;
</p>
-
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>6/19 &#964;&#959;&#965; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#959;&#973; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#949;&#954;&#967;&#969;&#961;&#959;&#973;&#957;&#964;&#945;&#953; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &laquo;/&raquo; &#956;&#949;
- &#956;&#941;&#947;&#953;&#963;&#964;&#959; &#967;&#974;&#961;&#959; 50 GB
- </p>
+ <p>6/19 &#964;&#959;&#965; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#959;&#973; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#949;&#954;&#967;&#969;&#961;&#959;&#973;&#957;&#964;&#945;&#953; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ <code class="filename">/</code> &#956;&#949; &#956;&#941;&#947;&#953;&#963;&#964;&#959; &#967;&#974;&#961;&#959; 50 GB
+ </p>
+
</li>
<li class="listitem">
-
- <p>1/19 &#964;&#959;&#965; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#959;&#973; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#949;&#954;&#967;&#969;&#961;&#959;&#973;&#957;&#964;&#945;&#953; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &laquo;swap&raquo; &#956;&#949;
- &#956;&#941;&#947;&#953;&#963;&#964;&#959; &#967;&#974;&#961;&#959; 4 GB
- </p>
+ <p>1/19 &#964;&#959;&#965; &#963;&#965;&#957;&#959;&#955;&#953;&#954;&#959;&#973; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#949;&#954;&#967;&#969;&#961;&#959;&#973;&#957;&#964;&#945;&#953; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ <code class="filename">swap</code> &#956;&#949; &#956;&#941;&#947;&#953;&#963;&#964;&#959; &#967;&#974;&#961;&#959; 4 GB
+ </p>
+
</li>
<li class="listitem">
-
- <p>&#954;&#945;&#953; &#964;&#959; &#965;&#960;&#972;&#955;&#959;&#953;&#960;&#959; (&#964;&#959;&#965;&#955;&#940;&#967;&#953;&#963;&#964;&#959;&#957; 12/19) &#949;&#954;&#967;&#969;&#961;&#949;&#943;&#964;&#945;&#953; &#963;&#964;&#959;&#957; &#960;&#961;&#959;&#963;&#969;&#960;&#953;&#954;&#972; &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#959;
- &laquo;/home&raquo;
- </p>
+ <p>o &#965;&#960;&#959;&#955;&#949;&#953;&#960;&#972;&#956;&#949;&#957;&#959;&#962; &#967;&#974;&#961;&#959;&#962; (&#964;&#959;&#965;&#955;&#940;&#967;&#953;&#963;&#964;&#959;&#957; 12/19) &#949;&#954;&#967;&#969;&#961;&#949;&#943;&#964;&#945;&#953; &#963;&#964;&#959;&#957; &#960;&#961;&#959;&#963;&#969;&#960;&#953;&#954;&#972; &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#959;
+ <code class="filename">/home</code></p>
+
</li>
</ul>
</div>
-
+
</li>
</ul>
</div>
- <p>&#913;&#965;&#964;&#972; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#960;&#969;&#962; &#945;&#960;&#972; &#964;&#945; 160 GB &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965; &#967;&#974;&#961;&#945; &#954;&#945;&#953; &#940;&#957;&#969;, &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#949;&#943; &#964;&#961;&#949;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;: 50 GB &#947;&#953;&#945; &#964;&#959; /, 4 GB &#947;&#953;&#945; &#964;&#959; swap
- &#954;&#945;&#953; &#964;&#959; &#965;&#960;&#972;&#955;&#959;&#953;&#960;&#959; &#947;&#953;&#945; &#964;&#959; /home.
+ <p>&#913;&#965;&#964;&#972; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#960;&#969;&#962; &#945;&#960;&#972; &#964;&#945; 160 GB &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#954;&#945;&#953; &#940;&#957;&#969;, &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#949;&#943; &#964;&#961;&#949;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;:
</p>
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#913;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; UEFI, &#964;&#959; ESP (EFI System Partition) &#952;&#945;
- &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#964;&#949;&#943; &#945;&#965;&#964;&#959;&#956;&#940;&#964;&#969;&#962;, &#951; &#945;&#957; &#948;&#949;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#952;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943;, &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#951;&#952;&#949;&#943;
- &#963;&#964;&#959; /boot/EFI. &#919; &laquo;&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951;&raquo; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#943;&#957;&#945;&#953; &#951; &#956;&#959;&#957;&#945;&#948;&#953;&#954;&#942; &#960;&#959;&#965; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#959;&#957;
- &#941;&#955;&#949;&#947;&#967;&#959; &#949;&#960;&#953;&#954;&#973;&#961;&#969;&#963;&#951;&#962;.
- </p>
-
- </td>
- </tr>
- </table>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>50 GB &#947;&#953;&#945; <code class="filename">/</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>4 GB &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="filename">swap</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#954;&#945;&#953; &#964;&#959; &#965;&#960;&#972;&#955;&#959;&#953;&#960;&#959; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="filename">/home</code></p>
+
+ </li>
+ </ul>
</div>
@@ -240,18 +254,26 @@
<tr>
<td align="left" valign="top">
- <p>&#913;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; &#941;&#957;&#945; &#960;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; (&#947;&#957;&#969;&#963;&#964;&#972; &#954;&#945;&#953; &#969;&#962; CSM &#942; BIOS) &#956;&#949; &#948;&#943;&#963;&#954;&#959; GPT,
- &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949; &#957;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; Bios &#945;&#957; &#948;&#949;&#957;
- &#965;&#966;&#943;&#963;&#964;&#945;&#964;&#945;&#953;. &#928;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; 1 MB &#967;&#969;&#961;&#943;&#962; &#963;&#951;&#956;&#949;&#943;&#959;
- &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &laquo;&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#948;&#943;&#963;&#954;&#959;&#965;&raquo; &#959;&#973;&#964;&#969;&#962;
- &#974;&#963;&#964;&#949; &#957;&#945; &#956;&#960;&#959;&#961;&#941;&#963;&#949;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#956;&#949; &#964;&#959;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951; &#972;&#960;&#969;&#962; &#954;&#940;&#952;&#949; &#940;&#955;&#955;&#951;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;, &#945;&#960;&#955;&#940; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; BIOS &#969;&#962; &#964;&#973;&#960;&#959; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;
- &#945;&#961;&#967;&#949;&#943;&#969;&#957;.
+ <p>&#913;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; UEFI, &#964;&#959; ESP (EFI System Partition) &#952;&#945;
+ &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#964;&#949;&#943; &#945;&#965;&#964;&#959;&#956;&#940;&#964;&#969;&#962;, &#951; &#945;&#957; &#948;&#949;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#952;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943;, &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#951;&#952;&#949;&#943;
+ &#963;&#964;&#959; <code class="filename">/boot/EFI</code>. &#919; &#949;&#960;&#953;&#955;&#959;&#947;&#942; <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#948;&#943;&#963;&#954;&#959;&#965;</em></span> &#949;&#943;&#957;&#945;&#953; &#951; &#956;&#959;&#957;&#945;&#948;&#953;&#954;&#942; &#960;&#959;&#965; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#959;&#957; &#941;&#955;&#949;&#947;&#967;&#959;
+ &#949;&#960;&#953;&#954;&#973;&#961;&#969;&#963;&#951;&#962;.
</p>
+ <p>&#913;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; &#941;&#957;&#945; &#960;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; (&#947;&#957;&#969;&#963;&#964;&#972; &#954;&#945;&#953; &#969;&#962; BIOS) &#956;&#949; &#948;&#943;&#963;&#954;&#959;
+ &#954;&#945;&#964;&#945;&#964;&#949;&#964;&#956;&#951;&#956;&#941;&#957;&#959; &#963;&#949; GPT, &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949; &#957;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ BIOS &#945;&#957; &#948;&#949;&#957; &#965;&#966;&#943;&#963;&#964;&#945;&#964;&#945;&#953; &#942;&#948;&#951;. &#928;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; 1 MB &#967;&#969;&#961;&#943;&#962; &#963;&#951;&#956;&#949;&#943;&#959;
+ &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ &#948;&#943;&#963;&#954;&#959;&#965;</em></span> &#959;&#973;&#964;&#969;&#962; &#974;&#963;&#964;&#949; &#957;&#945; &#956;&#960;&#959;&#961;&#941;&#963;&#949;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#956;&#949; &#964;&#959;&#957;
+ &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951; &#972;&#960;&#969;&#962; &#954;&#940;&#952;&#949; &#940;&#955;&#955;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;, &#945;&#960;&#955;&#940; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; <span class="quote">&amp;#x201C;<span class="quote">&#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; BIOS</span>&amp;#x201D;</span> &#969;&#962; &#964;&#973;&#960;&#959; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; &#945;&#961;&#967;&#949;&#943;&#969;&#957;.
+ </p>
+ <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;, &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="diskdrake.html" title="&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#948;&#943;&#963;&#954;&#969;&#957; &#956;&#949; &#964;&#959; DiskDrake">DiskDrake</a>.
+ </p>
</td>
</tr>
@@ -259,34 +281,53 @@
</div>
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+
+
+
+
+ <div class="important" title="&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
<p>&#924;&#949;&#961;&#953;&#954;&#959;&#943; &#957;&#941;&#959;&#953; &#959;&#948;&#951;&#947;&#959;&#943; &#963;&#954;&#955;&#951;&#961;&#974;&#957; &#948;&#943;&#963;&#954;&#969;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#964;&#974;&#961;&#945; 4096 byte &#955;&#959;&#947;&#953;&#954;&#959;&#973;&#962;
- &#964;&#959;&#956;&#949;&#943;&#962;, &#945;&#957;&#964;&#943; &#964;&#959;&#965; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;&#965; &#963;&#964;&#940;&#957;&#964;&#945;&#961; &#964;&#969;&#957; &#955;&#959;&#947;&#953;&#954;&#974;&#957; &#964;&#959;&#956;&#941;&#969;&#957; 512 byte. &#917;&#958;&#945;&#953;&#964;&#943;&#945;&#962;
+ &#964;&#959;&#956;&#949;&#943;&#962;, &#945;&#957;&#964;&#943; &#964;&#959;&#965; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;&#965; &#960;&#961;&#972;&#964;&#965;&#960;&#959;&#965; &#964;&#969;&#957; &#955;&#959;&#947;&#953;&#954;&#974;&#957; &#964;&#959;&#956;&#941;&#969;&#957; 512 byte. &#917;&#958;&#945;&#953;&#964;&#943;&#945;&#962;
&#964;&#951;&#962; &#941;&#955;&#955;&#949;&#953;&#968;&#951;&#962; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#965; &#965;&#955;&#953;&#954;&#959;&#973;, &#964;&#959; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#952;&#951;&#954;&#949;
- &#963;&#964;&#959;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951; &#948;&#949;&#957; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#964;&#951;&#954;&#949; &#963;&#949; &#964;&#941;&#964;&#959;&#953;&#959;&#965;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962;. &#917;&#960;&#943;&#963;&#951;&#962; &#956;&#949;&#961;&#953;&#954;&#959;&#943; &#959;&#948;&#951;&#947;&#959;&#943;
- ssd &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#964;&#974;&#961;&#945; &#964;&#956;&#942;&#956;&#945;&#964;&#945; &#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942;&#962; &#956;&#949;&#947;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#964;&#959;&#965;&#962; 1 MB. &#931;&#945;&#962;
- &#963;&#965;&#963;&#964;&#942;&#957;&#959;&#965;&#956;&#949; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#963;&#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#963;&#945;&#962; &#949;&#954; &#964;&#969;&#957; &#960;&#961;&#959;&#964;&#941;&#961;&#969;&#957;
- &#956;&#949; &#964;&#951; &#946;&#959;&#942;&#952;&#949;&#953;&#945; &#949;&#957;&#972;&#962; &#940;&#955;&#955;&#959;&#965; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#972;&#960;&#969;&#962; &#964;&#959; gparted, &#954;&#945;&#953; &#957;&#945;
- &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;:
+ &#963;&#964;&#959;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951; &#948;&#949;&#957; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#964;&#951;&#954;&#949; &#963;&#949; &#964;&#941;&#964;&#959;&#953;&#959;&#965;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962;.
</p>
- <p>"&#931;&#964;&#959;&#943;&#967;&#953;&#963;&#951; &#963;&#949;" "MiB"</p>
+ <p>&#924;&#949;&#961;&#953;&#954;&#959;&#943; &#959;&#948;&#951;&#947;&#959;&#943; SSD &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#957; &#964;&#974;&#961;&#945; &#964;&#956;&#942;&#956;&#945;&#964;&#945; &#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942;&#962; &#956;&#949;&#947;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#964;&#959;&#965; 1
+ MB. &#913;&#957; &#941;&#967;&#949;&#964;&#949; &#956;&#953;&#945; &#964;&#941;&#964;&#959;&#953;&#945; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#963;&#945;&#962; &#963;&#965;&#957;&#953;&#963;&#964;&#959;&#973;&#956;&#949; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#963;&#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#963;&#945;&#962; &#949;&#954; &#964;&#969;&#957; &#960;&#961;&#959;&#964;&#941;&#961;&#969;&#957; &#956;&#949; &#964;&#951; &#946;&#959;&#942;&#952;&#949;&#953;&#945; &#949;&#957;&#972;&#962; &#940;&#955;&#955;&#959;&#965; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965;
+ &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#972;&#960;&#969;&#962; &#964;&#959; gparted, &#954;&#945;&#953; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;:
+ </p>
- <p>"Free space preceding (MiB)" "2"</p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>&#931;&#964;&#959;&#943;&#967;&#953;&#963;&#951; &#963;&#949;</em></span> = MiB
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>&#917;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#962; &#967;&#974;&#961;&#959;&#962; &#960;&#959;&#965; &#960;&#961;&#959;&#951;&#947;&#949;&#943;&#964;&#945;&#953; (MiB)</em></span> = 2
+ </p>
+
+ </li>
+ </ul>
+ </div>
- <p>&#931;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#972;&#955;&#949;&#962; &#959;&#953; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#941;&#967;&#959;&#965;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943; &#956;&#949; &#941;&#957;&#945; &#950;&#965;&#947;&#972; &#945;&#961;&#953;&#952;&#956;&#972;
- Mb.
+ <p>&#931;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#972;&#964;&#953; &#972;&#955;&#949;&#962; &#959;&#953; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#941;&#967;&#959;&#965;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943; &#956;&#949; &#941;&#957;&#945; &#950;&#965;&#947;&#972;
+ &#945;&#961;&#953;&#952;&#956;&#972; mb.
</p>
</td>
diff --git a/el/exitInstall.html b/el/exitInstall.html
index b7759cc..6b0d5bf 100644
--- a/el/exitInstall.html
+++ b/el/exitInstall.html
@@ -29,14 +29,18 @@
+
+
+
+
<p><a name="exitInstall-pa1"></a>&#904;&#967;&#949;&#964;&#949; &#959;&#955;&#959;&#954;&#955;&#951;&#961;&#974;&#963;&#949;&#953; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; Mageia &#954;&#945;&#953; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949;
&#964;&#974;&#961;&#945; &#957;&#945; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962; &#956;&#949; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;.
</p>
- <p><a name="exitInstall-pa2"></a>&#924;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#964;&#959;&#965; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;
- &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957; &#963;&#945;&#962; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962; (&#945;&#957; &#941;&#967;&#949;&#964;&#949;
- &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945; &#945;&#960;&#972; &#941;&#957;&#945;).
+ <p><a name="exitInstall-pa2"></a>&#924;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#964;&#959;&#965; &#956;&#949;&#957;&#959;&#973;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#949; &#960;&#959;&#953;&#959; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; (&#945;&#957; &#941;&#967;&#949;&#964;&#949; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945;
+ &#945;&#960;&#972; &#941;&#957;&#945;) &#952;&#945; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;.
</p>
@@ -49,8 +53,8 @@
</p>
- <p><a name="exitInstall-pa5"></a>&#924;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#963;&#964;&#959; www.mageia.org &#945;&#957; &#941;&#967;&#949;&#964;&#949; &#948;&#953;&#940;&#966;&#959;&#961;&#949;&#962; &#945;&#960;&#959;&#961;&#943;&#949;&#962; &#942; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945;
- &#963;&#965;&#957;&#949;&#953;&#963;&#966;&#941;&#961;&#949;&#964;&#949; &#963;&#964;&#951; Mageia
+ <p><a name="exitInstall-pa5"></a>&#924;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#963;&#964;&#959; <a class="ulink" href="http://www.mageia.org/en/" target="_top">www.mageia.org/el/</a> &#945;&#957; &#941;&#967;&#949;&#964;&#949;
+ &#948;&#953;&#940;&#966;&#959;&#961;&#949;&#962; &#945;&#960;&#959;&#961;&#943;&#949;&#962; &#942; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#963;&#965;&#957;&#949;&#953;&#963;&#966;&#941;&#961;&#949;&#964;&#949; &#963;&#964;&#951; Mageia
</p>
</div>
diff --git a/el/formatPartitions.html b/el/formatPartitions.html
index d32c3c6..349b996 100644
--- a/el/formatPartitions.html
+++ b/el/formatPartitions.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="prev" href="diskdrake.html" title="&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#948;&#943;&#963;&#954;&#969;&#957; &#956;&#949; &#964;&#959; DiskDrake">
- <link rel="next" href="add_supplemental_media.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#949;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="add_supplemental_media.html" title="&#917;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#959; &#956;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -26,16 +26,15 @@
-
-
-
-
+
+
+
+
-
<p><a name="formatPartitions-pa1"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#960;&#959;&#953;&#949;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;. &#932;&#945;
@@ -45,11 +44,11 @@
<p><a name="formatPartitions-pa2"></a>&#931;&#965;&#957;&#942;&#952;&#969;&#962; &#964;&#959;&#965;&#955;&#940;&#967;&#953;&#963;&#964;&#959;&#957; &#959;&#953; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#941;&#967;&#949;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#964;&#959; DrakX, &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#957;&#945;
- &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957;
+ &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957;.
</p>
- <p><a name="formatPartitions-pa3"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#915;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</span> &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#953;&#962;
+ <p><a name="formatPartitions-pa3"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#915;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</em></span> &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#953;&#962;
&#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#947;&#953;&#945; &#964;&#953;&#962; &#959;&#960;&#959;&#943;&#949;&#962; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#947;&#943;&#957;&#949;&#953; &#941;&#955;&#949;&#947;&#967;&#959;&#962; &#947;&#953;&#945;
<span class="emphasis"><em>&#967;&#945;&#955;&#945;&#963;&#956;&#941;&#957;&#945; &#964;&#956;&#942;&#956;&#945;&#964;&#945;</em></span></p>
@@ -64,11 +63,10 @@
<td align="left" valign="top">
<p><a name="formatPartitions-pa4"></a>&#913;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#954;&#940;&#957;&#949;&#953; &#964;&#951;&#957; &#963;&#969;&#963;&#964;&#942; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</span>, &#958;&#945;&#957;&#940; &#963;&#964;&#959;
- <span class="guibutton">&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</span> &#954;&#945;&#953; &#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#963;&#964;&#959;
- <span class="guibutton">&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</span> &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#954;&#973;&#961;&#953;&#945; &#959;&#952;&#972;&#957;&#951;.
- &#931;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#953; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#963;&#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;
- &#963;&#945;&#962;.
+ &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</em></span>, &#958;&#945;&#957;&#940; &#963;&#964;&#959;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</em></span> &#954;&#945;&#953; &#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#963;&#964;&#959;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#959;</em></span> &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#954;&#973;&#961;&#953;&#945; &#959;&#952;&#972;&#957;&#951;, &#972;&#960;&#959;&#965;
+ &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; &#960;&#961;&#959;&#946;&#959;&#955;&#942; &#964;&#969;&#957; &#955;&#949;&#960;&#964;&#959;&#956;&#949;&#961;&#949;&#953;&#974;&#957; &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;.
</p>
</td>
@@ -78,7 +76,7 @@
<p><a name="formatPartitions-pa5"></a>&#908;&#964;&#945;&#957; &#949;&#943;&#963;&#964;&#949; &#946;&#941;&#946;&#945;&#953;&#959;&#962;-&#951; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
- <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span> &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;.
+ <span class="emphasis"><em>&#917;&#960;&#972;&#956;&#949;&#957;&#959;</em></span> &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;.
</p>
</div>
diff --git a/el/index.html b/el/index.html
index 3a59464..070dc38 100644
--- a/el/index.html
+++ b/el/index.html
@@ -27,16 +27,17 @@
<dd>
<dl>
<dt><span class="section"><a href="Select-and-use-ISOs.html#d5e19">&#917;&#953;&#963;&#945;&#947;&#969;&#947;&#942;</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e29">&#924;&#941;&#963;&#945;</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e119">&#923;&#942;&#968;&#951; &#954;&#945;&#953; &#941;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957;</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e146">&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#942; &#945;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#964;&#959;&#965; ISO</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e41">&#924;&#941;&#963;&#945;</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e129">&#923;&#942;&#968;&#951; &#954;&#945;&#953; &#941;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957;</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e168">&#917;&#947;&#947;&#961;&#945;&#966;&#942; &#942; &#945;&#960;&#959;&#964;&#973;&#960;&#969;&#963;&#951; &#964;&#959;&#965; ISO</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="installer.html">DrakX, &#959; &#959;&#948;&#951;&#947;&#972;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962; Mageia</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="installer.html#installationSteps">&#932;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;</a></span></dt>
- <dt><span class="section"><a href="installer.html#installationProblems">&#928;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#960;&#953;&#952;&#945;&#957;&#941;&#962; &#955;&#973;&#963;&#949;&#953;&#962;</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e260">&#932;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e282">&#919; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e331">&#928;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#960;&#953;&#952;&#945;&#957;&#941;&#962; &#955;&#973;&#963;&#949;&#953;&#962;</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="selectLanguage.html">&#928;&#945;&#961;&#945;&#954;&#945;&#955;&#974; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#960;&#959;&#965; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943;</a></span></dt>
@@ -50,40 +51,38 @@
<dt><span class="section"><a href="setupSCSI.html">&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; SCSI</a></span></dt>
<dt><span class="section"><a href="selectInstallClass.html">&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#942; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951;</a></span></dt>
<dt><span class="section"><a href="selectKeyboard.html">&#928;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#959;</a></span></dt>
- <dt><span class="section"><a href="doPartitionDisks.html">&#916;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;</a></span></dt>
+ <dt><span class="section"><a href="doPartitionDisks.html">&#928;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#959;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;</a></span></dt>
<dt><span class="section"><a href="ask_mntpoint_s.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#969;&#957; &#963;&#951;&#956;&#949;&#943;&#969;&#957; &#960;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;&#962;</a></span></dt>
<dt><span class="section"><a href="takeOverHdConfirm.html">&#917;&#960;&#953;&#946;&#949;&#946;&#945;&#943;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#954;&#955;&#951;&#961;&#959;&#973; &#948;&#943;&#963;&#954;&#959;&#965; &#960;&#961;&#959;&#962; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951;</a></span></dt>
<dt><span class="section"><a href="diskdrake.html">&#928;&#961;&#959;&#963;&#945;&#961;&#956;&#959;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#948;&#943;&#963;&#954;&#969;&#957; &#956;&#949; &#964;&#959; DiskDrake</a></span></dt>
<dt><span class="section"><a href="formatPartitions.html">&#924;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951;</a></span></dt>
- <dt><span class="section"><a href="add_supplemental_media.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#949;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;)</a></span></dt>
- <dt><span class="section"><a href="media_selection.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (Nonfree)</a></span></dt>
+ <dt><span class="section"><a href="add_supplemental_media.html">&#917;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#959; &#956;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;</a></span></dt>
+ <dt><span class="section"><a href="media_selection.html">&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#956;&#941;&#963;&#945;</a></span></dt>
<dt><span class="section"><a href="chooseDesktop.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;</a></span></dt>
<dt><span class="section"><a href="choosePackageGroups.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#959;&#956;&#940;&#948;&#945;&#962; &#960;&#945;&#954;&#941;&#964;&#969;&#957;</a></span></dt>
<dt><span class="section"><a href="minimal-install.html">&#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;</a></span></dt>
<dt><span class="section"><a href="choosePackagesTree.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;</a></span></dt>
- <dt><span class="section"><a href="addUser.html">&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;</a></span></dt>
+ <dt><span class="section"><a href="addUser.html">&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="addUser.html#root-password">&#927;&#961;&#943;&#963;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; (root):</a></span></dt>
<dt><span class="section"><a href="addUser.html#enterUser">&#917;&#953;&#963;&#945;&#947;&#969;&#947;&#942; &#949;&#957;&#972;&#962; &#967;&#961;&#942;&#963;&#964;&#951;</a></span></dt>
- <dt><span class="section"><a href="addUser.html#addUserAdvanced">&#928;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#951; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#942;&#963;&#964;&#951;</a></span></dt>
+ <dt><span class="section"><a href="addUser.html#addUserAdvanced">&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957; (&#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#951;)</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="configureX_chooser.html">&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; X, &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;</a></span></dt>
<dt><span class="section"><a href="configureX_card_list.html">&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945;&#957; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942; X (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;)</a></span></dt>
<dt><span class="section"><a href="configureX_monitor.html">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html">&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html">&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="setupBootloader.html#d5e871">&#916;&#953;&#949;&#960;&#945;&#966;&#942; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e895">&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#951;&#962; Mageia</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e909">&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#957;&#964;&#959;&#962; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e912">&#935;&#961;&#942;&#963;&#951; &#945;&#955;&#965;&#963;&#953;&#948;&#969;&#964;&#942;&#962; &#966;&#972;&#961;&#964;&#969;&#963;&#951;&#962;</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e926">&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962;</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e987">Grub2</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1002">&#929;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1092">&#902;&#955;&#955;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="setupBootloaderAddEntry.html">&#928;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#942; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#956;&#953;&#945;&#962; &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;&#962; &#963;&#964;&#959; &#956;&#949;&#957;&#959;&#973; &#917;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</a></span></dt>
- <dt><span class="section"><a href="misc-params.html">&#931;&#973;&#957;&#959;&#968;&#951; &#964;&#969;&#957; &#948;&#953;&#940;&#966;&#959;&#961;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;</a></span></dt>
+ <dt><span class="section"><a href="misc-params.html">&#931;&#973;&#957;&#959;&#968;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="misc-params.html#misc-params-system">&#928;&#945;&#961;&#940;&#956;&#949;&#964;&#961;&#959;&#953; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;</a></span></dt>
@@ -111,11 +110,6 @@
<dt><span class="section"><a href="installUpdates.html">&#917;&#957;&#951;&#956;&#949;&#961;&#974;&#963;&#949;&#953;&#962;</a></span></dt>
<dt><span class="section"><a href="exitInstall.html">&#931;&#965;&#947;&#967;&#945;&#961;&#951;&#964;&#942;&#961;&#953;&#945;</a></span></dt>
<dt><span class="section"><a href="uninstall-Mageia.html">&#913;&#960;&#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia </a></span></dt>
- <dd>
- <dl>
- <dt><span class="section"><a href="uninstall-Mageia.html#d5e1232">&#927;&#948;&#951;&#947;&#943;&#949;&#962;</a></span></dt>
- </dl>
- </dd>
</dl>
</div>
@@ -129,12 +123,6 @@
-
-
-
-
-
-
@@ -153,28 +141,38 @@
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -196,18 +194,17 @@
+
-
-
-
-
-
-
+
+
+
+
diff --git a/el/installUpdates.html b/el/installUpdates.html
index 2deaf80..9432c4e 100644
--- a/el/installUpdates.html
+++ b/el/installUpdates.html
@@ -26,29 +26,48 @@
-
-
-
-
-
- <p><a name="installUpdates-pa1"></a>&#913;&#960;&#972; &#964;&#951; &#963;&#964;&#953;&#947;&#956;&#942; &#960;&#959;&#965; &#954;&#965;&#954;&#955;&#959;&#966;&#972;&#961;&#951;&#963;&#949; &#951; &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962;
- <span class="application">Mageia</span>, &#956;&#949;&#961;&#953;&#954;&#940; &#960;&#945;&#954;&#941;&#964;&#945; &#941;&#967;&#959;&#965;&#957; &#949;&#957;&#951;&#956;&#949;&#961;&#969;&#952;&#949;&#943; &#942;
- &#946;&#949;&#955;&#964;&#953;&#969;&#952;&#949;&#943;.
- </p>
+
- <p><a name="installUpdates-pa2"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guilabel">&#957;&#945;&#953;</span> &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#955;&#942;&#968;&#951; &#954;&#945;&#953; &#957;&#945;
- &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#940; &#964;&#945; &#960;&#945;&#954;&#941;&#964;&#945;, &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guilabel">&#972;&#967;&#953;</span> &#945;&#957; &#948;&#949;&#957;
- &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#974;&#961;&#945;, &#942; &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#965;&#957;&#948;&#949;&#948;&#949;&#956;&#941;&#957;&#959;&#962;-&#951; &#963;&#964;&#959;
- &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959;.
- </p>
- <p><a name="installUpdates-pa3"></a>&#904;&#960;&#949;&#953;&#964;&#945; &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span> &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;
+
+
+
+
+
+
+ <p><a name="installUpdates-pa1"></a>&#913;&#960;&#972; &#964;&#951; &#963;&#964;&#953;&#947;&#956;&#942; &#960;&#959;&#965; &#954;&#965;&#954;&#955;&#959;&#966;&#972;&#961;&#951;&#963;&#949; &#951; &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962; Mageia, &#956;&#949;&#961;&#953;&#954;&#940;
+ &#960;&#945;&#954;&#941;&#964;&#945; &#941;&#967;&#959;&#965;&#957; &#949;&#957;&#951;&#956;&#949;&#961;&#969;&#952;&#949;&#943; &#942; &#946;&#949;&#955;&#964;&#953;&#969;&#952;&#949;&#943;.
</p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa2"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="emphasis"><em>&#925;&#945;&#953;</em></span> &#945;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#955;&#942;&#968;&#951; &#954;&#945;&#953;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="emphasis"><em>&#908;&#967;&#953;</em></span> &#945;&#957; &#948;&#949;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;
+ &#964;&#974;&#961;&#945;, &#942; &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#965;&#957;&#948;&#949;&#948;&#949;&#956;&#941;&#957;&#959;&#962;-&#951; &#963;&#964;&#959; &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa3"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#917;&#960;&#972;&#956;&#949;&#957;&#959;</em></span> &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949;
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/el/installer.html b/el/installer.html
index 5fcbc76..1dbaca6 100644
--- a/el/installer.html
+++ b/el/installer.html
@@ -37,226 +37,26 @@
- <p>&#917;&#943;&#964;&#949; &#949;&#943;&#963;&#964;&#949; &#957;&#941;&#959;&#962; &#963;&#964;&#959; GNU-Linux &#949;&#943;&#964;&#949; &#949;&#943;&#963;&#964;&#949; &#941;&#957;&#945;&#962; &#941;&#956;&#960;&#949;&#953;&#961;&#959;&#962; &#967;&#961;&#942;&#963;&#964;&#951;&#962;, &#959; &#959;&#948;&#951;&#947;&#972;&#962;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962; Mageia &#941;&#967;&#949;&#953; &#963;&#967;&#949;&#948;&#953;&#945;&#963;&#964;&#949;&#943; &#947;&#953;&#945; &#957;&#945; &#963;&#945;&#962; &#946;&#959;&#951;&#952;&#942;&#963;&#949;&#953; &#957;&#945;
- &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#942; &#963;&#945;&#962; &#942; &#964;&#951;&#957; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#942; &#963;&#945;&#962; &#972;&#963;&#959; &#964;&#959; &#948;&#965;&#957;&#945;&#964;&#972;&#957;
- &#949;&#965;&#954;&#959;&#955;&#972;&#964;&#949;&#961;&#945;.
- </p>
-
-
-
-
-
- <p>&#932;&#959; &#956;&#949;&#957;&#959;&#973; &#964;&#951;&#962; &#945;&#961;&#967;&#953;&#954;&#942;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#941;&#967;&#949;&#953; &#948;&#953;&#940;&#966;&#959;&#961;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;, &#951; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#952;&#945;
- &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#953; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;, &#954;&#945;&#953; &#964;&#965;&#960;&#953;&#954;&#940; &#949;&#943;&#957;&#945;&#953; &#945;&#965;&#964;&#972; &#960;&#959;&#965; &#967;&#961;&#949;&#953;&#945;&#950;&#972;&#963;&#945;&#963;&#964;&#949;.
- </p>
- <p>&#913;&#960;&#972; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951;, &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#972; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#956;&#949;&#961;&#953;&#954;&#941;&#962; &#960;&#961;&#959;&#963;&#969;&#960;&#953;&#954;&#941;&#962;
- &#960;&#961;&#959;&#964;&#953;&#956;&#942;&#963;&#949;&#953;&#962;:
- </p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p>&#919; &#947;&#955;&#974;&#963;&#963;&#945; (&#947;&#953;&#945; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#972;&#957;&#959;, &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#942; &#945;&#960;&#972; &#964;&#951;
- &#947;&#955;&#974;&#963;&#963;&#945; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;) &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; F2 (&#956;&#972;&#957;&#959; &#963;&#949; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#960;&#945;&#955;&#945;&#953;&#959;&#973;
- &#964;&#973;&#960;&#959;&#965;)
- </p>
-
-
- <p></p>
-
-
-
-
- <p>&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#964;&#949; &#964;&#945; &#946;&#949;&#955;&#940;&#954;&#953;&#945; &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#954;&#945;&#953; &#960;&#953;&#941;&#963;&#964;&#949; Enter.</p>
-
-
- <p>&#917;&#948;&#974; &#966;&#945;&#943;&#957;&#949;&#964;&#945;&#953; &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;, &#951; &#959;&#952;&#972;&#957;&#951; &#965;&#960;&#959;&#948;&#959;&#967;&#942;&#962; &#963;&#964;&#945; &#947;&#945;&#955;&#955;&#953;&#954;&#940; &#956;&#949; Live
- CD/DVD. &#931;&#951;&#956;&#949;&#953;&#974;&#963;&#964;&#949; &#972;&#964;&#953; &#964;&#959; &#956;&#949;&#957;&#959;&#973; &#964;&#959;&#965; Live CD/DVD &#948;&#949;&#957; &#960;&#961;&#959;&#964;&#949;&#943;&#957;&#949;&#953;:
- <span class="guilabel">&#916;&#953;&#940;&#963;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;</span>, <span class="guilabel">&#904;&#955;&#949;&#947;&#967;&#959;
- &#956;&#957;&#942;&#956;&#951;&#962;</span> &#954;&#945;&#953; &#964;&#959; <span class="guilabel">&#917;&#961;&#947;&#945;&#955;&#949;&#943;&#959; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#959;&#973; &#965;&#955;&#953;&#954;&#959;&#973;</span>.
- </p>
-
-
- <p></p>
-
-
-
-
- <p></p>
-
- </li>
- <li class="listitem">
-
- <p>&#913;&#955;&#955;&#945;&#947;&#942; &#964;&#951;&#962; &#945;&#957;&#940;&#955;&#965;&#963;&#951;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#960;&#953;&#941;&#950;&#959;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; F3 (&#956;&#972;&#957;&#959; &#963;&#949; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;
- &#960;&#945;&#955;&#945;&#953;&#959;&#973; &#964;&#973;&#960;&#959;&#965;).
- </p>
-
-
-
- </li>
- <li class="listitem">
-
- <p>&#928;&#961;&#959;&#963;&#952;&#941;&#963;&#964;&#949; &#956;&#949;&#961;&#953;&#954;&#941;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#965;&#961;&#942;&#957;&#945; &#960;&#953;&#941;&#950;&#959;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; <span class="bold"><strong>F6</strong></span> &#947;&#953;&#945; &#964;&#951; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#960;&#945;&#955;&#945;&#953;&#959;&#973; &#964;&#973;&#960;&#959;&#965; &#942; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959;
- <span class="bold"><strong>e</strong></span> &#947;&#953;&#945; &#964;&#951; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; UEFI.
- </p>
-
-
- <p>&#913;&#957; &#945;&#960;&#959;&#964;&#973;&#967;&#949;&#953; &#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#964;&#972;&#964;&#949; &#943;&#963;&#969;&#962; &#957;&#945; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943; &#957;&#945; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949; &#958;&#945;&#957;&#940;
- &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#956;&#953;&#945; &#945;&#960;&#972; &#964;&#953;&#962; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;. &#932;&#959; &#960;&#940;&#964;&#951;&#956;&#945; &#964;&#959;&#965; &#960;&#955;&#942;&#954;&#964;&#961;&#959;&#965; F6
- &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#953; &#956;&#953;&#945; &#957;&#941;&#945; &#947;&#961;&#945;&#956;&#956;&#942; &#956;&#949; &#964;&#953;&#962; <span class="guilabel">&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#965;&#961;&#942;&#957;&#945;</span> &#954;&#945;&#953;
- &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#964;&#941;&#963;&#963;&#949;&#961;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;:
- </p>
-
-
- <p>- &#928;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951;, &#948;&#949;&#957; &#945;&#955;&#955;&#940;&#950;&#949;&#953; &#954;&#945;&#956;&#953;&#940; &#945;&#960;&#972; &#964;&#953;&#962; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;.</p>
-
-
- <p>- &#913;&#963;&#966;&#945;&#955;&#941;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962;, &#948;&#943;&#957;&#949;&#964;&#945;&#953; &#960;&#961;&#959;&#964;&#949;&#961;&#945;&#953;&#972;&#964;&#951;&#964;&#945; &#963;&#964;&#953;&#962; &#949;&#960;&#953;&#963;&#966;&#945;&#955;&#941;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#949; &#946;&#940;&#961;&#959;&#962;
- &#964;&#951;&#962; &#945;&#960;&#972;&#948;&#959;&#963;&#951;&#962;.
- </p>
-
-
- <p>- &#935;&#969;&#961;&#943;&#962; ACPI : Advanced Configuration and Power Interface, &#951; &#949;&#958;&#949;&#955;&#953;&#947;&#956;&#941;&#957;&#951;
- &#948;&#953;&#949;&#960;&#945;&#966;&#942; &#961;&#973;&#952;&#956;&#953;&#963;&#951;&#962; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945;&#962; &#948;&#949;&#957; &#952;&#945; &#955;&#951;&#966;&#952;&#949;&#943; &#965;&#960;&#972;&#968;&#951;.
- </p>
-
-
- <p>- &#935;&#969;&#961;&#943;&#962; &#964;&#959;&#960;&#953;&#954;&#972; APIC (Local Advanced Programmable Interrupt Controller), &#959;
- &#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#959;&#962; &#960;&#961;&#959;&#947;&#961;&#945;&#956;&#956;&#945;&#964;&#953;&#950;&#972;&#956;&#949;&#957;&#959;&#962; &#949;&#955;&#949;&#947;&#954;&#964;&#942;&#962; &#948;&#953;&#945;&#954;&#959;&#960;&#974;&#957; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; &#945;&#966;&#959;&#961;&#940; &#964;&#953;&#962;
- &#948;&#953;&#945;&#954;&#959;&#960;&#941;&#962; &#964;&#951;&#962; CPU, &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#945;&#957; &#963;&#945;&#962; &#950;&#951;&#964;&#951;&#952;&#949;&#943;.
- </p>
-
-
- <p>&#908;&#964;&#945;&#957; &#949;&#960;&#953;&#955;&#941;&#947;&#949;&#964;&#949; &#956;&#953;&#945; &#945;&#960;&#972; &#945;&#965;&#964;&#941;&#962; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#967;&#969;&#961;&#942;&#963;&#949;&#953;&#962;, &#964;&#961;&#959;&#960;&#959;&#960;&#959;&#953;&#959;&#973;&#957;&#964;&#945;&#953; &#959;&#953; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;
- &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#960;&#959;&#965; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#959;&#957;&#964;&#945;&#953; &#963;&#964;&#951; &#947;&#961;&#945;&#956;&#956;&#942; <span class="guilabel">&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962;
- &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</span>.
- </p>
-
-
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#931;&#949; &#956;&#949;&#961;&#953;&#954;&#941;&#962; &#949;&#954;&#948;&#972;&#963;&#949;&#953;&#962; &#964;&#951;&#962; Mageia, &#956;&#960;&#959;&#961;&#949;&#943; &#959;&#953; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#956;&#949; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; F6 &#957;&#945; &#956;&#951;&#957;
- &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#959;&#973;&#957; &#963;&#964;&#951;&#957; &#947;&#961;&#945;&#956;&#956;&#942; <span class="guilabel">&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</span>&middot; &#969;&#963;&#964;&#972;&#963;&#959;,
- &#955;&#945;&#956;&#946;&#940;&#957;&#959;&#957;&#964;&#945;&#953; &#954;&#945;&#957;&#959;&#957;&#953;&#954;&#940; &#965;&#960;&#972;&#968;&#951;.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
-
- </li>
- <li class="listitem">
-
- <p>&#928;&#961;&#959;&#963;&#952;&#941;&#963;&#964;&#949; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#965;&#961;&#942;&#957;&#945; &#960;&#953;&#941;&#950;&#959;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; F1 (&#956;&#972;&#957;&#959; &#963;&#949;
- &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#960;&#945;&#955;&#945;&#953;&#959;&#973; &#964;&#973;&#960;&#959;&#965;).
- </p>
-
-
- <p>&#928;&#953;&#941;&#950;&#959;&#957;&#964;&#945;&#962; F1 &#945;&#957;&#959;&#943;&#947;&#949;&#953; &#941;&#957;&#945; &#957;&#941;&#959; &#960;&#945;&#961;&#940;&#952;&#965;&#961;&#959; &#956;&#949; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962;
- &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#956;&#953;&#945; &#956;&#949; &#964;&#945; &#946;&#949;&#955;&#940;&#954;&#953;&#945; &#954;&#945;&#953; &#960;&#945;&#964;&#942;&#963;&#964;&#949; Enter &#947;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962;
- &#955;&#949;&#960;&#964;&#959;&#956;&#941;&#961;&#949;&#953;&#949;&#962; &#942; &#960;&#953;&#941;&#963;&#964;&#949; Esc &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#965;&#960;&#959;&#948;&#959;&#967;&#942;&#962;.
- </p>
-
-
- <p></p>
-
-
-
-
- <p></p>
-
-
- <p>&#919; &#960;&#961;&#959;&#946;&#959;&#955;&#942; &#955;&#949;&#960;&#964;&#959;&#956;&#949;&#961;&#949;&#953;&#974;&#957; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#953;&#954;&#972;&#957;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;. &#928;&#945;&#964;&#942;&#963;&#964;&#949; Esc &#942; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949;
- <span class="guilabel">&#917;&#960;&#953;&#963;&#964;&#961;&#959;&#966;&#942; &#963;&#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</span> &#947;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949;
- &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#974;&#957;. &#913;&#965;&#964;&#941;&#962; &#959;&#953; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#956;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#960;&#961;&#959;&#963;&#964;&#949;&#952;&#959;&#973;&#957; &#954;&#945;&#953; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;
- &#963;&#964;&#951; &#947;&#961;&#945;&#956;&#956;&#942; <span class="guilabel">&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</span>.
- </p>
-
-
-
-
- <p></p>
-
-
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#919; &#914;&#959;&#942;&#952;&#949;&#953;&#945; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#956;&#949;&#964;&#945;&#966;&#961;&#945;&#963;&#956;&#941;&#957;&#951; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#956;&#949; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; F2.</p>
-
- </td>
- </tr>
- </table>
- </div>
-
- </li>
- </ul>
- </div>
-
-
- <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#965;&#961;&#942;&#957;&#945; &#963;&#949; &#960;&#945;&#955;&#945;&#953;&#940;
- &#954;&#945;&#953; UEFI &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945;, &#948;&#949;&#943;&#964;&#949;: <a class="ulink" href="https://wiki.mageia.org/en/How_to_set_up_kernel_options" target="_top">https://wiki.mageia.org/en/How_to_set_up_kernel_options</a></p>
-
-
- <p>&#913;&#965;&#964;&#942; &#949;&#943;&#957;&#945;&#953; &#951; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#972;&#964;&#945;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; &#941;&#957;&#945; CD
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#949;&#957;&#963;&#973;&#961;&#956;&#945;&#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965; (&#949;&#953;&#954;&#972;&#957;&#949;&#962; Boot.iso &#942; Boot-Nonfree.iso):
+ <p>&#917;&#943;&#964;&#949; &#949;&#943;&#963;&#964;&#949; &#957;&#941;&#959;&#962; &#963;&#964;&#959; GNU-Linux &#949;&#943;&#964;&#949; &#949;&#943;&#963;&#964;&#949; &#941;&#957;&#945;&#962; &#941;&#956;&#960;&#949;&#953;&#961;&#959;&#962; &#967;&#961;&#942;&#963;&#964;&#951;&#962;, &#959; &#959;&#948;&#951;&#947;&#972;&#962;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962; Mageia &#941;&#967;&#949;&#953; &#963;&#967;&#949;&#948;&#953;&#945;&#963;&#964;&#949;&#943; &#947;&#953;&#945; &#957;&#945; &#963;&#945;&#962; &#946;&#959;&#951;&#952;&#942;&#963;&#949;&#953; &#957;&#945;
+ &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#942; &#963;&#945;&#962; &#942; &#964;&#951;&#957; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#942; &#963;&#945;&#962; &#972;&#963;&#959; &#964;&#959; &#948;&#965;&#957;&#945;&#964;&#972;&#957;
+ &#949;&#965;&#954;&#959;&#955;&#972;&#964;&#949;&#961;&#945;.
</p>
- <p>&#916;&#949;&#957; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#951;&#957; &#945;&#955;&#955;&#945;&#947;&#942; &#964;&#951;&#962; &#947;&#955;&#974;&#963;&#963;&#945;&#962;, &#959;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#960;&#949;&#961;&#953;&#947;&#961;&#940;&#966;&#959;&#957;&#964;&#945;&#953;
- &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951;. &#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#951; &#967;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; CD
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#949;&#957;&#963;&#973;&#961;&#956;&#945;&#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965;, &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="ulink" href="https://wiki.mageia.org/en/Boot.iso_install" target="_top">Wiki &#964;&#951;&#962;
- Mageia</a></p>
-
-
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#919; &#948;&#953;&#940;&#964;&#945;&#958;&#951; &#964;&#959;&#965; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#949;&#943;&#957;&#945;&#953; &#951; &#945;&#956;&#949;&#961;&#953;&#954;&#945;&#957;&#953;&#954;&#942;.</p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
-
-
<div class="section" title="&#932;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="installationSteps"></a>&#932;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
+ <h3 class="title"><a name="d5e260"></a>&#932;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
</h3>
</div>
</div>
@@ -264,41 +64,55 @@
- <p>&#919; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#967;&#969;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#963;&#949; &#956;&#953;&#945; &#963;&#949;&#953;&#961;&#940; &#946;&#951;&#956;&#940;&#964;&#969;&#957;, &#964;&#945;
- &#959;&#960;&#959;&#943;&#945; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#945;&#961;&#945;&#954;&#959;&#955;&#959;&#965;&#952;&#942;&#963;&#949;&#964;&#949; &#963;&#964;&#959;&#957; &#960;&#955;&#949;&#965;&#961;&#953;&#954;&#972; &#960;&#943;&#957;&#945;&#954;&#945; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;.
- </p>
-
-
- <p>&#922;&#940;&#952;&#949; &#946;&#942;&#956;&#945; &#941;&#967;&#949;&#953; &#956;&#953;&#945; &#942; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#959;&#952;&#972;&#957;&#949;&#962; &#959;&#953; &#959;&#960;&#959;&#943;&#949;&#962; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#953;&#945;&#952;&#941;&#964;&#959;&#965;&#957;
- &#954;&#959;&#965;&#956;&#960;&#953;&#940; &#947;&#953;&#945; <span class="guibutton">&#928;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#949;&#962;</span> &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962;, &#964;&#953;&#962; &#959;&#960;&#959;&#943;&#949;&#962;
- &#963;&#965;&#957;&#942;&#952;&#969;&#962; &#948;&#949;&#957; &#952;&#945; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;.
- </p>
-
-
- <p>&#927;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#959;&#952;&#972;&#957;&#949;&#962; &#948;&#953;&#945;&#952;&#941;&#964;&#959;&#965;&#957; &#954;&#959;&#965;&#956;&#960;&#953;&#940; <span class="guibutton">&#946;&#959;&#942;&#952;&#949;&#953;&#945;&#962;</span>
- &#972;&#960;&#959;&#965; &#952;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#959; &#964;&#961;&#941;&#967;&#959;&#957; &#946;&#942;&#956;&#945;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#919; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#967;&#969;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#963;&#949; &#956;&#953;&#945; &#963;&#949;&#953;&#961;&#940; &#946;&#951;&#956;&#940;&#964;&#969;&#957;, &#964;&#945;
+ &#959;&#960;&#959;&#943;&#945; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#945;&#961;&#945;&#954;&#959;&#955;&#959;&#965;&#952;&#942;&#963;&#949;&#964;&#949; &#963;&#964;&#959;&#957; &#960;&#955;&#949;&#965;&#961;&#953;&#954;&#972; &#960;&#943;&#957;&#945;&#954;&#945; &#945;&#961;&#953;&#963;&#964;&#949;&#961;&#940; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#922;&#940;&#952;&#949; &#946;&#942;&#956;&#945; &#941;&#967;&#949;&#953; &#956;&#953;&#945; &#942; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#959;&#952;&#972;&#957;&#949;&#962; &#959;&#953; &#959;&#960;&#959;&#943;&#949;&#962; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#948;&#953;&#945;&#952;&#941;&#964;&#959;&#965;&#957;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#949;&#962;</em></span> &#949;&#957;&#972;&#964;&#951;&#964;&#949;&#962;, &#956;&#949; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957;, &#960;&#959;&#965; &#948;&#949;&#957; &#945;&#960;&#945;&#953;&#964;&#959;&#973;&#957;&#964;&#945;&#953;
+ &#963;&#965;&#967;&#957;&#940;, &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#927;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#959;&#952;&#972;&#957;&#949;&#962; &#948;&#953;&#945;&#952;&#941;&#964;&#959;&#965;&#957; &#954;&#959;&#965;&#956;&#960;&#953;&#940; <span class="emphasis"><em>&#946;&#959;&#942;&#952;&#949;&#953;&#945;&#962;</em></span> &#972;&#960;&#959;&#965;
+ &#952;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#963;&#967;&#949;&#964;&#953;&#954;&#940; &#956;&#949; &#964;&#959; &#964;&#961;&#941;&#967;&#959;&#957; &#946;&#942;&#956;&#945;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="caution" title="&#928;&#961;&#959;&#963;&#959;&#967;&#942;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#963;&#959;&#967;&#942;]" src="caution.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>&#913;&#957; &#954;&#940;&#960;&#959;&#953;&#945; &#963;&#964;&#953;&#947;&#956;&#942; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#945;&#960;&#959;&#966;&#945;&#963;&#943;&#963;&#949;&#964;&#949; &#957;&#945; &#948;&#953;&#945;&#954;&#972;&#968;&#949;&#964;&#949; &#964;&#951;&#957;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#951; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#949;&#943;&#957;&#945;&#953; &#949;&#966;&#953;&#954;&#964;&#942;, &#945;&#955;&#955;&#940; &#963;&#954;&#949;&#966;&#964;&#949;&#943;&#964;&#949; &#960;&#959;&#955;&#973; &#954;&#945;&#955;&#940; &#960;&#961;&#953;&#957; &#964;&#959;
- &#954;&#940;&#957;&#949;&#964;&#949;. &#913;&#960;&#972; &#964;&#951; &#963;&#964;&#953;&#947;&#956;&#942; &#960;&#959;&#965; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#941;&#967;&#949;&#953; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#942; &#941;&#967;&#949;&#953; &#958;&#949;&#954;&#953;&#957;&#942;&#963;&#949;&#953; &#951;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#969;&#957; &#949;&#957;&#951;&#956;&#949;&#961;&#974;&#963;&#949;&#969;&#957;, &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#960;&#953;&#945; &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945;
- &#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#960;&#959;&#965; &#942;&#964;&#945;&#957; &#960;&#961;&#953;&#957; &#954;&#945;&#953; &#951; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#952;&#945; &#956;&#960;&#959;&#961;&#959;&#973;&#963;&#949; &#954;&#940;&#955;&#955;&#953;&#963;&#964;&#945; &#957;&#945; &#963;&#945;&#962;
- &#945;&#966;&#942;&#963;&#949;&#953; &#956;&#949; &#941;&#957;&#945; &#956;&#951; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945;. &#913;&#957; &#960;&#945;&#961;&#972;&#955;&#945; &#945;&#965;&#964;&#940; &#949;&#943;&#963;&#964;&#949; &#945;&#960;&#972;&#955;&#965;&#964;&#945; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;
- &#972;&#964;&#953; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#956;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#963;&#949; &#941;&#957;&#945; &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#954;&#972; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; &#964;&#945;
- &#964;&#961;&#943;&#945; &#960;&#955;&#942;&#954;&#964;&#961;&#945; <span class="guibutton">Alt Ctrl F2</span> &#964;&#945;&#965;&#964;&#972;&#967;&#961;&#959;&#957;&#945;. &#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;,
- &#960;&#945;&#964;&#942;&#963;&#964;&#949; <span class="guibutton">Alt Ctrl Delete</span> &#964;&#945;&#965;&#964;&#972;&#967;&#961;&#959;&#957;&#945; &#947;&#953;&#945; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949;
- &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
+ <p>&#913;&#957; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#945;&#960;&#959;&#966;&#945;&#963;&#943;&#963;&#949;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#945;&#955;&#949;&#943;&#968;&#949;&#964;&#949;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949;
+ &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#945;&#955;&#955;&#940; &#963;&#954;&#949;&#966;&#964;&#949;&#943;&#964;&#949; &#964;&#959; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#945;. &#924;&#949;&#964;&#940; &#964;&#959; &#960;&#941;&#961;&#945;&#962; &#964;&#951;&#962; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951;&#962; &#956;&#943;&#945;&#962;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962; &#942; &#964;&#951;&#962; &#941;&#957;&#945;&#961;&#958;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;, &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#963;&#945;&#962; &#948;&#949;&#957;
+ &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#960;&#953;&#945; &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945; &#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#956;&#949; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959;&#957;
+ &#945;&#966;&#942;&#963;&#949;&#964;&#949; &#963;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#949;&#954;&#964;&#972;&#962; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;&#962;.
+ </p>
+
+
+ <p>&#913;&#957; &#960;&#945;&#961;' &#972;&#955;&#945; &#945;&#965;&#964;&#940; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#972;&#964;&#953; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#964;&#959; &#960;&#961;&#940;&#958;&#949;&#964;&#949;, &#956;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#963;&#949; &#941;&#957;&#945;
+ &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#954;&#972; &#960;&#953;&#941;&#950;&#959;&#957;&#964;&#945;&#962; &#964;&#945; &#960;&#955;&#942;&#954;&#964;&#961;&#945;
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span> &#964;&#945;&#965;&#964;&#972;&#967;&#961;&#959;&#957;&#945;. &#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;, &#960;&#953;&#941;&#963;&#964;&#949;
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Del</strong></span> &#964;&#945;&#965;&#964;&#972;&#967;&#961;&#959;&#957;&#945; &#947;&#953;&#945; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
</p>
</td>
@@ -309,11 +123,158 @@
</div>
+ <div class="section" title="&#919; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e282"></a>&#919; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>&#919; &#959;&#952;&#972;&#957;&#951; &#960;&#959;&#965; &#946;&#955;&#941;&#960;&#949;&#964;&#949; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#945;&#960;&#972; &#941;&#957;&#945; &#950;&#969;&#957;&#964;&#945;&#957;&#972; &#956;&#941;&#963;&#959; &#949;&#958;&#945;&#961;&#964;&#940;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#959;
+ &#945;&#957; &#951; &#956;&#951;&#964;&#961;&#953;&#954;&#942; &#954;&#940;&#961;&#964;&#945; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#953; &#941;&#957;&#945;&#957; &#960;&#945;&#955;&#945;&#953;&#959;&#973; &#964;&#973;&#960;&#959;&#965; BIOS &#942; &#964;&#973;&#960;&#959;&#965; UEFI
+ </p>
+
+
+ <p>&#932;&#959; &#956;&#949;&#957;&#959;&#973; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#941;&#967;&#949;&#953; &#948;&#953;&#940;&#966;&#959;&#961;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;, &#951; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951;
+ &#952;&#945; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#953; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;, &#954;&#945;&#953; &#964;&#965;&#960;&#953;&#954;&#940; &#949;&#943;&#957;&#945;&#953; &#945;&#965;&#964;&#972; &#960;&#959;&#965; &#967;&#961;&#949;&#953;&#945;&#950;&#972;&#963;&#945;&#963;&#964;&#949;.
+ </p>
+
+
+ <div class="section" title="&#928;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; (BIOS)">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e286"></a>&#928;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; (BIOS)
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+ <div class="itemizedlist" title="&#924;&#949;&#957;&#959;&#973;">
+ <p class="title"><b>&#924;&#949;&#957;&#959;&#973;</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia</strong></span></p>
+
+
+ <p>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia &#963;&#964;&#959;&#957; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;. &#913;&#965;&#964;&#942; &#949;&#943;&#957;&#945;&#953; &#951; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951;
+ &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#954;&#945;&#953; &#952;&#945; &#949;&#954;&#954;&#953;&#957;&#951;&#952;&#949;&#943; &#945;&#965;&#964;&#959;&#956;&#940;&#964;&#969;&#962; &#956;&#949;&#964;&#940; &#945;&#960;&#972; &#955;&#943;&#947;&#959; &#945;&#957; &#948;&#949;&#957; &#941;&#967;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#954;&#940;&#964;&#953;
+ &#940;&#955;&#955;&#959;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#931;&#973;&#963;&#964;&#951;&#956;&#945; &#948;&#953;&#940;&#963;&#969;&#963;&#951;&#962;</strong></span></p>
+
+
+ <p>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#949;&#943;&#964;&#949; &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#958;&#945;&#957;&#940; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#947;&#953;&#945; &#956;&#953;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#951;&#962; Mageia &#942; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#945;&#966;&#959;&#961;&#940; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#969;&#957; Windows.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#904;&#955;&#949;&#947;&#967;&#959;&#962; &#956;&#957;&#942;&#956;&#951;&#962;</strong></span></p>
+
+
+ <p>&#904;&#955;&#949;&#947;&#967;&#959;&#962; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#951;&#962; &#956;&#957;&#942;&#956;&#951;&#962; &#956;&#949; &#960;&#959;&#955;&#955;&#945;&#960;&#955;&#941;&#962; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#949;&#962; &#945;&#957;&#940;&#947;&#957;&#969;&#963;&#951;&#962; &#954;&#945;&#953;
+ &#949;&#947;&#947;&#961;&#945;&#966;&#942;&#962;. &#922;&#940;&#957;&#964;&#949; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#947;&#953;&#945; &#964;&#959;&#957; &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#963;&#956;&#972; &#964;&#959;&#965; &#949;&#955;&#941;&#947;&#967;&#959;&#965;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong> F2 &#915;&#955;&#974;&#963;&#963;&#945;</strong></span></p>
+
+
+ <p>&#928;&#953;&#941;&#963;&#964;&#949; F2 &#947;&#953;&#945; &#949;&#957;&#945;&#955;&#955;&#945;&#954;&#964;&#953;&#954;&#941;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.</p>
+
+ </li>
+ </ul>
+ </div>
+
+ </div>
+
+
+ <div class="section" title="&#931;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e309"></a>&#931;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#960;&#949;&#955;&#940;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#945;&#960;&#972; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; &#964;&#959;
+ <span class="keycap"><strong>e</strong></span> &#947;&#953;&#945; &#957;&#945; &#949;&#953;&#963;&#941;&#955;&#952;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;. &#915;&#953;&#945; &#957;&#945;
+ &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949;, &#960;&#953;&#941;&#963;&#964;&#949; &#949;&#943;&#964;&#949; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; <span class="keycap"><strong>Esc</strong></span> &#947;&#953;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#955;&#949;&#953;&#968;&#951;
+ &#967;&#969;&#961;&#943;&#962; &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; &#942; &#964;&#959; &#960;&#955;&#942;&#954;&#964;&#961;&#959; <span class="keycap"><strong>F10</strong></span> &#947;&#953;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#955;&#949;&#953;&#968;&#951; &#956;&#949;
+ &#945;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951;.
+ </p>
+
+
+
+
+ <div class="itemizedlist" title="&#924;&#949;&#957;&#959;&#973;">
+ <p class="title"><b>&#924;&#949;&#957;&#959;&#973;</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;:</strong></span> &#904;&#957;&#945;&#961;&#958;&#951; &#964;&#951;&#962; &#948;&#953;&#945;&#948;&#953;&#954;&#945;&#963;&#943;&#945;&#962;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#916;&#953;&#940;&#963;&#969;&#963;&#951;:</strong></span> &#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#949;&#943;&#964;&#949;
+ &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#958;&#945;&#957;&#940; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#947;&#953;&#945; &#956;&#953;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
+ &#964;&#951;&#962; Mageia &#942; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#945;&#966;&#959;&#961;&#940; &#964;&#959;&#965;
+ &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#969;&#957; Windows.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>F2: &#915;&#955;&#974;&#963;&#963;&#945;:</strong></span> &#928;&#953;&#941;&#963;&#964;&#949; <span class="keycap"><strong>F2</strong></span> &#947;&#953;&#945;
+ &#964;&#953;&#962; &#949;&#957;&#945;&#955;&#955;&#945;&#954;&#964;&#953;&#954;&#941;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p>&#913;&#957; &#954;&#940;&#957;&#945;&#964;&#949; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#945;&#960;&#972; &#941;&#957;&#945; &#954;&#955;&#949;&#953;&#948;&#943; USB, &#952;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#953;&#962; &#945;&#957;&#969;&#964;&#941;&#961;&#969; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;
+ &#948;&#953;&#960;&#955;&#941;&#962;. &#931;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#967;&#969;&#961;&#942;&#963;&#949;&#953;&#962; &#956;&#949;
+ &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#955;&#951;&#958;&#951; &laquo;USB&raquo;.
+ </p>
+
+ </div>
+
+ </div>
+
+
<div class="section" title="&#928;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#960;&#953;&#952;&#945;&#957;&#941;&#962; &#955;&#973;&#963;&#949;&#953;&#962;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="installationProblems"></a>&#928;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#960;&#953;&#952;&#945;&#957;&#941;&#962; &#955;&#973;&#963;&#949;&#953;&#962;
+ <h3 class="title"><a name="d5e331"></a>&#928;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; &#963;&#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#954;&#945;&#953; &#960;&#953;&#952;&#945;&#957;&#941;&#962; &#955;&#973;&#963;&#949;&#953;&#962;
</h3>
</div>
</div>
@@ -325,7 +286,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="noX"></a>&#916;&#949;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#949;&#943; &#964;&#959; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;
+ <h4 class="title"><a name="d5e333"></a>&#916;&#949;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#949;&#943; &#964;&#959; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;
</h4>
</div>
</div>
@@ -337,21 +298,23 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#924;&#949;&#964;&#940; &#964;&#951;&#957; &#945;&#961;&#967;&#953;&#954;&#942; &#959;&#952;&#972;&#957;&#951; &#948;&#949;&#957; &#947;&#943;&#957;&#949;&#964;&#945;&#953; &#956;&#949;&#964;&#940;&#946;&#945;&#963;&#951; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#947;&#955;&#974;&#963;&#963;&#945;&#962;. &#913;&#965;&#964;&#972;
- &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#963;&#965;&#956;&#946;&#949;&#943; &#956;&#949; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#949;&#962; &#954;&#940;&#961;&#964;&#949;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953; &#956;&#949;&#961;&#953;&#954;&#940; &#960;&#945;&#955;&#945;&#953;&#972;&#964;&#949;&#961;&#945;
- &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945;. &#928;&#961;&#959;&#963;&#960;&#945;&#952;&#942;&#963;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#967;&#945;&#956;&#951;&#955;&#942; &#945;&#957;&#940;&#955;&#965;&#963;&#951; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#974;&#957;&#964;&#945;&#962;
- <code class="code">vgalo</code> &#963;&#964;&#951;&#957; &#960;&#961;&#959;&#964;&#961;&#959;&#960;&#942;.
+ <p>&#924;&#949;&#964;&#940; &#964;&#951;&#957; &#945;&#961;&#967;&#953;&#954;&#942; &#959;&#952;&#972;&#957;&#951; &#948;&#949;&#957; &#947;&#943;&#957;&#949;&#964;&#945;&#953; &#956;&#949;&#964;&#940;&#946;&#945;&#963;&#951; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="emphasis"><em>&#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962;
+ &#947;&#955;&#974;&#963;&#963;&#945;&#962;</em></span>. &#913;&#965;&#964;&#972; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#963;&#965;&#956;&#946;&#949;&#943; &#956;&#949; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#949;&#962; &#954;&#940;&#961;&#964;&#949;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953;
+ &#956;&#949;&#961;&#953;&#954;&#940; &#960;&#945;&#955;&#945;&#953;&#972;&#964;&#949;&#961;&#945; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945;. &#928;&#961;&#959;&#963;&#960;&#945;&#952;&#942;&#963;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#967;&#945;&#956;&#951;&#955;&#942;
+ &#945;&#957;&#940;&#955;&#965;&#963;&#951; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#974;&#957;&#964;&#945;&#962; <span class="command"><strong>vgalo</strong></span> &#963;&#964;&#951;&#957; &#960;&#961;&#959;&#964;&#961;&#959;&#960;&#942;.
</p>
</li>
<li class="listitem">
<p>&#913;&#957; &#960;&#961;&#972;&#954;&#949;&#953;&#964;&#945;&#953; &#947;&#953;&#945; &#960;&#959;&#955;&#973; &#960;&#945;&#955;&#953;&#972; &#965;&#955;&#953;&#954;&#972;, &#943;&#963;&#969;&#962; &#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#963;&#949; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;
- &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#945;&#948;&#973;&#957;&#945;&#964;&#951;. &#931;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949; &#964;&#951;&#957;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#967;&#969;&#961;&#943;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;. &#915;&#953;&#945; &#957;&#945; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;, &#960;&#945;&#964;&#942;&#963;&#964;&#949;
- ESC &#963;&#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; &#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962; &#954;&#945;&#953; &#949;&#960;&#953;&#946;&#949;&#946;&#945;&#953;&#974;&#963;&#964;&#949; &#956;&#949; ENTER. &#920;&#945; &#966;&#964;&#940;&#963;&#949;&#964;&#949; &#963;&#949;
- &#956;&#953;&#945; &#956;&#945;&#973;&#961;&#951; &#959;&#952;&#972;&#957;&#951; &#956;&#949; &#964;&#951; &#955;&#941;&#958;&#951; &laquo;boot:&raquo;. &#928;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949; &laquo;text&raquo; &#954;&#945;&#953; &#960;&#945;&#964;&#942;&#963;&#964;&#949;
- ENTER. &#932;&#974;&#961;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#964;&#949; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#963;&#949; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965;.
+ &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#945;&#948;&#973;&#957;&#945;&#964;&#951; &#931;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949; &#964;&#951;&#957;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#967;&#969;&#961;&#943;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;. &#915;&#953;&#945; &#957;&#945; &#964;&#959; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949;, &#960;&#945;&#964;&#942;&#963;&#964;&#949;
+ <span class="keycap"><strong>Esc</strong></span> &#963;&#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; <span class="emphasis"><em>&#954;&#945;&#955;&#969;&#963;&#959;&#961;&#943;&#963;&#956;&#945;&#964;&#959;&#962;</em></span>
+ &#954;&#945;&#953; &#949;&#960;&#953;&#946;&#949;&#946;&#945;&#953;&#974;&#963;&#964;&#949; &#956;&#949; <span class="keycap"><strong>ENTER</strong></span>. &#920;&#945; &#966;&#964;&#940;&#963;&#949;&#964;&#949; &#963;&#949; &#956;&#953;&#945; &#956;&#945;&#973;&#961;&#951; &#959;&#952;&#972;&#957;&#951; &#956;&#949;
+ &#964;&#951;&#957; &#960;&#961;&#959;&#964;&#961;&#959;&#960;&#942; <code class="prompt">boot</code>. &#928;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949; <span class="command"><strong>text</strong></span>
+ &#954;&#945;&#953; &#960;&#945;&#964;&#942;&#963;&#964;&#949; <span class="keycap"><strong>ENTER</strong></span> &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#964;&#949; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#963;&#949;
+ &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965;.
</p>
</li>
@@ -365,7 +328,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="installFreezes"></a>&#928;&#940;&#947;&#969;&#956;&#945; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
+ <h4 class="title"><a name="d5e348"></a>&#928;&#940;&#947;&#969;&#956;&#945; &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
</h4>
</div>
</div>
@@ -376,7 +339,7 @@
<p>&#913;&#957; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &laquo;&#960;&#945;&#947;&#974;&#957;&#949;&#953;&raquo; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#951; &#945;&#953;&#964;&#943;&#945; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#959;&#966;&#949;&#943;&#955;&#949;&#964;&#945;&#953;
&#963;&#964;&#959;&#957; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972; &#964;&#959;&#965; &#965;&#955;&#953;&#954;&#959;&#973;. &#931;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#959; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#959;&#962; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972;&#962;
&#965;&#955;&#953;&#954;&#959;&#973; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#960;&#945;&#961;&#945;&#954;&#945;&#956;&#966;&#952;&#949;&#943; &#954;&#945;&#953; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#945;&#961;&#947;&#972;&#964;&#949;&#961;&#945;. &#915;&#953;&#945; &#957;&#945;
- &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949; <code class="code">noauto</code> &#963;&#964;&#951;&#957;
+ &#948;&#959;&#954;&#953;&#956;&#940;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#942;&#963;&#964;&#949; <span class="command"><strong>noauto</strong></span> &#963;&#964;&#951;&#957;
&#960;&#961;&#959;&#964;&#961;&#959;&#960;&#942;. &#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#960;&#959;&#961;&#949;&#943; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#963;&#965;&#957;&#948;&#965;&#945;&#963;&#964;&#949;&#943; &#956;&#949; &#964;&#951;&#957; &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#945;&#957;
&#954;&#961;&#953;&#952;&#949;&#943; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#959;.
</p>
@@ -388,7 +351,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="kernelOptions"></a>&#928;&#961;&#972;&#946;&#955;&#951;&#956;&#945; RAM
+ <h4 class="title"><a name="d5e352"></a>&#928;&#961;&#972;&#946;&#955;&#951;&#956;&#945; RAM
</h4>
</div>
</div>
@@ -396,11 +359,12 @@
- <p>&#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#959;&#973;&#957; &#963;&#949; &#963;&#960;&#940;&#957;&#953;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962;, &#945;&#955;&#955;&#940; &#956;&#949;&#961;&#953;&#954;&#941;&#962; &#966;&#959;&#961;&#941;&#962; &#964;&#959; &#965;&#955;&#953;&#954;&#972;
+ <p>&#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943; &#963;&#949; &#963;&#960;&#940;&#957;&#953;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962;, &#945;&#955;&#955;&#940; &#956;&#949;&#961;&#953;&#954;&#941;&#962; &#966;&#959;&#961;&#941;&#962; &#964;&#959; &#965;&#955;&#953;&#954;&#972;
&#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#945;&#957;&#945;&#966;&#941;&#961;&#949;&#953; &#964;&#951;&#957; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#951; &#956;&#957;&#942;&#956;&#951; RAM &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#945;. &#915;&#953;&#945; &#957;&#945; &#964;&#951;&#957; &#959;&#961;&#943;&#963;&#949;&#964;&#949;
&#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#960;&#945;&#961;&#940;&#956;&#949;&#964;&#961;&#959;
- <code class="code">mem=xxxM</code>, &#972;&#960;&#959;&#965; xxx &#964;&#959; &#963;&#969;&#963;&#964;&#972; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#964;&#951;&#962;
- RAM. &#960;.&#967;. <code class="code">mem=256M</code> &#954;&#945;&#952;&#959;&#961;&#943;&#950;&#949;&#953; 256MB RAM.
+ <code class="literal">mem=<em class="replaceable"><code>xxx</code></em>M</code>, &#972;&#960;&#959;&#965;
+ <em class="replaceable"><code>xxx</code></em> &#964;&#959; &#963;&#969;&#963;&#964;&#972; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#964;&#951;&#962;
+ RAM. &#960;.&#967;. <code class="literal">mem=256M</code> &#954;&#945;&#952;&#959;&#961;&#943;&#950;&#949;&#953; 256MB RAM.
</p>
</div>
@@ -410,7 +374,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="DynamicPartitions"></a>&#916;&#965;&#957;&#945;&#956;&#953;&#954;&#941;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;
+ <h4 class="title"><a name="d5e359"></a>&#916;&#965;&#957;&#945;&#956;&#953;&#954;&#941;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962;
</h4>
</div>
</div>
@@ -418,10 +382,11 @@
- <p>&#913;&#957; &#956;&#949;&#964;&#945;&#964;&#961;&#941;&#968;&#945;&#964;&#949; &#964;&#959;&#957; &#963;&#954;&#955;&#951;&#961;&#972; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#959; &#945;&#960;&#972; &laquo;&#946;&#945;&#963;&#953;&#954;&#942;&raquo; &#963;&#949; &laquo;&#948;&#965;&#957;&#945;&#956;&#953;&#954;&#942;&raquo; &#956;&#959;&#961;&#966;&#942; &#963;&#949;
- Microsoft Windows, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#972;&#964;&#953; &#949;&#943;&#957;&#945;&#953; &#945;&#948;&#973;&#957;&#945;&#964;&#959; &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949;
- &#964;&#951; Mageia &#963;&#949; &#945;&#965;&#964;&#972;&#957; &#964;&#959;&#957; &#948;&#943;&#963;&#954;&#959;. &#915;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &laquo;&#946;&#945;&#963;&#953;&#954;&#942;&raquo; &#956;&#959;&#961;&#966;&#942;,
- &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#951;&#962; Microsoft: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
+ <p>&#913;&#957; &#956;&#949;&#964;&#945;&#964;&#961;&#941;&#968;&#945;&#964;&#949; &#964;&#959;&#957; &#963;&#954;&#955;&#951;&#961;&#972; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#959; &#945;&#960;&#972; <code class="literal">&#946;&#945;&#963;&#953;&#954;&#942;</code> &#963;&#949;
+ <code class="literal">&#948;&#965;&#957;&#945;&#956;&#953;&#954;&#942;</code> &#956;&#959;&#961;&#966;&#942; &#963;&#949; Microsoft Windows, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
+ &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#972;&#964;&#953; &#949;&#943;&#957;&#945;&#953; &#945;&#948;&#973;&#957;&#945;&#964;&#959; &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#964;&#951; Mageia &#963;&#949; &#945;&#965;&#964;&#972;&#957; &#964;&#959;&#957;
+ &#948;&#943;&#963;&#954;&#959;. &#915;&#953;&#945; &#957;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#951;&#957; &laquo;&#946;&#945;&#963;&#953;&#954;&#942;&raquo; &#956;&#959;&#961;&#966;&#942;, &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#951;&#962;
+ Microsoft: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
</p>
</div>
diff --git a/el/media_selection.html b/el/media_selection.html
index 283cabc..ef82353 100644
--- a/el/media_selection.html
+++ b/el/media_selection.html
@@ -2,34 +2,41 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (Nonfree)</title>
+ <title>&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#956;&#941;&#963;&#945;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
- <link rel="prev" href="add_supplemental_media.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#949;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#969;&#957; &#956;&#941;&#963;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;)">
+ <link rel="prev" href="add_supplemental_media.html" title="&#917;&#960;&#953;&#960;&#961;&#972;&#963;&#952;&#949;&#964;&#959; &#956;&#941;&#963;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;">
<link rel="next" href="chooseDesktop.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;&#964;&#959;&#962; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="el" class="section" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (Nonfree)">
+ <div lang="el" class="section" title="&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#956;&#941;&#963;&#945;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="media_selection"></a>&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#941;&#963;&#969;&#957; (Nonfree)
+ <h2 class="title"><a name="media_selection"></a>&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#956;&#941;&#963;&#945;
</h2>
</div>
</div>
</div>
-
+
+
+
+
+
+
+
+
<p>&#917;&#948;&#974; &#941;&#967;&#949;&#964;&#949; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#956;&#949; &#964;&#945; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945;. &#913;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#959; &#956;&#941;&#963;&#959; &#960;&#959;&#965;
@@ -52,10 +59,10 @@
<p>&#932;&#959; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#959; <span class="emphasis"><em>Nonfree</em></span> &#960;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#960;&#945;&#954;&#941;&#964;&#945; &#960;&#959;&#965; &#949;&#943;&#957;&#945;&#953; &#948;&#969;&#961;&#949;&#940;&#957;,
&#951; Mageia &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#954;&#940;&#957;&#949;&#953; &#945;&#957;&#945;&#948;&#953;&#945;&#957;&#959;&#956;&#942;, &#945;&#955;&#955;&#940; &#960;&#949;&#961;&#953;&#941;&#967;&#959;&#965;&#957; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; &#960;&#959;&#965; &#965;&#960;&#972;&#954;&#949;&#953;&#964;&#945;&#953;
- &#963;&#949; &#960;&#957;&#949;&#965;&#956;&#945;&#964;&#953;&#954;&#940; &#948;&#953;&#954;&#945;&#953;&#974;&#956;&#945;&#964;&#945; (&#949;&#958;'&#959;&#973; &#954;&#945;&#953; &#951; &#959;&#957;&#959;&#956;&#945;&#963;&#943;&#945; &#925;onfree &#960;&#959;&#965; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#956;&#951;
+ &#963;&#949; &#960;&#957;&#949;&#965;&#956;&#945;&#964;&#953;&#954;&#940; &#948;&#953;&#954;&#945;&#953;&#974;&#956;&#945;&#964;&#945; (&#949;&#958; &#959;&#965; &#954;&#945;&#953; &#951; &#959;&#957;&#959;&#956;&#945;&#963;&#943;&#945; -&#925;onfree &#960;&#959;&#965; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#956;&#951;
&#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;). &#915;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;, &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#959; &#946;&#961;&#943;&#963;&#954;&#959;&#957;&#964;&#945;&#953; &#959;&#953; &#953;&#948;&#953;&#972;&#954;&#964;&#951;&#964;&#959;&#953;
- &#959;&#948;&#951;&#947;&#959;&#943; &#964;&#969;&#957; &#954;&#945;&#961;&#964;&#974;&#957; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; nVidia &#954;&#945;&#953; ATI, &#964;&#945; firmware &#948;&#953;&#945;&#966;&#972;&#961;&#969;&#957; &#954;&#945;&#961;&#964;&#974;&#957; WiFi
- &#954;&#955;&#960;.
+ &#959;&#948;&#951;&#947;&#959;&#943; &#964;&#969;&#957; &#954;&#945;&#961;&#964;&#974;&#957; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; nVidia &#954;&#945;&#953; AMD, &#964;&#959; &#965;&#955;&#953;&#954;&#959;&#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; &#948;&#953;&#945;&#966;&#972;&#961;&#969;&#957; &#954;&#945;&#961;&#964;&#974;&#957;
+ WiFi &#954;&#955;&#960;.
</p>
</li>
diff --git a/el/minimal-install.html b/el/minimal-install.html
index 517f0a4..80d5291 100644
--- a/el/minimal-install.html
+++ b/el/minimal-install.html
@@ -22,47 +22,72 @@
</div>
</div>
</div>
-
+
+
+
+
- <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; &#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#945;&#960;&#959;&#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#964;&#945; &#960;&#940;&#957;&#964;&#945; &#963;&#964;&#951;&#957;
- &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#927;&#956;&#940;&#948;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="choosePackageGroups.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#959;&#956;&#940;&#948;&#945;&#962; &#960;&#945;&#954;&#941;&#964;&#969;&#957;">&amp;#x201C;&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#959;&#956;&#940;&#948;&#945;&#962; &#960;&#945;&#954;&#941;&#964;&#969;&#957;&amp;#x201D;</a>.
- </p>
+
- <p>&#913;&#957; &#964;&#959; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; &laquo;&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;&raquo;
- &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945; &#959;&#952;&#972;&#957;&#951;.
- </p>
+
- <p>&#919; &#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#960;&#961;&#959;&#959;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#947;&#953;&#945; &#945;&#965;&#964;&#959;&#973;&#962; &#960;&#959;&#965; &#952;&#941;&#955;&#959;&#965;&#957; &#957;&#945; &#954;&#940;&#957;&#959;&#965;&#957; &#956;&#953;&#945;
- &#949;&#953;&#948;&#953;&#954;&#942; &#967;&#961;&#942;&#963;&#951; &#964;&#951;&#962; Mageia, &#972;&#960;&#969;&#962; &#941;&#957;&#945;&#962; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942;&#962; &#942; &#941;&#957;&#945;&#957; &#949;&#958;&#949;&#953;&#948;&#953;&#954;&#949;&#965;&#956;&#941;&#957;&#959; &#963;&#964;&#945;&#952;&#956;&#972;
- &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;. &#928;&#953;&#952;&#945;&#957;&#974;&#962; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#949; &#963;&#965;&#957;&#948;&#965;&#945;&#963;&#956;&#972; &#956;&#949; &#964;&#951;&#957;
- &laquo;&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;&raquo;, &#972;&#960;&#969;&#962; &#945;&#957;&#945;&#966;&#941;&#961;&#949;&#964;&#945;&#953; &#945;&#957;&#969;&#964;&#941;&#961;&#969;, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="choosePackagesTree.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;">&amp;#x201C;&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;&amp;#x201D;</a>.
- </p>
+
- <p>&#913;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;, &#964;&#972;&#964;&#949; &#963;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951; &#952;&#945;
- &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#949;&#964;&#945;&#958;&#973; &#956;&#949;&#961;&#953;&#954;&#974;&#957; &#967;&#961;&#942;&#963;&#953;&#956;&#969;&#957; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#969;&#957; &#960;&#961;&#959;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;,
- &#972;&#960;&#969;&#962; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#954;&#945;&#953; X.
+ <p>&#919; &#949;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#960;&#961;&#959;&#959;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#947;&#953;&#945; &#945;&#965;&#964;&#959;&#973;&#962; &#960;&#959;&#965; &#952;&#941;&#955;&#959;&#965;&#957; &#957;&#945; &#954;&#940;&#957;&#959;&#965;&#957; &#956;&#953;&#945;
+ &#949;&#953;&#948;&#953;&#954;&#942; &#967;&#961;&#942;&#963;&#951; &#964;&#951;&#962; Mageia, &#972;&#960;&#969;&#962; &#941;&#957;&#945;&#957; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942; &#942; &#941;&#957;&#945;&#957; &#949;&#958;&#949;&#953;&#948;&#953;&#954;&#949;&#965;&#956;&#941;&#957;&#959; &#963;&#964;&#945;&#952;&#956;&#972;
+ &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;. &#928;&#953;&#952;&#945;&#957;&#974;&#962; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#949; &#963;&#965;&#957;&#948;&#965;&#945;&#963;&#956;&#972; &#956;&#949; &#964;&#951;&#957;
+ <span class="emphasis"><em>&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;</em></span>, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="choosePackagesTree.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#954;&#941;&#964;&#969;&#957;">Choose Packages Tree</a>.
</p>
+
- <p>&#913;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &laquo;&#956;&#949; X&raquo; &#952;&#945; &#963;&#965;&#956;&#960;&#949;&#961;&#953;&#955;&#951;&#966;&#952;&#949;&#943; &#949;&#960;&#943;&#963;&#951;&#962; &#959; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;&#962; &#960;&#945;&#961;&#945;&#952;&#973;&#961;&#969;&#957; IceWM
- &#969;&#962; &#941;&#957;&#945; &#949;&#955;&#945;&#966;&#961;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; <span class="emphasis"><em>&#917;&#955;&#940;&#967;&#953;&#963;&#964;&#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;</em></span>
+ &#945;&#960;&#959;&#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#964;&#945; &#960;&#940;&#957;&#964;&#945; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; <span class="emphasis"><em>&#927;&#956;&#940;&#948;&#969;&#957;
+ &#960;&#945;&#954;&#941;&#964;&#969;&#957;</em></span>, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="choosePackageGroups.html" title="&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#959;&#956;&#940;&#948;&#945;&#962; &#960;&#945;&#954;&#941;&#964;&#969;&#957;">Choose Package Groups</a>.
+ </p>
+
+
+ <p>&#913;&#957; &#964;&#959; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#964;&#951;&#957; <span class="emphasis"><em>&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#949;&#956;&#959;&#957;&#969;&#956;&#941;&#957;&#969;&#957;
+ &#960;&#945;&#954;&#941;&#964;&#969;&#957;</em></span> &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945; &#959;&#952;&#972;&#957;&#951;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#913;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#956;&#941;&#952;&#959;&#948;&#959; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;, &#964;&#972;&#964;&#949; &#963;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#959;&#952;&#972;&#957;&#951; (&#948;&#949;&#943;&#964;&#949;
+ &#964;&#959; &#960;&#945;&#961;&#945;&#954;&#940;&#964;&#969; &#963;&#964;&#953;&#947;&#956;&#953;&#972;&#964;&#965;&#960;&#959;) &#952;&#945; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#949;&#964;&#945;&#958;&#973; &#956;&#949;&#961;&#953;&#954;&#974;&#957; &#967;&#961;&#942;&#963;&#953;&#956;&#969;&#957;
+ &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#969;&#957; &#960;&#961;&#959;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#972;&#960;&#969;&#962; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#954;&#945;&#953; <span class="quote">&amp;#x201C;<span class="quote">X</span>&amp;#x201D;</span>.
+ </p>
+
+
+ <p>&#913;&#957; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; <span class="emphasis"><em>&#956;&#949; X</em></span> &#952;&#945; &#963;&#965;&#956;&#960;&#949;&#961;&#953;&#955;&#951;&#966;&#952;&#949;&#943; &#949;&#960;&#943;&#963;&#951;&#962; &#959;
+ &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;&#962; &#960;&#945;&#961;&#945;&#952;&#973;&#961;&#969;&#957; IceWM &#969;&#962; &#941;&#957;&#945; &#949;&#955;&#945;&#966;&#961;&#973; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#949;&#961;&#947;&#945;&#963;&#943;&#945;&#962;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <p>&#919; &#946;&#945;&#963;&#953;&#954;&#942; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#960;&#945;&#961;&#941;&#967;&#949;&#964;&#945;&#953; &#965;&#960;&#972; &#964;&#951; &#956;&#959;&#961;&#966;&#942; &#963;&#949;&#955;&#943;&#948;&#969;&#957; &#949;&#947;&#967;&#949;&#953;&#961;&#953;&#948;&#943;&#959;&#965; man &#954;&#945;&#953;
- info. &#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#964;&#953;&#962; &#963;&#949;&#955;&#943;&#948;&#949;&#962; man &#945;&#960;&#972; &#964;&#953;&#962; &#963;&#949;&#955;&#943;&#948;&#949;&#962; info &#964;&#969;&#957; <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Linux Documentation
+ <p>&#919; &#946;&#945;&#963;&#953;&#954;&#942; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#960;&#945;&#961;&#941;&#967;&#949;&#964;&#945;&#953; &#965;&#960;&#972; &#964;&#951; &#956;&#959;&#961;&#966;&#942; &#963;&#949;&#955;&#943;&#948;&#969;&#957; &#949;&#947;&#967;&#949;&#953;&#961;&#953;&#948;&#943;&#959;&#965;
+ <span class="quote">&amp;#x201C;<span class="quote">man</span>&amp;#x201D;</span> &#954;&#945;&#953; <span class="quote">&amp;#x201C;<span class="quote">info</span>&amp;#x201D;</span>. &#928;&#949;&#961;&#953;&#941;&#967;&#949;&#953; &#964;&#953;&#962; &#963;&#949;&#955;&#943;&#948;&#949;&#962; man &#945;&#960;&#972; &#964;&#953;&#962;
+ &#963;&#949;&#955;&#943;&#948;&#949;&#962; info &#964;&#969;&#957; <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Linux Documentation
Project</a> &#954;&#945;&#953; <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU
coreutils</a>.
</p>
-
</div>
</body>
</html>
diff --git a/el/misc-params.html b/el/misc-params.html
index 0e8c8bb..12e3641 100644
--- a/el/misc-params.html
+++ b/el/misc-params.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#931;&#973;&#957;&#959;&#968;&#951; &#964;&#969;&#957; &#948;&#953;&#940;&#966;&#959;&#961;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;</title>
+ <title>&#931;&#973;&#957;&#959;&#968;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="el" class="section" title="&#931;&#973;&#957;&#959;&#968;&#951; &#964;&#969;&#957; &#948;&#953;&#940;&#966;&#959;&#961;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;">
+ <div lang="el" class="section" title="&#931;&#973;&#957;&#959;&#968;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="misc-params"></a>&#931;&#973;&#957;&#959;&#968;&#951; &#964;&#969;&#957; &#948;&#953;&#940;&#966;&#959;&#961;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;
+ <h2 class="title"><a name="misc-params"></a>&#931;&#973;&#957;&#959;&#968;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;
</h2>
</div>
</div>
@@ -29,10 +29,20 @@
- <p><a name="misc-params-pa1"></a>&#932;&#959; DrakX &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#943;&#951;&#963;&#949; &#941;&#958;&#965;&#960;&#957;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962;
- &#963;&#945;&#962;, &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#960;&#959;&#965; &#954;&#940;&#957;&#945;&#964;&#949; &#960;&#961;&#959;&#951;&#947;&#959;&#965;&#956;&#941;&#957;&#969;&#962; &#954;&#945;&#953; &#964;&#959; &#965;&#955;&#953;&#954;&#972; &#960;&#959;&#965;
- &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#964;&#951;&#954;&#949; &#945;&#960;&#972; &#964;&#959; DrakX. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#949;&#948;&#974; &#954;&#945;&#953; &#945;&#957;
- &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#964;&#953;&#962; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; <span class="guibutton">&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;</span>.
+
+
+
+
+
+
+
+
+
+
+ <p><a name="misc-params-pa1"></a>&#932;&#959; DrakX &#960;&#945;&#961;&#959;&#965;&#963;&#953;&#940;&#950;&#949;&#953; &#956;&#953;&#945; &#960;&#961;&#972;&#964;&#945;&#963;&#951; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962;,
+ &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#953;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#960;&#959;&#965; &#954;&#940;&#957;&#945;&#964;&#949; &#960;&#961;&#959;&#951;&#947;&#959;&#965;&#956;&#941;&#957;&#969;&#962; &#954;&#945;&#953; &#964;&#959; &#965;&#955;&#953;&#954;&#972; &#960;&#959;&#965;
+ &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#964;&#951;&#954;&#949;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#949;&#948;&#974; &#954;&#945;&#953; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#964;&#953;&#962;
+ &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; <span class="emphasis"><em>&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;</em></span>.
</p>
@@ -45,8 +55,8 @@
<tr>
<td align="left" valign="top">
- <p>&#937;&#962; &#947;&#949;&#957;&#953;&#954;&#972;&#962; &#954;&#945;&#957;&#972;&#957;&#945;&#962;, &#963;&#965;&#957;&#953;&#963;&#964;&#974;&#957;&#964;&#945;&#953; &#959;&#953; &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#949;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#954;&#945;&#953; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#964;&#953;&#962; &#948;&#953;&#945;&#964;&#951;&#961;&#942;&#963;&#949;&#964;&#949; &#956;&#949; 3 &#949;&#958;&#945;&#953;&#961;&#941;&#963;&#949;&#953;&#962;:
+ <p>&#937;&#962; &#947;&#949;&#957;&#953;&#954;&#972;&#962; &#954;&#945;&#957;&#972;&#957;&#945;&#962;, &#963;&#965;&#957;&#953;&#963;&#964;&#940;&#964;&#945;&#953; &#951; &#945;&#960;&#959;&#948;&#959;&#967;&#942; &#964;&#969;&#957; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#969;&#957; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#949;&#954;&#964;&#972;&#962; &#954;&#945;&#953;
+ &#945;&#957;:
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
@@ -62,7 +72,9 @@
</li>
<li class="listitem">
- <p>&#954;&#940;&#960;&#959;&#953;&#945; &#940;&#955;&#955;&#951; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#945; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#963;&#964;&#953;&#962; &#945;&#957;&#945;&#955;&#965;&#964;&#953;&#954;&#941;&#962; &#949;&#957;&#972;&#964;&#951;&#964;&#949;&#962; &#954;&#945;&#964;&#969;&#964;&#941;&#961;&#969;</p>
+ <p>&#954;&#940;&#960;&#959;&#953;&#959;&#962; &#940;&#955;&#955;&#959;&#962; &#963;&#965;&#957;&#964;&#949;&#955;&#949;&#963;&#964;&#942;&#962; &#960;&#959;&#965; &#945;&#957;&#945;&#966;&#941;&#961;&#949;&#964;&#945;&#953; &#963;&#964;&#953;&#962; &#945;&#957;&#945;&#955;&#965;&#964;&#953;&#954;&#941;&#962; &#949;&#957;&#972;&#964;&#951;&#964;&#949;&#962; &#954;&#945;&#964;&#969;&#964;&#941;&#961;&#969;
+ &#945;&#960;&#959;&#964;&#949;&#955;&#949;&#943; &#960;&#961;&#972;&#946;&#955;&#951;&#956;&#945;
+ </p>
</li>
</ul>
@@ -90,67 +102,62 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-system-pa2"></a><span class="guilabel">&#918;&#974;&#957;&#951; &#974;&#961;&#945;&#962;:</span></p>
+ <p><a name="misc-params-system-pa2"></a><span class="bold"><strong>&#918;&#974;&#957;&#951; &#974;&#961;&#945;&#962;</strong></span></p>
- <p><a name="misc-params-system-pa2a"></a>&#932;&#959; DrakX &#949;&#960;&#941;&#955;&#949;&#958;&#949; &#956;&#953;&#945; &#950;&#974;&#957;&#951; &#974;&#961;&#945;&#962; &#947;&#953;&#945; &#949;&#963;&#940;&#962;, &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#951;&#957; &#960;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#951;
- &#947;&#955;&#974;&#963;&#963;&#945;. &#913;&#957; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949;. &#916;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; <a class="xref" href="configureTimezoneUTC.html" title="&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#950;&#974;&#957;&#951;&#962; &#974;&#961;&#945;&#962;">&amp;#x201C;&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#950;&#974;&#957;&#951;&#962; &#974;&#961;&#945;&#962;&amp;#x201D;</a></p>
+ <p><a name="misc-params-system-pa2a"></a>&#932;&#959; DrakX &#949;&#960;&#953;&#955;&#941;&#947;&#949;&#953; &#956;&#953;&#945; &#950;&#974;&#957;&#951; &#974;&#961;&#945;&#962; &#947;&#953;&#945; &#949;&#963;&#940;&#962;, &#945;&#957;&#940;&#955;&#959;&#947;&#945; &#956;&#949; &#964;&#951;&#957; &#960;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#951;
+ &#947;&#955;&#974;&#963;&#963;&#945;. &#913;&#957; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949;. &#916;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; <a class="xref" href="configureTimezoneUTC.html" title="&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#951;&#962; &#950;&#974;&#957;&#951;&#962; &#974;&#961;&#945;&#962;">Configure Timezone</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa3"></a><span class="guilabel">&#935;&#974;&#961;&#945; / &#928;&#949;&#961;&#953;&#959;&#967;&#942;:</span></p>
+ <p><a name="misc-params-system-pa3"></a><span class="bold"><strong>&#935;&#974;&#961;&#945; / &#928;&#949;&#961;&#953;&#959;&#967;&#942;:</strong></span></p>
- <p><a name="misc-params-system-pa3a"></a>&#913;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#945;&#963;&#964;&#949; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#967;&#974;&#961;&#945;, &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972; &#957;&#945; &#948;&#953;&#959;&#961;&#952;&#974;&#963;&#949;&#964;&#949; &#964;&#951;
- &#961;&#973;&#952;&#956;&#953;&#963;&#951;. &#916;&#949;&#943;&#964;&#949; <a class="xref" href="selectCountry.html" title="&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945;/&#960;&#949;&#961;&#953;&#959;&#967;&#942; &#963;&#945;&#962;">&amp;#x201C;&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945;/&#960;&#949;&#961;&#953;&#959;&#967;&#942; &#963;&#945;&#962;&amp;#x201D;</a></p>
+ <p><a name="misc-params-system-pa3a"></a>&#913;&#957; &#951; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#967;&#974;&#961;&#945; &#949;&#943;&#957;&#945;&#953; &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#951;, &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972; &#957;&#945; &#948;&#953;&#959;&#961;&#952;&#974;&#963;&#949;&#964;&#949; &#964;&#951;
+ &#961;&#973;&#952;&#956;&#953;&#963;&#951;. &#916;&#949;&#943;&#964;&#949; <a class="xref" href="selectCountry.html" title="&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945;/&#960;&#949;&#961;&#953;&#959;&#967;&#942; &#963;&#945;&#962;">Select Country</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa4"></a><span class="guilabel">&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;:</span></p>
+ <p><a name="misc-params-system-pa4"></a><span class="bold"><strong>&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</strong></span></p>
- <p><a name="misc-params-system-pa4a"></a>&#932;&#959; DrakX &#941;&#967;&#949;&#953; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#954;&#945;&#955;&#941;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#947;&#953;&#945; &#964;&#951; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962;
- &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;.
+ <p><a name="misc-params-system-pa4a"></a>&#919; &#960;&#961;&#972;&#964;&#945;&#963;&#951; &#964;&#959;&#965; DrakX &#947;&#953;&#945; &#964;&#951; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
</p>
- <p><a name="misc-params-system-pa4b"></a>&#924;&#951;&#957; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#943;&#960;&#959;&#964;&#945;, &#945;&#957; &#948;&#949;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#960;&#969;&#962; &#957;&#945; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#964;&#949; &#964;&#959; Grub2
- </p>
+ <p><a name="misc-params-system-pa4b"></a>&#924;&#951;&#957; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#943;&#960;&#959;&#964;&#945;, &#945;&#957; &#948;&#949;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#960;&#969;&#962; &#957;&#945; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#964;&#949; &#964;&#959; GRUB2. &#915;&#953;&#945;
+ &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="setupBootloader.html" title="&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">Bootloader</a></p>
- <p><a name="misc-params-system-pa4c"></a>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="setupBootloader.html" title="&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">&amp;#x201C;&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;&amp;#x201D;</a></p>
+
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa5"></a><span class="guilabel">&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;:</span></p>
+ <p><a name="misc-params-system-pa5"></a><span class="bold"><strong>&#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#967;&#961;&#951;&#963;&#964;&#974;&#957;</strong></span></p>
<p><a name="misc-params-system-pa5a"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#949;&#962;. &#922;&#945;&#952;&#941;&#957;&#945;&#962; &#952;&#945; &#945;&#960;&#959;&#954;&#964;&#942;&#963;&#949;&#953; &#964;&#959;&#957; &#948;&#953;&#954;&#972;
- &#964;&#959;&#965; &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#959; <code class="literal">/home</code>.
+ &#964;&#959;&#965; &#954;&#945;&#964;&#940;&#955;&#959;&#947;&#959; <code class="filename">/home</code>.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa6"></a><span class="guilabel">&#933;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962;</span>:
- </p>
+ <p><a name="misc-params-system-pa6"></a><span class="bold"><strong>&#933;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962;</strong></span></p>
<p><a name="misc-params-system-pa6a"></a>&#927;&#953; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; &#949;&#943;&#957;&#945;&#953; &#945;&#965;&#964;&#940; &#964;&#945; &#956;&#953;&#954;&#961;&#940; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#945; &#960;&#959;&#965; &#949;&#954;&#964;&#949;&#955;&#959;&#973;&#957;&#964;&#945;&#953; &#963;&#964;&#959;
&#960;&#945;&#961;&#945;&#963;&#954;&#942;&#957;&#953;&#959; (&#948;&#945;&#943;&#956;&#959;&#957;&#949;&#962;). &#913;&#965;&#964;&#972; &#964;&#959; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#951;&#957; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#942; &#964;&#951;&#957;
- &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957; &#949;&#961;&#947;&#945;&#963;&#953;&#974;&#957;.
+ &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957; &#948;&#953;&#949;&#961;&#947;&#945;&#963;&#953;&#974;&#957;.
</p>
<p><a name="misc-params-system-pa6b"></a>&#920;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#964;&#949; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#940; &#960;&#961;&#953;&#957; &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#959;&#964;&#953;&#948;&#942;&#960;&#959;&#964;&#949; &#949;&#948;&#974; - &#941;&#957;&#945; &#963;&#966;&#940;&#955;&#956;&#945;
- &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#960;&#961;&#959;&#954;&#945;&#955;&#941;&#963;&#949;&#953; &#964;&#951; &#948;&#965;&#963;&#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;.
- </p>
-
-
- <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="configureServices.html" title="&#916;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#964;&#949; &#964;&#953;&#962; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; &#963;&#945;&#962;">&amp;#x201C;&#916;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#964;&#949; &#964;&#953;&#962; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; &#963;&#945;&#962;&amp;#x201D;</a></p>
+ &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#960;&#961;&#959;&#954;&#945;&#955;&#941;&#963;&#949;&#953; &#964;&#951; &#948;&#965;&#963;&#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;. &#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962;
+ &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="configureServices.html" title="&#916;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#964;&#949; &#964;&#953;&#962; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; &#963;&#945;&#962;">Configure Services</a></p>
</li>
</ul>
@@ -175,12 +182,11 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-hardware-pa1"></a><span class="guilabel">&#928;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#959;:</span></p>
+ <p><a name="misc-params-hardware-pa1"></a><span class="bold"><strong>&#928;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#959;</strong></span></p>
- <p><a name="misc-params-hardware-pa1a"></a>&#917;&#948;&#974; &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#956;&#941;&#961;&#959;&#962; &#960;&#959;&#965; &#961;&#965;&#952;&#956;&#943;&#950;&#949;&#964;&#949; &#942; &#945;&#955;&#955;&#940;&#950;&#949;&#964;&#949; &#964;&#951; &#948;&#953;&#940;&#964;&#945;&#958;&#951; &#964;&#959;&#965; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#942;
- &#959;&#960;&#959;&#943;&#945; &#949;&#958;&#945;&#961;&#964;&#940;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#951;&#957; &#964;&#959;&#960;&#959;&#952;&#949;&#963;&#943;&#945; &#963;&#945;&#962;, &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#942; &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#964;&#959;&#965;
- &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965;.
+ <p><a name="misc-params-hardware-pa1a"></a>&#916;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#964;&#949; &#964;&#951;&#957; &#948;&#953;&#940;&#964;&#945;&#958;&#951; &#964;&#959;&#965; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#942; &#959;&#960;&#959;&#943;&#945; &#949;&#958;&#945;&#961;&#964;&#940;&#964;&#945;&#953; &#945;&#960;&#972; &#964;&#951;&#957;
+ &#964;&#959;&#960;&#959;&#952;&#949;&#963;&#943;&#945; &#963;&#945;&#962;, &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#942; &#964;&#959;&#957; &#964;&#973;&#960;&#959; &#964;&#959;&#965; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965;.
</p>
@@ -205,8 +211,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa2"></a><span class="guilabel">&#928;&#959;&#957;&#964;&#943;&#954;&#953;</span>:
- </p>
+ <p><a name="misc-params-hardware-pa2"></a><span class="bold"><strong>&#928;&#959;&#957;&#964;&#943;&#954;&#953;</strong></span></p>
<p><a name="misc-params-hardware-pa2a"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#942; &#957;&#945; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#964;&#949; &#940;&#955;&#955;&#949;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962; &#954;&#945;&#964;&#940;&#948;&#949;&#953;&#958;&#951;&#962;,
@@ -216,31 +221,32 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa3"></a><span class="guilabel">&#922;&#940;&#961;&#964;&#945; &#942;&#967;&#959;&#965;</span>:
+ <p><a name="misc-params-hardware-pa3"></a><span class="bold"><strong>&#922;&#940;&#961;&#964;&#945; &#942;&#967;&#959;&#965;</strong></span></p>
+
+
+ <p><a name="misc-params-hardware-pa3a"></a>&#932;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#964;&#959;&#957; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959; &#959;&#948;&#951;&#947;&#972; &#945;&#957;
+ &#945;&#965;&#964;&#972;&#962; &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#962;.
</p>
- <p><a name="misc-params-hardware-pa3a"></a>&#932;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#964;&#959;&#957; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959; &#959;&#948;&#951;&#947;&#972;, &#945;&#957; &#941;&#967;&#949;&#953;
- &#954;&#945;&#952;&#959;&#961;&#953;&#963;&#964;&#949;&#943; &#954;&#940;&#960;&#959;&#953;&#959;&#962;. &#919; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#949;&#957;&#972;&#962; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#959;&#973; &#959;&#948;&#951;&#947;&#959;&#973; &#948;&#943;&#957;&#949;&#964;&#945;&#953;
- &#956;&#972;&#957;&#959;&#957; &#972;&#964;&#945;&#957; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959;&#953; &#959;&#948;&#951;&#947;&#959;&#943; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#963;&#945;&#962;, &#945;&#955;&#955;&#940; &#954;&#945;&#957;&#941;&#957;&#945;&#962; &#945;&#960;&#972;
- &#945;&#965;&#964;&#959;&#973;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#959; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959;&#962;.
+ <p>&#913;&#957; &#948;&#949;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#959;&#962; &#949;&#954; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#959;&#948;&#951;&#947;&#972;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#942;&#967;&#959;&#965;, &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945;
+ &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#953; &#949;&#957;&#945;&#955;&#955;&#945;&#954;&#964;&#953;&#954;&#959;&#943; &#959;&#948;&#951;&#947;&#959;&#943;. &#913;&#957; &#963;&#965;&#956;&#946;&#945;&#943;&#957;&#949;&#953; &#945;&#965;&#964;&#972; &#954;&#945;&#953; &#960;&#953;&#963;&#964;&#949;&#973;&#949;&#964;&#949; &#972;&#964;&#953;
+ &#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#948;&#949;&#957; &#941;&#967;&#949;&#953; &#954;&#940;&#957;&#949;&#953; &#964;&#951;&#957; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#949;&#962;</em></span> &#947;&#953;&#945; &#957;&#945; &#954;&#945;&#952;&#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa4"></a><span class="guilabel">&#922;&#940;&#961;&#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;</span>:
- </p>
+ <p><a name="misc-params-hardware-pa4"></a><span class="bold"><strong>&#922;&#940;&#961;&#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957;</strong></span></p>
<p><a name="misc-params-hardware-pa4a"></a>&#913;&#965;&#964;&#942; &#951; &#949;&#957;&#972;&#964;&#951;&#964;&#945; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#963;&#945;&#962; &#954;&#945;&#953; &#964;&#953;&#962;
- &#959;&#952;&#972;&#957;&#949;&#962; &#963;&#945;&#962;.
- </p>
+ &#959;&#952;&#972;&#957;&#949;&#962; &#963;&#945;&#962;. &#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="configureX_chooser.html" title="&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; X, &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;">&amp;#x201C;&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; X, &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;&amp;#x201D;</a></p>
- <p><a name="misc-params-hardware-pa4b"></a>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;, &#948;&#949;&#943;&#964;&#949; <a class="xref" href="configureX_chooser.html" title="&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; X, &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;">&amp;#x201C;&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; X, &#964;&#951;&#962; &#954;&#940;&#961;&#964;&#945;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#974;&#957; &#954;&#945;&#953; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;&amp;#x201D;</a>.
- </p>
+
</li>
</ul>
</div>
@@ -266,14 +272,13 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-network-pa1"></a><span class="guilabel">&#916;&#943;&#954;&#964;&#965;&#959;</span>:
- </p>
+ <p><a name="misc-params-network-pa1"></a><span class="bold"><strong>&#916;&#943;&#954;&#964;&#965;&#959;</strong></span></p>
<p><a name="misc-params-network-pa2"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#964;&#959; &#948;&#943;&#954;&#964;&#965;&#972; &#963;&#945;&#962;, &#945;&#955;&#955;&#940; &#947;&#953;&#945; &#954;&#940;&#961;&#964;&#949;&#962; &#948;&#953;&#954;&#964;&#973;&#959;&#965; &#967;&#969;&#961;&#943;&#962;
&#949;&#955;&#949;&#973;&#952;&#949;&#961;&#959;&#965;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#957;&#945; &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#963;&#964;&#959;
- <span class="application">&#922;&#941;&#957;&#964;&#961;&#959; &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia</span>, &#945;&#966;&#959;&#973; &#941;&#967;&#949;&#964;&#949; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953;
- &#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945; &laquo;nonfree&raquo;.
+ &#922;&#941;&#957;&#964;&#961;&#959; &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia, &#945;&#966;&#959;&#973; &#941;&#967;&#949;&#964;&#949; &#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945;
+ <span class="emphasis"><em>Nonfree</em></span>.
</p>
@@ -298,8 +303,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-network-pa4"></a><span class="guilabel">&#916;&#953;&#945;&#956;&#949;&#963;&#959;&#955;&#945;&#946;&#951;&#964;&#941;&#962;</span>:
- </p>
+ <p><a name="misc-params-network-pa4"></a><span class="bold"><strong>&#916;&#953;&#945;&#956;&#949;&#963;&#959;&#955;&#945;&#946;&#951;&#964;&#941;&#962;</strong></span></p>
<p><a name="misc-params-network-pa4a"></a>&#904;&#957;&#945;&#962; &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942;&#962; &#948;&#953;&#945;&#956;&#949;&#963;&#959;&#955;&#945;&#946;&#951;&#964;&#942; &#948;&#961;&#945; &#969;&#962; &#956;&#949;&#963;&#940;&#950;&#959;&#957;&#964;&#945;&#962; &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;
@@ -309,7 +313,7 @@
<p><a name="misc-params-network-pa4b"></a>&#906;&#963;&#969;&#962; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#957;&#945; &#963;&#965;&#956;&#946;&#959;&#965;&#955;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#964;&#959;&#957; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942; &#964;&#969;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957; &#963;&#945;&#962; &#947;&#953;&#945; &#957;&#945;
- &#955;&#940;&#946;&#949;&#964;&#949; &#964;&#953;&#962; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962; &#960;&#959;&#965; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949; &#957;&#945; &#949;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#949;&#948;&#974;
+ &#955;&#940;&#946;&#949;&#964;&#949; &#964;&#953;&#962; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962; &#960;&#959;&#965; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#963;&#964;&#949; &#957;&#945; &#949;&#953;&#963;&#940;&#947;&#949;&#964;&#949; &#949;&#948;&#974;.
</p>
</li>
@@ -335,35 +339,37 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-security-pa1"></a><span class="guilabel">&#917;&#960;&#943;&#960;&#949;&#948;&#959; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;&#962;</span>:
- </p>
+ <p><a name="misc-params-security-pa1"></a><span class="bold"><strong>&#917;&#960;&#943;&#960;&#949;&#948;&#959; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;&#962;</strong></span></p>
- <p><a name="misc-params-security-pa1a"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959; &#917;&#960;&#943;&#960;&#949;&#948;&#959; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;&#962; &#947;&#953;&#945; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;, &#963;&#964;&#953;&#962;
- &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962; &#951; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; (&#932;&#965;&#960;&#953;&#954;&#972;) &#949;&#943;&#957;&#945;&#953; &#964;&#959;
- &#954;&#945;&#964;&#945;&#955;&#955;&#951;&#955;&#972;&#964;&#949;&#961;&#959; &#947;&#953;&#945; &#947;&#949;&#957;&#953;&#954;&#942; &#967;&#961;&#942;&#963;&#951;.
- </p>
-
-
- <p><a name="misc-params-security-pa1b"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#960;&#959;&#965; &#964;&#945;&#953;&#961;&#953;&#940;&#950;&#949;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959; &#956;&#949; &#964;&#951; &#967;&#961;&#942;&#963;&#951; &#963;&#945;&#962;.
+ <p><a name="misc-params-security-pa1a"></a>&#932;&#959; &#949;&#960;&#943;&#960;&#949;&#948;&#959; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;&#962; &#947;&#953;&#945; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;, &#963;&#964;&#953;&#962; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962; &#951;
+ &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; (&#932;&#965;&#960;&#953;&#954;&#972;) &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#954;&#945;&#964;&#945;&#955;&#955;&#951;&#955;&#972;&#964;&#949;&#961;&#959; &#947;&#953;&#945; &#947;&#949;&#957;&#953;&#954;&#942;
+ &#967;&#961;&#942;&#963;&#951;. &#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#960;&#959;&#965; &#954;&#945;&#955;&#973;&#960;&#964;&#949;&#953; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#964;&#953;&#962; &#945;&#957;&#940;&#947;&#954;&#949;&#962; &#963;&#945;&#962;.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-security-pa2"></a><span class="guilabel">&#932;&#949;&#943;&#967;&#959;&#962; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962;</span>:
+ <p><a name="misc-params-security-pa2"></a><span class="bold"><strong>&#932;&#949;&#943;&#967;&#959;&#962; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962;</strong></span></p>
+
+
+ <p><a name="misc-params-security-pa2b"></a>&#932;&#959; &#964;&#949;&#943;&#967;&#959;&#962; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#951;&#957; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#964;&#969;&#957; &#949;&#960;&#953;&#964;&#961;&#949;&#960;&#972;&#956;&#949;&#957;&#969;&#957;
+ &#948;&#953;&#954;&#964;&#965;&#945;&#954;&#974;&#957; &#963;&#965;&#957;&#948;&#941;&#963;&#949;&#969;&#957; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;. &#919; &#963;&#974;&#945; &#954;&#945;&#953; &#945;&#963;&#966;&#945;&#955;&#942;&#962; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;
+ &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#943;&#957;&#945;&#953; &#957;&#945; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#959;&#957;&#964;&#945;&#953; &#924;&#919;&#916;&#917;&#925; &#949;&#953;&#963;&#949;&#961;&#967;&#972;&#956;&#949;&#957;&#949;&#962; &#963;&#965;&#957;&#948;&#941;&#963;&#949;&#953;&#962;. &#913;&#965;&#964;&#972; &#948;&#949;&#957; &#963;&#945;&#962;
+ &#945;&#960;&#959;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#958;&#949;&#961;&#967;&#972;&#956;&#949;&#957;&#949;&#962; &#963;&#965;&#957;&#948;&#941;&#963;&#949;&#953;&#962; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;
+ &#954;&#945;&#957;&#959;&#957;&#953;&#954;&#940;.
</p>
- <p><a name="misc-params-security-pa2a"></a>&#932;&#959; &#964;&#949;&#943;&#967;&#959;&#962; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962; &#941;&#967;&#949;&#953; &#969;&#962; &#963;&#964;&#972;&#967;&#959; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#964;&#949;&#943;&#967;&#959;&#962; &#956;&#949;&#964;&#945;&#958;&#973; &#964;&#969;&#957; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#974;&#957;
- &#963;&#945;&#962; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#954;&#945;&#953; &#964;&#959;&#965;&#962; &#954;&#945;&#964;&#949;&#961;&#947;&#940;&#961;&#951;&#948;&#949;&#962; &#964;&#959;&#965; &#948;&#953;&#945;&#948;&#953;&#954;&#964;&#973;&#959;&#965; &#959;&#953; &#959;&#960;&#959;&#943;&#959;&#953; &#952;&#945; &#942;&#952;&#949;&#955;&#945;&#957; &#957;&#945; &#964;&#945;
- &#949;&#954;&#952;&#941;&#963;&#959;&#965;&#957; &#942; &#957;&#945; &#964;&#945; &#954;&#955;&#941;&#968;&#959;&#965;&#957;.
+ <p>&#925;&#945; &#941;&#967;&#949;&#964;&#949; &#965;&#960;&#972;&#968;&#953;&#957; &#972;&#964;&#953; &#964;&#959; &#948;&#953;&#945;&#948;&#943;&#954;&#964;&#965;&#959; &#949;&#943;&#957;&#945;&#953; &#941;&#957;&#945; &#965;&#968;&#951;&#955;&#959;&#973; &#954;&#953;&#957;&#948;&#973;&#957;&#959;&#965; &#948;&#943;&#954;&#964;&#965;&#959; &#954;&#945;&#953;
+ &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#963;&#965;&#957;&#949;&#967;&#972;&#956;&#949;&#957;&#949;&#962; &#960;&#961;&#959;&#963;&#960;&#940;&#952;&#949;&#953;&#949;&#962; &#960;&#945;&#961;&#945;&#946;&#943;&#945;&#963;&#951;&#962; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957;. &#913;&#954;&#972;&#956;&#945; &#954;&#945;&#953; &#959;&#953;
+ &#966;&#945;&#953;&#957;&#959;&#956;&#949;&#957;&#953;&#954;&#940; <span class="quote">&amp;#x201C;<span class="quote">&#945;&#963;&#966;&#945;&#955;&#949;&#943;&#962;</span>&amp;#x201D;</span> &#963;&#965;&#957;&#948;&#941;&#963;&#949;&#953;&#962; &#972;&#960;&#969;&#962; &#964;&#959;&#965; ICMP (&#947;&#953;&#945; ping) &#941;&#967;&#959;&#965;&#957;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#969;&#962; &#954;&#961;&#965;&#966;&#940; &#954;&#945;&#957;&#940;&#955;&#953;&#945; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#947;&#953;&#945; &#964;&#951;&#957; &#949;&#958;&#945;&#947;&#969;&#947;&#942; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#945;&#960;&#972;
+ &#954;&#945;&#954;&#959;&#960;&#959;&#953;&#959;&#973;&#962;.
</p>
- <p><a name="misc-params-security-pa2b"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#953;&#962; &#965;&#960;&#951;&#961;&#949;&#963;&#943;&#949;&#962; &#960;&#959;&#965; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#963;&#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#940; &#963;&#945;&#962;. &#927;&#953;
- &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#945;&#962; &#952;&#945; &#949;&#958;&#945;&#961;&#964;&#974;&#957;&#964;&#945;&#953; &#956;&#949; &#964;&#951;&#957; &#967;&#961;&#942;&#963;&#951; &#947;&#953;&#945; &#964;&#951;&#957; &#959;&#960;&#959;&#943;&#945; &#960;&#961;&#959;&#959;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#959;
- &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#963;&#945;&#962;. &#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="">???</a>.
+ <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962;, &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; <a class="xref" href="setupBootloader.html" title="&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">Bootloader</a>.
</p>
@@ -376,8 +382,8 @@
<tr>
<td align="left" valign="top">
- <p><a name="misc-params-security-pa2c"></a>&#904;&#967;&#949;&#964;&#949; &#965;&#960;&#972;&#968;&#951; &#963;&#945;&#962; &#972;&#964;&#953; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#959;&#957;&#964;&#945;&#962; &#964;&#945; &#960;&#940;&#957;&#964;&#945; (&#967;&#969;&#961;&#943;&#962; &#964;&#949;&#943;&#967;&#959;&#962; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962;) &#956;&#960;&#959;&#961;&#949;&#943;
- &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#961;&#953;&#968;&#959;&#954;&#943;&#957;&#948;&#965;&#957;&#959;.
+ <p><a name="misc-params-security-pa2c"></a>&#904;&#967;&#949;&#964;&#949; &#965;&#960;&#972;&#968;&#951; &#963;&#945;&#962; &#972;&#964;&#953; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#959;&#957;&#964;&#945;&#962; &#964;&#945; <span class="emphasis"><em>&#960;&#940;&#957;&#964;&#945;</em></span> (&#967;&#969;&#961;&#943;&#962; &#964;&#949;&#943;&#967;&#959;&#962;
+ &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962;) &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#961;&#953;&#968;&#959;&#954;&#943;&#957;&#948;&#965;&#957;&#959;.
</p>
</td>
diff --git a/el/securityLevel.html b/el/securityLevel.html
index faa07b1..9e3ff7f 100644
--- a/el/securityLevel.html
+++ b/el/securityLevel.html
@@ -22,29 +22,72 @@
</div>
</div>
</div>
+
+
-
+
+
+
-
-
+
+
+ <p><span class="bold"><strong>&#928;&#945;&#961;&#945;&#954;&#945;&#955;&#974; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#949;&#960;&#953;&#952;&#965;&#956;&#951;&#964;&#972; &#949;&#960;&#943;&#960;&#949;&#948;&#959;
+ &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962;</strong></span></p>
+
+ <p><a name="securityLevel-pa1"></a><span class="emphasis"><em>&#932;&#965;&#960;&#953;&#954;&#972;</em></span> &#949;&#943;&#957;&#945;&#953; &#951; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#954;&#945;&#953; &#963;&#965;&#957;&#953;&#963;&#964;&#974;&#956;&#949;&#957;&#951; &#961;&#973;&#952;&#956;&#953;&#963;&#951;
+ &#947;&#953;&#945; &#964;&#959;&#957; &#956;&#941;&#963;&#959; &#967;&#961;&#942;&#963;&#964;&#951;.
+ </p>
-
- <p><a name="securityLevel-pa1"></a>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#964;&#959; &#949;&#960;&#943;&#960;&#949;&#948;&#959; &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962;.
+
+ <p>&#932;&#959; <span class="emphasis"><em>&#913;&#963;&#966;&#945;&#955;&#942;&#962;</em></span> &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#949;&#943; &#941;&#957;&#945; &#965;&#968;&#951;&#955;&#942;&#962; &#960;&#961;&#959;&#963;&#964;&#945;&#963;&#943;&#945;&#962; &#963;&#973;&#963;&#964;&#951;&#956;&#945; -
+ &#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; &#945;&#957; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#960;&#961;&#959;&#959;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#947;&#953;&#945; &#967;&#961;&#942;&#963;&#951; &#969;&#962; &#941;&#957;&#945;&#962; &#948;&#951;&#956;&#972;&#963;&#953;&#959;&#962;
+ &#949;&#958;&#965;&#960;&#951;&#961;&#949;&#964;&#951;&#964;&#942;&#962;.
</p>
-
- <p><a name="securityLevel-pa2"></a>&#913;&#966;&#942;&#963;&#964;&#949; &#964;&#953;&#962; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#949;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#969;&#962; &#941;&#967;&#959;&#965;&#957;, &#945;&#957; &#948;&#949;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#964;&#953; &#957;&#945;
- &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949;.
+
+ <p><span class="bold"><strong>&#916;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;&#962; &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962;</strong></span></p>
+
+
+ <p><a name="securityLevel-pa2"></a>&#913;&#965;&#964;&#972; &#964;&#959; &#945;&#957;&#964;&#953;&#954;&#949;&#943;&#956;&#949;&#957;&#959; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#951;&#955;&#949;&#954;&#964;&#961;&#959;&#957;&#953;&#954;&#942; &#948;&#953;&#949;&#973;&#952;&#965;&#957;&#963;&#951;
+ &#963;&#964;&#951;&#957; &#959;&#960;&#959;&#943;&#945; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#952;&#945; &#963;&#964;&#941;&#955;&#957;&#949;&#953; <span class="emphasis"><em>&#956;&#951;&#957;&#973;&#956;&#945;&#964;&#945; &#949;&#953;&#948;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#969;&#957;
+ &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962;</em></span> &#972;&#964;&#945;&#957; &#945;&#957;&#953;&#967;&#957;&#949;&#973;&#959;&#957;&#964;&#945;&#953; &#954;&#945;&#964;&#945;&#963;&#964;&#940;&#963;&#949;&#953;&#962; &#959;&#953; &#959;&#960;&#959;&#943;&#949;&#962; &#945;&#960;&#945;&#953;&#964;&#959;&#973;&#957; &#957;&#945;
+ &#949;&#953;&#948;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#959; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#942;&#962; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
</p>
-
- <p><a name="securityLevel-pa3"></a>&#924;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#972; &#957;&#945; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;&#962; &#945;&#960;&#972;
- &#964;&#951;&#957; &#949;&#957;&#972;&#964;&#951;&#964;&#945; <span class="guilabel">&#913;&#963;&#966;&#940;&#955;&#949;&#953;&#945;</span> &#964;&#959;&#965; &#922;&#941;&#957;&#964;&#961;&#959;&#965; &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia.
+
+ <p>&#924;&#953;&#945; &#954;&#945;&#955;&#942; &#954;&#945;&#953; &#949;&#973;&#954;&#959;&#955;&#951; &#963;&#964;&#951;&#957; &#949;&#957;&#963;&#969;&#956;&#940;&#964;&#969;&#963;&#951; &#955;&#973;&#963;&#951; &#949;&#943;&#957;&#945;&#953; &#964;&#959; &lt;&#967;&#961;&#942;&#963;&#964;&#951;&#962;&gt;@localhost
+ - &#972;&#960;&#959;&#965; &lt;&#967;&#961;&#942;&#963;&#964;&#951;&#962;&gt; &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#963;&#973;&#957;&#948;&#949;&#963;&#951;&#962; &#964;&#959;&#965; &#967;&#961;&#942;&#963;&#964;&#951; &#960;&#959;&#965; &#952;&#945; &#955;&#945;&#956;&#946;&#940;&#957;&#949;&#953; &#964;&#945;
+ &#956;&#951;&#957;&#973;&#956;&#945;&#964;&#945;.
</p>
+
+ <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#932;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#963;&#964;&#941;&#955;&#957;&#949;&#953; &#964;&#945; &#956;&#951;&#957;&#973;&#956;&#945;&#964;&#945; &#969;&#962; <span class="bold"><strong>Unix
+ Mailspool</strong></span> &#956;&#951;&#957;&#973;&#956;&#945;&#964;&#945; &#954;&#945;&#953; &#972;&#967;&#953; &#969;&#962; &laquo;&#964;&#965;&#960;&#953;&#954;&#942;&raquo; SMTP &#945;&#955;&#955;&#951;&#955;&#959;&#947;&#961;&#945;&#966;&#943;&#945;: &#969;&#963;&#964;&#972;&#963;&#959;
+ &#959; &#967;&#961;&#942;&#963;&#964;&#951;&#962; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#941;&#967;&#949;&#953; &#959;&#961;&#953;&#963;&#964;&#949;&#943; &#947;&#953;&#945; &#957;&#945; &#955;&#940;&#946;&#949;&#964;&#949; &#964;&#951;&#957; &#945;&#955;&#955;&#951;&#955;&#959;&#947;&#961;&#945;&#966;&#943;&#945;!
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <p><a name="securityLevel-pa3"></a>&#917;&#943;&#957;&#945;&#953; &#960;&#940;&#957;&#964;&#945; &#948;&#965;&#957;&#945;&#964;&#972; &#957;&#945; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#964;&#953;&#962; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#953;&#962; &#945;&#963;&#966;&#940;&#955;&#949;&#953;&#945;&#962; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
+ &#945;&#960;&#972; &#964;&#951;&#957; &#949;&#957;&#972;&#964;&#951;&#964;&#945; <span class="emphasis"><em>&#913;&#963;&#966;&#940;&#955;&#949;&#953;&#945;</em></span> &#964;&#959;&#965; &#922;&#941;&#957;&#964;&#961;&#959;&#965; &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia.
+ </p>
+
</div>
</body>
</html>
diff --git a/el/selectCountry.html b/el/selectCountry.html
index 541ea59..197782c 100644
--- a/el/selectCountry.html
+++ b/el/selectCountry.html
@@ -29,13 +29,31 @@
- <p><a name="selectCountry-pa1"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945; &#942; &#964;&#951;&#957; &#960;&#949;&#961;&#953;&#959;&#967;&#942; &#963;&#945;&#962;. &#913;&#965;&#964;&#972; &#949;&#943;&#957;&#945;&#953; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972; &#947;&#953;&#945; &#972;&#955;&#969;&#957; &#964;&#969;&#957; &#949;&#953;&#948;&#974;&#957;
- &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#969;&#957;, &#972;&#960;&#969;&#962; &#964;&#959; &#957;&#972;&#956;&#953;&#963;&#956;&#945; &#954;&#945;&#953; &#959; &#954;&#945;&#957;&#959;&#957;&#953;&#963;&#964;&#953;&#954;&#972;&#962; &#964;&#959;&#956;&#941;&#945;&#962; &#945;&#963;&#973;&#961;&#956;&#945;&#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965;.
- </p>
- <p><a name="selectCountry-pa2"></a>&#913;&#957; &#951; &#967;&#974;&#961;&#945; &#963;&#945;&#962; &#948;&#949;&#957; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="bold"><strong>&#902;&#955;&#955;&#949;&#962; &#967;&#974;&#961;&#949;&#962;</strong></span> &#954;&#945;&#953; &#945;&#960;&#972; &#949;&#954;&#949;&#943; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945; &#942; &#964;&#951;&#957;
- &#960;&#949;&#961;&#953;&#959;&#967;&#942;.<span class="guilabel"></span></p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="selectCountry-pa1"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945; &#942; &#964;&#951;&#957; &#960;&#949;&#961;&#953;&#959;&#967;&#942; &#963;&#945;&#962;. &#913;&#965;&#964;&#972; &#949;&#943;&#957;&#945;&#953; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972; &#947;&#953;&#945; &#972;&#955;&#969;&#957; &#964;&#969;&#957; &#949;&#953;&#948;&#974;&#957;
+ &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#969;&#957;, &#972;&#960;&#969;&#962; &#964;&#959; &#957;&#972;&#956;&#953;&#963;&#956;&#945; &#954;&#945;&#953; &#959; &#954;&#945;&#957;&#959;&#957;&#953;&#963;&#964;&#953;&#954;&#972;&#962; &#964;&#959;&#956;&#941;&#945;&#962; &#945;&#963;&#973;&#961;&#956;&#945;&#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965;. &#919;
+ &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#956;&#953;&#945;&#962; &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#951;&#962; &#967;&#974;&#961;&#945;&#962;, &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#959;&#948;&#951;&#947;&#942;&#963;&#949;&#953; &#963;&#949; &#945;&#948;&#965;&#957;&#945;&#956;&#943;&#945; &#967;&#961;&#942;&#963;&#951;&#962; &#949;&#957;&#972;&#962;
+ &#945;&#963;&#973;&#961;&#956;&#945;&#964;&#959;&#965; &#948;&#953;&#954;&#964;&#973;&#959;&#965;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="selectCountry-pa2"></a>&#913;&#957; &#951; &#967;&#974;&#961;&#945; &#963;&#945;&#962; &#948;&#949;&#957; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
+ <span class="emphasis"><em>&#902;&#955;&#955;&#949;&#962; &#967;&#974;&#961;&#949;&#962;</em></span> &#954;&#945;&#953; &#945;&#960;&#972; &#949;&#954;&#949;&#943; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951; &#967;&#974;&#961;&#945; &#942; &#964;&#951;&#957;
+ &#960;&#949;&#961;&#953;&#959;&#967;&#942;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
<div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -47,10 +65,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="selectCountry-pa3"></a>&#913;&#957; &#951; &#967;&#974;&#961;&#945; &#963;&#945;&#962; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#956;&#972;&#957;&#959; &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945; <span class="bold"><strong>&#902;&#955;&#955;&#949;&#962;
- &#967;&#974;&#961;&#949;&#962;</strong></span>, &#945;&#966;&#959;&#973; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="bold"><strong>&#917;&#957;&#964;&#940;&#958;&#949;&#953;</strong></span> &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#943;&#957;&#949;&#964;&#945;&#953; &#969;&#962; &#956;&#953;&#945; &#967;&#974;&#961;&#945; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#945;&#960;&#972;
- &#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#955;&#943;&#963;&#964;&#945;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959; &#945;&#947;&#957;&#959;&#942;&#963;&#949;&#964;&#949;, &#964;&#959; DrakX &#952;&#945; &#945;&#954;&#959;&#955;&#959;&#965;&#952;&#942;&#963;&#949;&#953; &#964;&#951;&#957;
- &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
+ <p><a name="selectCountry-pa3"></a>&#913;&#957; &#951; &#967;&#974;&#961;&#945; &#963;&#945;&#962; &#949;&#956;&#966;&#945;&#957;&#943;&#950;&#949;&#964;&#945;&#953; &#956;&#972;&#957;&#959; &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945; <span class="emphasis"><em>&#902;&#955;&#955;&#949;&#962; &#967;&#974;&#961;&#949;&#962;</em></span>,
+ &#945;&#966;&#959;&#973; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#959;&#965;&#956;&#960;&#943; <span class="emphasis"><em>&#917;&#957;&#964;&#940;&#958;&#949;&#953;</em></span> &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#943;&#957;&#949;&#964;&#945;&#953;
+ &#969;&#962; &#956;&#953;&#945; &#967;&#974;&#961;&#945; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#945;&#960;&#972; &#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#955;&#943;&#963;&#964;&#945;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#959; &#945;&#947;&#957;&#959;&#942;&#963;&#949;&#964;&#949;, &#964;&#959;
+ DrakX &#952;&#945; &#949;&#966;&#945;&#961;&#956;&#972;&#963;&#949;&#953; &#964;&#951;&#957; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#953;&#954;&#942; &#963;&#945;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
</p>
</td>
@@ -71,7 +89,7 @@
- <p><a name="selectCountry-pa4"></a>&#931;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="guilabel">&#902;&#955;&#955;&#949;&#962; &#967;&#974;&#961;&#949;&#962;</span> &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#953;&#945;
+ <p><a name="selectCountry-pa4"></a>&#931;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="emphasis"><em>&#902;&#955;&#955;&#949;&#962; &#967;&#974;&#961;&#949;&#962;</em></span> &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#949;&#960;&#943;&#963;&#951;&#962; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#953;&#945;
&#956;&#941;&#952;&#959;&#948;&#959; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962; (&#963;&#964;&#959; &#954;&#940;&#964;&#969; &#956;&#941;&#961;&#959;&#962; &#964;&#951;&#962; &#955;&#943;&#963;&#964;&#945;&#962;). &#927;&#953; &#956;&#941;&#952;&#959;&#948;&#959;&#953; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962;
&#949;&#960;&#953;&#964;&#961;&#941;&#960;&#959;&#965;&#957; &#963;&#964;&#959;&#965;&#962; &#967;&#961;&#942;&#963;&#964;&#949;&#962; &#957;&#945; &#949;&#953;&#963;&#940;&#947;&#959;&#965;&#957; &#960;&#959;&#955;&#965;&#947;&#955;&#969;&#963;&#963;&#953;&#954;&#959;&#973;&#962; &#967;&#945;&#961;&#945;&#954;&#964;&#942;&#961;&#949;&#962; (&#922;&#953;&#957;&#941;&#950;&#953;&#954;&#945;,
&#921;&#945;&#960;&#969;&#957;&#953;&#954;&#940;, &#922;&#959;&#961;&#949;&#940;&#964;&#953;&#954;&#945;, &#954;&#955;&#960;). &#932;&#959; IBus &#949;&#943;&#957;&#945;&#953; &#951; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#951; &#956;&#941;&#952;&#959;&#948;&#959;&#962; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962;
@@ -93,8 +111,8 @@
<p><a name="selectCountry-pa5"></a>&#913;&#957; &#960;&#945;&#961;&#945;&#955;&#949;&#943;&#968;&#945;&#964;&#949; &#964;&#951; &#961;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#951;&#962; &#956;&#949;&#952;&#972;&#948;&#959;&#965; &#949;&#953;&#963;&#945;&#947;&#969;&#947;&#942;&#962; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;,
&#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#956;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#949;&#954; &#957;&#941;&#959;&#965; &#963;&#949; &#945;&#965;&#964;&#942; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965;
- &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962; &#956;&#941;&#963;&#969; &#964;&#959;&#965; &#956;&#949;&#957;&#959;&#973; &laquo;&#929;&#965;&#952;&#956;&#943;&#963;&#964;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;&raquo;
- -&gt; &laquo;&#931;&#973;&#963;&#964;&#951;&#956;&#945;&raquo;, &#942; &#949;&#954;&#964;&#949;&#955;&#974;&#957;&#964;&#945;&#962; localedrake &#969;&#962; root.
+ &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962; &#956;&#941;&#963;&#969; &#964;&#959;&#965; &#956;&#949;&#957;&#959;&#973; <span class="guimenu">&#916;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#964;&#949; &#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;</span> &#8594; <span class="guimenuitem">&#931;&#973;&#963;&#964;&#951;&#956;&#945;</span>, &#942; &#949;&#954;&#964;&#949;&#955;&#974;&#957;&#964;&#945;&#962;
+ <span class="command"><strong>localedrake</strong></span> &#969;&#962; <span class="emphasis"><em>root</em></span>.
</p>
</td>
diff --git a/el/selectInstallClass.html b/el/selectInstallClass.html
index 6097b1c..122b514 100644
--- a/el/selectInstallClass.html
+++ b/el/selectInstallClass.html
@@ -22,6 +22,11 @@
</div>
</div>
</div>
+
+
+
+
+
@@ -30,6 +35,9 @@
+
+
+
@@ -38,74 +46,49 @@
<div class="itemizedlist">
- <ul class="itemizedlist">
+ <ul class="itemizedlist" compact>
<li class="listitem">
- <p>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;</p>
+ <p><span class="bold"><strong>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;</strong></span></p>
- <p>&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#964;&#949; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#947;&#953;&#945; &#956;&#953;&#945; &#957;&#941;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
- <span class="application">Mageia</span>.
+ <p>&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#947;&#953;&#945; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#957;&#941;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;
+ &#964;&#951;&#962; Mageia. &#920;&#945; &#947;&#943;&#957;&#949;&#953; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#951;&#962; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962; <code class="literal">root</code>
+ (<code class="filename">/</code>), &#945;&#955;&#955;&#940; &#941;&#967;&#949;&#964;&#949; &#964;&#951;&#957; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945;
+ &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="filename">/home</code> (&#956;&#953;&#945; &#958;&#949;&#967;&#969;&#961;&#953;&#963;&#964;&#942; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ /home &#945;&#957;&#964;&#943; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#941;&#957;&#945;&#957; &#966;&#940;&#954;&#949;&#955;&#959; /home &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; root (/)).
</p>
</li>
<li class="listitem">
- <p>&#913;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951;</p>
+ <p><span class="bold"><strong>&#913;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951;</strong></span></p>
- <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#956;&#953;&#945; &#942; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#963;&#949;&#953;&#962; &#964;&#951;&#962;
- <span class="application">Mageia</span> &#963;&#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#940; &#963;&#945;&#962;, &#959; &#959;&#948;&#951;&#947;&#972;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#952;&#945;
- &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#968;&#949;&#953; &#957;&#945; &#945;&#957;&#945;&#946;&#945;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#945;&#960;&#972; &#945;&#965;&#964;&#941;&#962; &#963;&#964;&#951;&#957; &#964;&#949;&#955;&#949;&#965;&#964;&#945;&#943;&#945; &#941;&#954;&#948;&#959;&#963;&#951;.
+ <p>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#967;&#961;&#951;&#963;&#953;&#956;&#949;&#973;&#949;&#953; &#963;&#964;&#951;&#957; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951; &#956;&#953;&#945;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962;
+ Mageia.
</p>
-
-
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#904;&#967;&#949;&#953; &#948;&#959;&#954;&#953;&#956;&#945;&#963;&#964;&#949;&#943; &#956;&#972;&#957;&#959; &#951; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951; &#945;&#960;&#972; &#956;&#953;&#945;, <span class="emphasis"><em>&#945;&#954;&#972;&#956;&#945;
- &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#953;&#950;&#972;&#956;&#949;&#957;&#951;</em></span>, &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962; Mageia &#972;&#964;&#945;&#957; &#954;&#965;&#954;&#955;&#959;&#966;&#972;&#961;&#951;&#963;&#949; &#951;
- &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#959;&#965; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;. &#913;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#945;&#957;&#945;&#946;&#945;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#945;&#960;&#972; &#956;&#953;&#945;
- &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962; Mageia &#960;&#959;&#965; &#941;&#967;&#949;&#953; &#966;&#964;&#940;&#963;&#949;&#953; &#963;&#964;&#959; &#964;&#941;&#955;&#959;&#962; &#964;&#959;&#965; &#954;&#973;&#954;&#955;&#959;&#965; &#950;&#969;&#942;&#962; &#964;&#951;&#962; (EOL), &#964;&#972;&#964;&#949;
- &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#954;&#945;&#952;&#945;&#961;&#942; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#948;&#953;&#945;&#966;&#965;&#955;&#940;&#963;&#963;&#959;&#957;&#964;&#945;&#962; &#964;&#951;&#957;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="literal">/home</code>.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
</li>
</ul>
</div>
- <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>&#913;&#957; &#954;&#940;&#960;&#959;&#953;&#945; &#963;&#964;&#953;&#947;&#956;&#942; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#945;&#960;&#959;&#966;&#945;&#963;&#943;&#963;&#949;&#964;&#949; &#957;&#945; &#948;&#953;&#945;&#954;&#972;&#968;&#949;&#964;&#949; &#964;&#951;&#957;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#951; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#949;&#943;&#957;&#945;&#953; &#949;&#966;&#953;&#954;&#964;&#942;, &#945;&#955;&#955;&#940; &#963;&#954;&#949;&#966;&#964;&#949;&#943;&#964;&#949; &#960;&#959;&#955;&#973; &#954;&#945;&#955;&#940; &#960;&#961;&#953;&#957; &#964;&#959;
- &#954;&#940;&#957;&#949;&#964;&#949;. &#913;&#960;&#972; &#964;&#951; &#963;&#964;&#953;&#947;&#956;&#942; &#960;&#959;&#965; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#941;&#967;&#949;&#953; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#942; &#941;&#967;&#949;&#953; &#958;&#949;&#954;&#953;&#957;&#942;&#963;&#949;&#953; &#951;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#969;&#957; &#949;&#957;&#951;&#956;&#949;&#961;&#974;&#963;&#949;&#969;&#957;, &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#960;&#953;&#945; &#963;&#964;&#951;&#957; &#943;&#948;&#953;&#945;
- &#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#960;&#959;&#965; &#942;&#964;&#945;&#957; &#960;&#961;&#953;&#957; &#954;&#945;&#953; &#951; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#952;&#945; &#956;&#960;&#959;&#961;&#959;&#973;&#963;&#949; &#954;&#940;&#955;&#955;&#953;&#963;&#964;&#945; &#957;&#945; &#963;&#945;&#962;
- &#945;&#966;&#942;&#963;&#949;&#953; &#956;&#949; &#941;&#957;&#945; &#956;&#951; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945;. &#913;&#957; &#960;&#945;&#961;&#972;&#955;&#945; &#945;&#965;&#964;&#940; &#949;&#943;&#963;&#964;&#949; &#945;&#960;&#972;&#955;&#965;&#964;&#945; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;
- &#972;&#964;&#953; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#956;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#963;&#949; &#941;&#957;&#945; &#964;&#949;&#961;&#956;&#945;&#964;&#953;&#954;&#972; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; &#964;&#945;
- &#964;&#961;&#943;&#945; &#960;&#955;&#942;&#954;&#964;&#961;&#945; <span class="guilabel">Alt Ctrl F2</span> &#964;&#945;&#965;&#964;&#972;&#967;&#961;&#959;&#957;&#945;. &#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;,
- &#960;&#945;&#964;&#942;&#963;&#964;&#949; <span class="guilabel">Alt Ctrl Delete</span> &#964;&#945;&#965;&#964;&#972;&#967;&#961;&#959;&#957;&#945; &#947;&#953;&#945; &#957;&#945; &#954;&#940;&#957;&#949;&#964;&#949;
- &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
+ <p>&#904;&#967;&#949;&#953; &#948;&#959;&#954;&#953;&#956;&#945;&#963;&#964;&#949;&#943; &#956;&#972;&#957;&#959; &#951; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951; &#945;&#960;&#972; &#956;&#953;&#945; <span class="emphasis"><em>&#945;&#954;&#972;&#956;&#945;
+ &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#953;&#950;&#972;&#956;&#949;&#957;&#951;</em></span> &#960;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962; Mageia &#972;&#964;&#945;&#957; &#954;&#965;&#954;&#955;&#959;&#966;&#972;&#961;&#951;&#963;&#949; &#951;
+ &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#951; &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#959;&#965; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;. &#913;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#945;&#957;&#945;&#946;&#945;&#952;&#956;&#943;&#963;&#949;&#964;&#949; &#945;&#960;&#972; &#956;&#953;&#945;
+ &#941;&#954;&#948;&#959;&#963;&#951; &#964;&#951;&#962; Mageia &#960;&#959;&#965; &#941;&#967;&#949;&#953; &#966;&#964;&#940;&#963;&#949;&#953; &#963;&#964;&#959; <span class="quote">&amp;#x201C;<span class="quote">&#964;&#941;&#955;&#959;&#962; &#964;&#959;&#965; &#954;&#973;&#954;&#955;&#959;&#965; &#950;&#969;&#942;&#962;</span>&amp;#x201D;</span>
+ &#964;&#951;&#962; (EOL), &#964;&#972;&#964;&#949; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#945; &#957;&#945; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; <span class="quote">&amp;#x201C;<span class="quote">&#954;&#945;&#952;&#945;&#961;&#942;</span>&amp;#x201D;</span>
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#948;&#953;&#945;&#966;&#965;&#955;&#940;&#963;&#963;&#959;&#957;&#964;&#945;&#962; &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; <code class="filename">/home</code>.
</p>
</td>
@@ -124,10 +107,9 @@
<td align="left" valign="top">
<p>&#913;&#957; &#945;&#957;&#945;&#954;&#945;&#955;&#973;&#968;&#949;&#964;&#949; &#972;&#964;&#953; &#958;&#949;&#967;&#940;&#963;&#945;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#953;&#945; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957; &#947;&#955;&#974;&#963;&#963;&#945;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945;
- &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#945;&#960;&#972; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &laquo;&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#942; &#913;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951;&raquo; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962;
- &#947;&#955;&#974;&#963;&#963;&#945;&#962; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; <span class="guilabel">Alt Ctrl
- Home</span>. <span class="emphasis"><em>&#924;&#951;&#957;</em></span> &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#965;&#964;&#972; &#963;&#964;&#945; &#949;&#960;&#972;&#956;&#949;&#957;&#945; &#946;&#942;&#956;&#945;&#964;&#945;
- &#964;&#951;&#962; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;.
+ &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#945;&#960;&#972; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="emphasis"><em>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#942; &#913;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951;</em></span> &#963;&#964;&#951;&#957;
+ &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#947;&#955;&#974;&#963;&#963;&#945;&#962; &#960;&#945;&#964;&#974;&#957;&#964;&#945;&#962; <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Home</strong></span>. <span class="bold"><strong>&#924;&#951;&#957;</strong></span> &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#965;&#964;&#972; &#963;&#964;&#945; &#949;&#960;&#972;&#956;&#949;&#957;&#945; &#946;&#942;&#956;&#945;&#964;&#945; &#964;&#951;&#962;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;.
</p>
</td>
diff --git a/el/selectKeyboard.html b/el/selectKeyboard.html
index e52ceae..57f48e4 100644
--- a/el/selectKeyboard.html
+++ b/el/selectKeyboard.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="prev" href="selectInstallClass.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#942; &#945;&#957;&#945;&#946;&#940;&#952;&#956;&#953;&#963;&#951;">
- <link rel="next" href="doPartitionDisks.html" title="&#916;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="doPartitionDisks.html" title="&#928;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#959;&#962; &#948;&#953;&#945;&#956;&#949;&#961;&#953;&#963;&#956;&#972;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,12 @@
</div>
</div>
</div>
+
+
+
+
+
+
@@ -51,26 +57,26 @@
<li class="listitem">
<p><a name="selectKeyboard-pa3"></a>&#913;&#957; &#964;&#959; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#972; &#963;&#945;&#962; &#948;&#949;&#957; &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#963;&#964;&#951; &#955;&#943;&#963;&#964;&#945;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
- <span class="guibutton">&#928;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945;</span> &#947;&#953;&#945; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#960;&#955;&#942;&#961;&#951; &#955;&#943;&#963;&#964;&#945;, &#954;&#945;&#953;
+ <span class="emphasis"><em>&#928;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945;</em></span> &#947;&#953;&#945; &#957;&#945; &#948;&#949;&#943;&#964;&#949; &#941;&#957;&#945; &#960;&#955;&#951;&#961;&#941;&#963;&#964;&#949;&#961;&#959; &#954;&#945;&#964;&#940;&#963;&#964;&#953;&#967;&#959;, &#954;&#945;&#953;
&#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#972; &#963;&#945;&#962; &#945;&#960;&#972; &#949;&#954;&#949;&#943;.
</p>
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+ <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
<p><a name="selectKeyboard-pa5"></a>&#924;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#949;&#957;&#972;&#962; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#945;&#960;&#972; &#964;&#959; &#948;&#953;&#940;&#955;&#959;&#947;&#959;
- <span class="guibutton">&#928;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945;</span>, &#952;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#959;&#957; &#960;&#961;&#974;&#964;&#959; &#948;&#953;&#940;&#955;&#959;&#947;&#959;
- &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#954;&#945;&#953; &#952;&#945; &#966;&#945;&#943;&#957;&#949;&#964;&#945;&#953; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#941;&#957;&#945; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#959;
- &#945;&#960;&#972; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#945;&#963;&#966;&#945;&#955;&#974;&#962; &#957;&#945; &#945;&#947;&#957;&#959;&#942;&#963;&#949;&#964;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951; &#963;&#965;&#956;&#960;&#949;&#961;&#953;&#966;&#959;&#961;&#940; &#954;&#945;&#953;
- &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;: &#932;&#959; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#972; &#963;&#945;&#962; &#949;&#943;&#957;&#945;&#953; &#945;&#965;&#964;&#972; &#960;&#959;&#965; &#949;&#960;&#953;&#955;&#941;&#958;&#945;&#964;&#949;
- &#945;&#960;&#972; &#964;&#951;&#957; &#960;&#955;&#942;&#961;&#951; &#955;&#943;&#963;&#964;&#945;.
+ <span class="emphasis"><em>&#928;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945;</em></span>, &#952;&#945; &#949;&#960;&#953;&#963;&#964;&#961;&#941;&#968;&#949;&#964;&#949; &#963;&#964;&#959;&#957; &#960;&#961;&#974;&#964;&#959; &#948;&#953;&#940;&#955;&#959;&#947;&#959; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962;
+ &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#954;&#945;&#953; &#952;&#945; &#966;&#945;&#943;&#957;&#949;&#964;&#945;&#953; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#941;&#957;&#945; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#959; &#945;&#960;&#972; &#945;&#965;&#964;&#942;
+ &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951;. &#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#945;&#963;&#966;&#945;&#955;&#974;&#962; &#957;&#945; &#964;&#959; &#945;&#947;&#957;&#959;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#953; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949; &#964;&#951;&#957;
+ &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;: &#920;&#945; &#949;&#966;&#945;&#961;&#956;&#959;&#963;&#964;&#949;&#943; &#964;&#959; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#959; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#953;&#959; &#945;&#960;&#972; &#964;&#959; &#960;&#955;&#942;&#961;&#949;&#962;
+ &#954;&#945;&#964;&#940;&#963;&#964;&#953;&#967;&#959;.
</p>
</td>
diff --git a/el/selectLanguage.html b/el/selectLanguage.html
index e0ea6c2..cb29cc0 100644
--- a/el/selectLanguage.html
+++ b/el/selectLanguage.html
@@ -35,34 +35,57 @@
- <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#947;&#955;&#974;&#963;&#963;&#945; &#960;&#959;&#965; &#960;&#961;&#959;&#964;&#953;&#956;&#940;&#964;&#949;, &#945;&#957;&#945;&#960;&#964;&#973;&#963;&#963;&#959;&#957;&#964;&#945;&#962; &#960;&#961;&#974;&#964;&#945; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#964;&#951;&#962; &#951;&#960;&#949;&#943;&#961;&#959;&#965;
- &#963;&#945;&#962;. &#919; <span class="application">Mageia</span> &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942;
- &#947;&#953;&#945; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#954;&#945;&#953; &#947;&#953;&#945; &#964;&#959; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945;.
- </p>
- <p>&#913;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#960;&#953;&#952;&#945;&#957;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#949;&#962; &#963;&#964;&#959;
- &#963;&#973;&#963;&#964;&#951;&#956;&#940; &#963;&#945;&#962;, &#947;&#953;&#945; &#949;&#963;&#940;&#962; &#942; &#947;&#953;&#945; &#940;&#955;&#955;&#959;&#965;&#962; &#967;&#961;&#942;&#963;&#964;&#949;&#962;, &#964;&#972;&#964;&#949; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
- &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; <span class="guibutton">&#928;&#959;&#955;&#955;&#945;&#960;&#955;&#941;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</span> &#974;&#963;&#964;&#949; &#957;&#945;
- &#964;&#953;&#962; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#964;&#974;&#961;&#945;. &#916;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#942; &#951; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951;&#962; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957;
- &#947;&#955;&#969;&#963;&#963;&#974;&#957; &#956;&#949; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#959; &#964;&#961;&#972;&#960;&#959; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;.
- </p>
- <div class="warning" title="&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+
+
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#951;&#957; &#947;&#955;&#974;&#963;&#963;&#945; &#960;&#959;&#965; &#960;&#961;&#959;&#964;&#953;&#956;&#940;&#964;&#949;, &#945;&#957;&#945;&#960;&#964;&#973;&#963;&#963;&#959;&#957;&#964;&#945;&#962; &#960;&#961;&#974;&#964;&#945; &#964;&#951; &#955;&#943;&#963;&#964;&#945; &#964;&#951;&#962; &#951;&#960;&#949;&#943;&#961;&#959;&#965;
+ &#963;&#945;&#962;. &#919; Mageia &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#953; &#945;&#965;&#964;&#942; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#947;&#953;&#945; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
+ &#954;&#945;&#953; &#947;&#953;&#945; &#964;&#959; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#913;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#960;&#953;&#952;&#945;&#957;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#967;&#961;&#949;&#953;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#949;&#962; &#963;&#964;&#959;
+ &#963;&#973;&#963;&#964;&#951;&#956;&#940; &#963;&#945;&#962;, &#947;&#953;&#945; &#949;&#963;&#940;&#962; &#942; &#947;&#953;&#945; &#940;&#955;&#955;&#959;&#965;&#962; &#967;&#961;&#942;&#963;&#964;&#949;&#962;, &#964;&#972;&#964;&#949; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
+ &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; <span class="emphasis"><em>&#928;&#959;&#955;&#955;&#945;&#960;&#955;&#941;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</em></span> &#974;&#963;&#964;&#949; &#957;&#945;
+ &#964;&#953;&#962; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#964;&#974;&#961;&#945;. &#916;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#942; &#951; &#960;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951;&#962; &#949;&#960;&#953;&#960;&#955;&#941;&#959;&#957;
+ &#947;&#955;&#969;&#963;&#963;&#974;&#957; &#956;&#949; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#959; &#964;&#961;&#972;&#960;&#959; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+
+
+ <div class="important" title="&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#928;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951;]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#972;]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
<p>&#928;&#945;&#961;&#972;&#955;&#959; &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#960;&#949;&#961;&#953;&#963;&#963;&#959;&#964;&#941;&#961;&#969;&#957; &#947;&#955;&#969;&#963;&#963;&#974;&#957;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#953;&#945; &#945;&#960;&#972;
- &#945;&#965;&#964;&#941;&#962; &#969;&#962; &#964;&#951;&#957; &#960;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#963;&#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#947;&#955;&#974;&#963;&#963;&#945;&#962;. &#920;&#945;
- &#963;&#951;&#956;&#949;&#953;&#969;&#952;&#949;&#943; &#949;&#960;&#943;&#963;&#951;&#962; &#969;&#962; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#960;&#959;&#955;&#955;&#945;&#960;&#955;&#974;&#957; &#947;&#955;&#969;&#963;&#963;&#974;&#957; .
+ &#945;&#965;&#964;&#941;&#962; &#969;&#962; &#964;&#951;&#957; &#960;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#963;&#964;&#951;&#957; &#960;&#961;&#974;&#964;&#951; &#959;&#952;&#972;&#957;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#947;&#955;&#974;&#963;&#963;&#945;&#962; &#920;&#945;
+ &#963;&#951;&#956;&#949;&#953;&#969;&#952;&#949;&#943; &#949;&#960;&#943;&#963;&#951;&#962; &#969;&#962; &#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="emphasis"><em>&#960;&#959;&#955;&#955;&#945;&#960;&#955;&#974;&#957;
+ &#947;&#955;&#969;&#963;&#963;&#974;&#957;</em></span>.
</p>
</td>
@@ -76,27 +99,25 @@
<li class="listitem">
<p>&#913;&#957; &#951; &#947;&#955;&#974;&#963;&#963;&#945; &#964;&#951;&#962; &#948;&#953;&#940;&#964;&#945;&#958;&#951;&#962; &#964;&#959;&#965; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#963;&#945;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#951; &#943;&#948;&#953;&#945; &#956;&#949; &#964;&#951;&#957;
- &#960;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#951; &#947;&#955;&#974;&#963;&#963;&#945;, &#964;&#972;&#964;&#949; &#949;&#943;&#957;&#945;&#953; &#959;&#961;&#952;&#972; &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#953; &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#964;&#959;&#965;
- &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#963;&#945;&#962;.
+ &#960;&#961;&#959;&#964;&#953;&#956;&#974;&#956;&#949;&#957;&#951; &#947;&#955;&#974;&#963;&#963;&#945;, &#964;&#972;&#964;&#949; &#949;&#943;&#957;&#945;&#953; &#959;&#961;&#952;&#972; &#957;&#945; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949; &#954;&#945;&#953; &#964;&#951;&#957; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#951;
+ &#947;&#955;&#974;&#963;&#963;&#945; &#964;&#959;&#965; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#959;&#947;&#943;&#959;&#965; &#963;&#945;&#962;
</p>
</li>
<li class="listitem">
- <p>&#919; Mageia &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#964;&#951;&#957; &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951; UTF-8 (Unicode).</p>
-
-
- <p>&#913;&#965;&#964;&#972; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &laquo;&#928;&#959;&#955;&#955;&#945;&#960;&#955;&#941;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;&raquo; &#945;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949;
- &#972;&#964;&#953; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959; &#947;&#953;&#945; &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#963;&#945;&#962;. &#919; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#951;&#962; &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951;&#962;
- UTF-8 &#952;&#945; &#949;&#966;&#945;&#961;&#956;&#959;&#963;&#964;&#949;&#943; &#963;&#949; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.
+ <p>&#919; Mageia &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#964;&#951;&#957; &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951; UTF-8 (Unicode) &#945;&#960;&#972; &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#959;&#947;&#942;. &#913;&#965;&#964;&#972;
+ &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; <span class="emphasis"><em>&#928;&#959;&#955;&#955;&#945;&#960;&#955;&#941;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;</em></span>
+ &#945;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#949; &#972;&#964;&#953; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959; &#947;&#953;&#945; &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#963;&#945;&#962;. &#919; &#945;&#960;&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#951;&#962;
+ &#965;&#960;&#959;&#963;&#964;&#942;&#961;&#953;&#958;&#951;&#962; UTF-8 &#952;&#945; &#949;&#966;&#945;&#961;&#956;&#959;&#963;&#964;&#949;&#943; &#963;&#949; &#972;&#955;&#949;&#962; &#964;&#953;&#962; &#947;&#955;&#974;&#963;&#963;&#949;&#962;.
</p>
</li>
<li class="listitem">
<p>&#924;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#945;&#955;&#955;&#940;&#958;&#949;&#964;&#949; &#964;&#951; &#947;&#955;&#974;&#963;&#963;&#945; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#945;&#960;&#972;
- &#964;&#959; &#922;&#941;&#957;&#964;&#961;&#959; &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia -&gt; &#931;&#973;&#963;&#964;&#951;&#956;&#945; -&gt; &#916;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#964;&#959;&#960;&#953;&#954;&#972;&#964;&#951;&#964;&#945; &#964;&#959;&#965;
- &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962;.
+ &#964;&#959; <span class="guimenu">&#922;&#941;&#957;&#964;&#961;&#959; &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia</span> &#8594; <span class="guimenuitem">&#931;&#973;&#963;&#964;&#951;&#956;&#945;</span> &#8594; <span class="guimenuitem">&#916;&#953;&#945;&#967;&#949;&#953;&#961;&#953;&#963;&#964;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#964;&#959;&#960;&#953;&#954;&#972;&#964;&#951;&#964;&#945;
+ &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#972;&#962; &#963;&#945;&#962;</span>.
</p>
</li>
diff --git a/el/selectMouse.html b/el/selectMouse.html
index 6b07248..4996b32 100644
--- a/el/selectMouse.html
+++ b/el/selectMouse.html
@@ -22,33 +22,34 @@
</div>
</div>
</div>
-
+
+
+
+
-
-
<p><a name="selectMouse-pa1"></a>&#913;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#949;&#965;&#967;&#945;&#961;&#953;&#963;&#964;&#951;&#956;&#941;&#957;&#959;&#962; &#956;&#949; &#964;&#951;&#957; &#945;&#960;&#972;&#954;&#961;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#959;&#957;&#964;&#953;&#954;&#953;&#959;&#973; &#963;&#945;&#962;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#945;&#960;&#972;
&#949;&#948;&#974; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#954;&#940;&#960;&#959;&#953;&#959; &#940;&#955;&#955;&#959;.
</p>
-
- <p><a name="selectMouse-pa2"></a>&#931;&#965;&#957;&#942;&#952;&#969;&#962;, <span class="guilabel">&#915;&#949;&#957;&#953;&#954;&#972;</span> - <span class="guilabel">&#927;&#960;&#959;&#953;&#959;&#948;&#942;&#960;&#959;&#964;&#949; PS/2 &#954;&#945;&#953; USB
- &#960;&#959;&#957;&#964;&#943;&#954;&#953;</span> &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#945; &#954;&#945;&#955;&#942; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
+
+ <p><a name="selectMouse-pa2"></a>&#931;&#965;&#957;&#942;&#952;&#969;&#962;, <span class="guimenu">&#915;&#949;&#957;&#953;&#954;&#972;</span> &#8594; <span class="guimenuitem">&#927;&#960;&#959;&#953;&#959;&#948;&#942;&#960;&#959;&#964;&#949;
+ PS/2 &#954;&#945;&#953; USB &#960;&#959;&#957;&#964;&#943;&#954;&#953;</span> &#949;&#943;&#957;&#945;&#953; &#956;&#953;&#945; &#954;&#945;&#955;&#942; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
</p>
- <p><a name="selectMouse-pa3"></a>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guilabel">&#915;&#949;&#957;&#953;&#954;&#972;</span> - <span class="guilabel">&#917;&#958;&#945;&#957;&#945;&#947;&#954;&#945;&#963;&#956;&#972;&#962;
- evdev</span> &#947;&#953;&#945; &#957;&#945; &#948;&#953;&#945;&#956;&#959;&#961;&#966;&#974;&#963;&#949;&#964;&#949; &#964;&#945; &#954;&#959;&#965;&#956;&#960;&#953;&#940; &#960;&#959;&#965; &#948;&#949;&#957; &#948;&#959;&#965;&#955;&#949;&#973;&#959;&#965;&#957; &#963;&#949; &#941;&#957;&#945;
- &#960;&#959;&#957;&#964;&#943;&#954;&#953; &#956;&#949; &#941;&#958;&#953; &#942; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945; &#954;&#959;&#965;&#956;&#960;&#953;&#940;.
+ <p><a name="selectMouse-pa3"></a>Select <span class="guimenu">Universal</span> &#8594; <span class="guimenuitem">Force
+ evdev</span> to configure the buttons that do not work
+ on a mouse with six or more buttons.
</p>
</div>
diff --git a/el/setupBootloader.html b/el/setupBootloader.html
index 80f1dcd..0122062 100644
--- a/el/setupBootloader.html
+++ b/el/setupBootloader.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</title>
+ <title>&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="el" class="section" title="&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
+ <div lang="el" class="section" title="&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="setupBootloader"></a>&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ <h2 class="title"><a name="setupBootloader"></a>&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
</h2>
</div>
</div>
@@ -29,11 +29,23 @@
- <div class="section" title="&#916;&#953;&#949;&#960;&#945;&#966;&#942; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
+
+
+
+
+
+
+
+
+
+
+
+
+ <div class="section" title="Grub2">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e871"></a>&#916;&#953;&#949;&#960;&#945;&#966;&#942; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ <h3 class="title"><a name="d5e987"></a>Grub2
</h3>
</div>
</div>
@@ -41,203 +53,65 @@
- <p>&#917;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#951; Mageia &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#945;&#960;&#959;&#954;&#955;&#949;&#953;&#963;&#964;&#953;&#954;&#940;:</p>
-
-
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Grub2 &#963;&#949; &#960;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#956;&#949; MBR/GPT">
+ <p class="title"><b>Grub2 &#963;&#949; &#960;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#956;&#949; MBR/GPT</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p>Grub2 (&#956;&#949; &#942; &#967;&#969;&#961;&#943;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;) &#947;&#953;&#945; &#960;&#945;&#955;&#953;&#940; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; MBR/GPT</p>
+ <p>&#932;&#959; GRUB2 (&#956;&#949; &#942; &#967;&#969;&#961;&#943;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;) &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#945;&#960;&#959;&#954;&#955;&#949;&#953;&#963;&#964;&#953;&#954;&#940; &#969;&#962;
+ &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#947;&#953;&#945; &#960;&#945;&#955;&#953;&#940; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; MBR/GPT.
+ </p>
</li>
<li class="listitem">
- <p>Grub2-efi &#947;&#953;&#945; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; UEFI</p>
+ <p>&#917;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;, &#952;&#945; &#947;&#943;&#957;&#949;&#953; &#949;&#947;&#947;&#961;&#945;&#966;&#942; &#949;&#957;&#972;&#962; &#957;&#941;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#949;&#943;&#964;&#949; &#963;&#964;&#959; MBR
+ (Master Boot Record) &#964;&#959;&#965; &#960;&#961;&#974;&#964;&#959;&#965; &#963;&#954;&#955;&#951;&#961;&#959;&#973; &#948;&#943;&#963;&#954;&#959;&#965; &#942; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ &#964;&#959;&#965; BIOS.
+ </p>
</li>
</ul>
</div>
- <div class="tip" title="&#933;&#960;&#972;&#948;&#949;&#953;&#958;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Tip">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#933;&#960;&#972;&#948;&#949;&#953;&#958;&#951;]" src="tip.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#932;&#945; &#947;&#961;&#945;&#966;&#953;&#954;&#940; &#956;&#949;&#957;&#959;&#973; &#964;&#951;&#962; Mageia &#949;&#943;&#957;&#945;&#953; &#960;&#959;&#955;&#973; &#972;&#956;&#959;&#961;&#966;&#945;:)</p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
- <div class="section" title="Grub2 &#963;&#949; &#960;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#956;&#949; MBR/GPT">
- <div class="titlepage">
- <div>
- <div>
- <h4 class="title"><a name="d5e881"></a>Grub2 &#963;&#949; &#960;&#945;&#955;&#953;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#956;&#949; MBR/GPT
- </h4>
- </div>
- </div>
- </div>
-
-
-
-
-
- <p>&#924;&#951;&#957; &#964;&#961;&#959;&#960;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#960;&#949;&#961;&#953;&#966;&#949;&#961;&#949;&#953;&#945;&#954;&#972; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#949;&#954;&#964;&#972;&#962; &#954;&#945;&#953; &#945;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#964;&#953;
- &#945;&#954;&#961;&#953;&#946;&#974;&#962; &#960;&#961;&#940;&#964;&#964;&#949;&#964;&#949;.
- </p>
-
- </div>
-
-
- <div class="section" title="Grub2 &#963;&#949; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI">
- <div class="titlepage">
- <div>
- <div>
- <h4 class="title"><a name="d5e887"></a>Grub2 &#963;&#949; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI
- </h4>
- </div>
- </div>
- </div>
-
-
-
- <p>&#924;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; UEFI, &#964;&#959; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957; &#967;&#961;&#942;&#963;&#964;&#951; &#949;&#943;&#957;&#945;&#953; &#949;&#955;&#945;&#966;&#961;&#974;&#962; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#972; &#972;&#960;&#969;&#962; &#972;&#964;&#953;
- &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#956;&#949; &#942; &#967;&#969;&#961;&#943;&#962; &#947;&#961;&#945;&#966;&#953;&#954;&#972; &#960;&#949;&#961;&#953;&#946;&#940;&#955;&#955;&#959;&#957;
- </p>
-
-
-
-
- <p>&#913;&#957; &#951; Mageia &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#956;&#959;&#957;&#945;&#948;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#959; &#963;&#964;&#959;&#957; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; &#963;&#945;&#962;, &#964;&#959;
- &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#948;&#951;&#956;&#953;&#959;&#973;&#961;&#947;&#951;&#963;&#949; &#956;&#953;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; ESP (EFI System Partition)
- &#947;&#953;&#945; &#964;&#951;&#957; &#965;&#960;&#959;&#948;&#959;&#967;&#942; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; (Grub2-efi). &#913;&#957; &#949;&#943;&#967;&#945;&#964;&#949; &#942;&#948;&#951;
- &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#945; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI (&#960;.&#967;. Windows 8), &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962;
- Mageia &#949;&#957;&#964;&#972;&#960;&#953;&#963;&#949; &#964;&#953;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#949;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; ESP &#960;&#959;&#965; &#941;&#967;&#959;&#965;&#957; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943; &#945;&#960;&#972; &#964;&#945;
- Windows &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#953; &#964;&#959; grub2-efi. &#924;&#959;&#955;&#959;&#957;&#972;&#964;&#953; &#949;&#943;&#957;&#945;&#953; &#948;&#965;&#957;&#945;&#964;&#942; &#951; &#963;&#965;&#957;&#973;&#960;&#945;&#961;&#958;&#951;
- &#960;&#949;&#961;&#953;&#963;&#963;&#959;&#964;&#941;&#961;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; ESP, &#963;&#965;&#957;&#953;&#963;&#964;&#940;&#964;&#945;&#953; &#951; &#967;&#961;&#942;&#963;&#951; &#956;&#953;&#945;&#962; &#945;&#957;&#949;&#958;&#945;&#961;&#964;&#942;&#964;&#959;&#965; &#964;&#959;&#965;
- &#945;&#961;&#953;&#952;&#956;&#959;&#973; &#964;&#969;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957; &#960;&#959;&#965; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949;.
- </p>
-
-
- <p>&#924;&#951;&#957; &#964;&#961;&#959;&#960;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#960;&#949;&#961;&#953;&#966;&#949;&#961;&#949;&#953;&#945;&#954;&#972; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#949;&#954;&#964;&#972;&#962; &#954;&#945;&#953; &#945;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#964;&#953;
- &#945;&#954;&#961;&#953;&#946;&#974;&#962; &#960;&#961;&#940;&#964;&#964;&#949;&#964;&#949;.
- </p>
-
- </div>
-
- </div>
-
-
- <div class="section" title="&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#951;&#962; Mageia">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e895"></a>&#935;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#951;&#962; Mageia
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>&#917;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;, &#945;&#957;&#945;&#955;&#972;&#947;&#969;&#962; &#956;&#949; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#940; &#963;&#945;&#962;, &#951; Mageia &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#949;&#943; &#941;&#957;&#945; &#957;&#941;&#959;:</p>
-
-
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Grub2 &#963;&#949; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI">
+ <p class="title"><b>Grub2 &#963;&#949; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; UEFI</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p>&#904;&#957;&#945; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; GRUB2 &#949;&#943;&#964;&#949; &#963;&#964;&#959; MBR (Master Boot Record) &#964;&#959;&#965; &#960;&#961;&#974;&#964;&#959;&#965;
- &#963;&#954;&#955;&#951;&#961;&#959;&#973; &#948;&#943;&#963;&#954;&#959;&#965; &#942; &#963;&#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#959;&#965; BIOS.
+ <p>&#932;&#959; GRUB2-efi &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#949;&#943; &#945;&#960;&#959;&#954;&#955;&#949;&#953;&#963;&#964;&#953;&#954;&#940; &#969;&#962; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#949;&#957;&#972;&#962;
+ UEFI &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
</p>
</li>
<li class="listitem">
- <p>&#904;&#957;&#945; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; Grub2-efi &#963;&#964;&#959; ESP</p>
+ <p>&#917;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;, &#952;&#945; &#947;&#943;&#957;&#949;&#953; &#949;&#947;&#947;&#961;&#945;&#966;&#942; &#949;&#957;&#972;&#962; &#957;&#941;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; (Grub2-efi)
+ &#963;&#964;&#959; ESP (EFI System Partition).
+ </p>
+
+
+ <p>&#913;&#957; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#942;&#948;&#951; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#945; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#940; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; &#956;&#949; UEFI (Windows 8 &#947;&#953;&#945;
+ &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945;), &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#951;&#962; Mageia &#952;&#945; &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#949;&#953; &#964;&#959; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957;
+ ESP &#964;&#969;&#957; Windows &#954;&#945;&#953; &#952;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#953; &#963;&#949; &#945;&#965;&#964;&#972; &#964;&#959; grub2-efi. &#913;&#957; &#948;&#949;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#959;
+ ESP &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#964;&#972;&#964;&#949; &#952;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#951;&#952;&#949;&#943; &#941;&#957;&#945;. &#913;&#957; &#954;&#945;&#953; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#945;
+ ESP &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945;, &#956;&#972;&#957;&#959;&#957; &#941;&#957;&#945; &#945;&#960;&#945;&#953;&#964;&#949;&#943;&#964;&#945;&#953;, &#945;&#957;&#949;&#958;&#945;&#961;&#964;&#942;&#964;&#959;&#965; &#945;&#961;&#953;&#952;&#956;&#959;&#973; &#964;&#969;&#957; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#969;&#957;
+ &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957; &#960;&#959;&#965; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949;.
+ </p>
</li>
</ul>
</div>
-
-
- <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#954;&#945;&#953; &#940;&#955;&#955;&#945; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#940; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#945;, &#951; Mageia &#960;&#961;&#959;&#963;&#960;&#945;&#952;&#949;&#943; &#957;&#945;
- &#964;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#953; &#963;&#964;&#959; &#957;&#941;&#959; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; Mageia. &#913;&#957; &#948;&#949;&#957; &#964;&#959; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949;, &#954;&#940;&#957;&#964;&#949;
- &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span> &#954;&#945;&#953; &#945;&#960;&#959;&#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959;
- <span class="guilabel">&#917;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972;&#962; &#958;&#941;&#957;&#959;&#965; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973;</span></p>
-
-
-
- </div>
-
-
- <div class="section" title="&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#957;&#964;&#959;&#962; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e909"></a>&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#957;&#964;&#959;&#962; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>&#919; &#945;&#954;&#961;&#953;&#946;&#942;&#962; &#948;&#953;&#945;&#948;&#953;&#954;&#945;&#963;&#943;&#945; &#947;&#953;&#945; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#940; &#963;&#945;&#962; Mageia &#963;&#949; &#941;&#957;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#957;
- &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#945;&#957;&#964;&#953;&#954;&#949;&#943;&#956;&#949;&#957;&#959; &#963;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951; &#914;&#959;&#942;&#952;&#949;&#953;&#945;, &#969;&#963;&#964;&#972;&#963;&#959;
- &#963;&#964;&#953;&#962; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962; &#945;&#965;&#964;&#972; &#952;&#945; &#949;&#960;&#953;&#966;&#941;&#961;&#949;&#953; &#964;&#951;&#957; &#949;&#954;&#964;&#941;&#955;&#949;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962;
- &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962; &#964;&#959;&#965; &#949;&#957; &#955;&#972;&#947;&#969; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;, &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#949;&#953;
- &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#945; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945; Mageia &#954;&#945;&#953; &#957;&#945; &#964;&#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#953;. &#916;&#949;&#943;&#964;&#949; &#963;&#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#959;&#965;
- &#949;&#957; &#955;&#972;&#947;&#969; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
- </p>
-
- </div>
-
-
- <div class="section" title="&#935;&#961;&#942;&#963;&#951; &#945;&#955;&#965;&#963;&#953;&#948;&#969;&#964;&#942;&#962; &#966;&#972;&#961;&#964;&#969;&#963;&#951;&#962;">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e912"></a>&#935;&#961;&#942;&#963;&#951; &#945;&#955;&#965;&#963;&#953;&#948;&#969;&#964;&#942;&#962; &#966;&#972;&#961;&#964;&#969;&#963;&#951;&#962;
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>&#913;&#957; &#948;&#949;&#957; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#956;&#953;&#945; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#953;&#956;&#951; Mageia, &#945;&#955;&#955;&#940; &#964;&#951;&#957; &#945;&#955;&#965;&#963;&#953;&#948;&#969;&#964;&#942; &#966;&#972;&#961;&#964;&#969;&#963;&#951; &#945;&#960;&#972; &#940;&#955;&#955;&#959;
- &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span>, &#954;&#945;&#953; &#963;&#964;&#959;
- <span class="guibutton">&#928;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#949;&#962;</span> &#954;&#945;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; <span class="guilabel">&#924;&#951;&#957;
- &#945;&#947;&#947;&#943;&#958;&#949;&#953;&#962; &#964;&#959; ESP &#942; &#964;&#959; MBR</span>.
- </p>
-
-
-
-
- <p>&#920;&#945; &#955;&#940;&#946;&#949;&#964;&#949; &#956;&#953;&#945; &#960;&#961;&#959;&#949;&#953;&#948;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#972;&#964;&#953; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#952;&#945; &#945;&#960;&#959;&#964;&#973;&#967;&#949;&#953;, &#945;&#947;&#957;&#959;&#942;&#963;&#964;&#949;
- &#964;&#959; &#956;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#917;&#957;&#964;&#940;&#958;&#949;&#953;</span>.
- </p>
-
-
</div>
- <div class="section" title="&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962;">
+ <div class="section" title="&#929;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e926"></a>&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962;
+ <h3 class="title"><a name="d5e1002"></a>&#929;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
</h3>
</div>
</div>
@@ -245,11 +119,11 @@
- <div class="section" title="&#928;&#961;&#974;&#964;&#951; &#963;&#949;&#955;&#943;&#948;&#945;">
+ <div class="section" title="&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e928"></a>&#928;&#961;&#974;&#964;&#951; &#963;&#949;&#955;&#943;&#948;&#945;
+ <h4 class="title"><a name="d5e1006"></a>&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
</h4>
</div>
</div>
@@ -257,89 +131,129 @@
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p><span class="guilabel">&#922;&#945;&#952;&#965;&#963;&#964;&#941;&#961;&#951;&#963;&#951; &#960;&#961;&#953;&#957; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#951;&#962; &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951;&#962;
- &#949;&#953;&#954;&#972;&#957;&#945;&#962;</span>: &#932;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#959;&#957; &#959;&#961;&#953;&#963;&#956;&#972; &#956;&#953;&#945;&#962;
- &#954;&#945;&#952;&#965;&#963;&#964;&#941;&#961;&#951;&#963;&#951;&#962; &#963;&#949; &#948;&#949;&#965;&#964;&#949;&#961;&#972;&#955;&#949;&#960;&#964;&#945; &#960;&#961;&#953;&#957; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973;
- &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
+
+ <p><span class="bold"><strong>&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#960;&#961;&#959;&#962; &#967;&#961;&#942;&#963;&#951;</strong></span></p>
+
+
+ <p>This feature is only available to Legacy MBR/BIOS systems. Users of UEFI
+ systems will not see this option here.
</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#931;&#965;&#963;&#954;&#949;&#965;&#942; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;</strong></span></p>
+
+ <p>&#924;&#951;&#957; &#964;&#961;&#959;&#960;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#949;&#954;&#964;&#972;&#962; &#954;&#945;&#953; &#945;&#957; &#947;&#957;&#969;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#964;&#953; &#945;&#954;&#961;&#953;&#946;&#974;&#962;
+ &#960;&#961;&#940;&#964;&#964;&#949;&#964;&#949;
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">&#913;&#963;&#966;&#940;&#955;&#949;&#953;&#945;</span>: &#931;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#959;&#957; &#959;&#961;&#953;&#963;&#956;&#972; &#949;&#957;&#972;&#962; &#954;&#969;&#948;&#953;&#954;&#959;&#973;
- &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;. &#913;&#965;&#964;&#972; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#972;&#964;&#953; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#952;&#945;
- &#945;&#960;&#945;&#953;&#964;&#949;&#943;&#964;&#945;&#953; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#967;&#961;&#942;&#963;&#964;&#951; &#954;&#945;&#953; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#945;&#955;&#955;&#945;&#947;&#942; &#956;&#953;&#945;&#962;
- &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#942; &#964;&#951;&#957; &#945;&#955;&#955;&#945;&#947;&#942; &#956;&#953;&#945;&#962; &#961;&#973;&#952;&#956;&#953;&#963;&#951;&#962;. &#932;&#959; &#972;&#957;&#959;&#956;&#945; &#967;&#961;&#942;&#963;&#964;&#951; &#949;&#943;&#957;&#945;&#953;
- &laquo;root&raquo; &#954;&#945;&#953; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#945;&#965;&#964;&#972;&#962; &#960;&#959;&#965; &#952;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#949;&#948;&#974;.
+
+ <p><span class="bold"><strong>&#922;&#945;&#952;&#965;&#963;&#964;&#941;&#961;&#951;&#963;&#951; &#960;&#961;&#953;&#957; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#951;&#962; &#960;&#961;&#959;&#949;&#960;&#953;&#955;&#949;&#947;&#956;&#941;&#957;&#951;&#962;
+ &#949;&#953;&#954;&#972;&#957;&#945;&#962;</strong></span></p>
+
+
+ <p>&#913;&#965;&#964;&#972; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#954;&#949;&#953;&#956;&#941;&#957;&#959;&#965; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#959;&#957; &#959;&#961;&#953;&#963;&#956;&#972; &#956;&#953;&#945;&#962; &#954;&#945;&#952;&#965;&#963;&#964;&#941;&#961;&#951;&#963;&#951;&#962; &#963;&#949;
+ &#948;&#949;&#965;&#964;&#949;&#961;&#972;&#955;&#949;&#960;&#964;&#945; &#960;&#961;&#953;&#957; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#964;&#959;&#965; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#913;&#963;&#966;&#940;&#955;&#949;&#953;&#945;</strong></span></p>
+
+ <p>&#913;&#965;&#964;&#972; &#963;&#945;&#962; &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#949;&#953; &#964;&#959;&#957; &#959;&#961;&#953;&#963;&#956;&#972; &#949;&#957;&#972;&#962; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;. &#913;&#965;&#964;&#972; &#963;&#951;&#956;&#945;&#943;&#957;&#949;&#953; &#972;&#964;&#953; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951; &#952;&#945; &#945;&#960;&#945;&#953;&#964;&#949;&#943;&#964;&#945;&#953; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#967;&#961;&#942;&#963;&#964;&#951;
+ &#954;&#945;&#953; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#945;&#955;&#955;&#945;&#947;&#942; &#956;&#953;&#945;&#962; &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#942; &#964;&#951;&#957;
+ &#945;&#955;&#955;&#945;&#947;&#942; &#956;&#953;&#945;&#962; &#961;&#973;&#952;&#956;&#953;&#963;&#951;&#962;. &#913;&#965;&#964;&#972; &#949;&#943;&#957;&#945;&#953; &#960;&#961;&#959;&#945;&#953;&#961;&#949;&#964;&#953;&#954;&#972; &#954;&#945;&#953; &#947;&#949;&#957;&#953;&#954;&#974;&#962; &#948;&#949;&#957;
+ &#960;&#959;&#955;&#965;&#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#945;&#953;. &#932;&#959; &#972;&#957;&#959;&#956;&#945; &#967;&#961;&#942;&#963;&#964;&#951; &#949;&#943;&#957;&#945;&#953; <code class="literal">root</code> &#954;&#945;&#953; &#959;
+ &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#949;&#943;&#957;&#945;&#953; &#945;&#965;&#964;&#972;&#962; &#960;&#959;&#965; &#952;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#949;&#948;&#974;.
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;</span>: &#917;&#948;&#974; &#949;&#953;&#963;&#945;&#947;&#940;&#947;&#949;&#964;&#949; &#964;&#959;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;
+
+ <p><span class="bold"><strong>&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;</strong></span></p>
+
+
+ <p>&#917;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#941;&#957;&#945;&#957; &#954;&#969;&#948;&#953;&#954;&#972; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#947;&#953;&#945; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; (&#960;&#961;&#959;&#945;&#953;&#961;&#949;&#964;&#953;&#954;&#972;)</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; (&#958;&#945;&#957;&#940;)</strong></span></p>
+
+
+ <p>&#917;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949; &#964;&#951;&#957; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#951;&#963;&#951; &#964;&#959;&#965; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#954;&#945;&#953; &#964;&#959; DrakX &#952;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#953;
+ &#945;&#957; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#964;&#945;&#953;&#961;&#953;&#940;&#950;&#949;&#953; &#956;&#949; &#964;&#959;&#957; &#945;&#957;&#969;&#964;&#941;&#961;&#969;
</p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><span class="emphasis"><em>&#915;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</em></span></p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+ <p><span class="emphasis"><em>&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; ACPI</em></span></p>
+
+
+ <p>&#932;&#959; ACPI (Advanced Configuration and Power Interface - &#917;&#958;&#949;&#955;&#953;&#947;&#956;&#941;&#957;&#951; &#948;&#953;&#949;&#960;&#945;&#966;&#942;
+ &#961;&#973;&#952;&#956;&#953;&#963;&#951;&#962; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945;&#962;) &#949;&#943;&#957;&#945;&#953; &#941;&#957;&#945; &#960;&#961;&#972;&#964;&#965;&#960;&#959; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945;&#962;
+ &#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#958;&#959;&#953;&#954;&#959;&#957;&#959;&#956;&#949;&#943; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945; &#948;&#953;&#945;&#954;&#972;&#960;&#964;&#959;&#957;&#964;&#945;&#962; &#945;&#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#943;&#951;&#964;&#949;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962;. &#919;
+ &#945;&#960;&#959;&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#959;&#965; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#957;&#949;&#943; &#967;&#961;&#942;&#963;&#953;&#956;&#951; &#960;&#945;&#961;&#945;&#948;&#949;&#943;&#947;&#956;&#945;&#964;&#959;&#962; &#967;&#940;&#961;&#953;&#957; &#945;&#957; &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962;
+ &#963;&#945;&#962; &#948;&#949;&#957; &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#943;&#950;&#949;&#953; &#964;&#959; ACPI &#942; &#945;&#957; &#949;&#954;&#964;&#953;&#956;&#940;&#964;&#949; &#972;&#964;&#953; &#951; &#949;&#957;&#963;&#969;&#956;&#940;&#964;&#969;&#963;&#951; &#964;&#959;&#965; ACPI &#956;&#960;&#959;&#961;&#949;&#943;
+ &#957;&#945; &#960;&#961;&#959;&#954;&#945;&#955;&#941;&#963;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#945; &#960;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; (&#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; &#964;&#965;&#967;&#945;&#943;&#949;&#962; &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#953;&#962; &#942;
+ &#954;&#969;&#955;&#973;&#956;&#945;&#964;&#945; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;).
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">&#922;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; (&#958;&#945;&#957;&#940;)</span>: &#917;&#960;&#945;&#957;&#945;&#955;&#940;&#946;&#949;&#964;&#949; &#964;&#951;&#957; &#960;&#955;&#951;&#954;&#964;&#961;&#959;&#955;&#972;&#947;&#951;&#963;&#951;
- &#964;&#959;&#965; &#954;&#969;&#948;&#953;&#954;&#959;&#973; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962; &#954;&#945;&#953; &#964;&#959; Drakx &#952;&#945; &#949;&#955;&#941;&#947;&#958;&#949;&#953; &#945;&#957; &#959; &#954;&#969;&#948;&#953;&#954;&#972;&#962; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951;&#962;
- &#964;&#945;&#953;&#961;&#953;&#940;&#950;&#949;&#953; &#956;&#949; &#964;&#959;&#957; &#945;&#957;&#969;&#964;&#941;&#961;&#969;.
+
+ <p><span class="emphasis"><em>&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; SMP</em></span></p>
+
+
+ <p>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; (&#945;&#960;)&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#949;&#943; &#964;&#951;&#957; &#963;&#965;&#956;&#956;&#949;&#964;&#961;&#953;&#954;&#942; &#960;&#959;&#955;&#965;&#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#947;&#953;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#941;&#962;
+ &#960;&#959;&#955;&#955;&#945;&#960;&#955;&#974;&#957; &#960;&#965;&#961;&#942;&#957;&#969;&#957;
</p>
+
+ </li>
+ <li class="listitem">
+ <p><span class="emphasis"><em>&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; APIC</em></span></p>
+
+
+ <p>&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959; &#948;&#943;&#957;&#949;&#964;&#945;&#953; &#963;&#964;&#959; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#963;&#964;&#959;&#957; &#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#959;
+ &#960;&#961;&#959;&#947;&#961;&#945;&#956;&#956;&#945;&#964;&#953;&#950;&#972;&#956;&#949;&#957;&#959; &#949;&#955;&#949;&#947;&#954;&#964;&#942; &#948;&#953;&#945;&#954;&#959;&#960;&#974;&#957; ( Advanced Programmable Interrupt
+ Controller). &#927;&#953; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962; APIC &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#959;&#965;&#957; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959; &#960;&#959;&#955;&#973;&#960;&#955;&#959;&#954;&#945; &#960;&#961;&#972;&#964;&#965;&#960;&#945;, &#954;&#945;&#953;
+ &#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#951; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; IRQ (&#913;&#953;&#964;&#942;&#963;&#949;&#953;&#962; &#948;&#953;&#945;&#954;&#959;&#960;&#964;&#974;&#957;).
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">&#928;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#949;&#962;</span></p>
+
+ <p><span class="emphasis"><em>&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; &#964;&#959;&#960;&#953;&#954;&#959;&#973; APIC</em></span></p>
-
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p><span class="guilabel">&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; ACPI:</span> &#932;&#959; ACPI (Advanced Configuration
- and Power Interface - &#917;&#958;&#949;&#955;&#953;&#947;&#956;&#941;&#957;&#951; &#948;&#953;&#949;&#960;&#945;&#966;&#942; &#961;&#973;&#952;&#956;&#953;&#963;&#951;&#962; &#954;&#945;&#953; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945;&#962;)
- &#949;&#943;&#957;&#945;&#953; &#941;&#957;&#945; &#960;&#961;&#972;&#964;&#965;&#960;&#959; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;&#962; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945;&#962;. &#924;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#949;&#958;&#959;&#953;&#954;&#959;&#957;&#959;&#956;&#949;&#943; &#949;&#957;&#941;&#961;&#947;&#949;&#953;&#945;
- &#948;&#953;&#945;&#954;&#972;&#960;&#964;&#959;&#957;&#964;&#945;&#962; &#945;&#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#943;&#951;&#964;&#949;&#962; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962;&middot; &#945;&#965;&#964;&#942; &#942;&#964;&#945;&#957; &#951; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#956;&#949;&#957;&#951; &#956;&#941;&#952;&#959;&#948;&#959;&#962;
- &#960;&#961;&#953;&#957; &#964;&#959; APM. &#919; &#945;&#960;&#959;&#949;&#960;&#953;&#955;&#959;&#947;&#942; &#964;&#959;&#965; &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#957;&#949;&#943; &#967;&#961;&#942;&#963;&#953;&#956;&#951; &#960;&#945;&#961;&#945;&#948;&#949;&#943;&#947;&#956;&#945;&#964;&#959;&#962; &#967;&#940;&#961;&#953;&#957; &#945;&#957;
- &#959; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942;&#962; &#963;&#945;&#962; &#948;&#949;&#957; &#965;&#960;&#959;&#963;&#964;&#951;&#961;&#943;&#950;&#949;&#953; &#964;&#959; ACPI &#942; &#945;&#957; &#949;&#954;&#964;&#953;&#956;&#940;&#964;&#949; &#972;&#964;&#953; &#951; &#949;&#957;&#963;&#969;&#956;&#940;&#964;&#969;&#963;&#951; &#964;&#959;&#965;
- ACPI &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#960;&#961;&#959;&#954;&#945;&#955;&#941;&#963;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#945; &#960;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945; (&#947;&#953;&#945; &#960;&#945;&#961;&#940;&#948;&#949;&#953;&#947;&#956;&#945; &#964;&#965;&#967;&#945;&#943;&#949;&#962;
- &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#953;&#957;&#942;&#963;&#949;&#953;&#962; &#942; &#954;&#969;&#955;&#973;&#956;&#945;&#964;&#945; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;).
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; SMP</span>: &#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; (&#945;&#960;)&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#949;&#943;
- &#964;&#951;&#957; &#963;&#965;&#956;&#956;&#949;&#964;&#961;&#953;&#954;&#942; &#960;&#959;&#955;&#965;&#948;&#953;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#947;&#953;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#941;&#962; &#960;&#959;&#955;&#955;&#945;&#960;&#955;&#974;&#957; &#960;&#965;&#961;&#942;&#957;&#969;&#957;.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#965; APIC</span>: (&#945;&#960;)&#949;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#953;&#974;&#957;&#964;&#945;&#962; &#964;&#959; &#948;&#943;&#957;&#949;&#964;&#945;&#953;
- &#963;&#964;&#959; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#960;&#961;&#972;&#963;&#946;&#945;&#963;&#951; &#963;&#964;&#959;&#957; &#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#959; &#960;&#961;&#959;&#947;&#961;&#945;&#956;&#956;&#945;&#964;&#953;&#950;&#972;&#956;&#949;&#957;&#959; &#949;&#955;&#949;&#947;&#954;&#964;&#942;
- &#948;&#953;&#945;&#954;&#959;&#960;&#974;&#957; ( Advanced Programmable Interrupt Controller). &#927;&#953; &#963;&#965;&#963;&#954;&#949;&#965;&#941;&#962; APIC
- &#949;&#960;&#953;&#964;&#961;&#941;&#960;&#959;&#965;&#957; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959; &#960;&#959;&#955;&#973;&#960;&#955;&#959;&#954;&#945; &#960;&#961;&#972;&#964;&#965;&#960;&#945;, &#954;&#945;&#953; &#960;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#951; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; IRQ
- (&#913;&#953;&#964;&#942;&#963;&#949;&#953;&#962; &#948;&#953;&#945;&#954;&#959;&#960;&#964;&#974;&#957;).
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">&#917;&#957;&#949;&#961;&#947;&#959;&#960;&#959;&#943;&#951;&#963;&#951; &#964;&#959;&#960;&#953;&#954;&#959;&#973; APIC</span>: &#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959;
- &#964;&#959;&#960;&#953;&#954;&#972; APIC, &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#972;&#955;&#959;&#965;&#962; &#964;&#959;&#965;&#962; &#949;&#958;&#969;&#964;&#949;&#961;&#953;&#954;&#959;&#973;&#962; &#948;&#953;&#945;&#954;&#972;&#960;&#964;&#949;&#962; &#947;&#953;&#945;
- &#956;&#949;&#961;&#953;&#954;&#959;&#973;&#962; &#949;&#958;&#949;&#953;&#948;&#953;&#954;&#949;&#965;&#956;&#941;&#957;&#959;&#965;&#962; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#941;&#962; &#963;&#949; &#941;&#957;&#945; &#963;&#973;&#963;&#964;&#951;&#956;&#945; SMP.
- </p>
-
- </li>
- </ul>
- </div>
+ <p>&#917;&#948;&#974; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959; &#964;&#959;&#960;&#953;&#954;&#972; APIC, &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#948;&#953;&#945;&#967;&#949;&#953;&#961;&#943;&#950;&#949;&#964;&#945;&#953; &#972;&#955;&#959;&#965;&#962; &#964;&#959;&#965;&#962;
+ &#949;&#958;&#969;&#964;&#949;&#961;&#953;&#954;&#959;&#973;&#962; &#948;&#953;&#945;&#954;&#972;&#960;&#964;&#949;&#962; &#947;&#953;&#945; &#956;&#949;&#961;&#953;&#954;&#959;&#973;&#962; &#949;&#958;&#949;&#953;&#948;&#953;&#954;&#949;&#965;&#956;&#941;&#957;&#959;&#965;&#962; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#941;&#962; &#963;&#949; &#941;&#957;&#945;
+ &#963;&#973;&#963;&#964;&#951;&#956;&#945; SMP
+ </p>
+
</li>
</ul>
</div>
@@ -347,11 +261,11 @@
</div>
- <div class="section" title="&#917;&#960;&#972;&#956;&#949;&#957;&#951; &#963;&#949;&#955;&#943;&#948;&#945;">
+ <div class="section" title="&#929;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e960"></a>&#917;&#960;&#972;&#956;&#949;&#957;&#951; &#963;&#949;&#955;&#943;&#948;&#945;
+ <h4 class="title"><a name="d5e1056"></a>&#929;&#973;&#952;&#956;&#953;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
</h4>
</div>
</div>
@@ -359,58 +273,178 @@
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">&#917;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;:</span> &#932;&#959; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#960;&#959;&#965; &#949;&#954;&#954;&#953;&#957;&#949;&#943;&#964;&#945;&#953; &#949;&#958;
- &#959;&#961;&#953;&#963;&#956;&#959;&#973;
+ <p><span class="bold"><strong>&#928;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959;</strong></span></p>
+
+
+ <p>&#932;&#959; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#972; &#963;&#973;&#963;&#964;&#951;&#956;&#945; &#960;&#959;&#965; &#949;&#954;&#954;&#953;&#957;&#949;&#943;&#964;&#945;&#953; &#949;&#958; &#959;&#961;&#953;&#963;&#956;&#959;&#973;.</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#917;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#960;&#949;&#961;&#945;&#963;&#956;&#941;&#957;&#949;&#962; &#963;&#964;&#959;&#957; &#960;&#965;&#961;&#942;&#957;&#945;</strong></span></p>
+
+
+ <p>&#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#948;&#943;&#957;&#949;&#953; &#964;&#951;&#957; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#960;&#949;&#961;&#940;&#963;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#964;&#959;&#957; &#960;&#965;&#961;&#942;&#957;&#945; &#942;
+ &#957;&#945; &#960;&#949;&#943;&#964;&#949; &#963;&#964;&#959;&#957; &#960;&#965;&#961;&#942;&#957;&#945; &#957;&#945; &#963;&#945;&#962; &#949;&#956;&#966;&#945;&#957;&#943;&#963;&#949;&#953; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#954;&#945;&#964;&#940; &#964;&#951;&#957;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#928;&#961;&#959;&#963;&#940;&#961;&#964;&#951;&#963;&#951;:</span> &#913;&#965;&#964;&#942; &#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962; &#948;&#943;&#957;&#949;&#953; &#964;&#951;&#957; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945;
- &#960;&#961;&#959;&#963;&#945;&#961;&#964;&#942;&#963;&#949;&#964;&#949; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#963;&#964;&#959;&#957; &#960;&#965;&#961;&#942;&#957;&#945; &#942; &#957;&#945; &#960;&#949;&#943;&#964;&#949; &#963;&#964;&#959;&#957; &#960;&#965;&#961;&#942;&#957;&#945; &#957;&#945; &#963;&#945;&#962; &#949;&#956;&#966;&#945;&#957;&#943;&#963;&#949;&#953;
- &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;.
+ <p><span class="bold"><strong>&#917;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#959;&#973; &#964;&#969;&#957; &#940;&#955;&#955;&#969;&#957; &#923;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957;
+ &#931;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957;</strong></span></p>
+
+
+ <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; &#954;&#945;&#953; &#940;&#955;&#955;&#945; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#940; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#945; &#949;&#947;&#954;&#945;&#964;&#949;&#963;&#964;&#951;&#956;&#941;&#957;&#945;, &#951; Mageia &#960;&#961;&#959;&#963;&#960;&#945;&#952;&#949;&#943; &#957;&#945;
+ &#964;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#953; &#963;&#964;&#959; &#957;&#941;&#959; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; Mageia. &#913;&#957; &#948;&#949;&#957; &#964;&#959; &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949;, &#954;&#940;&#957;&#964;&#949;
+ &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#917;&#960;&#972;&#956;&#949;&#957;&#959; &#954;&#945;&#953; &#945;&#960;&#959;&#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#964;&#959; &#960;&#955;&#945;&#943;&#963;&#953;&#959; &#917;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972;&#962; &#958;&#941;&#957;&#959;&#965; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973;.
</p>
</li>
+ </ul>
+ </div>
+
+
+ <p><span class="emphasis"><em>&#915;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</em></span></p>
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">&#917;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972;&#962; &#958;&#941;&#957;&#959;&#965; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;</span>: &#916;&#949;&#943;&#964;&#949;
- &#960;&#945;&#961;&#945;&#960;&#940;&#957;&#969; <a class="link" href="setupBootloader.html#setupMageiaBootloader">&#935;&#961;&#942;&#963;&#951; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962;
- &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; Mageia</a></p>
+ <p><span class="emphasis"><em>&#923;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#946;&#943;&#957;&#964;&#949;&#959;</em></span></p>
+
+
+ <p>&#927;&#961;&#943;&#950;&#949;&#953; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#954;&#945;&#953; &#964;&#959; &#967;&#961;&#969;&#956;&#945;&#964;&#953;&#954;&#972; &#946;&#940;&#952;&#959;&#962; &#960;&#959;&#965; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#964;&#959;
+ &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; &#954;&#940;&#964;&#969; &#964;&#961;&#943;&#947;&#969;&#957;&#959; &#952;&#945; &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#959;&#973;&#957; &#959;&#953;
+ &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#954;&#945;&#953; &#967;&#961;&#969;&#956;&#945;&#964;&#953;&#954;&#959;&#973; &#946;&#940;&#952;&#959;&#965;&#962;.
+ </p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#928;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#949;&#962;</span></p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p><span class="guilabel">&#923;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945; &#946;&#943;&#957;&#964;&#949;&#959;</span>: &#927;&#961;&#943;&#950;&#949;&#953; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962; &#954;&#945;&#953; &#964;&#959;
- &#967;&#961;&#969;&#956;&#945;&#964;&#953;&#954;&#972; &#946;&#940;&#952;&#959;&#962; &#960;&#959;&#965; &#952;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943; &#964;&#959; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;. &#913;&#957; &#954;&#940;&#957;&#949;&#964;&#949; &#954;&#955;&#953;&#954;
- &#963;&#964;&#959; &#954;&#940;&#964;&#969; &#964;&#961;&#943;&#947;&#969;&#957;&#959; &#952;&#945; &#949;&#956;&#966;&#945;&#957;&#953;&#963;&#964;&#959;&#973;&#957; &#959;&#953; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#956;&#949;&#947;&#941;&#952;&#959;&#965;&#962; &#954;&#945;&#953; &#967;&#961;&#969;&#956;&#945;&#964;&#953;&#954;&#959;&#973; &#946;&#940;&#952;&#959;&#965;&#962;.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="bold"><strong>&#924;&#951;&#957; &#945;&#947;&#947;&#943;&#958;&#949;&#953;&#962; &#964;&#959; ESP &#942; &#964;&#959; MBR</strong></span>: &#948;&#949;&#943;&#964;&#949;
- &#960;&#945;&#961;&#945;&#960;&#940;&#957;&#969; <a class="link" href="setupBootloader.html#setupChainLoading">&#935;&#961;&#942;&#963;&#951; &#964;&#951;&#962; &#945;&#955;&#965;&#963;&#953;&#948;&#969;&#964;&#942;&#962;
- &#966;&#972;&#961;&#964;&#969;&#963;&#951;&#962;</a></p>
-
- </li>
- </ul>
- </div>
+ <p><span class="emphasis"><em>&#924;&#951;&#957; &#945;&#947;&#947;&#943;&#958;&#949;&#964;&#949; &#964;&#959; ESP &#942; &#964;&#959; MBR</em></span></p>
+
+
+ <p>Select this option if you don't want a bootable Mageia, but would rather
+ chain-load it from another OS. You will get a warning that the bootloader is
+ missing. Click<span class="emphasis"><em> Ok</em></span> if you are sure you understand the
+ implications, and wish to proceed.
+ </p>
</li>
</ul>
</div>
+
+
+
+ </div>
+
+ </div>
+
+
+ <div class="section" title="&#902;&#955;&#955;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e1092"></a>&#902;&#955;&#955;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962;
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <div class="section" title="&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#957;&#964;&#959;&#962; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e1094"></a>&#935;&#961;&#942;&#963;&#951; &#949;&#957;&#972;&#962; &#965;&#960;&#940;&#961;&#967;&#959;&#957;&#964;&#959;&#962; &#956;&#949;&#957;&#959;&#973; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>&#919; &#945;&#954;&#961;&#953;&#946;&#942;&#962; &#948;&#953;&#945;&#948;&#953;&#954;&#945;&#963;&#943;&#945; &#947;&#953;&#945; &#957;&#945; &#960;&#961;&#959;&#963;&#952;&#941;&#963;&#949;&#964;&#949; &#964;&#951; Mageia &#963;&#949; &#941;&#957;&#945; &#965;&#960;&#940;&#961;&#967;&#959;&#957; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945;
+ &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#948;&#949;&#957; &#949;&#943;&#957;&#945;&#953; &#964;&#959; &#945;&#957;&#964;&#953;&#954;&#949;&#943;&#956;&#949;&#957;&#959; &#963;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951;, &#969;&#963;&#964;&#972;&#963;&#959; &#963;&#964;&#953;&#962;
+ &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#949;&#961;&#953;&#960;&#964;&#974;&#963;&#949;&#953;&#962; &#945;&#965;&#964;&#972; &#945;&#960;&#945;&#953;&#964;&#949;&#943; &#964;&#951;&#957; &#949;&#954;&#964;&#941;&#955;&#949;&#963;&#951; &#964;&#959;&#965; &#954;&#945;&#964;&#940;&#955;&#955;&#951;&#955;&#959;&#965;
+ &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;, &#964;&#959; &#959;&#960;&#959;&#943;&#959; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#949;&#953; &#945;&#965;&#964;&#972;&#956;&#945;&#964;&#945; &#964;&#959; &#963;&#973;&#963;&#964;&#951;&#956;&#945;
+ Mageia &#954;&#945;&#953; &#957;&#945; &#964;&#959; &#954;&#945;&#964;&#945;&#967;&#969;&#961;&#942;&#963;&#949;&#953; &#963;&#964;&#959; &#956;&#949;&#957;&#959;&#973; &#916;&#949;&#943;&#964;&#949; &#963;&#964;&#951;&#957; &#964;&#949;&#954;&#956;&#951;&#961;&#943;&#969;&#963;&#951; &#964;&#959;&#965; &#949;&#957; &#955;&#972;&#947;&#969;
+ &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;.
+ </p>
</div>
+
+
+ <div class="section" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#967;&#969;&#961;&#943;&#962; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e1097"></a>&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#967;&#969;&#961;&#943;&#962; &#960;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>While you can opt to install Mageia without a bootloader (see section 2.1
+ Advanced), this is not recommended unless you absolutely know what you are
+ doing, as without some form of bootloader your operating system will be
+ unable to start.
+ </p>
+
+ </div>
+
+
+ <div lang="el" class="section" title="&#928;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#942; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#956;&#953;&#945;&#962; &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;&#962; &#963;&#964;&#959; &#956;&#949;&#957;&#959;&#973; &#917;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="setupBootloaderAddEntry"></a>&#928;&#961;&#959;&#963;&#952;&#942;&#954;&#951; &#942; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#943;&#945; &#956;&#953;&#945;&#962; &#954;&#945;&#964;&#945;&#967;&#974;&#961;&#951;&#963;&#951;&#962; &#963;&#964;&#959; &#956;&#949;&#957;&#959;&#973; &#917;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+ <p>&#915;&#953;&#945; &#957;&#945; &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#965;&#964;&#972; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945; &#964;&#959;
+ /boot/grub2/custom.cfg &#942; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; <span class="bold"><strong>grub-customizer</strong></span> (&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959; &#963;&#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945; &#964;&#951;&#962;
+ Mageia).
+ </p>
+
+
+ <div class="note" title="&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#931;&#951;&#956;&#949;&#943;&#969;&#963;&#951;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; wiki &#956;&#945;&#962; https://wiki.mageia.org/en/Grub2-efi_and_Mageia</p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
</div>
diff --git a/el/setupBootloaderAddEntry.html b/el/setupBootloaderAddEntry.html
index 5f0c72b..0e1a7e6 100644
--- a/el/setupBootloaderAddEntry.html
+++ b/el/setupBootloaderAddEntry.html
@@ -6,8 +6,8 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
<link rel="up" href="index.html" title="&#917;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#956;&#949; &#964;&#959; DrakX">
- <link rel="prev" href="setupBootloader.html" title="&#922;&#973;&#961;&#953;&#949;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#941;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
- <link rel="next" href="misc-params.html" title="&#931;&#973;&#957;&#959;&#968;&#951; &#964;&#969;&#957; &#948;&#953;&#940;&#966;&#959;&#961;&#969;&#957; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#969;&#957;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="prev" href="setupBootloader.html" title="&#928;&#961;&#972;&#947;&#961;&#945;&#956;&#956;&#945; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962;">
+ <link rel="next" href="misc-params.html" title="&#931;&#973;&#957;&#959;&#968;&#951; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;&#962;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -27,9 +27,9 @@
- <p>&#915;&#953;&#945; &#957;&#945; &#964;&#959;&#960; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#965;&#964;&#972; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945; &#964;&#959;
- /boot/grub2/custom.cfg &#942; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; grub-customizer
- (&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959; &#963;&#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945; &#964;&#951;&#962; Mageia).
+ <p>&#915;&#953;&#945; &#957;&#945; &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#945;&#965;&#964;&#972; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#960;&#949;&#958;&#949;&#961;&#947;&#945;&#963;&#964;&#949;&#943;&#964;&#949; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945; &#964;&#959;
+ /boot/grub2/custom.cfg &#942; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#964;&#959; &#955;&#959;&#947;&#953;&#963;&#956;&#953;&#954;&#972; <span class="bold"><strong>grub-customizer</strong></span> (&#916;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959; &#963;&#964;&#945; &#945;&#960;&#959;&#952;&#949;&#964;&#942;&#961;&#953;&#945; &#964;&#951;&#962;
+ Mageia).
</p>
@@ -42,7 +42,7 @@
<tr>
<td align="left" valign="top">
- <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; wiki &#956;&#945;&#962; <a class="ulink" href="https://wiki.mageia.org/en/Grub2-efi_and_Mageia" target="_top">https://wiki.mageia.org/en/Grub2-efi_and_Mageia</a></p>
+ <p>&#915;&#953;&#945; &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#949;&#962; &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#945;&#957;&#945;&#964;&#961;&#941;&#958;&#964;&#949; &#963;&#964;&#959; wiki &#956;&#945;&#962; https://wiki.mageia.org/en/Grub2-efi_and_Mageia</p>
</td>
</tr>
diff --git a/el/setupSCSI.html b/el/setupSCSI.html
index 6f1f243..7d7279c 100644
--- a/el/setupSCSI.html
+++ b/el/setupSCSI.html
@@ -28,30 +28,33 @@
+
+
-
+
+
+
+
+
-
- <p><a name="setupSCSI-pa1"></a>&#932;&#959; DrakX &#963;&#965;&#957;&#942;&#952;&#969;&#962; &#949;&#957;&#964;&#959;&#960;&#943;&#950;&#949;&#953; &#964;&#959;&#965;&#962; &#963;&#954;&#955;&#951;&#961;&#959;&#973;&#962; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#959;&#965;&#962; &#963;&#969;&#963;&#964;&#940;. &#937;&#963;&#964;&#972;&#963;&#959;, &#956;&#960;&#959;&#961;&#949;&#943;
- &#957;&#945; &#945;&#960;&#959;&#964;&#973;&#967;&#949;&#953; &#963;&#964;&#959;&#957; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#955;&#945;&#953;&#972;&#964;&#949;&#961;&#969;&#957; &#949;&#955;&#949;&#947;&#954;&#964;&#974;&#957; &#959;&#948;&#951;&#947;&#974;&#957; SCSI &#956;&#949;
- &#945;&#960;&#959;&#964;&#941;&#955;&#949;&#963;&#956;&#945; &#957;&#945; &#945;&#960;&#959;&#964;&#973;&#967;&#949;&#953; &#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#969;&#957; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#969;&#957; &#959;&#948;&#951;&#947;&#974;&#957;.
- </p>
- <p><a name="setupSCSI-pa2"></a>&#913;&#957; &#963;&#965;&#956;&#946;&#945;&#943;&#957;&#949;&#953; &#945;&#965;&#964;&#972;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#948;&#951;&#955;&#974;&#963;&#949;&#964;&#949; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945; &#963;&#964;&#959; Drakx &#964;&#959;&#965;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962;
- SCSI &#960;&#959;&#965; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949;.
+ <p><a name="setupSCSI-pa1"></a>&#932;&#959; DrakX &#954;&#945;&#957;&#959;&#957;&#953;&#954;&#940; &#952;&#945; &#949;&#957;&#964;&#959;&#960;&#943;&#963;&#949;&#953; &#964;&#959;&#965;&#962; &#963;&#954;&#955;&#951;&#961;&#959;&#973;&#962; &#963;&#945;&#962; &#948;&#943;&#963;&#954;&#959;&#965;&#962; &#963;&#969;&#963;&#964;&#940;. &#937;&#963;&#964;&#972;&#963;&#959;,
+ &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#945;&#960;&#959;&#964;&#973;&#967;&#949;&#953; &#963;&#964;&#959;&#957; &#949;&#957;&#964;&#959;&#960;&#953;&#963;&#956;&#972; &#959;&#961;&#953;&#963;&#956;&#941;&#957;&#969;&#957; &#960;&#945;&#955;&#945;&#953;&#972;&#964;&#949;&#961;&#969;&#957; &#949;&#955;&#949;&#947;&#954;&#964;&#974;&#957; &#959;&#948;&#951;&#947;&#974;&#957; SCSI
+ &#956;&#949; &#945;&#960;&#959;&#964;&#941;&#955;&#949;&#963;&#956;&#945; &#957;&#945; &#945;&#960;&#959;&#964;&#973;&#967;&#949;&#953; &#951; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#964;&#969;&#957; &#945;&#960;&#945;&#961;&#945;&#943;&#964;&#951;&#964;&#969;&#957; &#959;&#948;&#951;&#947;&#974;&#957;.
</p>
- <p><a name="setupSCSI-pa3"></a>&#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;, &#964;&#959; DrakX &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#949;&#943;&#957;&#945;&#953; &#963;&#949; &#952;&#941;&#963;&#951; &#957;&#945; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#943;&#963;&#949;&#953; &#960;&#959;&#953;&#949;&#962;
- &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#959;&#948;&#951;&#947;&#959;&#973; &#954;&#945;&#953; &#947;&#953;&#945; &#957;&#945; &#964;&#959;&#957; &#952;&#941;&#963;&#949;&#953; &#963;&#949;
- &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;.
+ <p><a name="setupSCSI-pa2"></a>&#913;&#957; &#951; &#963;&#965;&#963;&#954;&#949;&#965;&#942; &#963;&#945;&#962; &#948;&#949;&#957; &#941;&#967;&#949;&#953; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#953;&#963;&#964;&#949;&#943;, &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#959;&#961;&#943;&#963;&#949;&#964;&#949; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945; &#963;&#964;&#959;
+ DrakX &#964;&#959;&#965;&#962; &#959;&#948;&#951;&#947;&#959;&#973;&#962; SCSI &#960;&#959;&#965; &#948;&#953;&#945;&#952;&#941;&#964;&#949;&#964;&#949;. &#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;, &#964;&#959; DrakX &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945;
+ &#949;&#943;&#957;&#945;&#953; &#963;&#949; &#952;&#941;&#963;&#951; &#957;&#945; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#943;&#963;&#949;&#953; &#960;&#959;&#953;&#949;&#962; &#960;&#945;&#961;&#945;&#956;&#941;&#964;&#961;&#959;&#965;&#962; &#967;&#961;&#949;&#953;&#940;&#950;&#949;&#964;&#945;&#953; &#947;&#953;&#945; &#964;&#951;&#957; &#948;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951;
+ &#964;&#959;&#965; &#959;&#948;&#951;&#947;&#959;&#973; &#954;&#945;&#953; &#947;&#953;&#945; &#957;&#945; &#964;&#959;&#957; &#952;&#941;&#963;&#949;&#953; &#963;&#949; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#943;&#945;.
</p>
</div>
diff --git a/el/soundConfig.html b/el/soundConfig.html
index 04c11a8..47ce6d4 100644
--- a/el/soundConfig.html
+++ b/el/soundConfig.html
@@ -29,25 +29,20 @@
- <p>&#931;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#948;&#943;&#957;&#949;&#964;&#945;&#953; &#964;&#959; &#972;&#957;&#959;&#956;&#945; &#964;&#959;&#965; &#959;&#948;&#951;&#947;&#959;&#973; &#960;&#959;&#965; &#941;&#967;&#949;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#953; &#959;
- &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#942;&#967;&#959;&#965;, &#959; &#959;&#960;&#959;&#943;&#959;&#962; &#952;&#945; &#949;&#943;&#957;&#945;&#953; &#954;&#945;&#953; &#959; &#949;&#958;' &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#959;&#948;&#951;&#947;&#972;&#962;
- &#945;&#957; &#941;&#967;&#959;&#965;&#956;&#949; &#941;&#957;&#945;&#957;.
- </p>
- <p>&#927; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959;&#962; &#959;&#948;&#951;&#947;&#972;&#962; &#952;&#945; &#960;&#961;&#941;&#960;&#949;&#953; &#957;&#945; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#949;&#943; &#967;&#969;&#961;&#943;&#962; &#960;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945;. &#937;&#963;&#964;&#972;&#963;&#959;,
- &#945;&#957; &#956;&#949;&#964;&#940; &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951; &#945;&#957;&#964;&#953;&#956;&#949;&#964;&#969;&#960;&#943;&#950;&#949;&#964;&#949; &#960;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#945;, &#964;&#972;&#964;&#949; &#949;&#954;&#964;&#949;&#955;&#941;&#963;&#964;&#949;
- <span class="command"><strong>draksound</strong></span> &#942; &#949;&#954;&#954;&#953;&#957;&#942;&#963;&#964;&#949; &#964;&#959; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959; &#945;&#965;&#964;&#972; &#945;&#960;&#972; &#964;&#959; &#922;&#941;&#957;&#964;&#961;&#959;
- &#917;&#955;&#941;&#947;&#967;&#959;&#965; Mageia (MCC), &#949;&#960;&#953;&#955;&#941;&#947;&#959;&#957;&#964;&#945;&#962; &#964;&#951;&#957; &#954;&#945;&#961;&#964;&#941;&#955;&#945; <span class="guilabel">&#933;&#955;&#953;&#954;&#972;</span> &#954;&#945;&#953;
- &#954;&#940;&#957;&#959;&#957;&#964;&#945;&#962; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guilabel">&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#942;&#967;&#959;&#965;</span> &#963;&#964;&#959; &#949;&#960;&#940;&#957;&#969; &#948;&#949;&#958;&#943;
- &#956;&#941;&#961;&#959;&#962; &#964;&#951;&#962; &#959;&#952;&#972;&#957;&#951;&#962;.
+
+
+ <p>This screen shows the details of the sound card driver chosen for you by the
+ installer, and this driver should work without problems.
</p>
- <p>&#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;, &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#964;&#959;&#965; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#959;&#965; draksound &#942; &laquo;&#916;&#953;&#945;&#956;&#972;&#961;&#966;&#969;&#963;&#951; &#964;&#959;&#965; &#942;&#967;&#959;&#965;&raquo;,
- &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#915;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</span> &#954;&#945;&#953; &#963;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945; &#963;&#964;&#959;
- <span class="guibutton">&#917;&#960;&#943;&#955;&#965;&#963;&#951; &#960;&#961;&#959;&#946;&#955;&#951;&#956;&#940;&#964;&#969;&#957;</span> &#947;&#953;&#945; &#957;&#945; &#946;&#961;&#949;&#943;&#964;&#949; &#967;&#961;&#942;&#963;&#953;&#956;&#949;&#962;
- &#960;&#955;&#951;&#961;&#959;&#966;&#959;&#961;&#943;&#949;&#962; &#949;&#960;&#943;&#955;&#965;&#963;&#951;&#962; &#964;&#959;&#965; &#960;&#961;&#959;&#946;&#955;&#942;&#956;&#945;&#964;&#959;&#962;.
+ <p>However, if you encounter any issues post-install, then run
+ <span class="command"><strong>draksound</strong></span> or start this tool via <span class="guimenu">Mageia Control Center</span> &#8594; <span class="guimenuitem">Hardware</span> &#8594; <span class="guimenuitem">Sound Configuration</span>. Then, in the
+ <code class="literal">draksound</code> or <span class="emphasis"><em>Sound Configuration</em></span>
+ screen, click on <span class="emphasis"><em>Troubleshooting</em></span> to find useful advice
+ about how to solve the problem.
</p>
@@ -63,15 +58,10 @@
- <p>&#924;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#915;&#953;&#945; &#960;&#961;&#959;&#967;&#969;&#961;&#951;&#956;&#941;&#957;&#959;&#965;&#962;</span> &#963;&#964;&#951;&#957; &#959;&#952;&#972;&#957;&#951; &#945;&#965;&#964;&#942;, &#954;&#945;&#964;&#940;
- &#964;&#951;&#957; &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;, &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945; &#966;&#945;&#957;&#949;&#943; &#967;&#961;&#942;&#963;&#953;&#956;&#959; &#963;&#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#960;&#959;&#965; &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957;
- &#960;&#949;&#961;&#953;&#963;&#963;&#972;&#964;&#949;&#961;&#959;&#953; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#953; &#959;&#948;&#951;&#947;&#959;&#943; &#945;&#955;&#955;&#940; &#948;&#949;&#957; &#941;&#967;&#949;&#953; &#949;&#960;&#953;&#955;&#949;&#947;&#949;&#943; &#941;&#957;&#945;&#962; &#960;&#961;&#959;&#954;&#945;&#952;&#959;&#961;&#953;&#963;&#956;&#941;&#957;&#959;&#962;
- &#959;&#948;&#951;&#947;&#972;&#962;, &#942; &#960;&#953;&#963;&#964;&#949;&#973;&#949;&#964;&#949; &#972;&#964;&#953; &#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#949;&#960;&#941;&#955;&#949;&#958;&#949; &#941;&#957;&#945;&#957; &#955;&#945;&#957;&#952;&#945;&#963;&#956;&#941;&#957;&#945;.
- </p>
-
-
- <p>&#931;&#949; &#945;&#965;&#964;&#942;&#957; &#964;&#951;&#957; &#960;&#949;&#961;&#943;&#960;&#964;&#969;&#963;&#951; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#953;&#955;&#941;&#958;&#949;&#964;&#949; &#941;&#957;&#945;&#957; &#948;&#953;&#945;&#966;&#959;&#961;&#949;&#964;&#953;&#954;&#972; &#959;&#948;&#951;&#947;&#972; &#956;&#949; &#954;&#955;&#953;&#954;
- &#963;&#964;&#959; <span class="guibutton">&#917;&#960;&#953;&#955;&#959;&#947;&#942; &#959;&#948;&#951;&#947;&#959;&#973;</span>.
+ <p>&#913;&#957; &#948;&#949;&#957; &#965;&#960;&#940;&#961;&#967;&#949;&#953; &#954;&#940;&#960;&#959;&#953;&#959;&#962; &#949;&#954; &#959;&#961;&#953;&#963;&#956;&#959;&#973; &#959;&#948;&#951;&#947;&#972;&#962; &#947;&#953;&#945; &#964;&#951;&#957; &#954;&#940;&#961;&#964;&#945; &#942;&#967;&#959;&#965;, &#956;&#960;&#959;&#961;&#949;&#943; &#957;&#945;
+ &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959;&#953; &#949;&#957;&#945;&#955;&#955;&#945;&#954;&#964;&#953;&#954;&#959;&#943; &#959;&#948;&#951;&#947;&#959;&#943;. &#913;&#957; &#963;&#965;&#956;&#946;&#945;&#943;&#957;&#949;&#953; &#945;&#965;&#964;&#972; &#954;&#945;&#953; &#960;&#953;&#963;&#964;&#949;&#973;&#949;&#964;&#949; &#972;&#964;&#953;
+ &#959; &#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#940;&#964;&#951;&#962; &#948;&#949;&#957; &#941;&#967;&#949;&#953; &#954;&#940;&#957;&#949;&#953; &#964;&#951;&#957; &#954;&#945;&#955;&#973;&#964;&#949;&#961;&#951; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959;
+ <span class="emphasis"><em>&#928;&#961;&#959;&#951;&#947;&#956;&#941;&#957;&#949;&#962;</em></span> &#947;&#953;&#945; &#957;&#945; &#954;&#945;&#952;&#959;&#961;&#943;&#963;&#949;&#964;&#949; &#964;&#959;&#957; &#959;&#948;&#951;&#947;&#972; &#967;&#949;&#953;&#961;&#959;&#954;&#943;&#957;&#951;&#964;&#945;.
</p>
</div>
diff --git a/el/takeOverHdConfirm.html b/el/takeOverHdConfirm.html
index 2ed5eef..eabc151 100644
--- a/el/takeOverHdConfirm.html
+++ b/el/takeOverHdConfirm.html
@@ -22,13 +22,14 @@
</div>
</div>
</div>
-
+
+
@@ -36,15 +37,26 @@
- <p><a name="takeOverHdConfirm-pa1"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</span> &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951;
- &#947;&#953;&#945; &#964;&#959; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959; &#960;&#959;&#965; &#949;&#960;&#953;&#955;&#941;&#958;&#945;&#964;&#949;.
- </p>
- <p><a name="takeOverHdConfirm-pa2"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="guibutton">&#917;&#960;&#972;&#956;&#949;&#957;&#959;</span> &#945;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#954;&#945;&#953;
- &#949;&#960;&#953;&#952;&#965;&#956;&#949;&#943;&#964;&#949; &#964;&#951;&#957; &#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942; &#972;&#955;&#969;&#957; &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;, &#972;&#955;&#969;&#957; &#964;&#969;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957;
- &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957; &#954;&#945;&#953; &#972;&#955;&#969;&#957; &#964;&#969;&#957; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957; &#963;&#964;&#959;&#957; &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#959; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="takeOverHdConfirm-pa1"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#928;&#961;&#959;&#951;&#947;&#959;&#973;&#956;&#949;&#957;&#959;</em></span> &#945;&#957; &#948;&#949;&#957; &#949;&#943;&#963;&#964;&#949; &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#947;&#953;&#945;
+ &#964;&#951;&#957; &#949;&#960;&#953;&#955;&#959;&#947;&#942; &#963;&#945;&#962;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="takeOverHdConfirm-pa2"></a>&#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <span class="emphasis"><em>&#917;&#960;&#972;&#956;&#949;&#957;&#959;</em></span> &#947;&#953;&#945; &#957;&#945; &#963;&#965;&#957;&#949;&#967;&#943;&#963;&#949;&#964;&#949; &#945;&#957; &#949;&#943;&#963;&#964;&#949;
+ &#963;&#943;&#947;&#959;&#965;&#961;&#959;&#962;-&#951; &#972;&#964;&#953; &#954;&#945;&#953; &#945;&#960;&#959;&#948;&#941;&#967;&#949;&#963;&#964;&#949; &#964;&#951;&#957; &#948;&#953;&#945;&#947;&#961;&#945;&#966;&#942; <span class="bold"><strong>&#972;&#955;&#969;&#957;</strong></span> &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;, <span class="bold"><strong>&#972;&#955;&#969;&#957;</strong></span> &#964;&#969;&#957; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957; &#954;&#945;&#953; <span class="bold"><strong>&#972;&#955;&#969;&#957; &#964;&#969;&#957; &#948;&#949;&#948;&#959;&#956;&#941;&#957;&#969;&#957;</strong></span> &#963;&#964;&#959;&#957; &#963;&#965;&#947;&#954;&#949;&#954;&#961;&#953;&#956;&#941;&#957;&#959; &#963;&#954;&#955;&#951;&#961;&#972; &#948;&#943;&#963;&#954;&#959;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/el/uninstall-Mageia.html b/el/uninstall-Mageia.html
index dce6846..eea901b 100644
--- a/el/uninstall-Mageia.html
+++ b/el/uninstall-Mageia.html
@@ -24,61 +24,50 @@
+
- <div class="section" title="&#927;&#948;&#951;&#947;&#943;&#949;&#962;">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e1232"></a>&#927;&#948;&#951;&#947;&#943;&#949;&#962;
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>&#913;&#957; &#951; Mageia &#948;&#949;&#957; &#963;&#945;&#962; &laquo;&#941;&#960;&#949;&#953;&#963;&#949;&raquo; &#942; &#945;&#957; &#948;&#949;&#957; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#945;&#960;&#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949;
- &#963;&#969;&#963;&#964;&#940;, &#956;&#949; &#955;&#943;&#947;&#945; &#955;&#972;&#947;&#953;&#945; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &laquo;&#958;&#949;&#966;&#959;&#961;&#964;&#969;&#952;&#949;&#943;&#964;&#949;&raquo;. &#917;&#943;&#957;&#945;&#953; &#948;&#953;&#954;&#945;&#943;&#969;&#956;&#940; &#963;&#945;&#962; &#954;&#945;&#953;
- &#951; Mageia &#963;&#945;&#962; &#948;&#943;&#957;&#949;&#953; &#964;&#951; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#957; &#945;&#957;&#964;&#953;&#952;&#941;&#963;&#949;&#953; &#940;&#955;&#955;&#969;&#957;
- &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957;.
- </p>
-
-
- <p>&#913;&#966;&#959;&#973; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#949;&#966;&#949;&#948;&#961;&#953;&#954;&#940; &#945;&#957;&#964;&#943;&#947;&#961;&#945;&#966;&#945;, &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#953;&#957;&#942;&#963;&#964;&#949; &#964;&#959; DVD &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
- &#964;&#951;&#962; Mageia &#954;&#945;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; &#916;&#953;&#940;&#963;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;. &#931;&#964;&#951; &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;, &#917;&#960;&#945;&#957;&#945;&#966;&#959;&#961;&#940; &#964;&#959;&#965;
- &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#969;&#957; Windows. &#931;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#952;&#945; &#941;&#967;&#949;&#964;&#949; &#956;&#972;&#957;&#959;
- Windows &#969;&#962; &#949;&#960;&#953;&#955;&#959;&#947;&#942;.
- </p>
-
-
- <p>&#915;&#953;&#945; &#957;&#945; &#945;&#957;&#940;&#954;&#964;&#951;&#963;&#951; &#964;&#959;&#965; &#967;&#974;&#961;&#959;&#965; &#960;&#959;&#965; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#959;&#973;&#963;&#945;&#957; &#959;&#953; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; Mageia &#963;&#964;&#945;
- Windows, &#954;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#964;&#959; <code class="code">&#904;&#957;&#945;&#961;&#958;&#951; -&gt; &#928;&#943;&#957;&#945;&#954;&#945;&#962; &#949;&#955;&#941;&#947;&#967;&#959;&#965; -&gt; &#917;&#961;&#947;&#945;&#955;&#949;&#943;&#945;
- &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;&#962; -&gt; &#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#964;&#959;&#965; &#965;&#960;&#959;&#955;&#959;&#947;&#953;&#963;&#964;&#942; -&gt; &#913;&#960;&#959;&#952;&#942;&#954;&#949;&#965;&#963;&#951; -&gt; &#916;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951;
- &#948;&#943;&#963;&#954;&#969;&#957;</code> &#947;&#953;&#945; &#957;&#945; &#956;&#949;&#964;&#945;&#946;&#949;&#943;&#964;&#949; &#963;&#964;&#951;&#957; &#948;&#953;&#945;&#967;&#949;&#943;&#961;&#953;&#963;&#951; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;. &#920;&#945; &#945;&#957;&#945;&#947;&#957;&#969;&#961;&#943;&#963;&#949;&#964;&#949;
- &#964;&#951;&#957; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#964;&#951;&#962; Mageia &#945;&#960;&#972; &#964;&#951;&#957; &#949;&#964;&#953;&#954;&#941;&#964;&#945; <span class="guilabel">&#902;&#947;&#957;&#969;&#963;&#964;&#959;</span>, &#945;&#955;&#955;&#940;
- &#954;&#945;&#953; &#945;&#960;&#972; &#964;&#959; &#956;&#941;&#947;&#949;&#952;&#959;&#962; &#954;&#945;&#953; &#964;&#951;&#957; &#964;&#959;&#960;&#959;&#952;&#949;&#963;&#943;&#945; &#963;&#964;&#959;&#957; &#948;&#943;&#963;&#954;&#959;. &#922;&#940;&#957;&#964;&#949; &#954;&#955;&#953;&#954; &#963;&#949; &#954;&#940;&#952;&#949; &#956;&#953;&#945; &#945;&#960;&#972;
- &#964;&#953;&#962; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#953;&#962; &#954;&#945;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="guibutton">&#916;&#953;&#945;&#947;&#961;&#945;&#966;&#942;</span>&middot; &#959; &#967;&#974;&#961;&#959;&#962; &#952;&#945;
- &#945;&#960;&#949;&#955;&#949;&#965;&#952;&#949;&#961;&#969;&#952;&#949;&#943;.
- </p>
-
-
- <p>&#913;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; Windows XP, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#957;&#941;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
- &#954;&#945;&#953; &#957;&#945; &#964;&#951;&#957; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#963;&#949; (FAT32 &#942; NTFS). &#920;&#945; &#945;&#960;&#959;&#954;&#964;&#942;&#963;&#949;&#953; &#941;&#957;&#945; &#947;&#961;&#940;&#956;&#956;&#945;
- &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;.
- </p>
-
-
- <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; Vista &#942; 7, &#941;&#967;&#949;&#964;&#949; &#945;&#954;&#972;&#956;&#945; &#956;&#953;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#949;&#954;&#964;&#949;&#943;&#957;&#949;&#964;&#949; &#964;&#951;&#957;
- &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#960;&#959;&#965; &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#963;&#964;&#945; &#945;&#961;&#953;&#963;&#964;&#949;&#961;&#940; &#945;&#960;&#972; &#964;&#959;&#957; &#945;&#960;&#949;&#955;&#949;&#965;&#952;&#949;&#961;&#969;&#956;&#941;&#957;&#959;
- &#967;&#974;&#961;&#959;. &#933;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#954;&#945;&#953; &#940;&#955;&#955;&#945; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#960;&#959;&#965; &#956;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957;,
- &#972;&#960;&#969;&#962; &#964;&#959; gparted, &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959; &#947;&#953;&#945; windows &#954;&#945;&#953; linux. &#908;&#960;&#969;&#962; &#960;&#940;&#957;&#964;&#945;, &#954;&#945;&#964;&#940; &#964;&#951;&#957;
- &#945;&#955;&#955;&#945;&#947;&#942; &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;, &#957;&#945; &#949;&#943;&#963;&#964;&#949; &#960;&#961;&#959;&#963;&#949;&#954;&#964;&#953;&#954;&#972;&#962;-&#951; &#954;&#945;&#953; &#963;&#953;&#947;&#959;&#965;&#961;&#949;&#965;&#964;&#949;&#943;&#964;&#949; &#972;&#964;&#953; &#941;&#967;&#949;&#964;&#949;
- &#960;&#940;&#961;&#949;&#953; &#945;&#957;&#964;&#943;&#947;&#961;&#945;&#966;&#945; &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962; &#947;&#953;&#945; &#972;&#955;&#945; &#964;&#945; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#940; &#963;&#945;&#962; &#945;&#961;&#967;&#949;&#943;&#945;.
- </p>
-
- </div>
+
+
+ <p>&#913;&#957; &#951; Mageia &#948;&#949;&#957; &#963;&#945;&#962; &laquo;&#941;&#960;&#949;&#953;&#963;&#949;&raquo; &#942; &#945;&#957; &#948;&#949;&#957; &#948;&#949;&#957; &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &#945;&#960;&#949;&#947;&#954;&#945;&#964;&#945;&#963;&#964;&#942;&#963;&#949;&#964;&#949;
+ &#963;&#969;&#963;&#964;&#940;, &#956;&#949; &#955;&#943;&#947;&#945; &#955;&#972;&#947;&#953;&#945; &#945;&#957; &#952;&#941;&#955;&#949;&#964;&#949; &#957;&#945; &#964;&#951;&#957; &laquo;&#958;&#949;&#966;&#959;&#961;&#964;&#969;&#952;&#949;&#943;&#964;&#949;&raquo; - &#949;&#943;&#957;&#945;&#953; &#948;&#953;&#954;&#945;&#943;&#969;&#956;&#940; &#963;&#945;&#962;
+ &#954;&#945;&#953; &#951; Mageia &#963;&#945;&#962; &#948;&#943;&#957;&#949;&#953; &#964;&#951; &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#957;&#945; &#964;&#959; &#954;&#940;&#957;&#949;&#964;&#949; &#949;&#957; &#945;&#957;&#964;&#953;&#952;&#941;&#963;&#949;&#953; &#940;&#955;&#955;&#969;&#957;
+ &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#974;&#957; &#963;&#965;&#963;&#964;&#951;&#956;&#940;&#964;&#969;&#957;.
+ </p>
+
+
+ <p>&#913;&#966;&#959;&#973; &#960;&#961;&#945;&#947;&#956;&#945;&#964;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#949;&#966;&#949;&#948;&#961;&#953;&#954;&#940; &#945;&#957;&#964;&#943;&#947;&#961;&#945;&#966;&#945;, &#949;&#960;&#945;&#957;&#949;&#954;&#954;&#953;&#957;&#942;&#963;&#964;&#949; &#964;&#959; DVD &#949;&#947;&#954;&#945;&#964;&#940;&#963;&#964;&#945;&#963;&#951;&#962;
+ &#964;&#951;&#962; Mageia &#954;&#945;&#953; &#949;&#960;&#953;&#955;&#941;&#958;&#964;&#949; <span class="emphasis"><em>&#916;&#953;&#940;&#963;&#969;&#963;&#951; &#964;&#959;&#965; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962;</em></span> &#954;&#945;&#953; &#963;&#964;&#951;
+ &#963;&#965;&#957;&#941;&#967;&#949;&#953;&#945;, <span class="emphasis"><em>&#917;&#960;&#945;&#957;&#945;&#966;&#959;&#961;&#940; &#964;&#959;&#965; &#960;&#961;&#959;&#947;&#961;&#940;&#956;&#956;&#945;&#964;&#959;&#962; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;&#962; &#964;&#969;&#957;
+ Windows</em></span>. &#931;&#964;&#951;&#957; &#949;&#960;&#972;&#956;&#949;&#957;&#951; &#949;&#954;&#954;&#943;&#957;&#951;&#963;&#951;, &#952;&#945; &#941;&#967;&#949;&#964;&#949; &#956;&#972;&#957;&#959; Windows, &#967;&#969;&#961;&#943;&#962; &#964;&#951;&#957;
+ &#948;&#965;&#957;&#945;&#964;&#972;&#964;&#951;&#964;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;&#962; &#964;&#959;&#965; &#955;&#949;&#953;&#964;&#959;&#965;&#961;&#947;&#953;&#954;&#959;&#973; &#963;&#965;&#963;&#964;&#942;&#956;&#945;&#964;&#959;&#962; Mageia.
+ </p>
+
+
+ <p>In Windows, to recover the space used by Mageia partitions: click on
+ <span class="guimenu">Start</span> &#8594; <span class="guimenuitem">Control
+ Panel</span> &#8594; <span class="guimenuitem">Administrative Tools</span> &#8594; <span class="guimenuitem">Computer Management</span> &#8594; <span class="guimenuitem">Storage</span> &#8594; <span class="guimenuitem">Disk
+ Management</span>. You will recognise a Mageia
+ partition because they are labeled <code class="literal">Unknown</code>, and also by
+ their size and place on the disk. Right-click on each of these partitions
+ and select <span class="emphasis"><em>Delete</em></span> to free up the space.
+ </p>
+
+
+ <p>&#913;&#957; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#949;&#943;&#964;&#949; Windows XP, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#948;&#951;&#956;&#953;&#959;&#965;&#961;&#947;&#942;&#963;&#949;&#964;&#949; &#956;&#953;&#945; &#957;&#941;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;
+ &#954;&#945;&#953; &#957;&#945; &#964;&#951;&#957; &#956;&#959;&#961;&#966;&#959;&#960;&#959;&#953;&#942;&#963;&#949;&#964;&#949; &#963;&#949; (FAT32 &#942; NTFS). &#904;&#964;&#963;&#953; &#952;&#945; &#945;&#960;&#959;&#954;&#964;&#942;&#963;&#949;&#953; &#941;&#957;&#945; &#947;&#961;&#940;&#956;&#956;&#945;
+ &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951;&#962;.
+ </p>
+
+
+ <p>&#913;&#957; &#941;&#967;&#949;&#964;&#949; Vista &#942; 7, &#941;&#967;&#949;&#964;&#949; &#945;&#954;&#972;&#956;&#945; &#956;&#953;&#945; &#949;&#960;&#953;&#955;&#959;&#947;&#942;, &#956;&#960;&#959;&#961;&#949;&#943;&#964;&#949; &#957;&#945; &#949;&#960;&#949;&#954;&#964;&#949;&#943;&#957;&#949;&#964;&#949; &#964;&#951;&#957;
+ &#965;&#960;&#940;&#961;&#967;&#959;&#965;&#963;&#945; &#954;&#945;&#964;&#940;&#964;&#956;&#951;&#963;&#951; &#960;&#959;&#965; &#946;&#961;&#943;&#963;&#954;&#949;&#964;&#945;&#953; &#963;&#964;&#945; &#945;&#961;&#953;&#963;&#964;&#949;&#961;&#940; &#945;&#960;&#972; &#964;&#959;&#957; &#945;&#960;&#949;&#955;&#949;&#965;&#952;&#949;&#961;&#969;&#956;&#941;&#957;&#959;
+ &#967;&#974;&#961;&#959;. &#933;&#960;&#940;&#961;&#967;&#959;&#965;&#957; &#954;&#945;&#953; &#940;&#955;&#955;&#945; &#949;&#961;&#947;&#945;&#955;&#949;&#943;&#945; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957; &#960;&#959;&#965; &#956;&#960;&#959;&#961;&#959;&#973;&#957; &#957;&#945; &#967;&#961;&#951;&#963;&#953;&#956;&#959;&#960;&#959;&#953;&#951;&#952;&#959;&#973;&#957;,
+ &#972;&#960;&#969;&#962; &#964;&#959; <span class="bold"><strong>gparted</strong></span>, &#948;&#953;&#945;&#952;&#941;&#963;&#953;&#956;&#959; &#947;&#953;&#945; Windows &#954;&#945;&#953;
+ Linux. &#908;&#960;&#969;&#962; &#960;&#940;&#957;&#964;&#945;, &#954;&#945;&#964;&#940; &#964;&#951;&#957; &#945;&#955;&#955;&#945;&#947;&#942; &#964;&#969;&#957; &#954;&#945;&#964;&#945;&#964;&#956;&#942;&#963;&#949;&#969;&#957;, &#966;&#961;&#959;&#957;&#964;&#943;&#963;&#964;&#949; &#957;&#945; &#941;&#967;&#949;&#964;&#949; &#960;&#940;&#961;&#949;&#953;
+ &#945;&#957;&#964;&#943;&#947;&#961;&#945;&#966;&#945; &#945;&#963;&#966;&#945;&#955;&#949;&#943;&#945;&#962; &#947;&#953;&#945; &#972;&#955;&#945; &#964;&#945; &#963;&#951;&#956;&#945;&#957;&#964;&#953;&#954;&#940; &#963;&#945;&#962; &#945;&#961;&#967;&#949;&#943;&#945;.
+ </p>
</div>
</body>
diff --git a/exitInstall.html b/exitInstall.html
index d51760a..0c79d94 100644
--- a/exitInstall.html
+++ b/exitInstall.html
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Congratulations">
+ <div class="section" title="Congratulations">
<div class="titlepage">
<div>
<div>
@@ -23,28 +23,39 @@
</div>
</div>
+
+
+
+
+
+
+
<p><a name="exitInstall-pa1"></a>You have finished installing and
- configuring <span class="application">Mageia</span> and it is now safe to remove
- the installation medium and reboot your computer.
+ configuring Mageia and it is now safe to remove the installation medium and
+ reboot your computer.
</p>
+
- <p><a name="exitInstall-pa2"></a>After reboot, in the bootloader
- screen, you can choose between the operating systems on your computer (if
- you have more than one).
+ <p><a name="exitInstall-pa2"></a>After rebooting, you can use the
+ bootloader screen to choose which operating system to start (if there are
+ more than one on your computer).
</p>
+
<p><a name="exitInstall-pa3"></a>If you didn't adjust the
settings for the bootloader, your Mageia install will be automatically
selected and started.
</p>
+
<p><a name="exitInstall-pa4"></a>Enjoy!
</p>
+
- <p><a name="exitInstall-pa5"></a>Visit www.mageia.org if you have
+ <p><a name="exitInstall-pa5"></a>Visit <a class="ulink" href="http://www.mageia.org/en/" target="_top">www.mageia.org/en/</a> if you have
any questions or want to contribute to Mageia
</p>
diff --git a/formatPartitions.html b/formatPartitions.html
index d64dd92..aa76a8b 100644
--- a/formatPartitions.html
+++ b/formatPartitions.html
@@ -6,14 +6,14 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="diskdrake.html" title="Custom disk partitioning with DiskDrake">
- <link rel="next" href="add_supplemental_media.html" title="Media Selection (Configure Supplemental Installation Media)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="prev" href="diskdrake.html" title="Custom Disk Partitioning with DiskDrake">
+ <link rel="next" href="add_supplemental_media.html" title="Supplemental Installation Media"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Formatting">
+ <div class="section" title="Formatting">
<div class="titlepage">
<div>
<div>
@@ -28,30 +28,29 @@
-
-
-
+
+
+
-
<p><a name="formatPartitions-pa1"></a>Here you can choose which
- partition(s) you wish to format. Any data on partitions <span class="emphasis"><em>not</em></span>
- marked for formatting will be saved.
+ partition(s) you wish to format. Any data on partitions
+ <span class="emphasis"><em>not</em></span> marked for formatting will be preserved.
</p>
- <p><a name="formatPartitions-pa2"></a>Usually at least the
- partitions DrakX selected, need to be formatted
+ <p><a name="formatPartitions-pa2"></a>Usually, at least the
+ partitions that DrakX selected need to be formatted.
</p>
<p><a name="formatPartitions-pa3"></a>Click on
- <span class="guibutton">Advanced</span> to choose partitions you want to check for
- so called <span class="emphasis"><em>bad blocks</em></span></p>
+ <span class="emphasis"><em>Advanced</em></span> to choose the partitions you want to check for
+ so-called <span class="emphasis"><em>bad blocks</em></span></p>
<div class="tip" title="Tip" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -65,9 +64,9 @@
<p><a name="formatPartitions-pa4"></a>If you're not sure you
have made the right choice, you can click on
- <span class="guibutton">Previous</span>, again on <span class="guibutton">Previous</span>
- and then on <span class="guibutton">Custom</span> to get back to the main screen.
- In that screen you can choose to view what is in your partitions.
+ <span class="emphasis"><em>Previous</em></span>, again on <span class="emphasis"><em>Previous</em></span> and
+ then on <span class="emphasis"><em>Custom</em></span> to get back to the main screen, where
+ you can choose to view details of your partitions.
</p>
</td>
@@ -77,8 +76,7 @@
<p><a name="formatPartitions-pa5"></a>When you are confident
- about the selection, click on <span class="guibutton">Next</span> to
- continue.
+ about the selections, click on <span class="emphasis"><em>Next</em></span> to continue.
</p>
</div>
diff --git a/fr/Select-and-use-ISOs.html b/fr/Select-and-use-ISOs.html
index ddf2ed1..d456832 100644
--- a/fr/Select-and-use-ISOs.html
+++ b/fr/Select-and-use-ISOs.html
@@ -25,6 +25,12 @@
+
+
+
+
+
+
<div class="section" title="Introduction">
<div class="titlepage">
<div>
@@ -37,35 +43,88 @@
<p>Mageia est distribu&eacute;e via des images ISO. Cette page vous aidera &agrave; choisir
- quelle image correspond &agrave; vos besoins.
+ quelle image correspond le mieux &agrave; vos besoins.
</p>
- <p>Il existe deux familles de media :</p>
+ <p>Il existe trois types de media d'installation :</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Installation classique : Apr&egrave;s le d&eacute;marrage du m&eacute;dia, suivra un processus
- vous autorisant &agrave; choisir quoi installer et comment configurer votre syst&egrave;me
- cible. Cela vous donne un maximum de souplesse pour une installation
- personnalis&eacute;e, en particulier pour choisir quel environnement de bureau vous
- souhaitez installer.
+ <p><span class="bold"><strong>Installation classique</strong></span> : l'utilisation de
+ ce m&eacute;dia vous donne le maximum de flexibilit&eacute; pour ce qui est &agrave; installer et
+ &agrave; configurer. En particulier vous pouvez choisir quel environnement de
+ bureau vous souhaitez installer.
</p>
</li>
<li class="listitem">
- <p>Media LIVE : vous pouvez d&eacute;marrer les media avec un vrai syst&egrave;me Mageia sans
- l'installer, pour d&eacute;couvrir ce que vous obtiendrez apr&egrave;s installation. Le
- processus d'installation est plus simple, mais vous aurez moins de choix.
+ <p><span class="bold"><strong>M&eacute;dia Live :</strong></span> Cette option vous permet
+ d'observer Mageia sans avoir &agrave; l'installer ni faire de modification &agrave; votre
+ ordinateur. L'installation reste possible, mais avec beaucoup moins de choix
+ que ce qu'offre l'installation classique.
+ </p>
+
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>L'installeur du m&eacute;dia Live est plus simple que celui de l'installation
+ classique, mais il offre moins d'options de configuration.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Les ISO Live ne peuvent &ecirc;tre utilis&eacute;s que pour faire de
+ <span class="quote">&laquo;&nbsp;<span class="quote">nouvelles</span>&nbsp;&raquo;</span> installations ; elles ne permettent pas de mettre &agrave;
+ niveau une installation Mageia ant&eacute;rieure.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Installation r&eacute;seau</strong></span>: Ce sont des images ISO
+ minimalistes ne contenant que ce qui est n&eacute;cessaire pour d&eacute;marrer
+ l'installeur DrakX et trouver <code class="literal">DrakX-installer-stage2</code> et
+ d'autres paquets indispensables pour continuer et terminer
+ l'installation. Ces paquets peuvent se trouver sur le disque dur, sur un
+ p&eacute;riph&eacute;rique de stockage, un r&eacute;seau local ou sur Internet.
+ </p>
+
+ <p>Ces m&eacute;dias sont tr&egrave;s l&eacute;gers (moins de 100 Mo) et sont adapt&eacute;s lorsque le
+ d&eacute;bit est trop faible pour t&eacute;l&eacute;charger un DVD complet, si l'ordinateur n'a
+ pas de lecteur de DVD ou s'il ne peut pas d&eacute;marrer sur une cl&eacute; USB.
</p>
</li>
</ul>
</div>
- <p>Des pr&eacute;cisions sont fournies dans les sections suivantes.</p>
+ <p>Des pr&eacute;cisions sont fournies dans les parties suivantes.</p>
</div>
@@ -73,7 +132,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e29"></a>M&eacute;dia
+ <h3 class="title"><a name="d5e41"></a>M&eacute;dia
</h3>
</div>
</div>
@@ -84,19 +143,19 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e31"></a>D&eacute;finition
+ <h4 class="title"><a name="d5e43"></a>D&eacute;finition
</h4>
</div>
</div>
</div>
- <p>Ici, un m&eacute;dium (pluriel : m&eacute;dia) est un fichier image ISO qui vous permet
+ <p>Ici, un m&eacute;dia (pluriel : m&eacute;dias) est un fichier image ISO qui vous permet
d'installer et/ou de mettre &agrave; jour Mageia, et par extension tout support
- physique sur lequel le fichier ISO est copi&eacute;.
+ physique (DVD, cl&eacute; USB, etc.) sur lequel le fichier ISO est copi&eacute;.
</p>
- <p>Vous pouvez les trouver <a class="ulink" href="http://www.mageia.org/fr/downloads/" target="_top">ici</a>.
+ <p>Vous pouvez trouver Mageia <a class="ulink" href="http://www.mageia.org/fr/downloads/" target="_top">ici</a>.
</p>
</div>
@@ -105,7 +164,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e36"></a>M&eacute;dia d'installation classique
+ <h4 class="title"><a name="d5e48"></a>M&eacute;dia d'installation classique
</h4>
</div>
</div>
@@ -116,7 +175,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e38"></a>Caract&eacute;ristiques communes
+ <h5 class="title"><a name="d5e50"></a>Caract&eacute;ristiques communes
</h5>
</div>
</div>
@@ -127,37 +186,38 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Ces images ISOs utilisent l'installeur classique appel&eacute; Drakx.</p>
+ <p>Ces images ISO utilisent l'installeur classique appel&eacute; DrakX</p>
</li>
<li class="listitem">
- <p>Ils peuvent r&eacute;aliser une nouvelle installation ou une mise &agrave; jour &agrave; partir
- de versions pr&eacute;c&eacute;dentes.
+ <p>Ils sont utilis&eacute;s pour r&eacute;aliser une nouvelle installation ou une mise &agrave; jour
+ &agrave; partir d"une version install&eacute;e pr&eacute;c&eacute;demment.
</p>
</li>
<li class="listitem">
- <p>Des m&eacute;dia diff&eacute;rents pour les architectures 32 ou 64 bits.</p>
+ <p>Des m&eacute;dia diff&eacute;rents pour les architectures 32 et 64 bits</p>
</li>
<li class="listitem">
- <p>Certains outils sont disponibles dans l'&eacute;cran d'accueil : syst&egrave;me de
- secours, test de m&eacute;moire, outil de d&eacute;tection de mat&eacute;riel.
+ <p>Certains outils sont disponibles dans <span class="quote">&laquo;&nbsp;<span class="quote">l'&eacute;cran d'accueil</span>&nbsp;&raquo;</span> :
+ <span class="emphasis"><em>syst&egrave;me de secours, test de m&eacute;moire</em></span> et <span class="emphasis"><em>outil
+ de d&eacute;tection du mat&eacute;riel</em></span>.
</p>
</li>
<li class="listitem">
- <p>Chaque DVD contient plusieurs environnements de bureau et plusieurs langues.</p>
+ <p>Chaque DVD contient plusieurs environnements de bureau et plusieurs langues</p>
</li>
<li class="listitem">
- <p>Vous aurez la possibilit&eacute; durant l'installation d'ajouter des logiciels
- non-libres.
+ <p>Vous aurez la possibilit&eacute; d'ajouter des logiciels non-libres au cours de
+ l'installation
</p>
</li>
@@ -172,7 +232,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e53"></a>M&eacute;dia "Live"
+ <h4 class="title"><a name="d5e68"></a>M&eacute;dia "Live"
</h4>
</div>
</div>
@@ -183,7 +243,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e55"></a>Caract&eacute;ristiques communes
+ <h5 class="title"><a name="d5e70"></a>Caract&eacute;ristiques communes
</h5>
</div>
</div>
@@ -194,28 +254,26 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Peut &ecirc;tre utilis&eacute; pour tester la distribution Mageia sans l'installer sur le
- disque dur, puis &eacute;ventuellement l'installer par la suite.
+ <p>Peut &ecirc;tre utilis&eacute; pour tester le syst&egrave;me d'exploitation Mageia sans avoir &agrave;
+ l'installer.
</p>
</li>
<li class="listitem">
- <p>Chaque image ISO contient un seul environnement de bureau (Plasma, GNOME ou
- Xfce).
- </p>
+ <p>Le m&eacute;dia Live contient aussi un installeur.</p>
</li>
<li class="listitem">
- <p>Des m&eacute;dia diff&eacute;rents pour les architectures 32 ou 64 bits.</p>
+ <p>Chaque image ISO contient un seul environnement de bureau (Plasma, GNOME ou
+ Xfce).
+ </p>
</li>
<li class="listitem">
- <p><span class="bold"><strong>Les ISO Live peuvent &ecirc;tre utilis&eacute;es uniquement pour
- des installations nouvelles, elles ne peuvent pas l'&ecirc;tre pour mettre &agrave;
- niveau de pr&eacute;c&eacute;dentes versions.</strong></span></p>
+ <p>Des m&eacute;dia diff&eacute;rents pour les architectures 32 et 64 bits</p>
</li>
<li class="listitem">
@@ -232,7 +290,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e69"></a>DVD Live Plasma
+ <h5 class="title"><a name="d5e83"></a>DVD Live Plasma
</h5>
</div>
</div>
@@ -248,12 +306,12 @@
</li>
<li class="listitem">
- <p>Toutes les langues sont pr&eacute;sentes.</p>
+ <p>Toutes les langues disponibles sont pr&eacute;sentes.</p>
</li>
<li class="listitem">
- <p>Architecture&nbsp;64 bits uniquement.</p>
+ <p>Architecture 64-bits uniquement</p>
</li>
</ul>
@@ -265,7 +323,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e78"></a>DVD Live GNOME
+ <h5 class="title"><a name="d5e92"></a>DVD Live GNOME
</h5>
</div>
</div>
@@ -281,12 +339,12 @@
</li>
<li class="listitem">
- <p>Toutes les langues sont pr&eacute;sentes.</p>
+ <p>Toutes les langues disponibles sont pr&eacute;sentes.</p>
</li>
<li class="listitem">
- <p>Architecture&nbsp;64 bits uniquement.</p>
+ <p>Architecture 64-bits uniquement</p>
</li>
</ul>
@@ -298,7 +356,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e87"></a>DVD Live Xfce
+ <h5 class="title"><a name="d5e101"></a>DVD Live Xfce
</h5>
</div>
</div>
@@ -314,12 +372,12 @@
</li>
<li class="listitem">
- <p>Toutes les langues sont pr&eacute;sentes.</p>
+ <p>Toutes les langues disponibles sont pr&eacute;sentes.</p>
</li>
<li class="listitem">
- <p>Architecture&nbsp;32 bits et 64 bits.</p>
+ <p>Architectures 32-bits ou 64-bits</p>
</li>
</ul>
@@ -329,11 +387,11 @@
</div>
- <div class="section" title="M&eacute;dia de simple d&eacute;marrage">
+ <div class="section" title="M&eacute;dia d'installation par r&eacute;seau">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e96"></a>M&eacute;dia de simple d&eacute;marrage
+ <h4 class="title"><a name="d5e110"></a>M&eacute;dia d'installation par r&eacute;seau
</h4>
</div>
</div>
@@ -344,7 +402,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e98"></a>Caract&eacute;ristiques communes
+ <h5 class="title"><a name="d5e112"></a>Caract&eacute;ristiques communes
</h5>
</div>
</div>
@@ -355,30 +413,12 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Chacune d'elle est une petite image ne contenant que ce qui est n&eacute;cessaire
- pour d&eacute;marrer l'installeur drakx, trouver drakx-installer-stage2 et d'autres
- paquets indispensables pour continuer et terminer l'installation. Ces
- paquets peuvent se trouver sur le disque dur de l'ordinateur, sur un
- p&eacute;riph&eacute;rique de stockage, un r&eacute;seau local ou sur Internet.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>Ces m&eacute;dias sont tr&egrave;s l&eacute;gers (moins de 100 Mo) et sont adapt&eacute;s lorsque le
- d&eacute;bit est trop faible pour t&eacute;l&eacute;charger un DVD complet, si l'ordinateur n'a
- pas de lecteur de DVD ou s'il ne peut pas d&eacute;marrer sur une cl&eacute; USB.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>Des m&eacute;dia diff&eacute;rents pour les architectures 32 ou 64 bits.</p>
+ <p>Des m&eacute;dia diff&eacute;rents pour les architectures 32 et 64 bits</p>
</li>
<li class="listitem">
- <p>En anglais uniquement.</p>
+ <p>Les premi&egrave;res &eacute;tapes sont en anglais uniquement.</p>
</li>
</ul>
@@ -390,7 +430,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e109"></a>netinstall.iso
+ <h5 class="title"><a name="d5e119"></a>netinstall.iso
</h5>
</div>
</div>
@@ -415,7 +455,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e114"></a>netinstall-nonfree.iso
+ <h5 class="title"><a name="d5e124"></a>netinstall-nonfree.iso
</h5>
</div>
</div>
@@ -444,7 +484,7 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e119"></a>T&eacute;l&eacute;charger et v&eacute;rifier les m&eacute;dia
+ <h3 class="title"><a name="d5e129"></a>T&eacute;l&eacute;charger et v&eacute;rifier les m&eacute;dia
</h3>
</div>
</div>
@@ -455,7 +495,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e121"></a>T&eacute;l&eacute;chargement
+ <h4 class="title"><a name="d5e131"></a>T&eacute;l&eacute;chargement
</h4>
</div>
</div>
@@ -463,21 +503,30 @@
<p>Une fois choisi votre fichier ISO, vous pouvez le t&eacute;l&eacute;charger en utilisant
- un lien direct HTTP soit BitTorrent. Dans les deux cas, une fen&ecirc;tre vous
- fournira des informations, comme le miroir utilis&eacute; et une opportunit&eacute; de le
- modifier si le d&eacute;bit est trop faible. Si vous choisissez le lien direct
- HTTP, vous pouvez &eacute;galement voir quelque chose comme
+ un lien direct HTTP ou BitTorrent. Dans les deux cas, on vous fournira des
+ informations, comme le miroir utilis&eacute;, et la possibilit&eacute; d'en choisir un
+ autre si le d&eacute;bit est trop faible.
</p>
+ <p>Si vous choisissez le lien HTTP, vous aurez &eacute;galement des informations
+ concernant les sommes de contr&ocirc;le.
+ </p>
+
- <p>md5sum, sha1sum et sha512 sont des outils pour v&eacute;rifier l'int&eacute;grit&eacute; des
- images ISO. Utiliser uniquement l'un de ces outils. Conserver l'un d'entre
- eux <a class="link" href="Select-and-use-ISOs.html#integrity">pour un usage &agrave; venir</a>. La fen&ecirc;tre
- suivante appara&icirc;t alors :
+ <p><code class="literal">md5sum</code>, <code class="literal">sha1sum</code> et
+ <code class="literal">sha512sum</code> (le plus s&ucirc;r) permettent de v&eacute;rifier
+ l'int&eacute;grit&eacute; de l'ISO. Copiez l'une des sommes de contr&ocirc;le (s&eacute;rie de
+ caract&egrave;res alphanum&eacute;riques) pour l'utiliser dans la partie suivante.
</p>
+
+
+ <p>Pendant ce temps, une fen&ecirc;tre de t&eacute;l&eacute;chargement de l'ISO s'ouvrira :</p>
+
- <p>Cochez le bouton radio "Sauvegarder un fichier"</p>
+ <p>Cliquez sur <span class="emphasis"><em>Enregistrer le fichier</em></span>, puis sur
+ <span class="emphasis"><em>OK</em></span>.
+ </p>
</div>
@@ -485,38 +534,56 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e133"></a>V&eacute;rification de l'int&eacute;grit&eacute; du m&eacute;dia t&eacute;l&eacute;charg&eacute;
+ <h4 class="title"><a name="d5e149"></a>V&eacute;rification de l'int&eacute;grit&eacute; du m&eacute;dia t&eacute;l&eacute;charg&eacute;
</h4>
</div>
</div>
</div>
- <p>Les deux sommes de contr&ocirc;le sont des nombres hexad&eacute;cimaux calcul&eacute;s par un
- algorithme &agrave; partir du fichier &agrave; t&eacute;l&eacute;charger. Lorsque l'on demande &agrave; ces
- algorithmes de recalculer ce nombre &agrave; partir du fichier que vous avez
- t&eacute;l&eacute;charg&eacute;, soit vous obtenez le m&ecirc;me nombre et le fichier t&eacute;l&eacute;charg&eacute; est
- correcte, soit vous obtenez un nombre diff&eacute;rent et le fichier est corrompu.
- Dans ce cas, vous devez recommencer le t&eacute;l&eacute;chargement ou tenter une
- r&eacute;paration avec BitTorrent.
+ <p>Les sommes de contr&ocirc;le mentionn&eacute;es ci-dessus sont des empreintes num&eacute;riques
+ g&eacute;n&eacute;r&eacute;es par un algorithme &agrave; partir du fichier &agrave; t&eacute;l&eacute;charger. Vous pouvez
+ comparer la somme de contr&ocirc;le du fichier ISO t&eacute;l&eacute;charg&eacute; &agrave; celle de l'ISO
+ d'origine. Si les sommes de contr&ocirc;les ne sont pas identiques, cela signifie
+ que les donn&eacute;es pr&eacute;sentes dans l'ISO sont diff&eacute;rentes. Si c'est le cas, vous
+ devez t&eacute;l&eacute;charger le fichier &agrave; nouveau, ou tenter une r&eacute;paration avec
+ BitTorrent.
</p>
- <p>Ouvrir une console, sans &ecirc;tre administrateur, et :</p>
-
- <p>- Pour utiliser md5sum, taper : [sam@localhost]$ <strong class="userinput"><code>md5sum
- chemin/vers/le/fichier/image.iso</code></strong>.
+ <p>Pour g&eacute;n&eacute;rer une somme de contr&ocirc;le pour l'ISO t&eacute;l&eacute;charg&eacute;, ouvrez un terminal
+ (pas besoin d'&ecirc;tre super-utilisateur), puis :
</p>
- <p>- Pour utiliser sha1sum, taper : [sam@localhost]$ <strong class="userinput"><code>sha1sum
- chemin/vers/le/fichier/image.iso</code></strong>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Pour utiliser md5sum, tapez : <span class="command"><strong>md5sum
+ chemin/vers/le/fichier/image.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Pour utiliser sha1sum, tapez : <span class="command"><strong>sha1sum
+ chemin/vers/le/fichier/image.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Pour utiliser sha512sum, tapez : <span class="command"><strong>sha512sum
+ chemin/vers/le/fichier/image.iso</strong></span></p>
+
+ </li>
+ </ul>
+ </div>
- <p>et comparer le nombre obtenu sur votre ordinateur (cela peut prendre un
- certain temps) avec le nombre fourni par Mageia. Exemple :
- </p>
+ <p>Exemple :</p>
+
- <p></p>
+ <p>puis comparez le r&eacute;sultat (cela peut prendre un certain temps) avec la somme
+ de contr&ocirc;le fournie par Mageia.
+ </p>
</div>
@@ -526,34 +593,35 @@
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e146"></a>Graver ou copier l'ISO
+ <h3 class="title"><a name="d5e168"></a>Graver ou copier l'ISO
</h3>
</div>
</div>
</div>
- <p>L'ISO peut d&eacute;sormais &ecirc;tre grav&eacute;e sur un CD, un DVD ou copi&eacute;e sur une cl&eacute;
- USB. Ces op&eacute;rations ne sont pas de simples copies et sont destin&eacute;es &agrave; cr&eacute;er
- un moyen de d&eacute;marrage.
+ <p>Apr&egrave;s v&eacute;rification, l'image ISO peut &ecirc;tre grav&eacute;e sur un CD/DVD ou
+ <span class="quote">&laquo;&nbsp;<span class="quote">copi&eacute;e</span>&nbsp;&raquo;</span> sur une cl&eacute; USB. Il ne s'agit pas d'une copie de
+ fichier ordinaire puisque c'est en fait un support de d&eacute;marrage qui sera
+ cr&eacute;&eacute;.
</p>
<div class="section" title="Graver l'image ISO sur un CD/DVD">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e149"></a>Graver l'image ISO sur un CD/DVD
+ <h4 class="title"><a name="d5e172"></a>Graver l'image ISO sur un CD/DVD
</h4>
</div>
</div>
</div>
- <p>Utilisez le logiciel de gravure de votre choix mais assurez-vous que le
- p&eacute;riph&eacute;rique de gravure est bien param&eacute;tr&eacute; pour <span class="bold"><strong>graver
- une image</strong></span>, car graver des donn&eacute;es ou des fichiers est
- erron&eacute;. Plus d'information est disponible dans <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">le wiki
- Mageia</a>.
+ <p>Quel que soit le logiciel que vous utiliserez, assurez-vous que vous
+ utilisez l'option <span class="emphasis"><em>graver une image</em></span>. Graver des
+ <span class="emphasis"><em>donn&eacute;es</em></span> ou des <span class="emphasis"><em>fichiers</em></span> n'est pas
+ correct. Consultez <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">le wiki
+ Mageia (en)</a> pour plus d'informations.
</p>
</div>
@@ -562,16 +630,16 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e154"></a>Copier l'image ISO sur une cl&eacute; USB
+ <h4 class="title"><a name="d5e179"></a>Copier l'image ISO sur une cl&eacute; USB
</h4>
</div>
</div>
</div>
- <p>Toutes les images ISO Mageia sont hybrides, ce qui signifie que vous pouvez
- les copier sur une cl&eacute; USB puis utiliser celle-ci pour d&eacute;marrer et installer
- le syst&egrave;me.
+ <p>Toutes les images ISO de Mageia sont hybrides, ce qui signifie que vous
+ pouvez les copier sur une cl&eacute; USB puis utiliser celle-ci pour d&eacute;marrer et
+ installer le syst&egrave;me.
</p>
<div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -583,9 +651,8 @@
<tr>
<td align="left" valign="top">
- <p>"Copier" une image sur un &eacute;quipement de type Flash d&eacute;truit tout le syst&egrave;me
- de fichier pr&eacute;sent &agrave; l'origine sur la partition ; toutes les donn&eacute;es seront
- perdues et la capacit&eacute; de la partition sera r&eacute;duite &agrave; la taille de l'image.
+ <p>Copier une image sur un p&eacute;riph&eacute;rique Flash d&eacute;truira tout le syst&egrave;me de
+ fichier d&eacute;j&agrave; pr&eacute;sent et toutes les donn&eacute;es seront perdues.
</p>
</td>
@@ -593,15 +660,36 @@
</table>
</div>
- <p>Afin de r&eacute;cup&eacute;rer la capacit&eacute; originelle de la cl&eacute; USB, vous devez supprimer
- le partitionnement et reformater la cl&eacute;.
- </p>
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>De plus, la seule partition sur le p&eacute;riph&eacute;rique Flash sera alors celle de
+ l'ISO Mageia.
+ </p>
+
+ <p>Aussi, si une image ISO d'environ 4Go est copi&eacute;e sur une cl&eacute; USB de 8Go, la
+ cl&eacute; n'affichera alors qu'une capacit&eacute; de 4Go. Cela est d&ucirc; au fait que les
+ 4Go restant ne sont plus format&eacute;s, et ne sont donc plus utilisables. Pour
+ r&eacute;cup&eacute;rer sa capacit&eacute; d'origine, vous devez reformater et repartitioner la
+ cl&eacute; USB.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<div class="section" title="Utiliser un outil graphique dans Mageia">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e160"></a>Utiliser un outil graphique dans Mageia
+ <h5 class="title"><a name="d5e187"></a>Utiliser un outil graphique dans Mageia
</h5>
</div>
</div>
@@ -616,7 +704,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e164"></a>Utiliser un outil graphique dans Windows
+ <h5 class="title"><a name="d5e191"></a>Utiliser un outil graphique dans Windows
</h5>
</div>
</div>
@@ -625,12 +713,23 @@
<p>Vous pouvez essayer :</p>
- <p>- <a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> en
- utilisant l'option "image ISO" ;
- </p>
-
- <p>- <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
- Disk Imager</a></p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> en
+ utilisant l'option &laquo; image ISO &raquo;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32 Disk
+ Imager</a></p>
+
+ </li>
+ </ul>
+ </div>
</div>
@@ -638,7 +737,7 @@
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e171"></a>Utiliser la ligne de commande avec le syst&egrave;me GNU/Linux
+ <h5 class="title"><a name="d5e201"></a>Utiliser la ligne de commande avec le syst&egrave;me GNU/Linux
</h5>
</div>
</div>
@@ -654,8 +753,9 @@
<tr>
<td align="left" valign="top">
- <p>Il est potentiellement tr&egrave;s dangereux de le faire manuellement. Vous risquez
- d'&eacute;crire par-dessus une partition du disque si vous saisissez le mauvais ID.
+ <p>Il est potentiellement &laquo; dangereux &raquo; de faire cela manuellement. Vous
+ risquez d'&eacute;craser des donn&eacute;es importantes si vous indiquez le mauvais
+ support cible.
</p>
</td>
@@ -663,8 +763,6 @@
</table>
</div>
- <p>Vous pouvez &eacute;galement utiliser l'outil dd dans une console :</p>
-
<div class="orderedlist">
<ol class="orderedlist" type="1">
<li class="listitem">
@@ -674,29 +772,37 @@
</li>
<li class="listitem">
- <p>Devenir administrateur avec la commande <strong class="userinput"><code>su -</code></strong> (ne pas
- oublier le '-' final)
+ <p>Devenez <span class="emphasis"><em>root</em></span> (Administrateur) avec la commande
+ <span class="command"><strong>su -</strong></span> (n'oubliez pas le <span class="command"><strong>-</strong></span>)
</p>
</li>
<li class="listitem">
- <p>Brancher votre cl&eacute; USB (ne pas la monter, ce qui veut &eacute;galement dire ne pas
- ouvrir une application ou un gestionnaire de fichiers qui pourrait y acc&eacute;der
- ou la lire).
+ <p>Brancher votre cl&eacute; USB (mais ne pas la monter, ce qui veut &eacute;galement dire ne
+ pas ouvrir une application ou un gestionnaire de fichiers qui pourrait y
+ acc&eacute;der ou la lire).
</p>
</li>
<li class="listitem">
- <p>Saisissez la commande <strong class="userinput"><code>fdisk -l</code></strong></p>
+ <p>Tapez la commande <span class="command"><strong>fdisk -l</strong></span></p>
+
+
+ </li>
+ <li class="listitem">
+ <p>Trouvez le nom de votre cl&eacute; USB (par sa taille) ; par exemple, sur la
+ capture d'&eacute;cran ci-dessus, <code class="filename">/dev/sdb</code> d&eacute;signe une cl&eacute; USB
+ de 8Go.
+ </p>
- <p>D'une autre mani&egrave;re, vous pouvez r&eacute;cup&eacute;rer le nom du p&eacute;riph&eacute;rique avec la
- commande <code class="code">dmesg</code> ; &agrave; la fin de l'affichage, vous visualisez le
- nom du p&eacute;riph&eacute;rique commen&ccedil;ant par <span class="emphasis"><em>sd</em></span> et
- <span class="emphasis"><em>sdd</em></span> comme dans ce cas :
+ <p>Vous pouvez &eacute;galement trouver le nom de votre cl&eacute; USB &agrave; l'aide de la
+ commande <code class="code">dmesg</code> : vers la fin de cet exemple, le nom du
+ p&eacute;riph&eacute;rique commence par <span class="emphasis"><em>sd</em></span>, et dans cet exemple il
+ s'agit en fait de <span class="emphasis"><em>sdd</em></span>. Sa taille est de 2Go.
</p>
<pre class="screen">[72594.604531] usb 1-1: new high-speed USB device number 27 using xhci_hcd
[72594.770528] usb 1-1: New USB device found, idVendor=8564, idProduct=1000
@@ -719,31 +825,43 @@
</li>
<li class="listitem">
- <p>Trouver le nom du p&eacute;riph&eacute;rique de votre cl&eacute; USB (par sa taille), par exemple
- dans la capture d'&eacute;cran ci-dessus le nom est <code class="code">/dev/sdb</code>, pour une
- cl&eacute; USB de 8 Go.
- </p>
-
- </li>
- <li class="listitem">
+ <p>Saisissez la commande : # <span class="command"><strong>dd if=path/to/the/ISO/file
+ of=/dev/sd<em class="replaceable"><code>X</code></em> bs=1M </strong></span></p>
- <p>Saisissez la commande : # <strong class="userinput"><code>dd if=path/to/the/ISO/file of=/dev/sdX
- bs=1M</code></strong></p>
+ <p>o&ugrave; <em class="replaceable"><code>X</code></em>=le nom de votre p&eacute;riph&eacute;rique, par exemple :
+ <code class="filename">/dev/sdd</code></p>
- <p>O&ugrave; X=le nom de votre p&eacute;riph&eacute;rique, par exemple : /dev/sdc</p>
+ <p>Exemple : # <code class="literal">dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso
+ of=/dev/sdb bs=1M</code></p>
- <p>Exemple : # <strong class="userinput"><code>dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso
- of=/dev/sdb bs=1M</code></strong></p>
+ <div class="tip" title="Astuce" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Astuce]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Il peut &ecirc;tre utile de savoir que <span class="bold"><strong>if</strong></span>
+ signifie <span class="bold"><strong>i</strong></span>nput <span class="bold"><strong>f</strong></span>ile (fichier d'entr&eacute;e), et que <span class="bold"><strong>of</strong></span> signifie <span class="bold"><strong>o</strong></span>utput
+ <span class="bold"><strong>f</strong></span>ile (fichier de sortie)
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p>Saisissez la commande : # <strong class="userinput"><code>sync</code></strong></p>
+ <p>Tapez la commande : <span class="command"><strong>sync</strong></span></p>
</li>
<li class="listitem">
- <p>D&eacute;branchez votre cl&eacute; USB, c'est termin&eacute;.</p>
+ <p>Le processus est termin&eacute;, vous pouvez &agrave; pr&eacute;sent d&eacute;brancher votre cl&eacute; USB.</p>
</li>
</ol>
diff --git a/fr/acceptLicense.html b/fr/acceptLicense.html
index 9882bad..ef66879 100644
--- a/fr/acceptLicense.html
+++ b/fr/acceptLicense.html
@@ -22,6 +22,12 @@
</div>
</div>
</div>
+
+
+
+
+
+
@@ -57,25 +63,35 @@
- <p>Avant d'installer <span class="application">Mageia,</span> veuillez lire les
- termes et conditions de la licence avec
- attention.<span class="application"></span></p>
-
-
- <p>Ces termes et conditions s'appliquent &agrave; toute la distribution
- <span class="application">Mageia </span>et doivent &ecirc;tre accept&eacute;s avant de pouvoir
- continuer.
- </p>
-
-
- <p>Pour accepter, simplement s&eacute;lectionner <span class="guilabel">Accepter</span> puis
- cliquer sur <span class="guibutton">Suivant</span>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Avant d'installer Mageia, veuillez lire les termes et conditions de la
+ licence avec attention.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Ces termes et conditions s'appliquent &agrave; toute la distribution Mageia et
+ doivent &ecirc;tre accept&eacute;s avant de pouvoir continuer.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Pour continuer, s&eacute;lectionner simplement <span class="emphasis"><em>Accepter</em></span> et
+ cliquer ensuite sur <span class="emphasis"><em>Suivant</em></span></p>
+
+ </li>
+ </ul>
+ </div>
<p>Si vous d&eacute;cidez de ne pas accepter ces conditions, alors nous vous
- remercions de l'int&eacute;r&ecirc;t port&eacute;. Cliquer sur <span class="guibutton">Quitter</span>
- red&eacute;marrera votre ordinateur.
+ remercions de l'int&eacute;r&ecirc;t port&eacute; &agrave; Mageia. Cliquer sur
+ <span class="guibutton">Quitter</span> red&eacute;marrera votre ordinateur.
</p>
@@ -99,9 +115,8 @@
- <p>Des informations importantes sur cette version de
- <span class="application">Mageia</span> peuvent &ecirc;tre obtenues en cliquant sur le
- bouton <span class="guibutton">Release Notes</span>.
+ <p>Des informations importantes sur cette version de Mageia peuvent &ecirc;tre
+ obtenues en cliquant sur le bouton <span class="guibutton">Notes de version</span>.
</p>
</div>
diff --git a/fr/addUser.html b/fr/addUser.html
index 22e1655..5eae64c 100644
--- a/fr/addUser.html
+++ b/fr/addUser.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Gestion de l'Utilisateur et du Superutilisateur</title>
+ <title>Gestion des utilisateurs</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="fr" class="section" title="Gestion de l'Utilisateur et du Superutilisateur">
+ <div lang="fr" class="section" title="Gestion des utilisateurs">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="addUser"></a>Gestion de l'Utilisateur et du Superutilisateur
+ <h2 class="title"><a name="addUser"></a>Gestion des utilisateurs
</h2>
</div>
</div>
@@ -26,6 +26,10 @@
+
+
+
+
<div class="section" title="D&eacute;finir le mot de passe Administrateur (Root) :">
<div class="titlepage">
<div>
@@ -38,13 +42,13 @@
<p>Pour chaque installation de Mageia, il est conseill&eacute; de d&eacute;finir un mot de
- passe superutilisateur ou administrateur, souvent appel&eacute; <span class="emphasis"><em>mot de
- passe root</em></span> dans Linux. Pendant que vous entrez le mot de passe,
- le bouclier change de couleur du rouge vers le jaune puis le vert en
- fonction de l'efficacit&eacute; du mot de passe. Un bouclier vert indique un mot de
- passe fort. Vous devez ressaisir le m&ecirc;me mot de passe dans le champ juste
- en-dessous a des fins de v&eacute;rification par comparaison au cas o&ugrave; vous auriez
- fait une erreur de saisie.
+ passe <span class="bold"><strong>superutilisateur</strong></span> (ou administrateur),
+ souvent appel&eacute; <span class="emphasis"><em>mot de passe root</em></span> sous Linux. Pendant la
+ saisie du mot de passe, le bouclier change de couleur du rouge vers le jaune
+ puis le vert en fonction de l'efficacit&eacute; du mot de passe. Un bouclier vert
+ indique un mot de passe fort. Vous devez ressaisir le m&ecirc;me mot de passe dans
+ le champ juste en-dessous afin de v&eacute;rifier qu'il n'y a pas d'erreur de
+ saisie.
</p>
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -56,9 +60,9 @@
<tr>
<td align="left" valign="top">
- <p>Tous les mots de passe sont sensibles &agrave; la casse, il est recommand&eacute;
+ <p>Tous les mots de passe sont sensibles &agrave; la casse, et il est recommand&eacute;
d'utiliser un m&eacute;lange de lettres (majuscules et minuscules), de nombres et
- autres caract&egrave;res.
+ autres caract&egrave;res dans votre mot de passe.
</p>
</td>
@@ -79,48 +83,48 @@
</div>
- <p>Ajouter ici un utilisateur. Il a moins de droits que le superutilisateur
- (root), mais suffisamment par d&eacute;faut pour naviguer sur internet, utiliser
- les applications de bureautique, jouer et faire toutes autres choses
- habituellement r&eacute;alis&eacute;es par un utilisateur ordinaire avec son PC.
+ <p>Ajouter un utilisateur ici. Un utilisateur normal a des privil&egrave;ges moins
+ &eacute;lev&eacute;s que le <code class="literal">super-utilisateur</code>(root), mais suffisamment
+ pour utiliser internet, les applications de bureautique, jouer &agrave; un jeu
+ vid&eacute;o ainsi que toutes les utilisations normales d'un ordinateur.
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guibutton">Ic&ocirc;ne </span>: en cliquant sur ce bouton, vous changerez
- l'ic&ocirc;ne de l'utilisateur.
- </p>
+ <p><span class="bold"><strong>Ic&ocirc;ne</strong></span></p>
+
+ <p>Cliquez sur ce bouton si vous voulez changer l'ic&ocirc;ne de l'utilisateur</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Nom et pr&eacute;nom </span>: inscrire ici le nom r&eacute;el de
- l'utilisateur.
- </p>
+ <p><span class="bold"><strong>Nom complet</strong></span></p>
+
+ <p>Indiquez ici le nom complet de l'utilisateur</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Identifiant de connexion</span> : inscrire ici un identifiant
- de connexion ou bien drakx transposera les nom et pr&eacute;nom pour en cr&eacute;er
- un. <span class="emphasis"><em>L'identifiant de connexion est sensible &agrave; la casse.</em></span></p>
+ <p><span class="bold"><strong>Identifiant</strong></span></p>
+
+ <p>Entrez ici un identifiant de connexion ou bien DrakX transposera les nom et
+ pr&eacute;nom pour en cr&eacute;er un. <span class="bold"><strong>L'identifiant de connexion
+ est sensible &agrave; la casse.</strong></span></p>
+
</li>
<li class="listitem">
- <p><span class="guilabel">Password</span> : dans ce champ vous devez saisir le mot de
- passe utilisateur. Un pictogramme &agrave; c&ocirc;t&eacute; du champ indique la "force" du mot
- de passe (voir &eacute;galement <a class="xref" href="addUser.html#givePassword" title="Note">Note</a>).
+ <p><span class="bold"><strong>Mot de passe</strong></span></p>
+
+ <p>Indiquez dans ce champ le mot de passe utilisateur. On retrouve &agrave; droite le
+ bouclier qui indique la force du mot de passe. (voir aussi <a class="xref" href="addUser.html#givePassword" title="Note">Note</a>)
</p>
-
- </li>
- <li class="listitem">
- <p><span class="guilabel">Mot de passe (v&eacute;rification) </span>: inscrire &agrave; nouveau le mot
- de passe ici et drakx v&eacute;rifiera que le m&ecirc;me mot de passe a bien &eacute;t&eacute; saisi
- dans les deux champs.
+ <p><span class="guilabel">Mot de passe (v&eacute;rification)</span> : Entrez &agrave; nouveau le mot
+ de passe et Drakx va v&eacute;rifier qu'il est bien identique au pr&eacute;c&eacute;dent.
</p>
</li>
@@ -154,75 +158,43 @@
</div>
- <div class="section" title="Gestion avanc&eacute;e de l'Utilisateur">
+ <div class="section" title="Gestion des utilisateurs (avanc&eacute;)">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="addUserAdvanced"></a>Gestion avanc&eacute;e de l'Utilisateur
+ <h3 class="title"><a name="addUserAdvanced"></a>Gestion des utilisateurs (avanc&eacute;)
</h3>
</div>
</div>
</div>
- <p>Si vous cliquez sur le bouton <span class="guibutton">Avanc&eacute;</span>, un &eacute;cran vous
- permet de modifier les r&eacute;glages pour l'utilisateur que vous avez ajout&eacute;.
+ <p>L'option <span class="emphasis"><em>Avanc&eacute;</em></span> vous permettra de modifier davantage
+ les param&egrave;tres pour l'utilisateur que vous avez ajout&eacute;.
</p>
- <p>En compl&eacute;ment, vous pouvez activer ou d&eacute;sactiver un compte invit&eacute;.</p>
-
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Tout ce qu'un invit&eacute;, poss&eacute;dant un compte invit&eacute; par d&eacute;faut
- <span class="emphasis"><em>rbash</em></span>, enregistre dans son r&eacute;pertoire /home sera effac&eacute;
- lors de la d&eacute;connexion. Un invit&eacute; peut enregistrer ses fichiers importants
- sur une cl&eacute; USB.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">Activer le compte Invit&eacute; </span>: il est possible ici
- d'activer ou de d&eacute;sactiver un compte Invit&eacute;. Ce type de compte permet &agrave; un
- invit&eacute; de se connecter et d'utiliser le PC, mais avec des droits plus
- restreints qu'un utilisateur ordinaire.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Shell de d&eacute;marrage </span>: cette liste d&eacute;roulante permet de
- choisir le shell utilis&eacute; par l'utilisateur cr&eacute;&eacute; dans l'&eacute;cran pr&eacute;c&eacute;dent, les
- choix possibles sont Bash, Dash et Sh
- </p>
+ <p><span class="emphasis"><em>Shell</em></span>: Cette liste d&eacute;roulante vous permet de changer le
+ shell disponible pour tout les utilisateurs que vous avez ajout&eacute;s sur
+ l'&eacute;cran pr&eacute;c&eacute;dent. Les possibilit&eacute;s sont <code class="literal">Bash</code>,
+ <code class="literal">Dash</code> et <code class="literal">Sh</code></p>
</li>
<li class="listitem">
- <p><span class="guilabel">ID de l'Utilisateur </span>: Indiquer ici l'ID de
- l'utilisateur cr&eacute;&eacute; dans l'&eacute;cran pr&eacute;c&eacute;dent. Il s'agit d'un nombre. Ne rien
- entrer ici si vous ne le connaissez pas.
+ <p><span class="emphasis"><em>User ID</em></span>: Ici vous pouvez d&eacute;finir l'identifiant
+ utilisateur pour tout les utilisateurs que vous avez ajout&eacute; sur l'&eacute;cran
+ pr&eacute;c&eacute;dent. En cas de doute, laissez ce champs vide.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">ID du groupe </span>: Indiquer ici l'ID du groupe. Il s'agit
- encore d'un nombre, g&eacute;n&eacute;ralement le m&ecirc;me que l'ID de l'utilisateur. Ne rien
- entrer ici si vous ne le connaissez pas.
+ <p><span class="emphasis"><em>Group ID</em></span>: Ce champs vous permet de d&eacute;finir
+ l'identifiant de groupe. Encore une fois, en cas de doute, laissez le vide.
</p>
</li>
diff --git a/fr/add_supplemental_media.html b/fr/add_supplemental_media.html
index a608183..657e0dd 100644
--- a/fr/add_supplemental_media.html
+++ b/fr/add_supplemental_media.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>S&eacute;lection de m&eacute;dia (Configurer l'installation de m&eacute;dia suppl&eacute;mentaires)</title>
+ <title>M&eacute;dia d'installation suppl&eacute;mentaire</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
<link rel="prev" href="formatPartitions.html" title="Formatage">
- <link rel="next" href="media_selection.html" title="S&eacute;lection des m&eacute;dia (Nonfree)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="media_selection.html" title="D&eacute;p&ocirc;ts disponibles"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="fr" class="section" title="S&eacute;lection de m&eacute;dia (Configurer l'installation de m&eacute;dia suppl&eacute;mentaires)">
+ <div lang="fr" class="section" title="M&eacute;dia d'installation suppl&eacute;mentaire">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="add_supplemental_media"></a>S&eacute;lection de m&eacute;dia (Configurer l'installation de m&eacute;dia suppl&eacute;mentaires)
+ <h2 class="title"><a name="add_supplemental_media"></a>M&eacute;dia d'installation suppl&eacute;mentaire
</h2>
</div>
</div>
@@ -25,10 +25,16 @@
+
+
+
+
+
+
<p>Cet &eacute;cran liste toutes les sources d&eacute;j&agrave; disponibles. Il est possible
@@ -45,23 +51,23 @@
<ol class="orderedlist" type="1">
<li class="listitem">
- <p>Choix et activation du r&eacute;seau, s'il ne l'est pas d&eacute;j&agrave;. </p>
+ <p>Choix et activation du r&eacute;seau, s'il ne l'est pas d&eacute;j&agrave;.</p>
</li>
<li class="listitem">
<p>S&eacute;lectionner un miroir ou sp&eacute;cifier une URL (toute premi&egrave;re
entr&eacute;e). S&eacute;lectionner un miroir vous donne la possibilit&eacute; de choisir parmi
- tous les d&eacute;p&ocirc;ts g&eacute;r&eacute;s par Mageia, tels que le Nonfree, le Tainted et le
- Update. Avec l'URL, vous pouvez d&eacute;signer un d&eacute;p&ocirc;t sp&eacute;cifique de votre
- propre r&eacute;seau NFS.
+ tous les d&eacute;p&ocirc;ts g&eacute;r&eacute;s par Mageia, tels que le <span class="bold"><strong>Nonfree</strong></span>, le <span class="bold"><strong>Tainted</strong></span>
+ et le <span class="bold"><strong>Updates</strong></span>. Avec l'URL, vous pouvez
+ d&eacute;signer un d&eacute;p&ocirc;t sp&eacute;cifique de votre propre r&eacute;seau NFS.
</p>
</li>
</ol>
</div>
-
+
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
@@ -70,22 +76,21 @@
</tr>
<tr>
<td align="left" valign="top">
-
+
<p>Si vous mettez &agrave; jour un syst&egrave;me 64 bits susceptible de contenir des
paquetages 32 bits, il est recommand&eacute; d'utiliser cet &eacute;cran pour ajouter un
miroir en ligne, en cochant l'un des protocoles R&eacute;seau ci-dessous. L'image
- ISO du DVD 64 bits contient uniquement des paquetages 64 bits et "noarch",
- il ne pourra pas mettre &agrave; jour des paquetages 32 bits. Cependant, apr&egrave;s
- avoir ajout&eacute; un miroir en ligne, l'installeur y trouvera les paquetages 32
- bits n&eacute;cessaires.
+ ISO du DVD 64 bits contient uniquement des paquetages 64 bits et
+ <span class="emphasis"><em>noarch</em></span>, il ne pourra pas mettre &agrave; jour des paquetages
+ 32 bits. Cependant, apr&egrave;s avoir ajout&eacute; un miroir en ligne, l'installeur y
+ trouvera les paquetages 32 bits n&eacute;cessaires.
</p>
-
+
</td>
</tr>
</table>
</div>
-
</div>
</body>
</html>
diff --git a/fr/ask_mntpoint_s.html b/fr/ask_mntpoint_s.html
index 907e637..9063b4a 100644
--- a/fr/ask_mntpoint_s.html
+++ b/fr/ask_mntpoint_s.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="doPartitionDisks.html" title="Partitionnement">
+ <link rel="prev" href="doPartitionDisks.html" title="Suggestion de partitionnement">
<link rel="next" href="takeOverHdConfirm.html" title="Confirmer le disque dur &agrave; formater"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,80 +22,67 @@
</div>
</div>
</div>
-
+
+
+
+
+
+
+
+
+
+
- <p>Sont pr&eacute;sent&eacute;es ici les partitions Linux qui ont &eacute;t&eacute; trouv&eacute;es sur votre
- ordinateur. Si vous n'&ecirc;tes pas d'accord avec les suggestions de
- <span class="application">DrakX</span>, il est possible de modifier les points de
- montage.
- </p>
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Quoi que vous changiez, assurez-vous de toujours avoir au moins UNE
- partition <code class="literal">/</code> (appel&eacute;e la Racine).
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+ <p>Ici, vous pouvez visualiser la partition Linux qui a &eacute;t&eacute; trouv&eacute;e sur votre
+ ordinateur. Si vous n'&ecirc;tes pas d'accord avec la suggestion de DrakX, vous
+ pouvez changer le point de montage vous m&ecirc;me.
+ </p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Chaque partition est pr&eacute;sent&eacute;e comme suit : "P&eacute;riph&eacute;rique" ("Capacit&eacute;",
- "Point de montage", "Type").
+ <p>&Agrave; gauche des menus d&eacute;roulants, il y a une liste des partitions
+ disponibles. Par exemple <code class="filename">sda</code> est un disque dur, et
+ <code class="filename">5</code>est un <span class="emphasis"><em>num&eacute;ro de partition</em></span>, suivi
+ par <span class="emphasis"><em>(la capacit&eacute;, le point de montage, le syst&egrave;me de
+ fichier)</em></span> de la partition.
</p>
</li>
<li class="listitem">
- <p>"P&eacute;riph&eacute;rique", est compos&eacute; de : "type disque dur", "lettre d'ordre du
- disque dur ", "num&eacute;ro de partition" (exemple, "sda5").
+ <p>Si vous avez plusieurs partitions, vous pouvez choisir diff&eacute;rent
+ <span class="emphasis"><em>points de montage</em></span> depuis le menu d&eacute;roulant, comme
+ <code class="filename">/</code>, <code class="filename">/home</code> et
+ <code class="filename">/var</code>. Vous pouvez m&ecirc;me cr&eacute;er vos propres points de
+ montage, par exemple <code class="filename">/video</code> pour une partition sur
+ laquelle vous voulez stocker des films, ou peut &ecirc;tre
+ <code class="filename">/data</code> pour tout vos fichier de donn&eacute;es.
</p>
</li>
<li class="listitem">
- <p>Si vous avez beaucoup de partitions, vous pouvez choisir beaucoup de points
- de montage dans la liste d&eacute;roulante tels que <code class="literal">/</code>,
- <code class="literal">/home</code> et <code class="literal">/var</code>. Il est m&ecirc;me possible de
- cr&eacute;er ses propres points de montage, par exemple <code class="literal">/video</code>
- pour une partition de stockage des films, ou
- <code class="literal">/cauldron-home</code> pour la partition <code class="literal">/home</code>
- d'une installation de cauldron.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>Pour les partitions o&ugrave; l'acc&egrave;s n'est pas n&eacute;cessaire, vous pouvez laisser le
- champ point de montage en blanc.
+ <p>Pour les partitions o&ugrave; l'acc&egrave;s n'est pas n&eacute;cessaire, vous pouvez laisser
+ vide le champ point de montage.
</p>
</li>
@@ -112,10 +99,29 @@
<tr>
<td align="left" valign="top">
- <p>Si vous ne savez pas quoi choisir, cliquez sur
- <span class="guibutton">Pr&eacute;c&eacute;dent</span> et cochez <span class="guilabel">Partitionnement
- personnalis&eacute; du disque</span>. Dans l'&eacute;cran suivant, cliquez sur un
- partition pour conna&icirc;tre son type et sa taille.
+ <p>Si vous avez effectu&eacute; des changements ici, assurez vous que vous avez
+ toujours une partition <code class="filename">/</code>(root).
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="tip" title="Astuce" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Astuce]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Si vous n'&ecirc;tes pas sur de quoi choisir, cliquez sur
+ <span class="emphasis"><em>Pr&eacute;c&eacute;dent</em></span>pour retourner en arri&egrave;re et cocher
+ <span class="emphasis"><em>Partitionnement personnalis&eacute; du disque</em></span>, o&ugrave; vous pourrez
+ cliquer sur une partition pour voir son type et sa taille.
</p>
</td>
@@ -124,9 +130,9 @@
</div>
- <p>Vous &ecirc;tes s&ucirc;r que les points de montage sont corrects ? Alors cliquez sur
- <span class="guibutton">Suivant</span>, et d&eacute;cidez si vous d&eacute;sirez seulement
- formater la(es) partition(s) sugg&eacute;r&eacute;e(s) par DrakX, ou plus.
+ <p>Si vous &ecirc;tes certain de vos points de montages, cliquez sur
+ <span class="emphasis"><em>Suivant</em></span>, et choisissez si vous voulez seulement
+ formater la partition sugg&eacute;r&eacute;e par DrakX, ou plus.
</p>
</div>
diff --git a/fr/chooseDesktop.html b/fr/chooseDesktop.html
index 76f65d6..c3e2aff 100644
--- a/fr/chooseDesktop.html
+++ b/fr/chooseDesktop.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="media_selection.html" title="S&eacute;lection des m&eacute;dia (Nonfree)">
+ <link rel="prev" href="media_selection.html" title="D&eacute;p&ocirc;ts disponibles">
<link rel="next" href="choosePackageGroups.html" title="S&eacute;lection du groupe de paquetages"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -24,31 +24,53 @@
</div>
+
+
+
+
+
+
+
+
+
- <p>En fonction des s&eacute;lections faites ici, des &eacute;crans suppl&eacute;mentaires peuvent
- appara&icirc;tre pour pr&eacute;ciser les choix.
+ <p>Certains choix faits ici entra&icirc;neront l'ouverture de nouveaux &eacute;crans qui
+ leur sont li&eacute;s.
</p>
<p>Apr&egrave;s l'(es) &eacute;tape(s) de s&eacute;lection, un diaporama s'affiche pendant
- l'installation des packages. Il peut &ecirc;tre invalid&eacute; en cliquant sur le bouton
- <span class="guilabel">D&eacute;tails</span></p>
+ l'installation des paquetages. Il peut &ecirc;tre d&eacute;sactiv&eacute; en cliquant sur le
+ bouton <span class="emphasis"><em>D&eacute;tails</em></span>.
+ </p>
- <p>Choisir entre les bureaux <span class="application">KDE</span> ou
- <span class="application">Gnome</span> suivant sa pr&eacute;f&eacute;rence. Les deux proposent
- un ensemble complet d'applications et d'outils utiles. Cocher
- <span class="guilabel">Personnaliser</span> pour n'utiliser ni l'un ni l'autre ou les
- deux ou bien pour obtenir autre chose que les logiciels fournis par d&eacute;faut
- pour ces bureaux. Le bureau <span class="application">LXDE</span> est plus l&eacute;ger
- que les deux pr&eacute;c&eacute;dents, d'esth&eacute;tique moins l&eacute;ch&eacute;e et poss&egrave;de moins de
- paquetages install&eacute;s par d&eacute;faut.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Choisissez entre les bureaux KDE Plasma et GNOME. Tous deux incluent un
+ ensemble complet d'applications et d'outils utiles.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Cochez <span class="emphasis"><em>Custom</em></span> si vous souhaitez n'utiliser aucun (ou
+ utiliser les 2), ou si vous souhaitez modifier les choix logiciels par
+ d&eacute;faut pour ces bureaux. Le bureau LXDE par exemple, est plus l&eacute;ger que les
+ deux pr&eacute;c&eacute;dents, moins tape-&agrave;-l'&#339;il et avec moins de paquetages install&eacute;s
+ par d&eacute;faut.&nbsp;
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/fr/choosePackageGroups.html b/fr/choosePackageGroups.html
index d47afd1..9356c69 100644
--- a/fr/choosePackageGroups.html
+++ b/fr/choosePackageGroups.html
@@ -29,10 +29,12 @@
- <p>Les paquetages sont tri&eacute;s par groupes pour faciliter le choix de ce qui est
- n&eacute;cessaire sur le syst&egrave;me. Le contenu de ces groupes est &eacute;vident, cependant,
- des informations compl&eacute;mentaires sur chacun d'entre eux est disponible dans
- l'infobulle qui devient visible lorsque la souris les survole.
+
+
+ <p>Les paquetages sont tri&eacute;s par groupes afin de faciliter le choix de ce dont
+ vous avez besoin sur votre syst&egrave;me. Les noms de ces groupes parlent
+ d'eux-m&ecirc;mes, n&eacute;anmoins, des informations compl&eacute;mentaires sur chacun d'eux
+ sont disponibles dans l'info-bulle qui appara&icirc;t au survol de la souris.
</p>
@@ -40,23 +42,23 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Poste de travail.</p>
+ <p><span class="bold"><strong>Poste de travail</strong></span></p>
</li>
<li class="listitem">
- <p>Serveur.</p>
+ <p><span class="bold"><strong>Serveur</strong></span></p>
</li>
<li class="listitem">
- <p>Environnement graphique</p>
+ <p><span class="bold"><strong>Environnement graphique</strong></span></p>
</li>
<li class="listitem">
- <p>S&eacute;lection Individuelle des Paquetages : Utiliser cette option pour ajouter
- ou retirer manuellement des paquetages.
+ <p><span class="bold"><strong>S&eacute;lection Individuelle des Paquetages</strong></span> :
+ Utiliser cette option pour ajouter ou retirer manuellement des paquetages.
</p>
</li>
@@ -64,8 +66,9 @@
</div>
- <p>Voir <a class="xref" href="minimal-install.html" title="Installation minimale">la section intitul&eacute;e &laquo;&nbsp;Installation minimale&nbsp;&raquo;</a> pour obtenir des instructions sur
- comment r&eacute;aliser une installation minimale (avec ou sans X &amp; IceWM).
+ <p>Consultez <a class="xref" href="minimal-install.html" title="Installation minimale">Minimal Install</a> pour avoir des indications sur
+ la mani&egrave;re de r&eacute;aliser une installation minimale (avec ou sans X &amp;
+ IceWM).
</p>
</div>
diff --git a/fr/choosePackagesTree.html b/fr/choosePackagesTree.html
index f86c116..7f25716 100644
--- a/fr/choosePackagesTree.html
+++ b/fr/choosePackagesTree.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
<link rel="prev" href="minimal-install.html" title="Installation minimale">
- <link rel="next" href="addUser.html" title="Gestion de l'Utilisateur et du Superutilisateur"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="addUser.html" title="Gestion des utilisateurs"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,27 +22,30 @@
</div>
</div>
</div>
+
-
+
-
+
+
+
-
+
<p>Il est possible ici d'ajouter n'importe quel paquetage suppl&eacute;mentaire pour
personnaliser l'installation.
</p>
-
- <p>Apr&egrave;s avoir fait son choix, cliquer sur <span class="guibutton">l'ic&ocirc;ne de la
- disquette</span> en bas de la page pour enregistrer le choix des
+
+ <p>Apr&egrave;s avoir fait son choix, cliquer sur <span class="emphasis"><em>l'ic&ocirc;ne de la
+ disquette</em></span> en bas de la page pour enregistrer le choix des
paquetages (il est aussi possible de l'enregistrer sur une cl&eacute; USB).
Utiliser alors ce fichier pour r&eacute;aliser l'installation des m&ecirc;mes paquetages
sur un autre syst&egrave;me, en cliquant sur la m&ecirc;me ic&ocirc;ne pendant l'installation
et en choisissant de charger le fichier.
</p>
-
+
</div>
</body>
</html>
diff --git a/fr/configureServices.html b/fr/configureServices.html
index a3bfaa8..c31fb9b 100644
--- a/fr/configureServices.html
+++ b/fr/configureServices.html
@@ -22,40 +22,48 @@
</div>
</div>
</div>
+
+
-
-
-
-
-
+
+
+
+
-
- <p><a name="configureServices-pa1"></a>D&eacute;signer ici quels services doivent (ne doivent pas) s'activer au d&eacute;marrage
+
+ <p><a name="configureServices-pa1"></a>S&eacute;lectionnez ici les services &agrave; d&eacute;marrer automatiquement lors du d&eacute;marrage
du syst&egrave;me.
</p>
-
- <p><a name="configureServices-pa2"></a>Il y a quatre groupes, cliquer sur le triangle devant chaque groupe pour le
- d&eacute;ployer et voir tous les services qu'il contient.
- </p>
-
-
- <p><a name="configureServices-pa3"></a>Les choix r&eacute;alis&eacute;s par DrakX sont g&eacute;n&eacute;ralement les bons.
- </p>
-
-
- <p><a name="configureServices-pa4"></a>Si un service est mis en surbrillance, des informations &agrave; son sujet sont
- disponibles dans l'infobulle en dessous.
- </p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureServices-pa2"></a>Cliquez sur un triangle pour &eacute;tendre un groupe &agrave; tous les services
+ pertinents. Les param&egrave;tres par d&eacute;faut choisis par DrakX sont g&eacute;n&eacute;ralement
+ les bons.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="configureServices-pa4"></a>Si un service est mis en surbrillance, des informations &agrave; son sujet sont
+ disponibles dans l'infobulle en dessous.
+ </p>
+
+ </li>
+ </ul>
+ </div>
-
+
<p><a name="configureServices-pa5"></a>Ne modifier quelque chose qu'avec la certitude de bien faire.
</p>
-
+
</div>
</body>
</html>
diff --git a/fr/configureTimezoneUTC.html b/fr/configureTimezoneUTC.html
index bc7a5c4..3c58a57 100644
--- a/fr/configureTimezoneUTC.html
+++ b/fr/configureTimezoneUTC.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="misc-params.html" title="R&eacute;sum&eacute; des diff&eacute;rents param&egrave;tres">
+ <link rel="prev" href="misc-params.html" title="R&eacute;sum&eacute; de votre configuration">
<link rel="next" href="selectCountry.html" title="S&eacute;lection du Pays / R&eacute;gion"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -31,13 +31,25 @@
- <p><a name="configureTimezoneUTC-pa1"></a>Choisir le fuseau horaire en choisissant le pays ou la ville la plus proche
- dans le m&ecirc;me fuseau.
- </p>
- <p><a name="configureTimezoneUTC-pa2"></a>Dans l'&eacute;cran suivant, il est possible de r&eacute;gler l'horloge syst&egrave;me &agrave; l'heure
- locale ou GMT, aussi appel&eacute;e UTC.
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureTimezoneUTC-pa1"></a>Choisir le fuseau horaire en choisissant le pays ou la ville la plus proche
+ dans le m&ecirc;me fuseau.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><a name="configureTimezoneUTC-pa2"></a>&Agrave; l'&eacute;cran suivant, vous pourrez choisir de r&eacute;gler l'horloge syst&egrave;me sur
+ l'heure locale ou sur GMT, aussi appel&eacute;e UTC.
</p>
diff --git a/fr/configureX_card_list.html b/fr/configureX_card_list.html
index d6a4189..2f57cf9 100644
--- a/fr/configureX_card_list.html
+++ b/fr/configureX_card_list.html
@@ -29,7 +29,13 @@
+
+
+
+
+
+
@@ -47,52 +53,57 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>le vendeur</p>
+ <p>Fabricant</p>
</li>
<li class="listitem">
- <p>nom de la carte graphique</p>
+ <p>puis, la marque de votre carte</p>
</li>
<li class="listitem">
- <p>et le type de carte.</p>
+ <p>et le mod&egrave;le de la carte</p>
</li>
</ul>
</div>
- <p>Si vous ne trouvez pas votre carte dans la liste du fabricant, parce qu'elle
- n'est pas encore r&eacute;pertori&eacute;e ou qu'elle est trop ancienne, vous pouvez
- esp&eacute;rer trouver un pilote adapt&eacute; dans la cat&eacute;gorie
- <span class="emphasis"><em>Xorg</em></span>.
- </p>
-
-
- <p>La cat&eacute;gorie <span class="emphasis"><em>Xorg</em></span> contient plus de 40 pilotes
- g&eacute;n&eacute;riques et libres. Si vous ne trouvez pas de pilotes correspondant &agrave;
- votre carte, vous pouvez s&eacute;lectionner le pilote <span class="emphasis"><em>vesa</em></span>
- qui fournit des possibilit&eacute;s basiques pour la plupart des cartes.
+ <p>Si vous ne trouvez pas votre carte dans la liste des fabricants (parce
+ qu'elle n'est pas encore dans la base, ou qu'elle est trop ancienne), vous
+ trouverez peut-&ecirc;tre un pilote convenable dans la cat&eacute;gorie
+ <span class="emphasis"><em>Xorg</em></span>, qui propose plus de 40 pilotes g&eacute;n&eacute;riques et
+ open-source. Sinon, utilisez le pilote VESA, qui fournit les fonctionnalit&eacute;s
+ de base.
</p>
- <p>Soyez conscients que vous n'aurez acc&egrave;s qu'&agrave; la ligne de commande si le
- pilote s&eacute;lectionn&eacute; est inadapt&eacute;.
- </p>
-
-
- <p>Certains pilotes sont fournis par les fabricants et en licence non ouverte
- et ne peuvent &ecirc;tre install&eacute;s que si vous avez accept&eacute; le d&eacute;p&ocirc;t
- "Nonfree".Dans certains cas, les pilotes ne sont accessibles que sur des
- sites Internet du fabricant et sont &agrave; installer apr&egrave;s le d&eacute;marrage de
- Mageia.
- </p>
+ <div class="caution" title="Attention" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Attention]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Soyez conscients que vous n'aurez acc&egrave;s qu'&agrave; la <span class="emphasis"><em>ligne de
+ commande</em></span> si le pilote s&eacute;lectionn&eacute; est inadapt&eacute;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
- <p>Les d&eacute;p&ocirc;ts "Nonfree" doivent &ecirc;tre activ&eacute;s de fa&ccedil;on explicite pour y acc&eacute;der,
- il est conseill&eacute; de le faire apr&egrave;s le premier red&eacute;marrage.
+ <p>Certains fabricants de carte vid&eacute;o fournissent des pilotes propri&eacute;taires
+ pour Linux, qui ne peuvent &ecirc;tre disponibles que dans le d&eacute;p&ocirc;t
+ <span class="emphasis"><em>Nonfree</em></span>, ou m&ecirc;me parfois uniquement sur leur site
+ internet. Le d&ecirc;pot <span class="emphasis"><em>Nonfree</em></span> doit &ecirc;tre explicitement
+ autoris&eacute;. Si vous n'avais pas activ&eacute; l'autorisation pr&eacute;c&eacute;demment, vous
+ devrez le faire apr&egrave;s le premier red&eacute;marrage.
</p>
</div>
diff --git a/fr/configureX_chooser.html b/fr/configureX_chooser.html
index 29f80e0..fa48049 100644
--- a/fr/configureX_chooser.html
+++ b/fr/configureX_chooser.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="addUser.html" title="Gestion de l'Utilisateur et du Superutilisateur">
+ <link rel="prev" href="addUser.html" title="Gestion des utilisateurs">
<link rel="next" href="configureX_card_list.html" title="Choisissez un serveur d'affichage (serveur X)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,13 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
@@ -30,16 +37,17 @@
- <p><a name="configureX_chooser-pa1"></a>Quelque soit l'environnement graphique (connu aussi sous le nom de bureau)
- choisi pour cette installation de <span class="application">Mageia</span>, il est
- bas&eacute; sur une interface utilisateur graphique appel&eacute;e
- <acronym class="acronym">X-Window</acronym>, ou simplement <acronym class="acronym">X</acronym>. Ainsi pour
- assurer le fonctionnement de <acronym class="acronym">KDE</acronym>,
- <acronym class="acronym">Gnome</acronym>, <acronym class="acronym">LXDE</acronym> ou n'importe quel autre
- environnement graphique, les param&egrave;tres suivants de <acronym class="acronym">X</acronym>
- doivent &ecirc;tre corrects. Choisir les param&egrave;tres corrects si
- <span class="application">DrakX</span> ne d&eacute;termine rien ou bien si les choix
- r&eacute;alis&eacute;s ne semblent pas corrects.
+ <p><a name="configureX_chooser-pa1"></a>Quel que soit l'environnement graphique (aussi nomm&eacute; Bureau) choisi pour
+ cette installation de Mageia, tous sont bas&eacute;s sur une interface utilisateur
+ graphique appel&eacute;e <code class="literal">X-Window</code>, ou simplement
+ <span class="quote">&laquo;&nbsp;<span class="quote">X</span>&nbsp;&raquo;</span>. Aussi, pour permettre &agrave; KDE Plasma, GNOME, LXDE ou tout
+ autre bureau de fonctionner correctement, les param&egrave;tres de <span class="quote">&laquo;&nbsp;<span class="quote">X</span>&nbsp;&raquo;</span>
+ suivants doivent &ecirc;tre corrects.
+ </p>
+
+
+ <p>Entrez manuellement les param&egrave;tres convenables si vous pensez que les
+ d&eacute;tails sont incorrects, ou si rien n'est affich&eacute;.
</p>
@@ -47,69 +55,82 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="configureX_chooser-pa2"></a><span class="emphasis"><em><span class="guibutton">Carte Graphique </span></em></span>: Si besoin,
- choisir la carte dans la liste.
+ <p><a name="configureX_chooser-pa2"></a><span class="bold"><strong>Carte graphique</strong></span></p>
+
+
+ <p>Si vous avez besoin, vous pouvez s&eacute;lectionner une carte sp&eacute;cifique depuis
+ cette liste d&eacute;roulante. Voir <a class="xref" href="configureX_card_list.html" title="Choisissez un serveur d'affichage (serveur X)">la section intitul&eacute;e &laquo;&nbsp;Choisissez un serveur d'affichage (serveur X)&nbsp;&raquo;</a>.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa3"></a><span class="emphasis"><em><span class="guibutton">Moniteur</span></em></span>: Choisir
- <span class="guilabel">Plug'n Play</span> quand cela est possible, ou choisir le
- moniteur dans la liste des <span class="guilabel">Vendeurs</span> ou bien celle des
- <span class="guilabel">G&eacute;n&eacute;riques</span>. Choisir <span class="guilabel">Personnalis&eacute;</span>
- en cas de pr&eacute;f&eacute;rence pour une configuration manuelle des taux de
- rafra&icirc;chissement horizontaux et verticaux du moniteur.
- </p>
+ <p><a name="configureX_chooser-pa3"></a><span class="bold"><strong>Moniteur</strong></span></p>
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="configureX_chooser-pa3a"></a>Le moniteur peut &ecirc;tre endommag&eacute; par des taux de rafra&icirc;chissement incorrects.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+ <p>Choisissez Plug'n Play lorsque c'est possible, ou choisissez un moniteur
+ dans la liste des <span class="emphasis"><em>Vendeurs</em></span> ou encore celle des
+ <span class="emphasis"><em>G&eacute;n&eacute;riques</em></span>. Choisissez
+ <span class="emphasis"><em>Personnalis&eacute;</em></span> Si vous souhaitez sp&eacute;cifier les taux de
+ rafra&icirc;chissement horizontaux et verticaux de votre moniteur. Voir <a class="xref" href="configureX_monitor.html" title="Choisissez un moniteur">la section intitul&eacute;e &laquo;&nbsp;Choisissez un moniteur&nbsp;&raquo;</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa4"></a><span class="emphasis"><em><span class="guibutton">R&eacute;solution</span></em></span>: Indiquer ici la
- r&eacute;solution et la profondeur de couleur du moniteur.
- </p>
+ <p><a name="configureX_chooser-pa4"></a><span class="bold"><strong>R&eacute;solution</strong></span></p>
+
+
+ <p>Indiquez ici la r&eacute;solution et la profondeur de couleurs de votre moniteur.</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa5"></a><span class="emphasis"><em><span class="guibutton">Test</span></em></span>: Le bouton test n'appara&icirc;t
- pas toujours pendant l'installation. S'il est pr&eacute;sent, il est possible de
- cliquer dessus pour v&eacute;rifier le r&eacute;sultat des r&eacute;glages. Si une question
- appara&icirc;t demandant si les r&eacute;glages sont corrects, r&eacute;pondre "oui" et ils
- seront conserv&eacute;s. Si rien n'est visible, l'&eacute;cran de configuration va
- r&eacute;appara&icirc;tre et il sera possible de modifier les r&eacute;glages jusqu'&agrave; ce que le
- test soit satisfaisant.<span class="emphasis"><em> Si le bouton de test n'est pas disponible,
- redoubler de pr&eacute;cautions dans le choix des param&egrave;tres.</em></span></p>
+ <p><a name="configureX_chooser-pa5"></a><span class="bold"><strong>Test</strong></span></p>
+
+
+ <p>Ce bouton test n'appara&icirc;t pas toujours pendant l'installation. S'il est
+ pr&eacute;sent, et que vous testez vos r&eacute;glages, le syst&egrave;me devrait vous demander
+ si vos param&egrave;tres sont corrects. Si vous r&eacute;pondez <span class="emphasis"><em>Oui</em></span>,
+ les param&egrave;tres seront conserv&eacute;s. Si la question n'appara&icirc;t pas, vous
+ retournerez &agrave; l'&eacute;cran de configuration et pourrez modifier vos r&eacute;glages
+ jusqu'&agrave; ce que le test soit concluant. Si le bouton de test n'est pas
+ disponible, redoublez de pr&eacute;cautions dans le choix des param&egrave;tres.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa6"></a><span class="emphasis"><em><span class="guibutton">Options</span></em></span>: Choisir ici de valider
- ou d'invalider diff&eacute;rentes options.
- </p>
+ <p><a name="configureX_chooser-pa6"></a><span class="bold"><strong>Options</strong></span></p>
+
+
+ <p>Choisir ici de valider ou d'invalider diff&eacute;rentes options.</p>
</li>
</ul>
</div>
+
+ <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="configureX_chooser-pa3a"></a>Il existe un risque d'endommager votre &eacute;cran si vous choisissez des taux de
+ rafra&icirc;chissement en dehors de ses capacit&eacute;s. Ceci concerne les anciens
+ &eacute;crans CRT : les mod&egrave;les r&eacute;cents rejetteront toute fr&eacute;quence non-support&eacute;e
+ et entreront en mode veille.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</div>
</body>
</html>
diff --git a/fr/configureX_monitor.html b/fr/configureX_monitor.html
index d8983cb..2a79e10 100644
--- a/fr/configureX_monitor.html
+++ b/fr/configureX_monitor.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
<link rel="prev" href="configureX_card_list.html" title="Choisissez un serveur d'affichage (serveur X)">
- <link rel="next" href="setupBootloader.html" title="Principales options du chargeur de d&eacute;marrage"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="setupBootloader.html" title="Programme d'amor&ccedil;age"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -33,6 +33,10 @@
+
+
+
+
<p><a name="configureX_monitor-pa1"></a>DrakX comporte une importante base de donn&eacute;es de moniteurs et en g&eacute;n&eacute;ral,
votre mat&eacute;riel est bien identifi&eacute;.
</p>
@@ -47,10 +51,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="configureX_monitor-pa1w"></a><span class="emphasis"><em>Le choix d'un moniteur avec des caract&eacute;ristiques inappropri&eacute;es au
- mat&eacute;riel peut endommager la carte graphique ou le moniteur, en particulier
- les &eacute;crans cathodiques. N'essayez que ce dont vous &ecirc;tes s&ucirc;rs.</em></span> En
- cas de doute, vous devez consulter la documentation de votre mat&eacute;riel.
+ <p><a name="configureX_monitor-pa1w"></a><span class="bold"><strong>Le choix d'un moniteur avec des caract&eacute;ristiques
+ diff&eacute;rentes du v&ocirc;tre peut endommager votre &eacute;cran ou votre carte
+ graphique. Soyez prudent dans les param&egrave;tres que vous testez.</strong></span>En
+ cas de doute, consultez la documentation de votre moniteur.
</p>
</td>
@@ -61,71 +65,80 @@
- <p><a name="configureX_monitor-pa2"></a><span class="emphasis"><em>Personnalis&eacute;</em></span></p>
-
-
- <p><a name="configureX_monitor-pa3"></a>Cette option vous permet de sp&eacute;cifier deux param&egrave;tres critiques, la
- fr&eacute;quence de rafraichissement vertical et la fr&eacute;quence de synchronisation
- horizontale. La fr&eacute;quence de rafraichissement vertical d&eacute;termine &agrave; quelle
- fr&eacute;quence l'&eacute;cran est rafra&icirc;chi, tandis que la fr&eacute;quence de synchronisation
- horizontale d&eacute;termine la fr&eacute;quence &agrave; laquelle les lignes sont affich&eacute;es.
- </p>
-
-
- <p><a name="configureX_monitor-pa4"></a>Il est <span class="bold"><strong>tr&egrave;s important</strong></span> que les
- sp&eacute;cifications que vous donnez ne soient pas au-del&agrave; des capacit&eacute;s de votre
- moniteur : vous pourriez endommager votre moniteur. En cas de doute, vous
- devez choisir une configuration conservatrice et consulter la documentation
- de votre mat&eacute;riel.
- </p>
-
-
- <p><a name="configureX_monitor-pa5"></a><span class="emphasis"><em>Plug 'n Play</em></span></p>
-
-
- <p><a name="configureX_monitor-pa6"></a>C'est l'option par d&eacute;faut. Le syst&egrave;me essaye de d&eacute;terminer le type de
- moniteur &agrave; partir de la base de donn&eacute;es.
- </p>
-
-
- <p><a name="configureX_monitor-pa7"></a><span class="emphasis"><em>Vendeur</em></span></p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa2"></a>Partitionnement de disque personnalis&eacute;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa3"></a>Cette option vous permet de sp&eacute;cifier deux param&egrave;tres critiques, la
+ fr&eacute;quence de rafra&icirc;chissement vertical et la fr&eacute;quence de synchronisation
+ horizontale. La fr&eacute;quence de rafra&icirc;chissement vertical d&eacute;termine &agrave; quelle
+ fr&eacute;quence l'&eacute;cran est rafra&icirc;chi, tandis que la fr&eacute;quence de synchronisation
+ horizontale d&eacute;termine la fr&eacute;quence &agrave; laquelle les lignes sont affich&eacute;es.
+ </p>
+
+
+ <p><a name="configureX_monitor-pa4"></a>Il est <span class="bold"><strong>tr&egrave;s important</strong></span> que les
+ sp&eacute;cifications que vous donnez ne soient pas au-del&agrave; des capacit&eacute;s de votre
+ moniteur : vous pourriez endommager votre moniteur. En cas de doute, vous
+ devez choisir une configuration conservatrice et consulter la documentation
+ de votre mat&eacute;riel.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa5"></a>Plug'n Play</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa6"></a>C'est l'option par d&eacute;faut. Le syst&egrave;me essaye de d&eacute;terminer automatiquement
+ le type de moniteur &agrave; partir de la base de donn&eacute;es.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa7"></a>Fabricant</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa8"></a>Si le syst&egrave;me n'a pas d&eacute;termin&eacute; correctement votre mat&eacute;riel et si vous
+ connaissez ses r&eacute;f&eacute;rences, vous pouvez le s&eacute;lectionner dans l'arborescence
+ en s&eacute;lectionnant dans l'ordre :
+ </p>
+
+ </dd>
+ </dl>
+ </div>
- <p><a name="configureX_monitor-pa8"></a>Si le syst&egrave;me n'a pas d&eacute;termin&eacute; correctement votre mat&eacute;riel et si vous
- connaissez ses r&eacute;f&eacute;rences, vous pouvez le s&eacute;lectionner dans l'arborescence
- en s&eacute;lectionnant dans l'ordre :
- </p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>le vendeur</p>
+ <p>Fabriquant</p>
+
</li>
<li class="listitem">
-
- <p>le nom du fabricant du moniteur</p>
-
- </li>
- <li class="listitem">
-
- <p>la description du moniteur.</p>
+ <p>Mod&egrave;le du moniteur</p>
+
</li>
</ul>
</div>
- <p><a name="configureX_monitor-pa9"></a><span class="emphasis"><em>G&eacute;n&eacute;rique</em></span></p>
-
-
- <p><a name="configureX_monitor-pa10"></a>La s&eacute;lection de ce groupe permet de choisir parmi 30 configurations
- d'affichage telles que le 1024x768 @ 60Hz et comprend les &eacute;crans plats tels
- qu'utilis&eacute;s par les portables. c'est souvent un choix adapt&eacute; lorsque vous
- utilisez le pilote <span class="emphasis"><em>vesa</em></span> et que votre mat&eacute;riel graphique
- ne peut pas &ecirc;tre d&eacute;tect&eacute; automatiquement. A nouveau, il convient d'&ecirc;tre
- prudent dans vos choix.
- </p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa9"></a>G&eacute;n&eacute;rique</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa10"></a>La s&eacute;lection de ce groupe permet de choisir parmi 30 configurations
+ d'affichage telles que le 1024x768 @ 60Hz et comprend les &eacute;crans plats tels
+ qu'utilis&eacute;s par les portables. c'est souvent un choix adapt&eacute; lorsque vous
+ utilisez le pilote VESA et que votre mat&eacute;riel graphique ne peut pas &ecirc;tre
+ d&eacute;tect&eacute; automatiquement. A nouveau, il convient d'&ecirc;tre prudent dans vos
+ choix.
+ </p>
+
+ </dd>
+ </dl>
+ </div>
</div>
</body>
diff --git a/fr/diskdrake.html b/fr/diskdrake.html
index 9d54492..5774a7d 100644
--- a/fr/diskdrake.html
+++ b/fr/diskdrake.html
@@ -23,99 +23,137 @@
</div>
</div>
+
+
+
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="diskdrake-pa1"></a>Si vous souhaitez chiffrer la partition <code class="literal">/</code> il faut d'abord
- s'assurer que la partition <code class="literal">/boot</code> est s&eacute;par&eacute;e des
- autres. La partition <code class="literal">/boot</code> NE doit PAS &ecirc;tre chiffr&eacute;e,
- sinon le syst&egrave;me ne pourra pas s'amorcer.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- <p><a name="diskdrake-pa3"></a>Ajuster la structure de votre disque dur ici. Vous pouvez supprimer ou cr&eacute;er
- des partitions, modifier le syst&egrave;me de fichiers d'une partition, sa taille
- et m&ecirc;me visualiser ce qu'il y a &agrave; l'int&eacute;rieur avant de commencer les
- modifications.
- </p>
-
- <p><a name="diskdrake-pa4"></a>Un onglet est pr&eacute;sent pour chaque disque dur d&eacute;tect&eacute; et chaque autre
- p&eacute;riph&eacute;rique de stockage tel qu'une cl&eacute; USB. Par exemple sda, sdb et sdc
- s'ils sont trois.
- </p>
-
- <p><a name="diskdrake-pa5"></a>Cliquer sur <span class="guibutton">Supprimer toutes les partitions</span> pour
- supprimer toutes les partitions du p&eacute;riph&eacute;rique de stockage s&eacute;lectionn&eacute;.
- </p>
+
+
+
- <p><a name="diskdrake-pa6"></a>Pour toutes les autres actions : Cliquer d'abord sur la partition
- souhait&eacute;e.. Ensuite, l'explorer, choisir un type de syst&egrave;me de fichiers et
- un point de montage, la redimensionner ou la supprimer.<span class="guibutton">Passer en
- mode expert</span> (ou <span class="guibutton">Mode expert</span>) fournit
- d'autres outils tels l'ajout d'une &eacute;tiquette ou le choix d'un type de
- partition.
- </p>
+
- <p><a name="diskdrake-pa6a"></a>Continuer jusqu'&agrave; ce que tout soit conforme aux d&eacute;sirs.
- </p>
+
- <p><a name="diskdrake-pa7"></a>Cliquer sur <span class="guibutton">Terminer</span> quand tout est correct..
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa3"></a>Ajuster la structure de votre disque dur ici. Vous pouvez supprimer ou cr&eacute;er
+ des partitions, modifier le syst&egrave;me de fichiers d'une partition, sa taille
+ et m&ecirc;me visualiser ce qu'il y a &agrave; l'int&eacute;rieur avant de commencer les
+ modifications.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa4"></a>En haut, il y a un onglet pour chaque disque dur d&eacute;tect&eacute; (ou d'autres
+ supports de stockage comme une cl&eacute; USB). Sur la capture d'&eacute;cran ci-dessus,
+ il y a deux disques disponibles : <code class="filename">sda</code> et
+ <code class="filename">sdb</code>.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6"></a>Pour toutes les autres actions : Cliquer sur la partition
+ souhait&eacute;e. Ensuite, l'explorer, choisir un type de syst&egrave;me de fichiers et un
+ point de montage, la redimensionner ou la supprimer. Le <span class="emphasis"><em>Mode
+ expert</em></span> fournit d'autres options telles l'ajout d'un nom de
+ partition (label) ou le choix d'un type.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6a"></a>Continuer jusqu'&agrave; ce que tout soit satisfaisant, puis cliquer sur
+ <span class="emphasis"><em>OK</em></span> lorsque tout est pr&ecirc;t.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Si vous installez Mageia sur un syst&egrave;me UEFI, v&eacute;rifiez qu'une partition
- syst&egrave;me EFI (ESP pour EFI System Partition) est pr&eacute;sente et correctement
- mont&eacute;e sur /boot/EFI (voir ci-dessous)
- </p>
-
- <p></p>
+ <div class="orderedlist">
+ <ol class="orderedlist" type="1">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa5"></a>Soyez prudent avec l'option <span class="emphasis"><em>Effacer tout</em></span>, ne l'utilisez
+ que si vous &ecirc;tes s&ucirc;r que vous voulez effacer TOUTES les partitions sur le
+ p&eacute;riph&eacute;rique s&eacute;lectionn&eacute;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa1"></a>Si vous souhaitez chiffrer la partition <code class="filename">/</code> il faut
+ d'abord s'assurer que la partition <code class="filename">/boot</code> est s&eacute;par&eacute;e
+ des autres. La partition <code class="filename">/boot</code> NE doit PAS &ecirc;tre
+ chiffr&eacute;e, sinon le syst&egrave;me ne pourra pas s'amorcer.
+ </p>
+
+ </li>
+ </ol>
+ </div>
</td>
</tr>
</table>
</div>
+
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Si vous installez Mageia sur un syst&egrave;me Legacy/GPT, v&eacute;rifiez qu'une
- partition d'amor&ccedil;age en mode BIOS (BIOS boot partition) est pr&eacute;sente et
- poss&egrave;de le type requis.
- </p>
-
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Si vous installez Mageia sur un syst&egrave;me UEFI, v&eacute;rifiez qu'une partition
+ syst&egrave;me EFI (ESP pour EFI System Partition) est pr&eacute;sente et correctement
+ mont&eacute;e sur <code class="filename">/boot/EFI</code>. Voir Figure 1 ci-dessous.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Si vous installez Mageia sur un syst&egrave;me Legacy/GPT, v&eacute;rifiez qu'une
+ partition d'amor&ccedil;age en mode BIOS boot partition est pr&eacute;sente et poss&egrave;de le
+ type requis. Voir Figure 2 ci-dessous.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</td>
</tr>
</table>
</div>
+
+
+
+
</div>
</body>
</html>
diff --git a/fr/doPartitionDisks.html b/fr/doPartitionDisks.html
index db8ac7f..de46008 100644
--- a/fr/doPartitionDisks.html
+++ b/fr/doPartitionDisks.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Partitionnement</title>
+ <title>Suggestion de partitionnement</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
@@ -13,142 +13,236 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="fr" class="section" title="Partitionnement">
+ <div lang="fr" class="section" title="Suggestion de partitionnement">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="doPartitionDisks"></a>Partitionnement
+ <h2 class="title"><a name="doPartitionDisks"></a>Suggestion de partitionnement
</h2>
</div>
</div>
</div>
+
+
+
+
+
+
+
+
+
+
+
+
+
<p><a name="doPartitionDisks-pa1"></a>Cet &eacute;cran pr&eacute;sente le contenu du(des) disque(s) dur(s) et les propositions
- faites par l'assistant de partitionnement de DrakX pour l'endroit o&ugrave;
- installer <span class="application">Mageia</span>.
+ faites par DrakX pour l'endroit o&ugrave; installer Mageia.
</p>
+
- <p><a name="doPartitionDisks-pa2"></a>Les options propos&eacute;es dans la liste ci-dessous varient en fonction du
- contenu et de l'agencement de chaque disque dur en particulier.
+ <p><a name="doPartitionDisks-pa2"></a>Les options propos&eacute;es dans la liste ci-dessous varient en fonction de
+ l'agencement et du contenu de chaque disque(s) dur(s) en particulier.
</p>
+
+
- <p><a name="doPartitionDisks-pa3"></a></p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Options principales">
+ <p class="title"><b>Options principales</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa4"></a>Utiliser les partitions existantes
- </p>
+
+ <p><a name="doPartitionDisks-pa4"></a><span class="bold"><strong>Utiliser les partitions existantes</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa5"></a>Si cette option est disponible, alors des partitions compatibles avec Linux
ont &eacute;t&eacute; trouv&eacute;es et sont utilisables pour l'installation de Mageia.
</p>
+
</li>
<li class="listitem">
- <p><a name="doPartitionDisks-pa6"></a>Utiliser l'espace libre
- </p>
+
+ <p><a name="doPartitionDisks-pa6"></a><span class="bold"><strong>Utiliser l'espace libre</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa7"></a>Si le disque dur comporte de l'espace inutilis&eacute;, alors cette option
l'utilisera pour l'installation de Mageia.
</p>
+
</li>
<li class="listitem">
- <p><a name="doPartitionDisks-pa8"></a>Utiliser l'espace libre sur une partition Microsoft Windows
- </p>
- <p><a name="doPartitionDisks-pa9"></a>Si une partition Windows existante comporte de l'espace inutilis&eacute;,
- l'installateur propose de l'utiliser.
- </p>
- <p><a name="doPartitionDisks-pa10"></a>Cela peut &ecirc;tre une fa&ccedil;on pratique de faire de la place pour l'installation
- de Mageia, mais il s'agit d'une op&eacute;ration risqu&eacute;e, vous devriez donc vous
- assurer de poss&eacute;der une sauvegarde de tous les fichiers importants.
- </p>
- <p><a name="doPartitionDisks-pa11"></a>Noter que cela impose de r&eacute;tr&eacute;cir la partition Windows. La partition doit
- &ecirc;tre "int&egrave;gre", signifiant que Windows doit s'&ecirc;tre correctement arr&ecirc;t&eacute; lors
- de sa derni&egrave;re utilisation. La partition doit avoir &eacute;t&eacute; d&eacute;fragment&eacute;e
- &eacute;galement, bien que ce ne soit pas une garantie que tous les fichiers de la
- partition aient &eacute;t&eacute; d&eacute;plac&eacute;s en dehors de la zone &agrave; utiliser. Il est
- fortement recommand&eacute; de sauvegarder ses donn&eacute;es personnelles importantes au
- pr&eacute;alable.
+
+ <p><a name="doPartitionDisks-pa8"></a><span class="bold"><strong>Utiliser l'espace libre sur une partition
+ Windows</strong></span></p>
+
+
+ <p><a name="suggestedPartitioning-pa9"></a>Si vous avez de l'espace libre sur un partition Windows, l'installateur peu
+ vous proposer de l'utiliser. Cela peut &ecirc;tre une fa&ccedil;on pratique de faire de
+ la place pour l'installation de Mageia, mais il s'agit d'une op&eacute;ration
+ risqu&eacute;e, vous devriez donc vous assurer de poss&eacute;der une sauvegarde de tous
+ les fichiers importants.
</p>
+
+
<p>Avec cette option, l'installateur affiche la partition Windows restante en
bleu clair et la future partition Mageia en bleu fonc&eacute;, avec leurs tailles
pr&eacute;vues juste en dessous. Vous avez la possibilit&eacute; d'adapter ces tailles en
cliquant et en d&eacute;pla&ccedil;ant la limite entre les deux partitions. Voir la
capture d'&eacute;cran ci-dessous.
</p>
+
</li>
- </ul>
- </div>
- <p> </p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa12"></a>Effacer et utiliser le disque tout entier
- </p>
- <p><a name="doPartitionDisks-pa13"></a>Cette option utilise le disque complet pour Mageia.
- </p>
- <p><a name="doPartitionDisks-pa14"></a>Attention ! Cela effacera TOUTES les donn&eacute;es sur le disque
- s&eacute;lectionn&eacute;. Faites attention !
- </p>
- <p><a name="doPartitionDisks-pa15"></a>Si vous avez l'intention d'utiliser une partie du disque pour autre chose,
- ou bien des donn&eacute;es d&eacute;j&agrave; pr&eacute;sentes sur le disque ne doivent pas &ecirc;tre
- perdues, alors ne pas utiliser cette option.
+
+ <p><a name="doPartitionDisks-pa12"></a><span class="bold"><strong>Effacer tout et utiliser le disque entier</strong></span></p>
+
+
+ <p><a name="doPartitionDisks-pa13"></a>Cette option attribue tout l'espace disque &agrave; Mageia.
</p>
+
+
+ <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa14"></a>Ceci supprimera TOUTES les donn&eacute;es du disque dur s&eacute;lectionn&eacute;. Si vous avez
+ l'intention d'utiliser une partie du disque pour autre chose, ou bien si des
+ donn&eacute;es d&eacute;j&agrave; pr&eacute;sentes sur le disque ne doivent pas &ecirc;tre perdues, alors ne
+ pas utiliser cette option.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa11"></a>Noter que cela impose de r&eacute;tr&eacute;cir la partition Windows. La partition doit
+ &ecirc;tre "int&egrave;gre", signifiant que Windows doit s'&ecirc;tre correctement arr&ecirc;t&eacute; lors
+ de sa derni&egrave;re utilisation. La partition doit avoir &eacute;t&eacute; d&eacute;fragment&eacute;e
+ &eacute;galement, bien que ce ne soit pas une garantie que tous les fichiers de la
+ partition aient &eacute;t&eacute; d&eacute;plac&eacute;s en dehors de la zone &agrave; utiliser. Il est
+ fortement recommand&eacute; de sauvegarder ses donn&eacute;es personnelles importantes au
+ pr&eacute;alable.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</li>
- </ul>
- </div>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p><a name="doPartitionDisks-pa16"></a>Partitionnement de disque personnalis&eacute;
- </p>
+
+ <p><a name="doPartitionDisks-pa16"></a><span class="bold"><strong>Partitionnement du disque personnalis&eacute;</strong></span></p>
+
+
<p><a name="doPartitionDisks-pa17"></a>Ceci vous donne le contr&ocirc;le complet sur la localisation de votre
installation sur le(s) disque(s).
</p>
+
</li>
</ul>
</div>
+
- <p><span class="bold"><strong>Dimensionnement de partition :</strong></span></p>
+
- <p>L'installeur partagera l'espace disponible selon les r&egrave;gles suivantes :</p>
+ <p>Si vous n'utilisez pas l'option <span class="emphasis"><em>Partitionnement de disque
+ personnalis&eacute;</em></span>, l'installateur allouera l'espace disponible selon
+ les r&egrave;gles suivantes :
+ </p>
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
+
<p>Si l'espace total disponible est inf&eacute;rieur &agrave; 50 Go, une seule partition est
- cr&eacute;&eacute;e pour le r&eacute;pertoire racine /, il n'y a aucune partition distincte pour
- /home.
+ cr&eacute;&eacute;e. Ce sera le r&eacute;pertoire <code class="filename">/</code> (racine).
</p>
+
</li>
<li class="listitem">
+
<p>Si l'espace total disponible est sup&eacute;rieur &agrave; 50 Go, alors trois partitions
sont cr&eacute;&eacute;es.
</p>
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
+
<p>6/19&egrave;me de l'espace total disponible est allou&eacute; &agrave; la racine principale des
- r&eacute;pertoires /, jusqu'&agrave; un maximum de 50 Go.
+ r&eacute;pertoires <code class="filename">/</code>, jusqu'&agrave; un maximum de 50 Go.
</p>
+
</li>
<li class="listitem">
- <p>1/19&egrave;me est allou&eacute; au SWAP avec un maximum de 4 Go.</p>
+
+ <p>1/19&egrave;me est allou&eacute; au <code class="filename">SWAP</code> avec un maximum de 4 Go.
+ </p>
+
</li>
<li class="listitem">
- <p>Le reste (&agrave; minima 12/19&egrave;me) est allou&eacute; au r&eacute;pertoire utilisateur /home.</p>
+
+ <p>Le reste (&agrave; minima 12/19&egrave;me) est allou&eacute; au r&eacute;pertoire utilisateur
+ <code class="filename">/home</code>.
+ </p>
+
</li>
</ul>
</div>
+
</li>
</ul>
</div>
+
<p>Cela signifie que pour un espace disponible de 160 Go et plus, l'installeur
- cr&eacute;era trois partitions : 50 Go pour /, 4 Go pour le SWAP et le reste pour
- /home.
+ cr&eacute;era trois partitions :
</p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>50 Go pour <code class="filename">/</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>4 Go pour le <code class="filename">swap</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>et le reste pour<code class="filename">/home</code></p>
+
+ </li>
+ </ul>
+ </div>
+
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
@@ -161,43 +255,40 @@
<p>Si vous utilisez un syst&egrave;me UEFI, l'ESP (partition syst&egrave;me EFI) sera
d&eacute;tect&eacute;e automatiquement, ou cr&eacute;&eacute;e si elle n'existe pas encore, et mont&eacute;e
- sur /boot/EFI. L'option "Partitionnement de disque personnalis&eacute;" est la
- seule qui permet de v&eacute;rifier si l'op&eacute;ration a &eacute;t&eacute; effectu&eacute;e correctement
+ sur <code class="filename">/boot/EFI</code>. L'option <span class="emphasis"><em>Partitionnement de
+ disque personnalis&eacute;</em></span> est la seule qui permet de v&eacute;rifier si
+ l'op&eacute;ration a &eacute;t&eacute; effectu&eacute;e correctement
</p>
-
- </td>
- </tr>
- </table>
- </div>
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
+
- <p>Si vous utilisez un syst&egrave;me en mode Legacy (parfois nomm&eacute; CSM ou BIOS) avec
- un disque GPT, vous devez cr&eacute;er une partition d'amor&ccedil;age BIOS (Bios boot
- partition) si elle n'existe pas d&eacute;j&agrave;. C'est une partition d'environ 1 Mo
- sans point de montage. Choisir <a class="xref" href="diskdrake.html" title="Partitionnement personnalis&eacute; du disque avec DiskDrake">la section intitul&eacute;e &laquo;&nbsp;Partitionnement personnalis&eacute; du disque avec DiskDrake&nbsp;&raquo;</a>pour pouvoir la
- cr&eacute;er avec l'installeur, comme n'importe quelle autre partition, simplement
- s&eacute;lectionner "BIOS boot partition" comme type de syst&egrave;me de fichiers.
+ <p>Si vous utilisez un syst&egrave;me en mode Legacy (parfois nomm&eacute; BIOS) avec une
+ partition GPT, vous devez cr&eacute;er une partition d'amor&ccedil;age BIOS si elle
+ n'existe pas d&eacute;j&agrave;. Elle devra faire environ 1Mo sans point de montage. Elle
+ peut &ecirc;tre cr&eacute;&eacute;e avec l'installateur, dans <span class="emphasis"><em>Partitionnement de
+ disque personnalis&eacute;</em></span>, comme pour toute autre
+ partition. Assurez-vous d'avoir s&eacute;lectionn&eacute; le syst&egrave;me de fichiers
+ <span class="quote">&laquo;&nbsp;<span class="quote">BIOS boot</span>&nbsp;&raquo;</span>.
</p>
+
-
+ <p>Lire <a class="xref" href="diskdrake.html" title="Partitionnement personnalis&eacute; du disque avec DiskDrake">DiskDrake</a> pour avoir des indications sur la mani&egrave;re
+ de proc&eacute;der.
+ </p>
</td>
</tr>
</table>
</div>
+
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+
+
+
+
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
@@ -206,16 +297,34 @@
<p>Certains nouveaux disques utilisent maintenant des secteurs logiques de 4096
octets, au lieu des traditionnels 512 octets. En raison d'un manque de
mat&eacute;riel disponible, l'outil de partitionnement utilis&eacute; par l'installateur
- n'a pas pu &ecirc;tre test&eacute; avec de tels disques. Des disques SSD utilisent aussi
- maintenant des blocs d'effacement de plus de 1Mo. Nous vous sugg&eacute;rons de
- partitionner votre disque au pr&eacute;alable &agrave; l'aide d'un outil de
- partitionnement tiers tel que gparted, et d'utiliser la configuration
- suivante :
+ n'a pas pu &ecirc;tre test&eacute; avec de tels disques.
</p>
+
- <p>"Align to" "MiB"</p>
+ <p>Certains disques SSD utilisent des blocs d'effacement de plus de 1Mo. Dans
+ ce cas, nous vous sugg&eacute;rons de partitionner votre disque au pr&eacute;alable &agrave;
+ l'aide d'un outil de partitionnement tiers tel que gparted, et d'utiliser la
+ configuration suivante :
+ </p>
+
- <p>"Free space preceding (MiB)" "2"</p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Alignement </strong></span> = Mo
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Espace disque initial (Mo)</em></span> = 2
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
<p>Assurez vous aussi que toutes les partitions sont cr&eacute;&eacute;es avec un nombre pair
de Mo.
diff --git a/fr/exitInstall.html b/fr/exitInstall.html
index b652946..4f8d266 100644
--- a/fr/exitInstall.html
+++ b/fr/exitInstall.html
@@ -23,28 +23,39 @@
</div>
</div>
+
+
+
+
+
- <p><a name="exitInstall-pa1"></a>L'installation et la configuration de <span class="application">Mageia</span> sont
- termin&eacute;es et il est maintenant possible d'enlever le medium d'installation
- et de red&eacute;marrer l'ordinateur.
+
+
+ <p><a name="exitInstall-pa1"></a>L'installation et la configuration de Mageia sont termin&eacute;es et il est
+ maintenant possible d'enlever le support d'installation et de red&eacute;marrer
+ l'ordinateur.
</p>
+
- <p><a name="exitInstall-pa2"></a>Apr&egrave;s le red&eacute;marrage, le choix entre les diff&eacute;rents syst&egrave;mes d'exploitation
- pr&eacute;sents sur l'ordinateur (s'il en existe plus d'un) est possible dans
- l'&eacute;cran du chargeur de d&eacute;marrage .
+ <p><a name="exitInstall-pa2"></a>Apr&egrave;s le red&eacute;marrage, vous pourrez choisir entre plusieurs syst&egrave;mes
+ d'exploitations (s'il y en a plusieurs install&eacute;s) sur l'&eacute;cran du chargeur de
+ d&eacute;marrage.
</p>
+
<p><a name="exitInstall-pa3"></a>Si les r&eacute;glages du chargeur de d&eacute;marrage n'ont pas &eacute;t&eacute; modifi&eacute;s,
l'installation de Mageia sera automatiquement s&eacute;lectionn&eacute;e et d&eacute;marr&eacute;e.
</p>
+
<p><a name="exitInstall-pa4"></a>Prenez plaisir !
</p>
+
- <p><a name="exitInstall-pa5"></a>Visitez www.mageia.org pour toute question ou si vous d&eacute;sirez contribuer &agrave;
- Mageia.
+ <p><a name="exitInstall-pa5"></a>Visitez <a class="ulink" href="http://www.mageia.org/en/" target="_top">www.mageia.org/fr/</a>
+ pour toute question ou si vous d&eacute;sirez contribuer &agrave; Mageia.
</p>
</div>
diff --git a/fr/formatPartitions.html b/fr/formatPartitions.html
index fda3221..cce9319 100644
--- a/fr/formatPartitions.html
+++ b/fr/formatPartitions.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
<link rel="prev" href="diskdrake.html" title="Partitionnement personnalis&eacute; du disque avec DiskDrake">
- <link rel="next" href="add_supplemental_media.html" title="S&eacute;lection de m&eacute;dia (Configurer l'installation de m&eacute;dia suppl&eacute;mentaires)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="add_supplemental_media.html" title="M&eacute;dia d'installation suppl&eacute;mentaire"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -28,14 +28,13 @@
+
-
-
-
+
+
-
<p><a name="formatPartitions-pa1"></a>Choisir ici quelle(s) partition(s) est(sont) &agrave; formater. Toutes les donn&eacute;es
@@ -49,9 +48,9 @@
</p>
- <p><a name="formatPartitions-pa3"></a>Cliquer sur <span class="guibutton">Avanc&eacute;</span> pour d&eacute;signer les partitions o&ugrave;
- l'on souhaite que soient recherch&eacute;s les <span class="emphasis"><em> blocs
- d&eacute;fectueux.</em></span></p>
+ <p><a name="formatPartitions-pa3"></a>Cliquer sur <span class="emphasis"><em>Avanc&eacute;</em></span> pour d&eacute;signer les partitions o&ugrave; l'on
+ souhaite que soient recherch&eacute;s les <span class="emphasis"><em>blocs d&eacute;fectueux</em></span>.
+ </p>
<div class="tip" title="Astuce" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -64,10 +63,10 @@
<td align="left" valign="top">
<p><a name="formatPartitions-pa4"></a>Si vous n'&ecirc;tes pas encore s&ucirc;r de votre choix, cliquer sur
- <span class="guibutton">Pr&eacute;c&eacute;dent</span>, &agrave; nouveau sur
- <span class="guibutton">Pr&eacute;c&eacute;dent</span> puis sur
- <span class="guibutton">Personnaliser</span> pour revenir &agrave; l'&eacute;cran principal. Dans
- cet &eacute;cran, il est possible d'examiner le contenu des partitions.
+ <span class="emphasis"><em>Pr&eacute;c&eacute;dent</em></span>, &agrave; nouveau sur <span class="emphasis"><em>Pr&eacute;c&eacute;dent</em></span>
+ puis sur <span class="emphasis"><em>Personnaliser</em></span> pour revenir &agrave; l'&eacute;cran
+ principal. Dans cet &eacute;cran, il est possible d'examiner le contenu des
+ partitions.
</p>
</td>
@@ -77,7 +76,7 @@
<p><a name="formatPartitions-pa5"></a>Lorsque la s&eacute;lection est faites avec certitude, cliquer sur
- <span class="guibutton">Suivant</span> pour continuer.
+ <span class="emphasis"><em>Suivant</em></span> pour continuer.
</p>
</div>
diff --git a/fr/index.html b/fr/index.html
index 2b0d231..325d421 100644
--- a/fr/index.html
+++ b/fr/index.html
@@ -27,18 +27,17 @@
<dd>
<dl>
<dt><span class="section"><a href="Select-and-use-ISOs.html#d5e19">Introduction</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e29">M&eacute;dia</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e119">T&eacute;l&eacute;charger et v&eacute;rifier les m&eacute;dia</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e146">Graver ou copier l'ISO</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e41">M&eacute;dia</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e129">T&eacute;l&eacute;charger et v&eacute;rifier les m&eacute;dia</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e168">Graver ou copier l'ISO</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="installer.html">DrakX, l'installateur de Mageia</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="installer.html#d5e219">Ecran d'accueil de l'installation</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e295">Les &eacute;tapes de l'installation</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e306">Probl&egrave;mes d'installation et solutions possibles</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e329"></a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e261">Les &eacute;tapes de l'installation</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e283">Ecran d'accueil de l'installation</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e332">Probl&egrave;mes d'installation et solutions possibles</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="selectLanguage.html">Veuillez choisir la langue &agrave; utiliser</a></span></dt>
@@ -52,40 +51,38 @@
<dt><span class="section"><a href="setupSCSI.html">Configuration du SCSI</a></span></dt>
<dt><span class="section"><a href="selectInstallClass.html">Installation ou Mise &agrave; jour</a></span></dt>
<dt><span class="section"><a href="selectKeyboard.html">Clavier</a></span></dt>
- <dt><span class="section"><a href="doPartitionDisks.html">Partitionnement</a></span></dt>
+ <dt><span class="section"><a href="doPartitionDisks.html">Suggestion de partitionnement</a></span></dt>
<dt><span class="section"><a href="ask_mntpoint_s.html">Choix des points de montage</a></span></dt>
<dt><span class="section"><a href="takeOverHdConfirm.html">Confirmer le disque dur &agrave; formater</a></span></dt>
<dt><span class="section"><a href="diskdrake.html">Partitionnement personnalis&eacute; du disque avec DiskDrake</a></span></dt>
<dt><span class="section"><a href="formatPartitions.html">Formatage</a></span></dt>
- <dt><span class="section"><a href="add_supplemental_media.html">S&eacute;lection de m&eacute;dia (Configurer l'installation de m&eacute;dia suppl&eacute;mentaires)</a></span></dt>
- <dt><span class="section"><a href="media_selection.html">S&eacute;lection des m&eacute;dia (Nonfree)</a></span></dt>
+ <dt><span class="section"><a href="add_supplemental_media.html">M&eacute;dia d'installation suppl&eacute;mentaire</a></span></dt>
+ <dt><span class="section"><a href="media_selection.html">D&eacute;p&ocirc;ts disponibles</a></span></dt>
<dt><span class="section"><a href="chooseDesktop.html">S&eacute;lection du bureau</a></span></dt>
<dt><span class="section"><a href="choosePackageGroups.html">S&eacute;lection du groupe de paquetages</a></span></dt>
<dt><span class="section"><a href="minimal-install.html">Installation minimale</a></span></dt>
<dt><span class="section"><a href="choosePackagesTree.html">Choisir individuellement des paquetages</a></span></dt>
- <dt><span class="section"><a href="addUser.html">Gestion de l'Utilisateur et du Superutilisateur</a></span></dt>
+ <dt><span class="section"><a href="addUser.html">Gestion des utilisateurs</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="addUser.html#root-password">D&eacute;finir le mot de passe Administrateur (Root) :</a></span></dt>
<dt><span class="section"><a href="addUser.html#enterUser">Indiquer un utilisateur</a></span></dt>
- <dt><span class="section"><a href="addUser.html#addUserAdvanced">Gestion avanc&eacute;e de l'Utilisateur</a></span></dt>
+ <dt><span class="section"><a href="addUser.html#addUserAdvanced">Gestion des utilisateurs (avanc&eacute;)</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="configureX_chooser.html">Configuration de X, de la carte graphique et du moniteur</a></span></dt>
<dt><span class="section"><a href="configureX_card_list.html">Choisissez un serveur d'affichage (serveur X)</a></span></dt>
<dt><span class="section"><a href="configureX_monitor.html">Choisissez un moniteur</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html">Principales options du chargeur de d&eacute;marrage</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html">Programme d'amor&ccedil;age</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="setupBootloader.html#d5e902">Interface du programme d'amor&ccedil;age</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e930">Utiliser un chargeur de d&eacute;marrage Mageia</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e946">Utiliser un chargeur de d&eacute;marrage existant. </a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e949">Utilisation du chargement en cha&icirc;ne</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e965">Options</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e988">Grub2</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1003">Configuration du programme d'amor&ccedil;age</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1093">Autres options</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="setupBootloaderAddEntry.html">Ajouter ou Modifier une Entr&eacute;e de Menu de D&eacute;marrage</a></span></dt>
- <dt><span class="section"><a href="misc-params.html">R&eacute;sum&eacute; des diff&eacute;rents param&egrave;tres</a></span></dt>
+ <dt><span class="section"><a href="misc-params.html">R&eacute;sum&eacute; de votre configuration</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="misc-params.html#misc-params-system">Param&egrave;tres du syst&egrave;me</a></span></dt>
@@ -110,15 +107,9 @@
</dl>
</dd>
<dt><span class="section"><a href="securityLevel.html">Niveau de S&eacute;curit&eacute;</a></span></dt>
- <dt><span class="section"><a href="firewall.html">Pare-feu</a></span></dt>
<dt><span class="section"><a href="installUpdates.html">Mises &agrave; jour</a></span></dt>
<dt><span class="section"><a href="exitInstall.html">F&eacute;licitations</a></span></dt>
<dt><span class="section"><a href="uninstall-Mageia.html">D&eacute;sinstaller Mageia</a></span></dt>
- <dd>
- <dl>
- <dt><span class="section"><a href="uninstall-Mageia.html#d5e1297">Guide</a></span></dt>
- </dl>
- </dd>
</dl>
</div>
@@ -219,8 +210,6 @@
-
-
diff --git a/fr/installUpdates.html b/fr/installUpdates.html
index 2f7eda9..4c4fd9b 100644
--- a/fr/installUpdates.html
+++ b/fr/installUpdates.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="firewall.html" title="Pare-feu">
+ <link rel="prev" href="securityLevel.html" title="Niveau de S&eacute;curit&eacute;">
<link rel="next" href="exitInstall.html" title="F&eacute;licitations"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -26,27 +26,48 @@
-
-
-
-
-
- <p><a name="installUpdates-pa1"></a>Depuis la publication de cette version de <span class="application">Mageia</span>,
- un certain nombre de paquets ont &eacute;t&eacute; mis &agrave; jour ou am&eacute;lior&eacute;s.
- </p>
+
- <p><a name="installUpdates-pa2"></a>Choisissez <span class="guilabel">oui</span> si vous souhaitez les t&eacute;l&eacute;charger et les
- installer, s&eacute;lectionnez <span class="guilabel">non</span> si vous ne le souhaitez
- pas, ou si vous n'&ecirc;tes pas connect&eacute; &agrave; Internet
- </p>
- <p><a name="installUpdates-pa3"></a>Cliquer sur <span class="guibutton">Suivant</span> pour continuer
+
+
+
+
+
+
+ <p><a name="installUpdates-pa1"></a>Depuis la publication de cette version de Mageia, un certain nombre de
+ paquets ont &eacute;t&eacute; mis &agrave; jour ou am&eacute;lior&eacute;s.
</p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa2"></a>S&eacute;lectionnez <span class="emphasis"><em>Oui</em></span> si vous voulez les t&eacute;l&eacute;charger et les
+ installer
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Choisissez <span class="emphasis"><em>Non</em></span> si vous ne le souhaitez pas, ou si vous
+ n'&ecirc;tes pas connect&eacute; &agrave; Internet
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa3"></a>Appuyez sur <span class="emphasis"><em>Suivant</em></span> pour continuer
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/fr/installer.html b/fr/installer.html
index 05d8534..f910eb5 100644
--- a/fr/installer.html
+++ b/fr/installer.html
@@ -25,23 +25,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
<p>Que vous soyez nouvel utilisateur de GNU-Linux ou exp&eacute;riment&eacute;,
l'installateur de Mageia est con&ccedil;u pour vous rendre l'installation ou la
mise &agrave; jour aussi ais&eacute;e que possible.
</p>
- <p>L'&eacute;cran du menu initial pr&eacute;sente plusieurs options, cependant l'option par
- d&eacute;faut d&eacute;marre l'installation, ce qui correspondra &agrave; ce qui est souhait&eacute; la
- plupart du temps .
- </p>
+ <div class="section" title="Les &eacute;tapes de l'installation">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e261"></a>Les &eacute;tapes de l'installation
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Le processus d'installation se divise en &eacute;tapes successives qui peuvent &ecirc;tre
+ suivies dans le panneau lat&eacute;ral &agrave; gauche de l'&eacute;cran.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Chaque &eacute;tape contient un ou plusieurs &eacute;crans qui peuvent &agrave; leur tour
+ pr&eacute;senter une section <span class="emphasis"><em>Avanc&eacute;</em></span> qui offre des options
+ suppl&eacute;mentaires moins communes.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>La plupart des &eacute;crans pr&eacute;sentent un bouton d'<span class="emphasis"><em>Aide</em></span> qui
+ apporte davantage d'explications au sujet de l'&eacute;tape particuli&egrave;re.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <div class="caution" title="Attention" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Attention]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Si vous d&eacute;cidez d'arr&ecirc;ter l'installation &agrave; un moment donn&eacute; de son
+ d&eacute;roulement, il est possible de red&eacute;marrer, mais bien y r&eacute;fl&eacute;chir
+ avant. Lorsqu'une partition a &eacute;t&eacute; format&eacute;e ou lorsque des mises &agrave; jour ont
+ commenc&eacute; &agrave; &ecirc;tre &eacute;crites, l'ordinateur n'est plus dans le m&ecirc;me &eacute;tat et le
+ red&eacute;marrage peut tr&egrave;s bien rendre le syst&egrave;me inutilisable.
+ </p>
+
+
+ <p>Si malgr&eacute; tout, vous &ecirc;tes certain de vouloir red&eacute;marrer, ouvrez une console
+ en appuyant simultan&eacute;ment sur
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span>.
+ Ensuite, appuyez sur
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Suppr</strong></span>
+ pour red&eacute;marrer.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
<div class="section" title="Ecran d'accueil de l'installation">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e219"></a>Ecran d'accueil de l'installation
+ <h3 class="title"><a name="d5e283"></a>Ecran d'accueil de l'installation
</h3>
</div>
</div>
@@ -49,11 +136,23 @@
- <div class="section" title="Utilisation d'un DVD Mageia">
+ <p>L'&eacute;cran que vous verrez lorsque votre ordinateur d&eacute;marrera depuis le media
+ d'installation d&eacute;pendra de la carte m&egrave;re de votre ordinateur et si elle
+ utiliser l'ancien syst&egrave;me (BIOS) ou si elle est UEFI.
+ </p>
+
+
+ <p>L'&eacute;cran du menu de bienvenue pr&eacute;sente plusieurs options, cependant l'option
+ par d&eacute;faut d&eacute;marre l'installation, ce qui correspondra &agrave; ce qui est souhait&eacute;
+ la plupart du temps.
+ </p>
+
+
+ <div class="section" title="BIOS en mode Legacy">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e221"></a>Utilisation d'un DVD Mageia
+ <h4 class="title"><a name="d5e287"></a>BIOS en mode Legacy
</h4>
</div>
</div>
@@ -61,164 +160,50 @@
- <p>Voici les &eacute;crans d'accueil par d&eacute;faut lors de l'utilisation du DVD Mageia,
- le premier pour un syst&egrave;me UEFI, le second pour un syst&egrave;me avec avec le mode
- Legacy :
- </p>
-
-
- <p>A partir de cet &eacute;cran, vous pouvez acc&eacute;der &agrave; des options en pressant la
- lettre "e" pour entrer dans le mode d'&eacute;dition. Pour revenir &agrave; cet &eacute;cran,
- presser soit la touche "Echap" pour quitter sans sauvegarder ou presser
- "Ctrl" ou "F10" pour quitter en sauvegardant.
- </p>
-
-
-
-
- <p>A partir de cet &eacute;cran, il est possible de param&eacute;trer des pr&eacute;f&eacute;rences
- personnelles :
- </p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Menu">
+ <p class="title"><b>Menu</b></p>
<ul class="itemizedlist">
<li class="listitem">
-
- <p>S&eacute;lectionner la langue en pressant la touche F2 (en mode Grub Legacy
- uniquement). Il s'agit seulement de la langue pour l'installation (elle peut
- &ecirc;tre diff&eacute;rente de la langue s&eacute;lectionn&eacute;e pour le syst&egrave;me).
- </p>
-
-
-
-
- <p>Utilisez les touches fl&eacute;ch&eacute;es pour s&eacute;lectionner la langue puis presser sur
- la touche Entr&eacute;e.
- </p>
-
-
- <p>Voici par exemple l'&eacute;cran d'accueil en Fran&ccedil;ais si vous utilisez in DVD/CD
- "live". Notez que le menu du DVD/CD "live" ne propose pas : le
- <span class="guilabel">syst&egrave;me de secours</span>, le <span class="guilabel">test de
- m&eacute;moire</span> et <span class="guilabel">l'outil de d&eacute;tection du mat&eacute;riel</span>.
- </p>
+
+ <p><span class="bold"><strong>Installer Mageia</strong></span></p>
-
+ <p>Installer Mageia sur un disque dur. C'est l'option par d&eacute;faut, et elle
+ d&eacute;marrera automatiquement apr&egrave;s quelques secondes si aucune autre option
+ n'est s&eacute;lectionn&eacute;e.
+ </p>
+
</li>
<li class="listitem">
-
- <p>Modifier la r&eacute;solution de l'&eacute;cran en pressant la touche F3 (en mode Grub
- Legacy uniquement).
- </p>
+
+ <p><span class="bold"><strong>Syst&egrave;me de r&eacute;cup&eacute;ration</strong></span></p>
-
+ <p>Cette option vous permet soit de r&eacute;installer le programme d'amor&ccedil;age pour
+ une installation de Mageia existante, soit de restaurer un programme
+ d'amor&ccedil;age de Windows.
+ </p>
+
</li>
<li class="listitem">
-
- <p>Ajouter certaines options du noyau en pressant la touche <span class="bold"><strong>F6</strong></span> en mode Grub Legacy ou la touche <span class="bold"><strong>e</strong></span> en mode UEFI.
- </p>
-
-
- <p>Si l'installation &eacute;choue, il peut alors &ecirc;tre n&eacute;cessaire de r&eacute;essayer en
- utilisant l'une des options sp&eacute;ciales. Le menu appel&eacute; par la touche F6
- affiche une nouvelle ligne appel&eacute;e <span class="guilabel">Options de
- d&eacute;marrage</span> et propose quatre entr&eacute;es :
- </p>
-
-
- <p>- par d&eacute;faut. Cela ne modifie rien dans les options par d&eacute;faut.</p>
-
-
- <p>- par d&eacute;faut. Cela ne modifie rien dans les options par d&eacute;faut.</p>
-
-
- <p>- pas d'ACPI (Advanced Configuration and Power Interface), la gestion de
- l'alimention n'est pas prise en compte.
- </p>
-
-
- <p>- Pas d'APIC (Advanced Programmable Interrupt Controller) local. Ceci ne
- concerne que le fonctionnement interne de l'Unit&eacute; Centrale, s&eacute;lectionnez
- cette option uniquement si on vous le demande.
- </p>
-
-
- <p>Si vous s&eacute;lectionnez l'une de ces entr&eacute;es, cela modifie les options par
- d&eacute;faut affich&eacute;es dans la ligne <span class="guilabel">Options de d&eacute;marrage</span>.
- </p>
-
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Dans certaines versions de Mageia, il peut arriver que les entr&eacute;es
- s&eacute;lectionn&eacute;es avec la touche F6 n'apparaissent pas dans la ligne
- <span class="guilabel">Options de d&eacute;marrage</span>, cependant elles sont bien prises
- en compte.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+
+ <p><span class="bold"><strong>Test de la m&eacute;moire vive</strong></span></p>
-
+ <p>Test de la RAM install&eacute;e en r&eacute;alisant plusieurs op&eacute;ration de lecture et
+ d'&eacute;criture. L'ordinateur red&eacute;marrera &agrave; la fin du test.
+ </p>
+
</li>
<li class="listitem">
-
- <p>Ajouter plus d'options du noyau en pressant la touche F1 (en mode Grub
- Legacy uniquement).
- </p>
-
-
- <p>Presser la touche F1 ouvre une nouvelle fen&ecirc;tre avec plus d'options
- disponibles. S&eacute;lectionnez-en une avec les touches directionnelles, puis
- pressez "Entr&eacute;e" pour obtenir plus de d&eacute;tails ou la touche d'&eacute;chappement Esc
- pour revenir vers l'&eacute;cran d'accueil.
- </p>
-
-
-
-
- <p>La vue d&eacute;taill&eacute;e sur l'option splash. Pressez la touche Echappement ou
- s&eacute;lectionnez <span class="guilabel">Retournez vers les options de d&eacute;marrage</span>
- pour revenir vers la liste des options. Ces options peuvent &ecirc;tre ajout&eacute;es
- manuellement sur la ligne <span class="guilabel">options de D&eacute;marrage</span>.
- </p>
-
-
-
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>L'aide est traduite dans la langue s&eacute;lectionn&eacute;e en pressant la touche F2.</p>
-
- </td>
- </tr>
- </table>
- </div>
+
+ <p><span class="bold"><strong>F2 : Langage</strong></span></p>
-
- <p>Pour plus d'information sur les options du noyau sur les syst&egrave;mes en mode
- Legacy ou avec UEFI, consulter : <a class="ulink" href="https://wiki.mageia.org/en/How_to_set_up_kernel_options" target="_top">https://wiki.mageia.org/en/How_to_set_up_kernel_options</a></p>
+ <p>Appuyez sur F2 pour changer de langue.</p>
+
</li>
</ul>
</div>
@@ -226,11 +211,11 @@
</div>
- <div class="section" title="Utilisation d'un r&eacute;seau filaire">
+ <div class="section" title="syst&egrave;mes UEFI">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e285"></a>Utilisation d'un r&eacute;seau filaire
+ <h4 class="title"><a name="d5e310"></a>syst&egrave;mes UEFI
</h4>
</div>
</div>
@@ -238,100 +223,59 @@
- <p>Voici l'&eacute;cran d'accueil par d&eacute;faut si vous utilisez un CD d'installation par
- le R&eacute;seau (les images netinstall.iso ou netinstall-nonfree.iso) :
+ <p>A partir de cet &eacute;cran, vous pouvez acc&eacute;der &agrave; des options en pressant la
+ lettre <span class="keycap"><strong>e</strong></span> pour entrer dans le mode d'&eacute;dition. Pour revenir &agrave;
+ cet &eacute;cran, presser soit la touche <span class="keycap"><strong>Echap</strong></span> pour quitter sans
+ sauvegarder ou presser <span class="keycap"><strong>F10</strong></span> pour quitter en sauvegardant.
</p>
- <p>Cela ne permet pas de modifier la langue, les options disponibles sont
- d&eacute;crites dans l'&eacute;cran. Pour plus d'information sur l'utilisation d'un CD
- d'installation par le R&eacute;seau, consulter <a class="ulink" href="https://wiki.mageia.org/en/Boot.iso_install" target="_top">le Wiki Mageia</a></p>
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Le clavier est Am&eacute;ricain.</p>
-
- </td>
- </tr>
- </table>
+ <div class="itemizedlist" title="Menu">
+ <p class="title"><b>Menu</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Installer :</strong></span> D&eacute;marrer le processus
+ d'installation
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Syst&egrave;me de secours :</strong></span> Cette option vous
+ permet de r&eacute;installer le programme d'amor&ccedil;age pour une installation de
+ Mageia existante, ou de restaurer un programme d'amor&ccedil;age de Windows.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>F2 : Langage</strong></span> Appuyer sur
+ <span class="keycap"><strong>F2</strong></span> pour d'autres langages.
+ </p>
+
+ </li>
+ </ul>
</div>
+ <p>Si vous avez d&eacute;marr&eacute; &agrave; partir d'une cl&eacute; USB, vous disposez de deux lignes
+ suppl&eacute;mentaires, et dans ce cas, vous devez s&eacute;lectionner celles qui ont le
+ suffixe "USB".
+ </p>
</div>
</div>
- <div class="section" title="Les &eacute;tapes de l'installation">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e295"></a>Les &eacute;tapes de l'installation
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Le processus d'installation se divise en &eacute;tapes successives qui peuvent &ecirc;tre
- suivies dans le panneau lat&eacute;ral &agrave; gauche de l'&eacute;cran.
- </p>
-
-
- <p>Chaque &eacute;tape contient un ou plusieurs &eacute;crans qui peuvent &agrave; leur tour
- pr&eacute;senter un bouton <span class="guibutton">Avanc&eacute;</span> qui offre des options
- suppl&eacute;mentaires moins communes.
- </p>
-
-
- <p>La plupart des &eacute;crans pr&eacute;sentent un bouton d'<span class="guibutton">Aide</span> qui
- apporte davantage d'explications au sujet de l'&eacute;tape en cours.
- </p>
-
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Si vous d&eacute;cidez d'arr&ecirc;ter l'installation &agrave; un moment donn&eacute; de son
- d&eacute;roulement, il est possible de red&eacute;marrer, mais bien y r&eacute;fl&eacute;chir
- avant. Lorsqu'une partition a &eacute;t&eacute; format&eacute;e ou lorsque des mises &agrave; jour ont
- commenc&eacute; &agrave; &ecirc;tre &eacute;crites, l'ordinateur n'est plus dans le m&ecirc;me &eacute;tat et le
- red&eacute;marrage peut tr&egrave;s bien rendre le syst&egrave;me inutilisable. Si malgr&eacute; tout,
- vous &ecirc;tes s&ucirc;rs de vouloir red&eacute;marrer, ouvrir une console en appuyant
- simultan&eacute;ment sur les trois touches <span class="guibutton">alt ctrl
- F2</span>. Ensuite appuyer simultan&eacute;ment sur les trois touches
- <span class="guibutton">alt ctrl suppr</span> pour red&eacute;marrer.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- </div>
-
-
<div class="section" title="Probl&egrave;mes d'installation et solutions possibles">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e306"></a>Probl&egrave;mes d'installation et solutions possibles
+ <h3 class="title"><a name="d5e332"></a>Probl&egrave;mes d'installation et solutions possibles
</h3>
</div>
</div>
@@ -343,7 +287,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e308"></a>Pas d'interface graphique
+ <h4 class="title"><a name="d5e334"></a>Pas d'interface graphique
</h4>
</div>
</div>
@@ -355,21 +299,22 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>Apr&egrave;s l'&eacute;cran initial, vous n'obtenez pas l'&eacute;cran de s&eacute;lection de la
- langue. Cela peut arriver avec certaines cartes graphiques et vieux
- syst&egrave;mes. Essayez d'utiliser une basse r&eacute;solution en tapant
- <code class="code">vgalo</code> &agrave; l'invite.
+ <p>Apr&egrave;s l'&eacute;cran initial, vous n'obtenez pas l'&eacute;cran de <span class="emphasis"><em>s&eacute;lection de
+ la langue</em></span>. Cela peut arriver avec certaines cartes graphiques et
+ vieux syst&egrave;mes. Essayez d'utiliser une basse r&eacute;solution en tapant
+ <span class="command"><strong>vgalo</strong></span> dans l'invite de commande.
</p>
</li>
<li class="listitem">
- <p>Si le mat&eacute;riel est tr&egrave;s ancien, une installation graphique pourrait &ecirc;tre
- impossible. Dans ce cas il vaut mieux essayer une installation en mode
- texte. Pour utiliser celle-ci pressez la touche Echappement/ESC au premier
- &eacute;cran d'accueil et confirmez avec ENTREE. Un &eacute;cran noir s'affichera avec le
- mot "boot:". Tapez "text" et pressez ENTREE. Maintenant continuez
- l'installation en mode texte.
+ <p>Si le mat&eacute;riel est tr&egrave;s ancien, une installation graphique peut s'av&eacute;rer
+ impossible. Dans ce cas, il vaut mieux essayer une installation en mode
+ texte. Pour cela, appuyez sur la touche <span class="keycap"><strong>&Eacute;chap</strong></span> au premier
+ &eacute;cran d'accueil, et confirmez en appuyant sur <span class="keycap"><strong>Entr&eacute;e</strong></span>. Un
+ &eacute;cran noir avec le mot <code class="prompt">boot:</code> va s'afficher. Tapez
+ <span class="command"><strong>text</strong></span> et appuyez sur <span class="keycap"><strong>Entr&eacute;e</strong></span> pour
+ continuer l'installation en mode texte.
</p>
</li>
@@ -383,7 +328,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e316"></a>L'installation se fige
+ <h4 class="title"><a name="d5e348"></a>L'installation se fige
</h4>
</div>
</div>
@@ -393,9 +338,9 @@
<p>Si le syst&egrave;me semble se figer pendant l'installation, cela peut provenir
d'un probl&egrave;me de d&eacute;tection du mat&eacute;riel. Dans ce cas, la d&eacute;tection
- automatique peut &ecirc;tre escamot&eacute;e et trait&eacute;e ult&eacute;rieurement. Pour tenter
- cela, tapez <code class="code">noauto</code> &agrave; l'invite. Cette option peut &ecirc;tre combin&eacute;e
- avec les pr&eacute;c&eacute;dentes si n&eacute;cessaire..
+ automatique peut &ecirc;tre escamot&eacute;e et trait&eacute;e ult&eacute;rieurement. Pour tenter cela,
+ tapez <span class="command"><strong>noauto</strong></span> &agrave; l'invite. Cette option peut &ecirc;tre combin&eacute;e
+ avec les pr&eacute;c&eacute;dentes si n&eacute;cessaire.
</p>
</div>
@@ -405,7 +350,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e320"></a>Probl&egrave;me de m&eacute;moire vive
+ <h4 class="title"><a name="d5e352"></a>Probl&egrave;me de m&eacute;moire vive
</h4>
</div>
</div>
@@ -415,9 +360,10 @@
<p>Cela sera rarement n&eacute;cessaire, mais dans certains cas, le mat&eacute;riel peut
d&eacute;tecter la m&eacute;moire vive (RAM) disponible de mani&egrave;re incorrecte. Pour la
- sp&eacute;cifier manuellement, utilisez le param&egrave;tre <code class="code">mem=xxxM</code> o&ugrave; xxx
- est la quantit&eacute; correcte de RAM. Par exemple <code class="code">mem=256M</code> pour
- sp&eacute;cifier 256Mo de RAM.
+ sp&eacute;cifier manuellement, utilisez le param&egrave;tre
+ <code class="literal">mem=<em class="replaceable"><code>xxx</code></em>M</code> o&ugrave;
+ <em class="replaceable"><code>xxx</code></em> est la quantit&eacute; correcte de RAM. Par exemple
+ <code class="literal">mem=256M</code> pour sp&eacute;cifier 256Mo de RAM.
</p>
</div>
@@ -427,7 +373,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e325"></a>Partitions dynamiques
+ <h4 class="title"><a name="d5e359"></a>Partitions dynamiques
</h4>
</div>
</div>
@@ -435,21 +381,17 @@
- <p>Si vous avez converti votre disque dur d'un format "primaire" vers un format
- "dynamique" dans Microsoft Windows, vous devez savoir qu'il est impossible
- d'installer Mageia sur ce disque. Pour revenir vers un format primaire,
- consultez la documentation Microsoft : <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
+ <p>Si vous avez converti votre disque dur d'un format
+ <code class="literal">primaire</code> vers un format <code class="literal">dynamique</code> dans
+ Microsoft Windows, alors il est impossible d'installer Mageia sur ce
+ dique. Pour revenir vers un format <code class="literal">primaire</code>, consultez la
+ documentation Microsoft : <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
</p>
</div>
</div>
-
- <div class="section">
- <div class="titlepage"></div>
- </div>
-
</div>
</body>
</html>
diff --git a/fr/media_selection.html b/fr/media_selection.html
index ee14d7f..ac446de 100644
--- a/fr/media_selection.html
+++ b/fr/media_selection.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>S&eacute;lection des m&eacute;dia (Nonfree)</title>
+ <title>D&eacute;p&ocirc;ts disponibles</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="add_supplemental_media.html" title="S&eacute;lection de m&eacute;dia (Configurer l'installation de m&eacute;dia suppl&eacute;mentaires)">
+ <link rel="prev" href="add_supplemental_media.html" title="M&eacute;dia d'installation suppl&eacute;mentaire">
<link rel="next" href="chooseDesktop.html" title="S&eacute;lection du bureau"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="fr" class="section" title="S&eacute;lection des m&eacute;dia (Nonfree)">
+ <div lang="fr" class="section" title="D&eacute;p&ocirc;ts disponibles">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="media_selection"></a>S&eacute;lection des m&eacute;dia (Nonfree)
+ <h2 class="title"><a name="media_selection"></a>D&eacute;p&ocirc;ts disponibles
</h2>
</div>
</div>
@@ -25,11 +25,18 @@
+
+
+
+
+
+
+
<p>Vous avez ici la liste des d&eacute;p&ocirc;ts disponibles. Leur disponibilit&eacute; d&eacute;pend du
@@ -54,7 +61,7 @@
gratuits, Mageia peut donc les distribuer, mais ils contiennent du logiciel
soumis &agrave; des droits (d'o&ugrave; le nom Nonfree, signifiant Non libre). Par
exemple, dans ce d&eacute;p&ocirc;t se trouvent les pilotes propri&eacute;taires des cartes
- graphiques nVidia et ATI, les firmwares de diverses cartes Wifi, etc.
+ graphiques nVidia et AMD, les firmwares de diverses cartes Wifi, etc.
</p>
</li>
@@ -63,7 +70,7 @@
<p>Le d&eacute;p&ocirc;t <span class="emphasis"><em>Tainted</em></span> comprend les paquetages publi&eacute;s sous
licence libre. La principale raison qui fait placer un paquetage dans ce
d&eacute;p&ocirc;t est qu'il peut violer des lois de protection des droits d'auteur dans
- certains pays, en g&eacute;n&eacute;ral, des codecs Multimedia n&eacute;cessaires &agrave; l'ex&eacute;cution
+ certains pays, en g&eacute;n&eacute;ral, des codecs multim&eacute;dia n&eacute;cessaires &agrave; l'ex&eacute;cution
de divers fichiers audio/video; ou bien des paquetages n&eacute;cessaires pour
jouer des DVD vid&eacute;o commerciaux, etc.
</p>
diff --git a/fr/minimal-install.html b/fr/minimal-install.html
index 2a07e5a..6d81a32 100644
--- a/fr/minimal-install.html
+++ b/fr/minimal-install.html
@@ -22,48 +22,75 @@
</div>
</div>
</div>
-
+
+
+
+
- <p>Il est possible de choisir une installation minimale en d&eacute;-s&eacute;lectionnant
- tout dans l'&eacute;cran S&eacute;lection du groupe de paquetages, voir <a class="xref" href="choosePackageGroups.html" title="S&eacute;lection du groupe de paquetages">la section intitul&eacute;e &laquo;&nbsp;S&eacute;lection du groupe de paquetages&nbsp;&raquo;</a>.
- </p>
+
- <p>Si vous le souhaitez, vous pouvez &eacute;galement cocher l'option "S&eacute;lection
- individuelle des paquetages" dans le m&ecirc;me &eacute;cran.
- </p>
+
- <p>L'installation minimale est destin&eacute;e &agrave; ceux qui utilisent
- <span class="application">Mageia</span> pour des cas sp&eacute;cifiques, tels qu'un
- serveur ou une station de travail sp&eacute;cialis&eacute;e. Vous utiliserez probablement
- cette option en combinaison avec la "s&eacute;lection individuelle des paquetages"
- mentionn&eacute;e ci-dessus, pour r&eacute;gler finement votre installation. Pour plus de
- d&eacute;tails, consultez <a class="xref" href="choosePackagesTree.html" title="Choisir individuellement des paquetages">la section intitul&eacute;e &laquo;&nbsp;Choisir individuellement des paquetages&nbsp;&raquo;</a>.
- </p>
+
- <p>Avec le choix de cette classe d'installation, l'&eacute;cran suivant propose
- d'installer quelques extras utiles tels que de la documentation et X.
+ <p>L'installation minimale est destin&eacute;e &agrave; ceux qui envisagent des utilisations
+ sp&eacute;cifiques de Mageia, telles qu'un serveur ou une station de travail
+ sp&eacute;cialis&eacute;e. Vous utiliserez probablement cette option en combinaison avec
+ la <span class="emphasis"><em>s&eacute;lection individuelle des paquetages</em></span> mentionn&eacute;e
+ ci-dessus, pour r&eacute;gler finement votre installation. Pour plus de d&eacute;tails,
+ consultez <a class="xref" href="choosePackagesTree.html" title="Choisir individuellement des paquetages">Choose Packages Tree</a>.
</p>
+
- <p>Si vous avez s&eacute;lectionn&eacute; "Avec X", il incluera &eacute;galement IceWM en tant
- qu'environnement de bureau l&eacute;ger.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>Il est possible de choisir une <span class="emphasis"><em>installation minimale</em></span>en
+ d&eacute;-s&eacute;lectionnant tout dans l'&eacute;cran <span class="emphasis"><em>S&eacute;lection du groupe de
+ paquetages</em></span>, voir <a class="xref" href="choosePackageGroups.html" title="S&eacute;lection du groupe de paquetages">Choose Package Groups</a>.
+ </p>
+
+
+ <p>Si vous le souhaitez, vous pouvez &eacute;galement cocher l'option
+ <span class="emphasis"><em>S&eacute;lection individuelle des paquetages</em></span> sur le m&ecirc;me
+ &eacute;cran.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Si vous choisissez cette m&eacute;thode d'installation, l'&eacute;cran correspondant vous
+ proposera d'installer quelques outils utiles, tels que de la documentation
+ et le serveur graphique <span class="quote">&laquo;&nbsp;<span class="quote">X</span>&nbsp;&raquo;</span>.
+ </p>
+
+
+ <p>Si vous choisissez <span class="emphasis"><em>Avec serveur X</em></span>, alors IceWM (un
+ environnement de bureau tr&egrave;s l&eacute;ger) sera &eacute;galement install&eacute;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <p>La documentation de base est fournie sous la forme de pages man ou de pages
- info. Elle contient les pages man du <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Projet de Documentation
- Linux</a> et les pages info des <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">utilitaires
+ <p>La documentation de base est fournie sous la forme de pages
+ <span class="quote">&laquo;&nbsp;<span class="quote">man</span>&nbsp;&raquo;</span> et <span class="quote">&laquo;&nbsp;<span class="quote">info</span>&nbsp;&raquo;</span>. Elle contient les pages man du
+ <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Projet de
+ Documentation Linux</a> et des pages infos des <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">utilitaires
GNU</a>.
</p>
-
</div>
</body>
</html>
diff --git a/fr/misc-params.html b/fr/misc-params.html
index 3582f1b..4e4035c 100644
--- a/fr/misc-params.html
+++ b/fr/misc-params.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>R&eacute;sum&eacute; des diff&eacute;rents param&egrave;tres</title>
+ <title>R&eacute;sum&eacute; de votre configuration</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="fr" class="section" title="R&eacute;sum&eacute; des diff&eacute;rents param&egrave;tres">
+ <div lang="fr" class="section" title="R&eacute;sum&eacute; de votre configuration">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="misc-params"></a>R&eacute;sum&eacute; des diff&eacute;rents param&egrave;tres
+ <h2 class="title"><a name="misc-params"></a>R&eacute;sum&eacute; de votre configuration
</h2>
</div>
</div>
@@ -29,10 +29,20 @@
- <p><a name="misc-params-pa1"></a>DrakX a fait les choix judicieux pour la configuration du syst&egrave;me en tenant
- compte des choix faits par vous-m&ecirc;me et du mat&eacute;riel d&eacute;tect&eacute;. Il est possible
- ici de v&eacute;rifier les param&egrave;tres et de les changer si souhait&eacute; en cliquant sur
- <span class="guibutton">Configurer</span>.
+
+
+
+
+
+
+
+
+
+
+ <p><a name="misc-params-pa1"></a>DrakX sugg&egrave;re des r&eacute;glages judicieux pour la configuration du syst&egrave;me en
+ tenant compte des choix faits par vous-m&ecirc;me et du mat&eacute;riel d&eacute;tect&eacute;. Il est
+ possible ici de v&eacute;rifier les param&egrave;tres et de les changer si souhait&eacute; en
+ cliquant sur <span class="emphasis"><em>Configurer</em></span>.
</p>
@@ -45,8 +55,8 @@
<tr>
<td align="left" valign="top">
- <p>En r&eacute;gle g&eacute;n&eacute;rale, les param&egrave;tres par d&eacute;faut sont recommand&eacute;s et vous pouvez
- les garder, sauf trois exceptions :
+ <p>En r&egrave;gle g&eacute;n&eacute;rale, il est recommand&eacute; de conserver les param&egrave;tres par d&eacute;faut,
+ sauf si :
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
@@ -62,8 +72,8 @@
</li>
<li class="listitem">
- <p>Une recommandation contraire est donn&eacute;e dans les sections d&eacute;taill&eacute;es
- ci-dessous
+ <p>un autre &eacute;l&eacute;ment mentionn&eacute; dans les sections d&eacute;taill&eacute;es ci-dessous pose
+ probl&egrave;me.
</p>
</li>
@@ -92,65 +102,62 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-system-pa2"></a><span class="guilabel">Fuseau horaire :</span></p>
+ <p><a name="misc-params-system-pa2"></a><span class="bold"><strong>Fuseau horaire</strong></span></p>
- <p><a name="misc-params-system-pa2a"></a>DrakX a s&eacute;lectionn&eacute; un fuseau horaire en fonction de la langue pr&eacute;f&eacute;r&eacute;e. Le
- modifier si n&eacute;cessaire. Voir aussi <a class="xref" href="configureTimezoneUTC.html" title="Configurer le fuseau horaire">la section intitul&eacute;e &laquo;&nbsp;Configurer le fuseau horaire&nbsp;&raquo;</a></p>
+ <p><a name="misc-params-system-pa2a"></a>DrakX s&eacute;lectionne un fuseau horaire en fonction de la langue choisie. Vous
+ pouvez le modifier si n&eacute;cessaire. Voir aussi <a class="xref" href="configureTimezoneUTC.html" title="Configurer le fuseau horaire">Configure Timezone</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa3"></a><span class="guilabel">Pays / R&eacute;gion :</span></p>
+ <p><a name="misc-params-system-pa3"></a><span class="bold"><strong>Pays / R&eacute;gion</strong></span></p>
- <p><a name="misc-params-system-pa3a"></a>Si vous ne vivez pas dans le pays s&eacute;lectionn&eacute;, il est tr&egrave;s important de
- rectifier. Voir <a class="xref" href="selectCountry.html" title="S&eacute;lection du Pays / R&eacute;gion">la section intitul&eacute;e &laquo;&nbsp;S&eacute;lection du Pays / R&eacute;gion&nbsp;&raquo;</a></p>
+ <p><a name="misc-params-system-pa3a"></a>Si le pays s&eacute;lectionn&eacute; est erron&eacute;, il est tr&egrave;s important de rectifier ce
+ param&egrave;tre. Voir <a class="xref" href="selectCountry.html" title="S&eacute;lection du Pays / R&eacute;gion">Select Country</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa4"></a><span class="guilabel">Chargeur de d&eacute;marrage : </span></p>
+ <p><a name="misc-params-system-pa4"></a><span class="bold"><strong>Gestionnaire d'amor&ccedil;age</strong></span></p>
- <p><a name="misc-params-system-pa4a"></a>DrakX a fait les bons choix pour le param&eacute;trage du chargeur de d&eacute;marrage.
+ <p><a name="misc-params-system-pa4a"></a>Proposition de Drakx pour le param&eacute;trage du programme d'amor&ccedil;age
</p>
- <p><a name="misc-params-system-pa4b"></a>Ne changez rien &agrave; moins de bien savoir comment configurer Grub2
- </p>
+ <p><a name="misc-params-system-pa4b"></a>Ne rien modifier a moins de conna&icirc;tre comment configurer GRUB2. Pour plus
+ d'informations, voir <a class="xref" href="setupBootloader.html" title="Programme d'amor&ccedil;age">Bootloader</a></p>
- <p><a name="misc-params-system-pa4c"></a>Pour plus d'informations, voir <a class="xref" href="setupBootloader.html" title="Principales options du chargeur de d&eacute;marrage">la section intitul&eacute;e &laquo;&nbsp;Principales options du chargeur de d&eacute;marrage&nbsp;&raquo;</a></p>
+
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa5"></a><span class="guilabel">Gestion de l'utilisateur :</span></p>
+ <p><a name="misc-params-system-pa5"></a><span class="bold"><strong>Gestion des utilisateurs</strong></span></p>
<p><a name="misc-params-system-pa5a"></a>Il est possible d'ajouter des utilisateurs suppl&eacute;mentaires ici. Chacun se
- verra attribuer son propre r&eacute;pertoire <code class="literal">/home</code>.
+ verra attribuer son propre r&eacute;pertoire <code class="filename">/home</code>.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa6"></a><span class="guilabel">Services :</span></p>
+ <p><a name="misc-params-system-pa6"></a><span class="bold"><strong>Services</strong></span></p>
<p><a name="misc-params-system-pa6a"></a>Les services syst&egrave;mes sont ces petits programmes ex&eacute;cut&eacute;s en t&acirc;che de fond
(d&eacute;mons). Cet outil permet d'autoriser ou interdire l'ex&eacute;cution de certaines
- t&acirc;ches.
+ processus.
</p>
<p><a name="misc-params-system-pa6b"></a>Soyez s&ucirc;rs de ce que vous fa&icirc;tes avant de changer quoi que ce soit ici - une
- erreur peut emp&ecirc;cher le fonctionnement correct de l'ordinateur.
- </p>
-
-
- <p>Pour plus d'informations, voir <a class="xref" href="configureServices.html" title="Configurer les Services">la section intitul&eacute;e &laquo;&nbsp;Configurer les Services&nbsp;&raquo;</a></p>
+ erreur peut emp&ecirc;cher le fonctionnement correct de l'ordinateur. Pour plus
+ d'informations, voir <a class="xref" href="configureServices.html" title="Configurer les Services">Configure Services</a></p>
</li>
</ul>
@@ -175,12 +182,11 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-hardware-pa1"></a><span class="guilabel">Clavier </span>:
- </p>
+ <p><a name="misc-params-hardware-pa1"></a><span class="bold"><strong>Clavier</strong></span></p>
- <p><a name="misc-params-hardware-pa1a"></a>C'est l'endroit o&ugrave; configurer la disposition du clavier, lequel d&eacute;pend du
- pays, de la langue ou du type de clavier.
+ <p><a name="misc-params-hardware-pa1a"></a>Configurez la disposition de votre clavier en fonction de votre
+ localisation, de votre langue et de votre type de clavier.
</p>
@@ -205,7 +211,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa2"></a><span class="guilabel">Souris :</span></p>
+ <p><a name="misc-params-hardware-pa2"></a><span class="bold"><strong>Souris</strong></span></p>
<p><a name="misc-params-hardware-pa2a"></a>Configurer ou ajouter ici d'autres p&eacute;riph&eacute;riques de pointage, tablettes,
@@ -215,28 +221,31 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa3"></a><span class="guilabel">Carte son :</span></p>
+ <p><a name="misc-params-hardware-pa3"></a><span class="bold"><strong>Carte son</strong></span></p>
+
+
+ <p><a name="misc-params-hardware-pa3a"></a>L'installateur utilisera le pilote par d&eacute;faut s'il y en a un de disponible.
+ </p>
- <p><a name="misc-params-hardware-pa3a"></a>L'installeur s&eacute;lectionne le pilote par d&eacute;faut, s'il en existe un. L'option
- de s&eacute;lection d'un pilote diff&eacute;rent n'est fournie que s'il existe plus d'un
- pilote pour votre carte, mais qu'aucun d'entre eux n'est celui par d&eacute;faut.
+ <p>S'il n'existe aucun pilote par d&eacute;faut pour votre carte son, il est peut-&ecirc;tre
+ possible de choisir parmi d'autres pilotes. Si c'est le cas, ou si vous
+ pensez que l'installeur n'a pas fait le meilleur choix, cliquez sur
+ <span class="emphasis"><em>Avanc&eacute;</em></span> pour choisir le pilote manuellement.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa4"></a><span class="guilabel">Interface graphique : </span></p>
+ <p><a name="misc-params-hardware-pa4"></a><span class="bold"><strong>Interface graphique</strong></span></p>
<p><a name="misc-params-hardware-pa4a"></a>Cette partie permet la configuration de la(des) carte(s) graphique(s) et de
- l'affichage.
- </p>
+ l'affichage. Pour plus d'informations, voir <a class="xref" href="configureX_chooser.html" title="Configuration de X, de la carte graphique et du moniteur">la section intitul&eacute;e &laquo;&nbsp;Configuration de X, de la carte graphique et du moniteur&nbsp;&raquo;</a></p>
- <p><a name="misc-params-hardware-pa4b"></a>Pour plus d'informations voir <a class="xref" href="configureX_chooser.html" title="Configuration de X, de la carte graphique et du moniteur">la section intitul&eacute;e &laquo;&nbsp;Configuration de X, de la carte graphique et du moniteur&nbsp;&raquo;</a>.
- </p>
+
</li>
</ul>
</div>
@@ -262,14 +271,13 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-network-pa1"></a><span class="guilabel">R&eacute;seau :</span></p>
+ <p><a name="misc-params-network-pa1"></a><span class="bold"><strong>R&eacute;seau</strong></span></p>
<p><a name="misc-params-network-pa2"></a>Il est possible de configurer le r&eacute;seau ici, mais pour les cartes r&eacute;seau
exigeant un pilote non libre, il est pr&eacute;f&eacute;rable de le faire apr&egrave;s le
- red&eacute;marrage, dans le <span class="application">Centre de Contr&ocirc;le de
- Mageia</span>, si vous n'avez pas encore valid&eacute; les d&eacute;p&ocirc;ts de m&eacute;dia
- non libres (nonfree).
+ red&eacute;marrage, dans le Centre de Contr&ocirc;le de Mageia, si vous n'avez pas encore
+ valid&eacute; les d&eacute;p&ocirc;ts de m&eacute;dia non libres <span class="emphasis"><em>nonfree</em></span>.
</p>
@@ -282,8 +290,8 @@
<tr>
<td align="left" valign="top">
- <p><a name="misc-params-network-pa3"></a>Lors de l'ajout d'une carte r&eacute;seau, ne pas oublier de param&eacute;trer le pare-feu
- pour qu'il surveille aussi cette interface.
+ <p><a name="misc-params-network-pa3"></a>Lorsque vous ajoutez une carte r&eacute;seau, n'oubliez pas de configurer votre
+ pare-feu pour qu'il surveille aussi cette interface.
</p>
</td>
@@ -294,8 +302,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-network-pa4"></a><span class="guilabel">Proxies</span>:
- </p>
+ <p><a name="misc-params-network-pa4"></a><span class="bold"><strong>Proxy</strong></span></p>
<p><a name="misc-params-network-pa4a"></a>Un serveur Proxy (aussi appel&eacute; serveur mandataire) se comporte en
@@ -331,34 +338,36 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-security-pa1"></a><span class="guilabel">Niveau de s&eacute;curit&eacute;</span> :
- </p>
+ <p><a name="misc-params-security-pa1"></a><span class="bold"><strong>Niveau de s&eacute;curit&eacute;</strong></span></p>
- <p><a name="misc-params-security-pa1a"></a>R&eacute;gler ici le niveau de s&eacute;curit&eacute; choisi pour l'ordinateur, le plus souvent
- les valeurs par d&eacute;faut (Standard) conviennent pour un usage g&eacute;n&eacute;ral.
- </p>
-
-
- <p><a name="misc-params-security-pa1b"></a>Cocher l'option qui convient le mieux &agrave; votre utilisation de l'ordinateur.
+ <p><a name="misc-params-security-pa1a"></a>Le niveau de s&eacute;curit&eacute; choisi pour l'ordinateur, le plus souvent les valeurs
+ par d&eacute;faut (Standard) conviennent pour un usage g&eacute;n&eacute;ral. S&eacute;lectionner
+ l'option qui convient le mieux &agrave; votre usage.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-security-pa2"></a><span class="guilabel">Pare-feu</span> :
+ <p><a name="misc-params-security-pa2"></a><span class="bold"><strong>Pare-feu</strong></span></p>
+
+
+ <p><a name="misc-params-security-pa2b"></a>Le pare-feu vous permet de g&eacute;rer les connexions r&eacute;seau autoris&eacute;es sur votre
+ ordinateur. L'option par d&eacute;faut ne permet AUCUNE connexion ext&eacute;rieure. Cela
+ ne vous emp&ecirc;che pas de vous connecter vers l'ext&eacute;rieur et d'utiliser votre
+ ordinateur normalement.
</p>
- <p><a name="misc-params-security-pa2a"></a>Un pare-feu tente de se dresser en barri&egrave;re entre les donn&eacute;es importantes
- sur l'ordinateur et les voyous qui tournent autour, depuis internet, et qui
- cherchent &agrave; les compromettre ou &agrave; les voler.
+ <p>N'oubliez pas qu'Internet est un r&eacute;seau &agrave; haut risque o&ugrave; les tentatives
+ d'attaques contre les syst&egrave;mes sont continues. M&ecirc;me des connexions
+ apparemment <span class="quote">&laquo;&nbsp;<span class="quote">s&eacute;curis&eacute;es</span>&nbsp;&raquo;</span> telles que ICMP (pour les pings) ont
+ d&eacute;j&agrave; &eacute;t&eacute; utilis&eacute;es comme par des personnes malveillantes pour exfiltrer des
+ donn&eacute;es.
</p>
- <p><a name="misc-params-security-pa2b"></a>Selectionnez les services que vous souhaitez voir acc&eacute;der &agrave; votre
- syst&egrave;me. Votre choix d&eacute;pend de l'utilisation envisag&eacute;e de l'ordinateur. Pour
- plus d'informations, voir <a class="xref" href="firewall.html" title="Pare-feu">la section intitul&eacute;e &laquo;&nbsp;Pare-feu&nbsp;&raquo;</a>.
+ <p>Pour plus d'informations, voir <a class="xref" href="">???</a>.
</p>
@@ -371,7 +380,8 @@
<tr>
<td align="left" valign="top">
- <p><a name="misc-params-security-pa2c"></a>Garder &agrave; l'esprit que tout autoriser (pas de pare-feu) est tr&egrave;s risqu&eacute;.
+ <p><a name="misc-params-security-pa2c"></a>Garder &agrave; l'esprit que <span class="emphasis"><em>tout</em></span> autoriser (pas de pare-feu)
+ est tr&egrave;s risqu&eacute;.
</p>
</td>
diff --git a/fr/securityLevel.html b/fr/securityLevel.html
index 0221f52..c4ee25d 100644
--- a/fr/securityLevel.html
+++ b/fr/securityLevel.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
<link rel="prev" href="soundConfig.html" title="Configuration du son">
- <link rel="next" href="firewall.html" title="Pare-feu"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="installUpdates.html" title="Mises &agrave; jour"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,29 +22,74 @@
</div>
</div>
</div>
+
+
-
+
-
-
+
+
+
+ <p><span class="bold"><strong>Veuillez choisir le niveau de s&eacute;curit&eacute;
+ souhait&eacute;</strong></span></p>
-
- <p><a name="securityLevel-pa1"></a>Choisir ici le niveau de s&eacute;curit&eacute; souhait&eacute;.
+
+ <p><a name="securityLevel-pa1"></a>Le param&egrave;tre par d&eacute;faut est <span class="emphasis"><em>Standard</em></span>, et il est
+ recommand&eacute; pour l'utilisateur moyen.
</p>
-
- <p><a name="securityLevel-pa2"></a>Laisser les valeurs par d&eacute;faut si les choix &agrave; faire sont inconnus.
+
+ <p><span class="emphasis"><em>S&eacute;curis&eacute;</em></span> mettra en place un syst&egrave;me hautement prot&eacute;g&eacute;,
+ ce param&egrave;tre conviendra si le syst&egrave;me doit &ecirc;tre utilis&eacute; comme serveur
+ public, par exemple.
</p>
-
- <p><a name="securityLevel-pa3"></a>Apr&egrave;s l'installation, il sera toujours possible de r&eacute;gler les param&egrave;tres de
- s&eacute;curit&eacute; dans le volet <span class="guilabel">S&eacute;curit&eacute; </span>dans le Centre de
- Contr&ocirc;le de Mageia.
+
+ <p>Administrateur de s&eacute;curit&eacute;</p>
+
+
+ <p><a name="securityLevel-pa2"></a>Cette rubrique vous permet d'indiquer une adresse e-mail &agrave; laquelle le
+ syst&egrave;me enverra des <span class="emphasis"><em>message d'alerte de s&eacute;curit&eacute;</em></span>
+ lorsqu'il d&eacute;tecte des situations qui n&eacute;cessitent d'&ecirc;tre notifi&eacute;es &agrave; un
+ administrateur syst&egrave;me.
+ </p>
+
+
+ <p>Un choix valide et facile &agrave; mettre en &#339;uvre consiste &agrave; entrer
+ &lt;user&gt;@localhost - o&ugrave; &lt;user&gt; est l'identifiant de l'utilisateur
+ qui sera le destinataire de ces messages.
</p>
+
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Le syst&egrave;me envoie des messages de type <span class="bold"><strong>Unix
+ Mailspool</strong></span>, et non pas des messages SMTP &laquo; ordinaires &raquo; : cet
+ utilisateur doit donc &ecirc;tre correctement configur&eacute; pour recevoir les messages
+ de ce type.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <p><a name="securityLevel-pa3"></a>Apr&egrave;s l'installation, il sera toujours possible de r&eacute;gler les param&egrave;tres de
+ s&eacute;curit&eacute; dans le volet <span class="emphasis"><em>S&eacute;curit&eacute;</em></span> du Centre de Contr&ocirc;le
+ de Mageia.
+ </p>
+
</div>
</body>
</html>
diff --git a/fr/selectCountry.html b/fr/selectCountry.html
index 0b392be..d9534e5 100644
--- a/fr/selectCountry.html
+++ b/fr/selectCountry.html
@@ -29,16 +29,29 @@
- <p><a name="selectCountry-pa1"></a>S&eacute;lectionnez votre pays ou r&eacute;gion. Cela impacte toutes sortes de
- param&eacute;trages importants, comme la monnaie et le domaine r&eacute;glementaire du
- wi-fi. Choisir un pays erron&eacute; peut conduire &agrave; ne pas pouvoir utiliser un
- r&eacute;seau sans fil.
- </p>
- <p><a name="selectCountry-pa2"></a>Si le pays d&eacute;sir&eacute; n'est pas dans la liste, cliquer sur le bouton
- <span class="guilabel">Autres pays</span> et choisir ici le pays ou la r&eacute;gion.
- </p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="selectCountry-pa1"></a>S&eacute;lectionner le pays ou la r&eacute;gion. Cela est important pour d&eacute;finir bien des
+ param&egrave;tres comme la monnaie ou le domaine de r&eacute;gulation du wi-fi. Choisir un
+ pays erron&eacute; peut mener &agrave; l'incapacit&eacute; d'utiliser le r&eacute;seau par wi-fi.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="selectCountry-pa2"></a>Si votre pays n'est pas dans la liste, cliquez sur <span class="emphasis"><em>Autres
+ pays</em></span> et choisissez-y votre pays/r&eacute;gion.
+ </p>
+
+ </li>
+ </ul>
+ </div>
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -50,10 +63,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="selectCountry-pa3"></a>Si le pays d&eacute;sir&eacute; ne figure que dans la liste <span class="guilabel">Autres
- pays</span>, apr&egrave;s avoir cliqu&eacute; sur <span class="guibutton">OK</span>, il peut
- sembler qu'un pays de la premi&egrave;re liste soit s&eacute;lectionn&eacute;. Veuillez ignorer
- cela, DrakX respectera votre choix.
+ <p><a name="selectCountry-pa3"></a>Si votre pays se trouve uniquement dans la liste <span class="emphasis"><em>Autres pays
+ </em></span>, apr&egrave;s avoir cliqu&eacute; sur <span class="emphasis"><em>OK</em></span>, il peut sembler
+ qu'un pays de la premi&egrave;re liste ait &eacute;t&eacute; choisi. N'y pr&ecirc;tez pas attention,
+ DrakX respectera votre choix.
</p>
</td>
@@ -74,14 +87,14 @@
- <p><a name="selectCountry-pa4"></a>Dans l'&eacute;cran <span class="guilabel">Autres pays</span> vous pouvez aussi choisir une
- m&eacute;thode de saisie des caract&egrave;res. Les m&eacute;thodes de saisie permettent
- d'utiliser des caract&egrave;res plurilingues (chinois, japonais, cor&eacute;ens,
- etc.). IBus est la m&eacute;thode de saisie par d&eacute;faut, il ne devrait donc pas &ecirc;tre
- n&eacute;cessaire de la configurer manuellement. D'autres m&eacute;thodes de saisie (SCIM,
- GCIN, HIME, etc) fournissent des fonctions similaires et peuvent &ecirc;tre
- install&eacute;es si vous avez ajout&eacute; le m&eacute;dia HTTP/FTP avant la s&eacute;lection du
- paquetage.
+ <p><a name="selectCountry-pa4"></a>Sur l'&eacute;cran <span class="emphasis"><em>Autres pays</em></span>, vous pouvez aussi s&eacute;lectionner
+ une m&eacute;thode de saisie des caract&egrave;res (&agrave; la fin de la liste). Les m&eacute;thodes de
+ saisie permettent d'utiliser des caract&egrave;res plurilingues (chinois, japonais,
+ cor&eacute;ens, etc.). IBus est la m&eacute;thode de saisie par d&eacute;faut, il ne devrait donc
+ pas &ecirc;tre n&eacute;cessaire de la configurer manuellement. D'autres m&eacute;thodes de
+ saisie (SCIM, GCNI, HIME, etc.) proposent des fonctions similaires et
+ peuvent &ecirc;tre install&eacute;es si vous avez ajout&eacute; les m&eacute;dias HTTP/FTP avant la
+ s&eacute;lection du paquetage.
</p>
@@ -94,10 +107,12 @@
<tr>
<td align="left" valign="top">
- <p><a name="selectCountry-pa5"></a>Si la m&eacute;thode de saisie n'est pas configur&eacute;e pendant la phase
- d'installation, vous pouvez le faire apr&egrave;s le d&eacute;marrage de Mageia par
- "Centre de Contr&ocirc;le de Mageia" -&gt; "Syst&egrave;me", ou en ex&eacute;cutant "localedrake"
- en tant que super-utilisateur.
+ <p><a name="selectCountry-pa5"></a>Si vous avez manqu&eacute; la configuration de la m&eacute;thode de saisie pendant
+ l'installation, vous pourrez y acc&eacute;der apr&egrave;s le red&eacute;marrage de votre
+ syst&egrave;me, via <span class="guimenu">Centre de Contr&ocirc;le
+ Mageia</span> &#8594; <span class="guimenuitem">Syst&egrave;me</span>, ou en
+ ex&eacute;cutant <span class="command"><strong>localedrake</strong></span> en tant que
+ <span class="emphasis"><em>root</em></span>.
</p>
</td>
diff --git a/fr/selectInstallClass.html b/fr/selectInstallClass.html
index a2a9d6f..bccc129 100644
--- a/fr/selectInstallClass.html
+++ b/fr/selectInstallClass.html
@@ -22,6 +22,11 @@
</div>
</div>
</div>
+
+
+
+
+
@@ -30,6 +35,9 @@
+
+
+
@@ -38,73 +46,49 @@
<div class="itemizedlist">
- <ul class="itemizedlist">
+ <ul class="itemizedlist" compact>
<li class="listitem">
- <p>Installation</p>
+ <p><span class="bold"><strong>Installer</strong></span></p>
- <p>Choisir cette option pour une nouvelle installation de
- <span class="application">Mageia</span>.
+ <p>Utilisez cette option pour r&eacute;aliser une installation &agrave; neuf de Mageia. Elle
+ formatera la partition <code class="literal">root</code> (<code class="filename">/</code>) tout
+ en conservant intacte la partition<code class="filename">/home</code> existante (une
+ partition /home distincte, plut&ocirc;t qu'incorpor&eacute;e dans la partition root (/)
+ elle-m&ecirc;me).
</p>
</li>
<li class="listitem">
- <p>Mise &agrave; jour</p>
+ <p><span class="bold"><strong>Mettre &agrave; jour</strong></span></p>
- <p>Si vous disposez de plus d'une installation
- <span class="application">Mageia</span> sur votre ordinateur, l'installeur vous
- permettra de mettre &agrave; niveau l'une d'entre elles avec la derni&egrave;re version
- Mageia.
+ <p>Utilisez cette option pour mettre &agrave; jour une version de Mageia pr&eacute;alablement
+ install&eacute;e.
</p>
-
-
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Seule la mise &agrave; niveau d'une pr&eacute;c&eacute;dente version de Mageia <span class="emphasis"><em>encore
- support&eacute;e</em></span> a &eacute;t&eacute; compl&egrave;tement test&eacute;e. Si vous d&eacute;sirez mettre &agrave;
- niveau une version de Mageia qui n'est plus support&eacute;e, il est pr&eacute;f&eacute;rable de
- r&eacute;aliser une nouvelle installation tout en conservant votre partition
- <code class="literal">/home</code>.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
</li>
</ul>
</div>
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>Si vous d&eacute;cidez d'arr&ecirc;ter l'installation &agrave; un moment donn&eacute; de son
- d&eacute;roulement, il est possible de red&eacute;marrer, mais bien y r&eacute;fl&eacute;chir
- avant. Lorsqu'une partition a &eacute;t&eacute; format&eacute;e ou lorsque des mises &agrave; jour ont
- commenc&eacute; &agrave; &ecirc;tre &eacute;crites, l'ordinateur n'est plus dans le m&ecirc;me &eacute;tat et le
- red&eacute;marrage peut tr&egrave;s bien rendre le syst&egrave;me inutilisable. Si malgr&eacute; tout,
- vous &ecirc;tes s&ucirc;rs de vouloir red&eacute;marrer, ouvrir une console en appuyant
- simultan&eacute;ment sur les trois touches <span class="guibutton">alt ctrl
- F2</span>. Ensuite appuyer simultan&eacute;ment sur les trois touches
- <span class="guibutton">alt ctrl suppr</span> pour red&eacute;marrer.
+ <p>Seule la mise &agrave; jour d'une version pr&eacute;c&eacute;dente de Mageia, et
+ <span class="emphasis"><em>toujours support&eacute;e</em></span> &agrave; la sortie de cet installeur, a &eacute;t&eacute;
+ test&eacute;e en profondeur. Si vous souhaitez mettre &agrave; jour une Mageia qui
+ <span class="quote">&laquo;&nbsp;<span class="quote">n'est plus support&eacute;e</span>&nbsp;&raquo;</span>, alors il est pr&eacute;f&eacute;rable de faire une
+ installation <span class="quote">&laquo;&nbsp;<span class="quote">propre</span>&nbsp;&raquo;</span> en conservant votre partition
+ <code class="filename">/home</code>.
</p>
</td>
@@ -122,12 +106,13 @@
<tr>
<td align="left" valign="top">
- <p>En cas d'oubli de s&eacute;lection d'une langue suppl&eacute;mentaire, il est possible de
- revenir depuis l'&eacute;cran "Installation ou mise &agrave; jour" &agrave; l'&eacute;cran de choix des
- langues en appuyant simultan&eacute;ment sur les touches <span class="guilabel">Alt Ctrl
- D&eacute;but</span> (<span class="guilabel">D&eacute;but</span> ou<span class="guilabel">Home</span> ou
- <span class="guilabel">fl&egrave;che vers le haut &agrave; gauche</span>). <span class="emphasis"><em>Ne
- pas</em></span> faire cela plus loin dans l'installation.
+ <p>Si vous vous rendez compte que vous avez oubli&eacute; de s&eacute;lectionner une langue
+ suppl&eacute;mentaire, il est possible de revenir de l'&eacute;cran <span class="emphasis"><em>Installation
+ ou mise &agrave; jour</em></span> vers l'&eacute;cran de choix des langues en appuyant
+ simultan&eacute;ment sur
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>D&eacute;but</strong></span>.
+ <span class="bold"><strong>Ne faites pas cela</strong></span> plus loin dans
+ l'installation.
</p>
</td>
diff --git a/fr/selectKeyboard.html b/fr/selectKeyboard.html
index 9db93da..9a7bac7 100644
--- a/fr/selectKeyboard.html
+++ b/fr/selectKeyboard.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
<link rel="prev" href="selectInstallClass.html" title="Installation ou Mise &agrave; jour">
- <link rel="next" href="doPartitionDisks.html" title="Partitionnement"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="doPartitionDisks.html" title="Suggestion de partitionnement"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,12 @@
</div>
</div>
</div>
+
+
+
+
+
+
@@ -50,26 +56,26 @@
</li>
<li class="listitem">
- <p><a name="selectKeyboard-pa3"></a>Si le clavier n'appara&icirc;t pas dans la liste pr&eacute;sent&eacute;e, cliquer sur
- <span class="guibutton">Davantage</span> pour obtenir une liste compl&egrave;te et y
- s&eacute;lectionner le bon clavier.
+ <p><a name="selectKeyboard-pa3"></a>Si votre clavier n'appara&icirc;t pas dans la liste, cliquez sur
+ <span class="emphasis"><em>Davantage</em></span> pour obtenir une liste compl&egrave;te et y choisir
+ votre clavier.
</p>
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p><a name="selectKeyboard-pa5"></a>Apr&egrave;s le choix d'un clavier dans la liste obtenue gr&acirc;ce au clic sur
- <span class="guibutton">Davantage</span>, le premier choix de clavier revient &agrave;
- l'&eacute;cran et il semble que c'est ce clavier qui est choisi. Ignorer cette
- anomalie en toute s&eacute;curit&eacute; et continuer l'installation : Le clavier install&eacute;
- sera bien celui de la liste compl&egrave;te.
+ <p><a name="selectKeyboard-pa5"></a>Apr&egrave;s avoir choisi un clavier dans la liste obtenue en cliquant sur
+ <span class="emphasis"><em>Davantage</em></span>, vous reviendrez &agrave; la premi&egrave;re liste, et il
+ vous semblera que c'est un clavier de cette liste qui a &eacute;t&eacute; s&eacute;lectionn&eacute;. N'y
+ pr&ecirc;tez pas attention et continuez l'installation : le clavier choisi depuis
+ la liste compl&egrave;te sera bien pris en compte.
</p>
</td>
@@ -80,9 +86,9 @@
</li>
<li class="listitem">
- <p><a name="selectKeyboard-pa4"></a>En cas de choix d'un clavier de caract&egrave;res non-Latins, un &eacute;cran
- suppl&eacute;mentaire appara&icirc;tra pour demander quelle est la pr&eacute;f&eacute;rence pour le
- passage entre les dispositions latine et non latine.
+ <p><a name="selectKeyboard-pa4"></a>Si vous choisissez un clavier de caract&egrave;res non-latins, un &eacute;cran
+ suppl&eacute;mentaire vous demandera comment vous souhaitez passer de la
+ disposition latine &agrave; la disposition non-latine.
</p>
</li>
diff --git a/fr/selectLanguage.html b/fr/selectLanguage.html
index a6abad1..58f7f1e 100644
--- a/fr/selectLanguage.html
+++ b/fr/selectLanguage.html
@@ -23,47 +23,76 @@
</div>
</div>
+
+
+
+
+
+
- <p>S&eacute;lectionner la langue d&eacute;sir&eacute;e en d&eacute;ployant d'abord le continent
- concern&eacute;. <span class="application">Mageia</span> utilisera cette s&eacute;lection
- pendant l'installation et pour le syst&egrave;me une fois install&eacute;.
- </p>
+
- <p>S&eacute;lectionner la langue d&eacute;sir&eacute;e. <span class="application">Mageia</span> utilisera
- cette s&eacute;lection pendant l'installation et pour le syst&egrave;me une fois install&eacute;.
- </p>
+
- <p>S'il est probable que plusieurs langues doivent &ecirc;tre install&eacute;es sur le
- syst&egrave;me, pour vous-m&ecirc;me ou pour d'autres utilisateurs, il est pr&eacute;f&eacute;rable
- alors d'utiliser le bouton <span class="guibutton">Langues multiples</span> pour les
- ajouter d&egrave;s maintenant. Il est difficile d'ajouter la prise en charge de
- langues suppl&eacute;mentaires apr&egrave;s l'installation.
- </p>
+
+
+
+
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>S&eacute;lectionnez la langue d&eacute;sir&eacute;e en d&eacute;ployant d'abord le continent
+ concern&eacute;. Mageia utilisera ce choix pendant l'installation et pour le
+ syst&egrave;me une fois install&eacute;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>S'il est probable que vous (ou d'autres utilisateurs) ayez besoin que
+ plusieurs langues soient install&eacute;es sur votre syst&egrave;me, alors utilisez
+ l'option <span class="emphasis"><em>Langues multiples</em></span> pour les ajouter d&egrave;s
+ maintenant. Il sera difficile d'ajouter la prise en charge de langues
+ suppl&eacute;mentaires apr&egrave;s l'installation.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
- <div class="warning" title="Avertissement" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+ <div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Avertissement]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>M&ecirc;me avec l'intention d'installer plusieurs langues, il faut d'abord en
- choisir une en tant que langue pr&eacute;f&eacute;r&eacute;e dans le premier &eacute;cran. Elle sera
- aussi marqu&eacute;e comme choisie dans l'&eacute;cran des langues multiples.
+ <p>M&ecirc;me si vous souhaitez installer plusieurs langues, vous devez au pr&eacute;alable
+ en d&eacute;signer une comme langue pr&eacute;f&eacute;r&eacute;e sur le premier &eacute;cran des langues. Elle
+ sera marqu&eacute;e comme choisie sur l'&eacute;cran des <span class="emphasis"><em>langues
+ multiples</em></span>.
</p>
</td>
</tr>
</table>
</div>
+
<div class="itemizedlist">
<ul class="itemizedlist">
@@ -76,19 +105,19 @@
</li>
<li class="listitem">
- <p>Mageia utilise par d&eacute;faut le codage UTF-8 (Unicode)</p>
-
- <p>Ceci peut &ecirc;tre d&eacute;sactiv&eacute; dans l'&eacute;cran "langues multiples" si vous savez que
- c'est contre-indiqu&eacute; pour votre langue. D&eacute;sactiver UTF-8 s'applique &agrave; toutes
- les langues install&eacute;es.
+ <p>Mageia utilise l'encodage des caract&egrave;res UTF-8 (Unicode) par d&eacute;faut. Si cela
+ est inappropri&eacute; pour la langue choisie, il est possible de le d&eacute;sactiver
+ dans l'&eacute;cran des <span class="emphasis"><em>langues multiples</em></span>. La d&eacute;sactivation de
+ l'encodage UTF-8 s'applique &agrave; toutes les langues install&eacute;es.
</p>
</li>
<li class="listitem">
<p>Vous pouvez modifier la langue de votre syst&egrave;me apr&egrave;s l'installation dans le
- Centre de Contr&ocirc;le Mageia &gt; Syst&egrave;me &gt; G&eacute;rer les param&egrave;tres locaux de votre
- syst&egrave;me.
+ <span class="guimenu">Centre de Contr&ocirc;le
+ Mageia</span> &#8594; <span class="guimenuitem">Syst&egrave;me</span> &#8594; <span class="guimenuitem">G&eacute;rer les
+ param&egrave;tres locaux de votre syst&egrave;me</span>.
</p>
</li>
diff --git a/fr/selectMouse.html b/fr/selectMouse.html
index 2eba140..3c426ee 100644
--- a/fr/selectMouse.html
+++ b/fr/selectMouse.html
@@ -22,33 +22,35 @@
</div>
</div>
</div>
-
+
+
+
+
-
-
<p><a name="selectMouse-pa1"></a>Si le comportement de la souris n'est pas satisfaisant, en choisir une autre
ici.
</p>
-
- <p><a name="selectMouse-pa2"></a>Le plus souvent, <span class="guilabel">Universelle</span> - <span class="guilabel">N'importe
- quelle souris PS/2 ou USB </span> est un bon choix.
+
+ <p><a name="selectMouse-pa2"></a>Le plus souvent,
+ <span class="guimenu">Universelle</span> &#8594; <span class="guimenuitem">N'importe quelle
+ souris PS/2 ou USB</span> est un bon choix.
</p>
- <p><a name="selectMouse-pa3"></a>S&eacute;lectionner <span class="guilabel">Universelle</span> - <span class="guilabel">Force
- evdev</span> pour configurer les boutons qui ne fonctionnent pas sur une
- souris &agrave; six boutons ou plus.
+ <p><a name="selectMouse-pa3"></a>S&eacute;lectionnez <span class="guimenu">Universelle</span> &#8594; <span class="guimenuitem">Forcer
+ evdev</span> pour configurer les boutons qui ne
+ fonctionnent pas sur une souris &agrave; six boutons ou plus.
</p>
</div>
diff --git a/fr/setupBootloader.html b/fr/setupBootloader.html
index f7d8528..b10d75e 100644
--- a/fr/setupBootloader.html
+++ b/fr/setupBootloader.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Principales options du chargeur de d&eacute;marrage</title>
+ <title>Programme d'amor&ccedil;age</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="fr" class="section" title="Principales options du chargeur de d&eacute;marrage">
+ <div lang="fr" class="section" title="Programme d'amor&ccedil;age">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="setupBootloader"></a>Principales options du chargeur de d&eacute;marrage
+ <h2 class="title"><a name="setupBootloader"></a>Programme d'amor&ccedil;age
</h2>
</div>
</div>
@@ -29,11 +29,23 @@
- <div class="section" title="Interface du programme d'amor&ccedil;age">
+
+
+
+
+
+
+
+
+
+
+
+
+ <div class="section" title="Grub2">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e902"></a>Interface du programme d'amor&ccedil;age
+ <h3 class="title"><a name="d5e988"></a>Grub2
</h3>
</div>
</div>
@@ -41,203 +53,62 @@
- <p>Par d&eacute;faut, Mageia utilise exclusivement&nbsp;:</p>
-
-
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Grub2 sur des syst&egrave;mes MBR/Legacy et GPT/Legacy">
+ <p class="title"><b>Grub2 sur des syst&egrave;mes MBR/Legacy et GPT/Legacy </b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p>Grub2 (avec ou sans menu graphique) pour un syst&egrave;me MBR/Legacy ou GPT/Legacy</p>
+ <p>GRUB2 (avec ou sans menu graphique) sera utilis&eacute; pour un syst&egrave;me MBR/Legacy
+ ou GPT/Legacy
+ </p>
</li>
<li class="listitem">
- <p>Grub2-efi pour un syst&egrave;me UEFI.</p>
+ <p>Par d&eacute;faut, un nouveau programme d'amor&ccedil;age sera &eacute;crit soit dans le MBR
+ (Master Boot Record) de votre disque dur, soit dans la partition BIOS
+ d'amor&ccedil;age.
+ </p>
</li>
</ul>
</div>
- <div class="tip" title="Astuce" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Tip">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Astuce]" src="tip.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>Les menus graphiques de Mageia sont superbes :) </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
- <div class="section" title="Grub2 sur des syst&egrave;mes MBR/Legacy et GPT/Legacy">
- <div class="titlepage">
- <div>
- <div>
- <h4 class="title"><a name="d5e912"></a>Grub2 sur des syst&egrave;mes MBR/Legacy et GPT/Legacy
- </h4>
- </div>
- </div>
- </div>
-
-
-
-
-
- <p>Ne modifiez pas le "P&eacute;riph&eacute;rique de d&eacute;marrage", &agrave; moins que vous ne sachiez
- r&eacute;ellement ce que vous faites.
- </p>
-
- </div>
-
-
- <div class="section" title="Grub2-efi sur des syst&egrave;mes UEFI">
- <div class="titlepage">
- <div>
- <div>
- <h4 class="title"><a name="d5e920"></a>Grub2-efi sur des syst&egrave;mes UEFI
- </h4>
- </div>
- </div>
- </div>
-
-
-
- <p>Avec un syst&egrave;me UEFI, l'interface utilisateur est l&eacute;g&egrave;rement diff&eacute;rente en
- raison de l'impossibilit&eacute; de choisir entre avec ou sans menu graphique.
- </p>
-
-
-
-
- <p>Si Mageia est le seul syst&egrave;me install&eacute; sur votre ordinateur, l'installeur
- cr&eacute;e une partition ESP (EFI System Partition) pour recevoir le chargeur de
- boot (Grub2-efi). S'il y a d&eacute;j&agrave; des syst&egrave;mes d'exploitation UEFI d'install&eacute;s
- (Windows 8 par exemple), l'installeur Mageia d&eacute;tecte l'ESP existant cr&eacute;&eacute; par
- Windows et y ajoute grub2-efi. Bien qu'il soit possible d'avoir plusieurs
- ESP, un seul est suffisant et conseill&eacute; quelque soit le nombre de syst&eacute;mes
- d'exploitation que vous ayez.
- </p>
-
-
- <p>Ne modifiez pas le "P&eacute;riph&eacute;rique de d&eacute;marrage", &agrave; moins que vous ne sachiez
- r&eacute;ellement ce que vous faites.
- </p>
-
- </div>
-
- </div>
-
-
- <div class="section" title="Utiliser un chargeur de d&eacute;marrage Mageia">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e930"></a>Utiliser un chargeur de d&eacute;marrage Mageia
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Par d&eacute;faut, selon votre syst&egrave;me, Mageia &eacute;crit un nouveau :</p>
-
-
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Grub2-efi sur des syst&egrave;mes UEFI">
+ <p class="title"><b>Grub2-efi sur des syst&egrave;mes UEFI</b></p>
<ul class="itemizedlist">
<li class="listitem">
- <p>Chargeur de boot GRUB2 soit dans le MBR (Master Boot Record) du premier
- disque dur ou bien dans la "BIOS boot partition" (partition BIOS
- d'amor&ccedil;age).
- </p>
+ <p>GRUB2-efi sera utilis&eacute; comme gestionnaire d'amor&ccedil;age pour un syst&egrave;me UEFI.</p>
</li>
<li class="listitem">
- <p>Chargeur de boot Grub2-efi dans l'ESP</p>
+ <p>Par d&eacute;faut, un nouveau programme d'amor&ccedil;age (Grub2-efi) sera &eacute;crit dans
+ l'ESP (Partition de syst&egrave;me EFI).
+ </p>
+
+
+ <p>S'il y a d&eacute;j&agrave; des syst&egrave;mes d'exploitation UEFI install&eacute;s sur votre
+ ordinateur (Windows 8 par exemple), l'installeur Mageia d&eacute;tecte l'ESP
+ existante cr&eacute;&eacute;e par Windows et ajoute GRUB2-efi. Bien qu'il soit possible
+ d'avoir plusieurs ESP, une seule est suffisante, quel que soit le nombre de
+ syst&egrave;mes d'exploitation install&eacute;s.
+ </p>
</li>
</ul>
</div>
-
-
- <p>S'il y a d&eacute;j&agrave; d'autres syst&egrave;mes d'exploitation d'install&eacute;s, Mageia tente de
- les ajouter &agrave; votre nouveau menu d'amor&ccedil;age Mageia. Si vous ne le voulez
- pas, cliquez sur <span class="guibutton">Suivant</span> puis d&eacute;cochez la case
- <span class="guilabel">Probe Foreign OS</span></p>
-
-
-
- </div>
-
-
- <div class="section" title="Utiliser un chargeur de d&eacute;marrage existant.">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e946"></a>Utiliser un chargeur de d&eacute;marrage existant.
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>La proc&eacute;dure exacte pour ajouter le syst&egrave;me Mageia dans un chargeur de
- d&eacute;marrage existant sort du p&eacute;rim&egrave;tre de cette aide, cependant, la plupart du
- temps, elle exige d'ex&eacute;cuter le programme d'installation du chargeur de
- d&eacute;marrage impliqu&eacute; qui devrait le d&eacute;tecter et l'installer
- automatiquement. Voir la documentation du syst&egrave;me d'exploitation en
- question.
- </p>
-
- </div>
-
-
- <div class="section" title="Utilisation du chargement en cha&icirc;ne">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e949"></a>Utilisation du chargement en cha&icirc;ne
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Si vous ne d&eacute;sirez pas avoir Mageia bootable, mais la cha&icirc;ner depuis un
- autre SE, cliquez sur <span class="guibutton">Suivant</span>, puis sur
- <span class="guibutton">Advanc&eacute;</span> et cocher la case <span class="guilabel">Ne pas toucher &agrave;
- l'ESP ou au MBR</span>.
- </p>
-
-
-
-
- <p>Vous allez avoir un avertissement disant que le chargeur de boot est
- manquant, ignorez le en cliquant sur <span class="guibutton">OK</span>.
- </p>
-
-
</div>
- <div class="section" title="Options">
+ <div class="section" title="Configuration du programme d'amor&ccedil;age">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e965"></a>Options
+ <h3 class="title"><a name="d5e1003"></a>Configuration du programme d'amor&ccedil;age
</h3>
</div>
</div>
@@ -245,11 +116,11 @@
- <div class="section" title="Premi&egrave;re page">
+ <div class="section" title="Principales options du chargeur de d&eacute;marrage">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e967"></a>Premi&egrave;re page
+ <h4 class="title"><a name="d5e1007"></a>Principales options du chargeur de d&eacute;marrage
</h4>
</div>
</div>
@@ -257,87 +128,127 @@
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p><span class="guilabel">D&eacute;lai avant l'activation du choix par d&eacute;faut</span> : Cette
- entr&eacute;e vous permet de d&eacute;finir le d&eacute;lai, en secondes, avant le d&eacute;marrage du
- syst&egrave;me d'exploitation par d&eacute;faut.
+
+ <p><span class="bold"><strong>Gestionnaire d'amor&ccedil;age &agrave; utiliser</strong></span></p>
+
+
+ <p>Cette fonctionnalit&eacute; n'est disponible que sur les syst&egrave;mes MBR/BIOS en mode
+ Legacy. Les utilisateurs de syst&egrave;mes UEFI ne verront pas cette option ici.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>P&eacute;riph&eacute;rique d'amor&ccedil;age</strong></span></p>
+
+
+ <p>Ne modifiez rien ici, &agrave; moins que vous ne sachiez r&eacute;ellement ce que vous
+ faites.
</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>D&eacute;lai avant le d&eacute;marrage sur le syst&egrave;me par
+ d&eacute;faut</strong></span></p>
+
+ <p>Cette bo&icirc;te de dialogue vous permet de d&eacute;finir le d&eacute;lai, en seconde, avant
+ le d&eacute;marrage du syst&egrave;me d'exploitation par d&eacute;faut.
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">S&eacute;curit&eacute;</span> : Il est possible ici d'&eacute;tablir un mot de
- passe pour le chargeur d'amor&ccedil;age. Dans ce cas, un nom d'utilisateur
- (unername) et un mot de passe (password) seront demand&eacute;s au cours de
- l'amor&ccedil;age pour s&eacute;lectionner une entr&eacute;e ou modifier sa configuration. Le nom
- d&#8217;utilisateur est "root" et le mot de passe est celui d&eacute;fini ci-apr&egrave;s.
+
+ <p><span class="bold"><strong>S&eacute;curit&eacute;</strong></span></p>
+
+
+ <p>Il est possible ici d'&eacute;tablir un mot de passe pour le programme
+ d'amor&ccedil;age. Dans ce cas, un nom d'utilisateur et un mot de passe seront
+ demand&eacute;s au d&eacute;marrage pour s&eacute;lectionner une entr&eacute;e ou modifier sa
+ configuration. Ceci est optionnel, et la plupart des utilisateurs n'en aura
+ probablement pas besoin. Le nom d'utilisateur est <code class="literal">root</code> et
+ le mot de passe est celui d&eacute;fini ci-apr&egrave;s.
</p>
+
+ </li>
+ <li class="listitem">
+ <p><span class="bold"><strong>Mot de passe</strong></span></p>
+
+
+ <p>Choisissez un mot de passe pour le programme d'amor&ccedil;age (optionnel)</p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Mot de passe</span> : Indiquer le mot de passe dans ce champ
- de saisie.
+
+ <p><span class="bold"><strong>Mot de passe (v&eacute;rification)</strong></span></p>
+
+
+ <p>Entrez &agrave; nouveau le mot de passe et DrakX va v&eacute;rifier qu'il est bien
+ identique au pr&eacute;c&eacute;dent.
</p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><span class="emphasis"><em>Avanc&eacute;</em></span></p>
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Activer ACPI</em></span></p>
+
+ <p>ACPI (Advanced Configuration and Power Interface) est un standard de gestion
+ de l'&eacute;nergie. Il permet d'&eacute;conomiser de l'&eacute;nergie en arr&ecirc;tant des
+ p&eacute;riph&eacute;riques inutilis&eacute;s. D&eacute;cocher cette case peut &ecirc;tre utile si, par
+ exemple, votre mat&eacute;riel n'est pas compatible ACPI ou si vous pensez que
+ l'ACPI peut &ecirc;tre source de probl&egrave;mes (comme des red&eacute;marrages al&eacute;atoires ou
+ des blocages).
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Mot de passe (v&eacute;rification)</span> : Entrer &agrave; nouveau le mot
- de passe et Drakx va v&eacute;rifier qu'il est bien identique au pr&eacute;c&eacute;dent.
+
+ <p><span class="emphasis"><em>Activer SMP</em></span></p>
+
+
+ <p>Cette option active/d&eacute;sactive le multi-processing sym&eacute;trique pour les
+ processeurs multi-c&#339;urs.
</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>Activer APIC</em></span></p>
+
+ <p>Cela donne au syst&egrave;me d'exploitation l'acc&egrave;s au Contr&ocirc;leur Programmable
+ Avanc&eacute; des Interruptions (Advanced Programmable Interrupt Controller). Les
+ p&eacute;riph&eacute;riques APIC autorisent des mod&egrave;les prioritaires plus complexes et la
+ gestion des IRQ (Interrupt Request, Requ&ecirc;te d'interruption).
+ </p>
+
</li>
<li class="listitem">
-
- <p><span class="guilabel">Avanc&eacute;</span></p>
+
+ <p><span class="emphasis"><em>Activer APIC local</em></span></p>
-
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p><span class="guilabel">Activer l'ACPI:</span> ACPI (Advanced Configuration and Power
- Interface) est un standard de gestion de l'&eacute;nergie. Il permet de r&eacute;aliser
- des &eacute;conomies en arr&ecirc;tant des p&eacute;riph&eacute;riques inutilis&eacute;s, c'&eacute;tait la m&eacute;thode
- utilis&eacute;e auparavant par l'APM. Ne pas cocher cette case peut &ecirc;tre avantageux
- si, par exemple, votre mat&eacute;riel n'est pas compatible ACPI ou si vous pensez
- que l'ACPI peut &ecirc;tre source de probl&egrave;mes (tels que red&eacute;marrages al&eacute;atoires
- ou blocages).
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Activer le SMP</span> : SMP signifie Symmetric Multi
- Processors, c'est une architecture pour les processeurs multicores.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Enable APIC</span> : Activer ou d&eacute;sactiver cela donne ou
- refuse au syst&egrave;me d'exploitation l'acc&egrave;s au Contr&ocirc;leur Programmable Avanc&eacute;
- des interruptions (Advanced Programmable Interrupt Controller). Les
- p&eacute;riph&eacute;riques APIC autorisent des mod&egrave;les prioritaires plus complexes et la
- gestion des IRQ (Interrupt Request, Requ&ecirc;te d'interruption) avanc&eacute;s.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">Enable Local APIC</span> : Il est possible ici de valider
- l'APIC local, qui g&egrave;re toutes les interruptions externes pour un processeur
- sp&eacute;cifique d'un syst&egrave;me SMP.
- </p>
-
- </li>
- </ul>
- </div>
+ <p>Il est possible ici d'&eacute;tablir l'APIC local, qui g&egrave;re toutes les
+ interruptions externes pour un processeur sp&eacute;cifique d'un syst&egrave;me SMP.
+ </p>
+
</li>
</ul>
</div>
@@ -345,11 +256,11 @@
</div>
- <div class="section" title="Page suivante">
+ <div class="section" title="Configuration du programme d'amor&ccedil;age">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e999"></a>Page suivante
+ <h4 class="title"><a name="d5e1057"></a>Configuration du programme d'amor&ccedil;age
</h4>
</div>
</div>
@@ -357,58 +268,177 @@
+
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">Choix par d&eacute;faut</span> Syst&egrave;me d'exploitation d&eacute;marr&eacute; par
- d&eacute;faut.
+ <p><span class="bold"><strong>Choix par d&eacute;faut</strong></span></p>
+
+
+ <p>Syst&egrave;me d'exploitation d&eacute;marr&eacute; par d&eacute;faut.</p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Ajouter des options</strong></span></p>
+
+
+ <p>Cela permet de passer des informations au noyau ou de lui demander plus
+ d'informations lors du d&eacute;marrage.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">Options pass&eacute;es au noyau</span> Cette option permet de passer
- des informations au noyau ou de lui demander plus d'informations lors du
- d&eacute;marrage.
+ <p><span class="bold"><strong>D&eacute;tecter d'autres OS</strong></span></p>
+
+
+ <p>Si vous avez d'autres syst&egrave;mes d'exploitation install&eacute;s, Mageia tente de les
+ ajouter &agrave; votre nouveau menu de d&eacute;marrage. Si vous ne le voulez pas,
+ d&eacute;cochez la case &laquo; D&eacute;tecter d'autres OS &raquo;.
</p>
</li>
+ </ul>
+ </div>
+
+
+ <p><span class="emphasis"><em>Avanc&eacute;</em></span></p>
+
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">D&eacute;tecter les autres OS</span> : Voir ci-dessus <a class="link" href="setupBootloader.html#setupMageiaBootloader">Utiliser un chargeur de d&eacute;marrage
- Mageia</a></p>
+ <p><span class="emphasis"><em>Mode Vid&eacute;o</em></span></p>
+
+
+ <p>D&eacute;finir ici la taille de l'&eacute;cran et la profondeur de couleurs qui seront
+ utilis&eacute;s par le menu de d&eacute;marrage. Si vous cliquez sur le triangle, des
+ options suppl&eacute;mentaires de taille d'&eacute;cran et de profondeur de couleurs vous
+ seront propos&eacute;es.
+ </p>
</li>
<li class="listitem">
- <p><span class="guilabel">Avanc&eacute;</span></p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p><span class="guilabel">Mode vid&eacute;o</span> D&eacute;finir ici la taille de l'&eacute;cran et la
- profondeur de couleurs qui seront utilis&eacute;s par le menu de d&eacute;marrage. Si vous
- cliquez le triangle, des options suppl&eacute;mentaires de taille d'&eacute;cran et de
- profondeur de couleurs vous seront propos&eacute;es
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="bold"><strong>Ne pas toucher &agrave; l'ESP ni au MBR</strong></span> : Voir
- ci-dessus <a class="link" href="setupBootloader.html#setupChainLoading">Utilisation du chargement en
- cha&icirc;ne</a></p>
-
- </li>
- </ul>
- </div>
+ <p><span class="emphasis"><em>Ne pas toucher &agrave; l'ESP ou au MBR</em></span></p>
+
+
+ <p>Choisissez cette option si vous ne voulez pas d&eacute;marrer sur Mageia, mais
+ pr&eacute;f&eacute;rez le d&eacute;marrer en cha&icirc;ne &agrave; partir d'un autre syst&egrave;me
+ d'exploitation. Un message d'erreur vous indiquera que le programme
+ d'amor&ccedil;age est absent. Cliquez sur <span class="emphasis"><em>Ok</em></span> si vous &ecirc;tes s&ucirc;r
+ de comprendre les implications et souhaitez quand-m&ecirc;me continuer.
+ </p>
</li>
</ul>
</div>
+
+
+
+ </div>
+
+ </div>
+
+
+ <div class="section" title="Autres options">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e1093"></a>Autres options
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <div class="section" title="Utiliser un chargeur de d&eacute;marrage existant.">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e1095"></a>Utiliser un chargeur de d&eacute;marrage existant.
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>La proc&eacute;dure correcte pour ajouter votre syst&egrave;me Mageia dans un programme de
+ d&eacute;marrage existant d&eacute;passe le cadre de cette documentation, n&eacute;anmoins, dans
+ la plupart des cas, cela impliquera d'ex&eacute;cuter le programme d'installation
+ du chargeur de d&eacute;marrage concern&eacute;, qui devrait le d&eacute;tecter et l'ajouter
+ automatiquement. Voir la documentation du syst&egrave;me d'exploitation en
+ question.
+ </p>
+
+ </div>
+
+
+ <div class="section" title="Installer sans programme d'amor&ccedil;age">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e1098"></a>Installer sans programme d'amor&ccedil;age
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>Bien que vous puissiez choisir d'installer Mageia sans programme d'amor&ccedil;age
+ (voir la partie 2.1 Avanc&eacute;), cela n'est pas recommand&eacute; &agrave; moins que vous
+ sachiez parfaitement ce que vous faites, car sans aucun programme
+ d'amor&ccedil;age, votre syst&egrave;me d'exploitation ne pourra d&eacute;marrer.
+ </p>
</div>
+
+
+ <div lang="fr" class="section" title="Ajouter ou Modifier une Entr&eacute;e de Menu de D&eacute;marrage">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="setupBootloaderAddEntry"></a>Ajouter ou Modifier une Entr&eacute;e de Menu de D&eacute;marrage
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+ <p>Pour cela, vous devez modifier manuellement le fichier
+ /boot/grub2/custom.cfg ou bien utiliser le logiciel <span class="bold"><strong>grub-customizer</strong></span> (disponible dans les d&eacute;p&ocirc;ts Mageia).
+ </p>
+
+
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>Pour en savoir plus, consultez <a class="ulink" href="https://wiki.mageia.org/en/Grub2-efi_and_Mageia-fr" target="_top">https://wiki.mageia.org/en/Grub2-efi_and_Mageia-fr</a></p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
</div>
diff --git a/fr/setupBootloaderAddEntry.html b/fr/setupBootloaderAddEntry.html
index b3567c0..c9def8b 100644
--- a/fr/setupBootloaderAddEntry.html
+++ b/fr/setupBootloaderAddEntry.html
@@ -6,8 +6,8 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation avec DrakX">
<link rel="up" href="index.html" title="Installation avec DrakX">
- <link rel="prev" href="setupBootloader.html" title="Principales options du chargeur de d&eacute;marrage">
- <link rel="next" href="misc-params.html" title="R&eacute;sum&eacute; des diff&eacute;rents param&egrave;tres"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="prev" href="setupBootloader.html" title="Programme d'amor&ccedil;age">
+ <link rel="next" href="misc-params.html" title="R&eacute;sum&eacute; de votre configuration"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -23,11 +23,14 @@
</div>
</div>
+
+
- <p>Pour cela, vous devez &eacute;diter manuellement /boot/grub2/custom.cfg ou bien
- utiliser le logiciel grub-customizer (disponible dans les d&eacute;pots Mageia).
+ <p>Pour cela, vous devez modifier manuellement le fichier
+ /boot/grub2/custom.cfg ou bien utiliser le logiciel <span class="bold"><strong>grub-customizer</strong></span> (disponible dans les d&eacute;p&ocirc;ts Mageia).
</p>
+
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
@@ -38,7 +41,7 @@
<tr>
<td align="left" valign="top">
- <p>Pour en savoir plus, voir notre wiki <a class="ulink" href="https://wiki.mageia.org/en/Grub2-efi_and_Mageia-fr" target="_top">https://wiki.mageia.org/en/Grub2-efi_and_Mageia-fr</a></p>
+ <p>Pour en savoir plus, consultez <a class="ulink" href="https://wiki.mageia.org/en/Grub2-efi_and_Mageia-fr" target="_top">https://wiki.mageia.org/en/Grub2-efi_and_Mageia-fr</a></p>
</td>
</tr>
diff --git a/fr/setupSCSI.html b/fr/setupSCSI.html
index 8a30d86..b9a73e3 100644
--- a/fr/setupSCSI.html
+++ b/fr/setupSCSI.html
@@ -23,33 +23,37 @@
</div>
</div>
-
+
+
+
-
+
+
+
+
+
-
- <p><a name="setupSCSI-pa1"></a>DrakX d&eacute;tecte habituellement les disques durs correctement. Il peut
- cependant &eacute;chouer dans la d&eacute;tection de certains contr&ocirc;leurs SCSI anciens et
- en cons&eacute;quence &ecirc;tre incapable d'installer les pilotes requis.
- </p>
- <p><a name="setupSCSI-pa2"></a>Si cela se produit, il faut indiquer manuellement &agrave; Drakx quel(s)
- p&eacute;riph&eacute;rique(s) SCSI sont pr&eacute;sents.
+ <p><a name="setupSCSI-pa1"></a>Normalement, DrakX d&eacute;tectera les disques durs correctement. N&eacute;anmoins, avec
+ certains contr&ocirc;leurs SCSI anciens, il peut se r&eacute;v&eacute;ler incapable de
+ d&eacute;terminer les bons pilotes et ne pas r&eacute;ussir &agrave; reconna&icirc;tre le disque.
</p>
- <p><a name="setupSCSI-pa3"></a>DrakX pourra alors les configurer correctement.
+ <p><a name="setupSCSI-pa2"></a>S'il n'est pas reconnu, vous devrez indiquer manuellement &agrave; DrakX quels
+ disques SCSI sont pr&eacute;sents. DrakX devrait alors &ecirc;tre capable de configurer
+ le(s) disque(s) correctement.
</p>
</div>
diff --git a/fr/soundConfig.html b/fr/soundConfig.html
index 9931c2b..b50b4b6 100644
--- a/fr/soundConfig.html
+++ b/fr/soundConfig.html
@@ -29,23 +29,23 @@
- <p>Cette &eacute;cran affiche le nom du pilote que l'installeur a choisi pour votre
- carte son. Ce sera le pilote par d&eacute;faut si vous en avez un.
- </p>
- <p>Le pilote par d&eacute;faut devrait fontionner sans probl&egrave;me. Cependant, si apr&egrave;s
- l'installation vous rencontrez des soucis, lancez la commande
- <span class="command"><strong>draksound</strong></span> ou bien d&eacute;marrez cet outil via le CCM (Centre
- de Contr&ocirc;le de Mageia), en s&eacute;lectionnant l'onglet
- <span class="guilabel">Mat&eacute;riel</span> puis en cliquant sur <span class="guilabel">Configuration
- du son</span> en haut &agrave; droite de l'&eacute;cran.
+
+
+ <p>Cet &eacute;cran affiche les d&eacute;tails concernant le pilote choisi par l'installeur
+ pour votre carte son, et ce pilote devrait fonctionner sans probl&egrave;me.
</p>
- <p>Puis, dans l'&eacute;cran de configuration du son, cliquez sur
- <span class="guibutton">Avanc&eacute;</span> puis sur <span class="guibutton">D&eacute;pannage</span> pour
- obtenir des conseils tr&egrave;s utiles afin de r&eacute;soudre le probl&egrave;me.
+ <p>N&eacute;anmoins, si vous rencontrez des probl&egrave;mes apr&egrave;s l'installation, alors
+ lancez <span class="command"><strong>draksound</strong></span> ou d&eacute;marrez cet outil via le
+ <span class="guimenu">Centre de Contr&ocirc;le
+ Mageia</span> &#8594; <span class="guimenuitem">Mat&eacute;riel</span> &#8594; <span class="guimenuitem">Configuration
+ du son</span>. Ensuite, &agrave; l'int&eacute;rieur de
+ <code class="literal">draksound</code> ou de <span class="emphasis"><em>Configuration du
+ son</em></span>, cliquez sur <span class="emphasis"><em>D&eacute;pannage</em></span> pour obtenir des
+ conseils utiles et r&eacute;soudre votre probl&egrave;me.
</p>
@@ -61,15 +61,10 @@
- <p>Cliquer sur <span class="guibutton">Avanc&eacute;</span> sur cet &eacute;cran, lors de
- l'installation, est utile s'il y a plusieurs pilotes disponibles et aucun
- par d&eacute;faut, mais vous pensez que l'installeur a s&eacute;lectionn&eacute; le mauvais
- pilote.
- </p>
-
-
- <p>Dans ce cas vous pouvez s&eacute;lectionner un pilote diff&eacute;rent apr&egrave;s avoir cliqu&eacute;
- sur <span class="guibutton">Choix d'un pilote</span>.
+ <p>S'il n'existe aucun pilote par d&eacute;faut pour votre carte son, il est peut-&ecirc;tre
+ possible de choisir parmi d'autres pilotes. Si c'est le cas, ou si vous
+ pensez que l'installeur n'a pas fait le meilleur choix, cliquez sur
+ <span class="emphasis"><em>Avanc&eacute;</em></span> pour choisir le pilote manuellement.
</p>
</div>
diff --git a/fr/takeOverHdConfirm.html b/fr/takeOverHdConfirm.html
index e533336..4af6bd1 100644
--- a/fr/takeOverHdConfirm.html
+++ b/fr/takeOverHdConfirm.html
@@ -22,13 +22,14 @@
</div>
</div>
</div>
-
+
+
@@ -36,15 +37,26 @@
- <p><a name="takeOverHdConfirm-pa1"></a>Cliquer sur <span class="guibutton">Pr&eacute;c&eacute;dent</span> en cas d'incertitude sur la
- s&eacute;lection du bon disque dur.
- </p>
- <p><a name="takeOverHdConfirm-pa2"></a>Cliquer sur <span class="guibutton">Suivant</span> en cas de certitude avec la
- volont&eacute; d'effacer toutes les partitions, tous les syst&egrave;mes d'exploitation et
- toutes les donn&eacute;es pr&eacute;sents sur ce disque dur.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="takeOverHdConfirm-pa1"></a>Cliquez sur <span class="emphasis"><em>Pr&eacute;c&eacute;dent</em></span> en cas de doute sur votre choix.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="takeOverHdConfirm-pa2"></a>Cliquez sur <span class="emphasis"><em>Suivant</em></span> pour continuer si vous &ecirc;tes s&ucirc;r de
+ vouloir effacer <span class="bold"><strong>toute</strong></span> partition, <span class="bold"><strong>tout</strong></span> syst&egrave;me d'exploitation et <span class="bold"><strong>toutes les donn&eacute;es</strong></span> qui pourraient se trouver sur ce
+ disque dur.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/fr/uninstall-Mageia.html b/fr/uninstall-Mageia.html
index 014d589..1892c87 100644
--- a/fr/uninstall-Mageia.html
+++ b/fr/uninstall-Mageia.html
@@ -24,61 +24,54 @@
+
- <div class="section" title="Guide">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e1297"></a>Guide
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>Mageia ne vous convient pas ou vous ne pouvez pas l'installer correctement,
- en bref vous voulez vous en d&eacute;barrasser. C'est votre droit et Mageia vous
- donne la possibilit&eacute; de le d&eacute;sinstall&eacute;. Ceci n'est pas vrai pour tous les
- syst&egrave;mes d'exploitation.
- </p>
-
-
- <p>Apr&egrave;s votre sauvegarde de donn&eacute;es, red&eacute;marrez l'ordinateur sur votre DVD de
- Mageia et s&eacute;lectionnez "Syst&egrave;me de secours", puis restaurez le chargeur
- d'amor&ccedil;age de Windows. Au prochain d&eacute;marrage, vous aurez uniquement Windows
- sans aucun menu pour choisir votre syst&egrave;me d'exploitation.
- </p>
-
-
- <p>Pour r&eacute;cup&eacute;rer l'espace utilis&eacute; par les partitions Mageia avec Windows,
- cliquez sur <code class="code">D&eacute;marrer -&gt; Panneau de configuration -&gt; Outils
- administratifs -&gt; Gestion de l'ordinateur -&gt; Stockage -&gt; Gestion des
- disques</code> pour acc&eacute;der &agrave; la gestion des partitions. Vous reconna&icirc;trez
- les partitions Mageia par leur appellation <span class="guilabel">Inconnu</span>,
- mais &eacute;galement par leurs taille et position dans le disque. Faites un
- clic-droit sur l'une des ces partitions et s&eacute;lectionnez
- <span class="guibutton">Supprimer</span>. L'espace sera alors lib&eacute;r&eacute;.
- </p>
-
-
- <p>Si vous utilisez Windows XP, vous pouvez cr&eacute;er une nouvelle partition et la
- formater (en FAT32 ou en NTFS). Vous obtiendrez alors une lettre de
- partition.
- </p>
-
-
- <p>Si vous disposez de Windows Vista ou Windows 7, vous avez une possibilit&eacute;
- suppl&eacute;mentaire, vous pouvez &eacute;tendre la partition existante &agrave; gauche de
- l'espace libre. D'autres outils de partitionnement peuvent &ecirc;tre utilis&eacute;s,
- tels que gparted, disponible pour Windows et Linux. Comme toujours, lorsque
- vous modifiez des partitions, soyez tr&egrave;s prudent et assurez-vous que toutes
- vos donn&eacute;es importantes ont &eacute;t&eacute; sauvegard&eacute;es.
- </p>
-
- </div>
+
+
+ <p>Si Mageia ne vous a pas convaincu, ou que vous ne parvenez pas &agrave; l'installer
+ correctement, en bref, si vous voulez vous en d&eacute;barrasser, c'est votre droit
+ et Mageia vous offre aussi la possibilit&eacute; de tout d&eacute;sinstaller. Ce n'est pas
+ le cas de tous les syst&egrave;mes d'exploitation.
+ </p>
+
+
+ <p>Apr&egrave;s avoir sauvegard&eacute; vos donn&eacute;es, red&eacute;marrez sur votre DVD d'installation
+ de Mageia et s&eacute;lectionnez <span class="emphasis"><em>Syst&egrave;me de secours</em></span>, puis
+ <span class="emphasis"><em>Restaurer le programme d'amor&ccedil;age Windows</em></span>. Au prochain
+ d&eacute;marrage, vous n'aurez plus que Windows, sans menu pour choisir le syst&egrave;me
+ d'exploitation Mageia.
+ </p>
+
+
+ <p>Pour r&eacute;cup&eacute;rer sous Windows l'espace utilis&eacute; par les partitions Mageia,
+ cliquez sur <span class="guimenu">D&eacute;marrer</span> &#8594; <span class="guimenuitem">Panneau de
+ configuration</span> &#8594; <span class="guimenuitem">Outils
+ d'administration</span> &#8594; <span class="guimenuitem">Gestion de
+ l'ordinateur</span> &#8594; <span class="guimenuitem">Stockage</span> &#8594; <span class="guimenuitem">Gestion
+ des disques</span>. Vous reconna&icirc;trez les partitions
+ Mageia par leur appellation <code class="literal">Inconnu</code>, mais aussi par leurs
+ taille et position sur le disque. Faites un clic-droit sur chacune de ces
+ partitions et s&eacute;lectionnez <span class="emphasis"><em>Supprimer</em></span> pour lib&eacute;rer
+ l'espace disque.
+ </p>
+
+
+ <p>Si vous utilisez Windows XP, vous pouvez cr&eacute;er une nouvelle partition et la
+ formater (en FAT32 ou en NTFS). Vous obtiendrez alors une lettre de
+ partition.
+ </p>
+
+
+ <p>Si vous disposez de Windows Vista ou Windows 7, vous avez une possibilit&eacute;
+ suppl&eacute;mentaire, vous pouvez &eacute;tendre la partition existante &agrave; gauche de
+ l'espace libre. D'autres outils de partitionnement peuvent &ecirc;tre utilis&eacute;s,
+ tels que <span class="bold"><strong>gparted</strong></span>, disponible pour Windows
+ et Linux. Comme toujours, lorsque vous modifiez des partitions, soyez tr&egrave;s
+ prudent et assurez-vous que toutes vos donn&eacute;es importantes ont &eacute;t&eacute;
+ sauvegard&eacute;es.
+ </p>
</div>
</body>
diff --git a/index.html b/index.html
index c816941..92286da 100644
--- a/index.html
+++ b/index.html
@@ -11,7 +11,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="en" class="article" title="Installation with DrakX">
+ <div class="article" title="Installation with DrakX">
<div class="titlepage">
<div>
<div>
@@ -27,19 +27,17 @@
<dd>
<dl>
<dt><span class="section"><a href="Select-and-use-ISOs.html#d5e19">Introduction</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e29">Media</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e119">Downloading and Checking Media</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e146">Burn or dump the ISO</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e41">Media</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e129">Downloading and Checking Media</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e168">Burn or dump the ISO</a></span></dt>
</dl>
</dd>
- <dt><span class="section"><a href="installer.html">DrakX, the Mageia
- Installer</a></span></dt>
+ <dt><span class="section"><a href="installer.html">DrakX, the Mageia Installer</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="installer.html#d5e219">Installation Welcome Screen</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e295">The installation steps</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e306">Installation Problems and Possible Solutions</a></span></dt>
- <dt><span class="section"><a href="installer.html#d5e329"></a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e261">The installation steps</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e283">Installation Welcome Screen</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e332">Installation Problems and Possible Solutions</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="selectLanguage.html">Please choose a language to use</a></span></dt>
@@ -53,27 +51,27 @@
<dt><span class="section"><a href="setupSCSI.html">Setup SCSI</a></span></dt>
<dt><span class="section"><a href="selectInstallClass.html">Install or Upgrade</a></span></dt>
<dt><span class="section"><a href="selectKeyboard.html">Keyboard</a></span></dt>
- <dt><span class="section"><a href="doPartitionDisks.html">Partitioning</a></span></dt>
+ <dt><span class="section"><a href="doPartitionDisks.html">Suggested Partitioning</a></span></dt>
<dt><span class="section"><a href="ask_mntpoint_s.html">Choose the mount points</a></span></dt>
<dt><span class="section"><a href="takeOverHdConfirm.html">Confirm hard disk to be
formatted</a></span></dt>
- <dt><span class="section"><a href="diskdrake.html">Custom disk partitioning with
+ <dt><span class="section"><a href="diskdrake.html">Custom Disk Partitioning with
DiskDrake</a></span></dt>
<dt><span class="section"><a href="formatPartitions.html">Formatting</a></span></dt>
- <dt><span class="section"><a href="add_supplemental_media.html">Media Selection (Configure Supplemental Installation Media)</a></span></dt>
- <dt><span class="section"><a href="media_selection.html">Media Selection (Nonfree)</a></span></dt>
+ <dt><span class="section"><a href="add_supplemental_media.html">Supplemental Installation
+ Media</a></span></dt>
+ <dt><span class="section"><a href="media_selection.html">Available Media</a></span></dt>
<dt><span class="section"><a href="chooseDesktop.html">Desktop Selection</a></span></dt>
<dt><span class="section"><a href="choosePackageGroups.html">Package Group Selection</a></span></dt>
<dt><span class="section"><a href="minimal-install.html">Minimal Install</a></span></dt>
- <dt><span class="section"><a href="choosePackagesTree.html">Choose Individual
- Packages</a></span></dt>
- <dt><span class="section"><a href="addUser.html">User and Superuser Management</a></span></dt>
+ <dt><span class="section"><a href="choosePackagesTree.html">Choose Individual Packages</a></span></dt>
+ <dt><span class="section"><a href="addUser.html">User Management</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="addUser.html#root-password">Set Administrator (root)
Password:</a></span></dt>
<dt><span class="section"><a href="addUser.html#enterUser">Enter a user</a></span></dt>
- <dt><span class="section"><a href="addUser.html#addUserAdvanced">Advanced User Management</a></span></dt>
+ <dt><span class="section"><a href="addUser.html#addUserAdvanced">User Management (advanced)</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="configureX_chooser.html">Graphic Card and Monitor
@@ -81,20 +79,17 @@
<dt><span class="section"><a href="configureX_card_list.html">Choose an X Server (Configure
your Graphic Card)</a></span></dt>
<dt><span class="section"><a href="configureX_monitor.html">Choosing your Monitor</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html">Bootloader main options</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html">Bootloader</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="setupBootloader.html#d5e872">Bootloader interface</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e896">Using a Mageia bootloader</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e910">Using an existing bootloader</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e913">Using chain loading</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e927">Options</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e989">Grub2</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1004">Bootloader Setup</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1094">Other Options</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="setupBootloaderAddEntry.html">Add or Modify a Boot Menu
Entry</a></span></dt>
- <dt><span class="section"><a href="misc-params.html">Summary of miscellaneous
- parameters</a></span></dt>
+ <dt><span class="section"><a href="misc-params.html">Configuration Summary</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="misc-params.html#misc-params-system">System parameters</a></span></dt>
@@ -111,8 +106,7 @@
<dt><span class="section"><a href="selectCountry.html#inputMethod">Input method</a></span></dt>
</dl>
</dd>
- <dt><span class="section"><a href="configureServices.html">Configure your
- Services</a></span></dt>
+ <dt><span class="section"><a href="configureServices.html">Configure your Services</a></span></dt>
<dt><span class="section"><a href="selectMouse.html">Select mouse</a></span></dt>
<dt><span class="section"><a href="soundConfig.html">Sound Configuration</a></span></dt>
<dd>
@@ -121,19 +115,9 @@
</dl>
</dd>
<dt><span class="section"><a href="securityLevel.html">Security Level</a></span></dt>
- <dt><span class="section"><a href="firewall.html">Firewall</a></span></dt>
<dt><span class="section"><a href="installUpdates.html">Updates</a></span></dt>
<dt><span class="section"><a href="exitInstall.html">Congratulations</a></span></dt>
<dt><span class="section"><a href="uninstall-Mageia.html">Uninstalling Mageia</a></span></dt>
- <dd>
- <dl>
-<<<<<<< HEAD
- <dt><span class="section"><a href="uninstall-Mageia.html#d5e1267">Howto</a></span></dt>
-=======
- <dt><span class="section"><a href="uninstall-Mageia.html#d5e1252">Howto</a></span></dt>
->>>>>>> 7d93c82d3a5f5446f0d7370f43a99cb09ddabc63
- </dl>
- </dd>
</dl>
</div>
@@ -228,8 +212,6 @@
-
-
</div>
</body>
</html>
diff --git a/installUpdates.html b/installUpdates.html
index 99cac74..3f6d925 100644
--- a/installUpdates.html
+++ b/installUpdates.html
@@ -6,14 +6,14 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="firewall.html" title="Firewall">
+ <link rel="prev" href="securityLevel.html" title="Security Level">
<link rel="next" href="exitInstall.html" title="Congratulations"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Updates">
+ <div class="section" title="Updates">
<div class="titlepage">
<div>
<div>
@@ -26,30 +26,49 @@
-
-
-
-
-
- <p><a name="installUpdates-pa1"></a>Since this version of
- <span class="application">Mageia</span> was released, some packages will have been
- updated or improved.
- </p>
+
+
+
- <p><a name="installUpdates-pa2"></a>Choose
- <span class="guilabel">yes</span> if you wish to download and install them, select
- <span class="guilabel">no</span> if you don't want to do this now, or if you aren't
- connected to the Internet
- </p>
- <p><a name="installUpdates-pa3"></a>Then press
- <span class="guibutton">Next</span> to continue
+
+
+
+
+ <p><a name="installUpdates-pa1"></a>Since this version of Mageia
+ was released, some packages will have been updated or improved.
</p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa2"></a>Select
+ <span class="emphasis"><em>Yes</em></span> if you wish to download and install them
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Select <span class="emphasis"><em>No</em></span> if you don't want to do this now,
+ or if you aren't connected to the Internet
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa3"></a>Press
+ <span class="emphasis"><em>Next</em></span> to continue
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/installer.html b/installer.html
index 51f5868..a9e6ad9 100644
--- a/installer.html
+++ b/installer.html
@@ -13,12 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="DrakX, the Mageia Installer">
+ <div class="section" title="DrakX, the Mageia Installer">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="installer"></a>DrakX, the Mageia
- Installer
+ <h2 class="title"><a name="installer"></a>DrakX, the Mageia Installer
</h2>
</div>
</div>
@@ -26,23 +25,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
<p>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
+ Installer is designed to help make your installation or upgrade as easy as
possible.
</p>
- <p>The initial menu screen has various options, however the default one
- will start the installer, which will normally be all that you will
- need.
- </p>
+ <div class="section" title="The installation steps">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e261"></a>The installation steps
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>The install process is divided into a number of steps - the
+ status of which is indicated in a panel to the left of the
+ screen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Each step has one or more screens, which may also have
+ <span class="emphasis"><em>Advanced</em></span> sections with extra, less commonly
+ required options.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>Most screens have <span class="emphasis"><em>Help</em></span> buttons for further
+ details about the particular step.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <div class="caution" title="Caution" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>If at some point during the install you decide to abort the
+ installation, it is possible to reboot, but please think twice before
+ you do this. Once a partition has been formatted or updates have started
+ to be installed, your computer is no longer in the same state and
+ rebooting it could very well leave you with an unusable system.
+ </p>
+
+
+ <p>If, in spite of this, you are very sure rebooting is what you
+ want, go to a text terminal by pressing the keys <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span> together. After that, press <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Delete</strong></span> together to reboot.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
<div class="section" title="Installation Welcome Screen">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e219"></a>Installation Welcome Screen
+ <h3 class="title"><a name="d5e283"></a>Installation Welcome Screen
</h3>
</div>
</div>
@@ -50,11 +133,23 @@
- <div class="section" title="Using a Mageia DVD">
+ <p>The particular screen that you will first see when booting from the
+ Installation media will depend on whether your computer motherboard is of
+ the Legacy (BIOS) or UEFI type.
+ </p>
+
+
+ <p>The welcome menu screen has various options, however the default
+ option will start the installer, and is normally all that you will
+ need.
+ </p>
+
+
+ <div class="section" title="Legacy (BIOS) Systems">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e221"></a>Using a Mageia DVD
+ <h4 class="title"><a name="d5e287"></a>Legacy (BIOS) Systems
</h4>
</div>
</div>
@@ -62,172 +157,50 @@
- <p>Here are the default welcome screens when using a Mageia DVD, The
- first one with an UEFI system and the second one with a Legacy
- system:
- </p>
-
-
- <p>From this screen, you can access to options by pressing the "e"
- letter to enter the "edit mode". To come back to this screen, press
- either the key "esc" to quit without saving or press the key "Ctrl" or
- "F10" to quit with saving.
- </p>
-
-
-
-
- <p>From this screen, it is possible to set some personal
- preferences:
- </p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="Menu">
+ <p class="title"><b>Menu</b></p>
<ul class="itemizedlist">
<li class="listitem">
-
- <p>The language (for the installation only, may be different
- that the chosen language for the system) by pressing the key F2
- (Legacy mode only)
- </p>
-
-
-
-
- <p>Use the arrow keys to select the language and press the key
- Enter.
- </p>
-
-
- <p>Here is for example, the French welcome screen when using a
- Live DVD/CD. Note that the Live DVD/CD menu does not propose:
- <span class="guilabel">Rescue System</span>, <span class="guilabel">Memory
- test</span> and <span class="guilabel">Hardware Detection
- Tool</span>.
- </p>
+
+ <p><span class="bold"><strong>Install Mageia</strong></span></p>
-
+ <p>Install Mageia to a hard disk. This is the default option, and
+ will automatically start after a short while unless another option
+ is selected.
+ </p>
+
</li>
<li class="listitem">
-
- <p>Change the screen resolution by pressing the F3 key (Legacy
- mode only).
- </p>
+
+ <p><span class="bold"><strong>Rescue System</strong></span></p>
-
+ <p>This option allows you to either re-install the bootloader for
+ an existing Mageia installation or you can use it to restore a
+ Windows bootloader.
+ </p>
+
</li>
<li class="listitem">
-
- <p>Add some kernel options by pressing the <span class="bold"><strong>F6</strong></span> key for the legacy mode or the <span class="bold"><strong>e</strong></span> key for the UEFI mode.
- </p>
-
-
- <p>If the installation fails, then it may be necessary to try
- again using one of the extra options. The menu called by F6
- displays a new line called <span class="guilabel">Boot options</span> and
- propose four entries:
- </p>
-
-
- <p>- Default, it doesn't alter anything in the default
- options.
- </p>
-
-
- <p>- Default, it doesn't alter anything in the default
- options.
- </p>
-
-
- <p>- No ACPI (Advanced Configuration and Power Interface),
- power management isn't taken into account.
- </p>
-
-
- <p>- No Local APIC (Local Advanced Programmable Interrupt
- Controller), it is about CPU interruptions, select this option if
- you are asked for.
- </p>
-
-
- <p>When you select one of these entries, it modifies the
- default options displayed in the <span class="guilabel">Boot Options</span>
- line.
- </p>
-
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>In some Mageia releases, it may happen that the entries
- selected with the key F6 does not appear in the <span class="guilabel">Boot
- Options</span> line, however, they are really taken into
- account.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+
+ <p><span class="bold"><strong>Memory Test</strong></span></p>
-
+ <p>Test the installed RAM by performing multiple read and write
+ operations. Reboot to end the test.
+ </p>
+
</li>
<li class="listitem">
-
- <p>Add more kernel options by pressing the key F1 (Legacy mode
- only).
- </p>
-
-
- <p>Pressing F1 opens a new window with more available options.
- Select one with the arrow keys and press Enter to have more
- details or press the Esc key to go back to the welcome
- screen.
- </p>
-
-
-
-
- <p>The detailed view about the option splash. Press Esc or
- select <span class="guilabel">Return to Boot Options</span> to go back to
- the options list. These options can by added by hand in the
- <span class="guilabel">Boot options</span> line.
- </p>
-
-
-
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>The help is translated in the chosen language with the F2
- key.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+
+ <p><span class="bold"><strong>F2: Language</strong></span></p>
-
- <p>For more information about kernel options on legacy and UEFI
- systems, see: <a class="ulink" href="https://wiki.mageia.org/en/How_to_set_up_kernel_options" target="_top">https://wiki.mageia.org/en/How_to_set_up_kernel_options</a></p>
+ <p>Press F2 for alternative languages.</p>
+
</li>
</ul>
</div>
@@ -235,11 +208,11 @@
</div>
- <div class="section" title="Using a Wired Network">
+ <div class="section" title="UEFI Systems">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e285"></a>Using a Wired Network
+ <h4 class="title"><a name="d5e310"></a>UEFI Systems
</h4>
</div>
</div>
@@ -247,102 +220,60 @@
- <p>Here is the default welcome screen when using a Wired
- Network-based Installation CD (netinstall.iso or netinstall-nonfree.iso
- images):
+ <p>From this screen, you can access options by pressing
+ <span class="keycap"><strong>e</strong></span> to enter the edit mode. To come back to this screen,
+ press <span class="keycap"><strong>Esc</strong></span> to quit without saving or press
+ <span class="keycap"><strong>F10</strong></span> to save and quit.
</p>
- <p>It does not allow to change the language, the available options
- are described in the screen. For more information about using a Wired
- Network-based Installation CD, see <a class="ulink" href="https://wiki.mageia.org/en/Boot.iso_install" target="_top">the Mageia
- Wiki</a></p>
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>The keyboard layout is the American one.</p>
-
- </td>
- </tr>
- </table>
+ <div class="itemizedlist" title="Menu">
+ <p class="title"><b>Menu</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Install:</strong></span> Start the Install
+ process
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>Rescue:</strong></span> This option allows
+ you to either re-install the bootloader for an existing Mageia
+ installation or you can use it to restore a Windows
+ bootloader.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>F2: Language:</strong></span> Press
+ <span class="keycap"><strong>F2</strong></span> for alternative languages.
+ </p>
+
+ </li>
+ </ul>
</div>
+ <p>If you booted from a USB stick, you will see the above options
+ duplicated, and in this case, you should use the set that will be
+ suffixed with "USB".
+ </p>
</div>
</div>
- <div class="section" title="The installation steps">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title"><a name="d5e295"></a>The installation steps
- </h3>
- </div>
- </div>
- </div>
-
-
-
- <p>The install process is divided into a number of steps, which can be
- followed on the side panel of the screen.
- </p>
-
-
- <p>Each step has one or more screens which may also have
- <span class="guibutton">Advanced</span> buttons with extra, less commonly
- required, options.
- </p>
-
-
- <p>Most screens have <span class="guibutton">Help</span> buttons which give
- further explanations about the current step.
- </p>
-
-
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>If somewhere during install you decide to stop the installation,
- it is possible to reboot, but please think twice before you do this.
- Once a partition has been formatted or updates have started to be
- installed, your computer is no longer in the same state and rebooting it
- could very well leave you with an unusable system. If in spite of this
- you are very sure rebooting is what you want, go to a text terminal by
- pressing the three keys <span class="guibutton">Alt Ctrl F2</span> at the same
- time. After that, press <span class="guibutton">Alt Ctrl Delete</span>
- simultaneously to reboot.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- </div>
-
-
<div class="section" title="Installation Problems and Possible Solutions">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e306"></a>Installation Problems and Possible Solutions
+ <h3 class="title"><a name="d5e332"></a>Installation Problems and Possible Solutions
</h3>
</div>
</div>
@@ -354,7 +285,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e308"></a>No Graphical Interface
+ <h4 class="title"><a name="d5e334"></a>No Graphical Interface
</h4>
</div>
</div>
@@ -366,21 +297,23 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>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 <code class="code">vgalo</code> at
- the prompt.
+ <p>After the initial screen you did not progress to the
+ <span class="emphasis"><em>Language Selection</em></span> screen. This can happen with
+ some graphic cards and older systems. Try using low resolution by
+ typing <span class="command"><strong>vgalo</strong></span> at the prompt.
</p>
</li>
<li class="listitem">
<p>If the hardware is very old, a graphical installation may not
- be possible. In this case it is worth trying a text mode
- installation. To use this hit ESC at the first welcome screen and
- confirm with ENTER. You will be presented with a black screen with
- the word "boot:". Type "text" and hit ENTER. Now continue with the
- installation in text mode.
+ be possible. In this case it is worth trying a text-mode
+ installation. To use this press <span class="keycap"><strong>Esc</strong></span> at the
+ <span class="emphasis"><em>Welcome</em></span> screen and confirm with
+ <span class="keycap"><strong>ENTER</strong></span>. You will be presented with a black screen
+ with a <code class="prompt">boot:</code> prompt. Type <span class="command"><strong>text</strong></span>
+ and press <span class="keycap"><strong>ENTER</strong></span> to continue with the installation
+ in text mode.
</p>
</li>
@@ -394,7 +327,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e316"></a>The Install Freezes
+ <h4 class="title"><a name="d5e349"></a>The Install Freezes
</h4>
</div>
</div>
@@ -404,9 +337,9 @@
<p>If the system appeared 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 <code class="code">noauto</code> at the prompt. This option may also be combined
- with other options as necessary.
+ hardware detection may be bypassed and dealt with later. To try this,
+ type <span class="command"><strong>noauto</strong></span> at the prompt. This option may also be
+ combined with other parameters as necessary.
</p>
</div>
@@ -416,7 +349,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e320"></a>RAM problem
+ <h4 class="title"><a name="d5e353"></a>RAM problem
</h4>
</div>
</div>
@@ -424,10 +357,11 @@
- <p>These will rarely be needed, but in some cases the hardware may
+ <p>This will rarely be needed, but in some cases the hardware may
report the available RAM incorrectly. To specify this manually, you can
- use the <code class="code">mem=xxxM</code> parameter, where xxx is the correct amount
- of RAM. e.g. <code class="code">mem=256M</code> would specify 256MB of RAM.
+ use the <code class="literal">mem=<em class="replaceable"><code>xxx</code></em>M</code>
+ parameter, where <em class="replaceable"><code>xxx</code></em> is the correct amount of
+ RAM. e.g. <code class="literal">mem=256M</code> would specify 256MB of RAM.
</p>
</div>
@@ -437,7 +371,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e325"></a>Dynamic partitions
+ <h4 class="title"><a name="d5e360"></a>Dynamic partitions
</h4>
</div>
</div>
@@ -445,21 +379,16 @@
- <p>If you converted your hard disk from "basic" format to "dynamic"
- format on Microsoft Windows, you must know that it is impossible to
- install Mageia on this disc. To go back to a basic disk, see the
- Microsoft documentation: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
+ <p>If you converted your hard disk from <code class="literal">Basic</code>
+ format to <code class="literal">Dynamic</code> format in Microsoft Windows, then
+ it is not possible to install Mageia on this disc. To revert to a
+ <code class="literal">Basic</code> disk, see the Microsoft documentation: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
</p>
</div>
</div>
-
- <div class="section">
- <div class="titlepage"></div>
- </div>
-
</div>
</body>
</html>
diff --git a/media_selection.html b/media_selection.html
index 074b550..419f254 100644
--- a/media_selection.html
+++ b/media_selection.html
@@ -2,34 +2,41 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Media Selection (Nonfree)</title>
+ <title>Available Media</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="add_supplemental_media.html" title="Media Selection (Configure Supplemental Installation Media)">
+ <link rel="prev" href="add_supplemental_media.html" title="Supplemental Installation Media">
<link rel="next" href="chooseDesktop.html" title="Desktop Selection"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="en" class="section" title="Media Selection (Nonfree)">
+ <div class="section" title="Available Media">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="media_selection"></a>Media Selection (Nonfree)
+ <h2 class="title"><a name="media_selection"></a>Available Media
</h2>
</div>
</div>
</div>
+
+
+
+
+
+
+
<p>Here you have the list of available repositories. Not all repositories
@@ -50,11 +57,11 @@
</li>
<li class="listitem">
- <p>The <span class="emphasis"><em>Nonfree</em></span> repository includes packages
- that are free-of-charge, i.e. Mageia may redistribute them, but they
- contain closed-source software (hence the name - Nonfree). For example
- this repository includes nVidia and ATI graphics card proprietary
- drivers, firmware for various WiFi cards, etc.
+ <p>The <span class="emphasis"><em>Nonfree</em></span> repository includes packages that
+ are free-of-charge, i.e. Mageia may redistribute them, but they contain
+ closed-source software (hence the name - Nonfree). For example this
+ repository includes nVidia and AMD graphics card proprietary drivers,
+ firmware for various WiFi cards, etc.
</p>
</li>
@@ -62,9 +69,9 @@
<p>The <span class="emphasis"><em>Tainted</em></span> repository includes packages
released under a free license. The main criteria for placing packages in
- this repository is that they may infringe patents and copyright laws
- in some countries, e.g. Multimedia codecs needed to play various
- audio/video files; packages needed to play commercial video DVD,
+ this repository is that they may infringe patents and copyright laws in
+ some countries, e.g. multimedia codecs needed to play various
+ audio/video files; packages needed to play commercial video DVD's,
etc.
</p>
diff --git a/minimal-install.html b/minimal-install.html
index bedabbd..a3c5870 100644
--- a/minimal-install.html
+++ b/minimal-install.html
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Minimal Install">
+ <div class="section" title="Minimal Install">
<div class="titlepage">
<div>
<div>
@@ -22,47 +22,66 @@
</div>
</div>
</div>
+
+
- <p>You can choose a Minimal Installation by de-selecting everything in
- the Package Group Selection screen, see
- <a class="xref" href="choosePackageGroups.html" title="Package Group Selection">the section called &#8220;Package Group Selection&#8221;</a>.
- </p>
+
- <p>If desired, you can additionally tick the "Individual package
- selection" option in the same screen.
- </p>
+
<p>Minimal Installation is intended for those with specific uses in mind
- for their <span class="application">Mageia</span>, such as a server or a
- specialised workstation. You will probably use this option combined with the
- "Individual package selection" option mentioned above, to fine-tune your
- installation, see <a class="xref" href="choosePackagesTree.html" title="Choose Individual Packages">the section called &#8220;Choose Individual
- Packages&#8221;</a>.
- </p>
-
- <p>If you choose this installation class, then the related screen will
- offer you a few useful extras to install, such as documentation and X.
+ for Mageia, such as a server or a specialised workstation. You will probably
+ use this option combined with the <span class="emphasis"><em>Individual package
+ selection</em></span> option to fine-tune your installation. See <a class="xref" href="choosePackagesTree.html" title="Choose Individual Packages">Choose Individual Packages</a>.
</p>
+
- <p>If selected, "With X" will also include IceWM as lightweight desktop
- environment.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>You can choose a <span class="emphasis"><em>Minimal Installation</em></span> by
+ de-selecting everything in the <span class="emphasis"><em>Package Group
+ Selection</em></span> screen, see <a class="xref" href="choosePackageGroups.html" title="Package Group Selection">Choose Package Groups</a>.
+ </p>
+
+
+ <p>If desired, you can additionally tick the <span class="emphasis"><em>Individual
+ package selection</em></span> option in the same screen.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>If you choose this installation method, then the relevant screen
+ (see screenshot below) will offer you a few useful extras to install,
+ such as documentation and <span class="quote">&#8220;<span class="quote">X</span>&#8221;</span>.
+ </p>
+
+
+ <p>If the <span class="emphasis"><em>With X</em></span> option is selected, then IceWM
+ (a lightweight desktop environment) will also be included.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <p>The basic documentation is provided in the form of man and info pages.
- It contains the man pages from the <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Linux Documentation
- Project</a> and the <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU
+ <p>The basic documentation is provided in the form of <span class="quote">&#8220;<span class="quote">man</span>&#8221;</span>
+ and <span class="quote">&#8220;<span class="quote">info</span>&#8221;</span> pages. It contains the man pages from the <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">Linux Documentation
+ Project</a> and the <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU
coreutils</a> info pages.
</p>
-
</div>
</body>
</html>
diff --git a/misc-params.html b/misc-params.html
index b80fd2b..8b5ed87 100644
--- a/misc-params.html
+++ b/misc-params.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Summary of miscellaneous parameters</title>
+ <title>Configuration Summary</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Installation with DrakX">
<link rel="up" href="index.html" title="Installation with DrakX">
@@ -13,12 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Summary of miscellaneous parameters">
+ <div class="section" title="Configuration Summary">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="misc-params"></a>Summary of miscellaneous
- parameters
+ <h2 class="title"><a name="misc-params"></a>Configuration Summary
</h2>
</div>
</div>
@@ -30,10 +29,20 @@
- <p><a name="misc-params-pa1"></a>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 <span class="guibutton">Configure</span>.
+
+
+
+
+
+
+
+
+
+
+ <p><a name="misc-params-pa1"></a>DrakX presents a proposal for
+ the configuration of your system depending on the choices you made so far,
+ and on the hardware detected. You can check the settings here and change
+ them if you want by pressing <span class="emphasis"><em>Configure</em></span>.
</p>
@@ -46,8 +55,8 @@
<tr>
<td align="left" valign="top">
- <p>As a general rule, default settings are recommended and you can keep
- them with 3 exceptions:
+ <p>As a general rule, it is recommended that you accept the default
+ settings unless:
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
@@ -63,7 +72,9 @@
</li>
<li class="listitem">
- <p>something else is said in the detailed sections below</p>
+ <p>some other factor mentioned in the detailed sections below is
+ an issue
+ </p>
</li>
</ul>
@@ -91,76 +102,66 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-system-pa2"></a><span class="guilabel">Timezone</span></p>
+ <p><a name="misc-params-system-pa2"></a><span class="bold"><strong>Timezone</strong></span></p>
- <p><a name="misc-params-system-pa2a"></a>DrakX selected a
- time zone for you, depending on your preferred language. You can
- change it if needed. See also <a class="xref" href="configureTimezoneUTC.html" title="Configure your Timezone">the section called &#8220;Configure your Timezone&#8221;</a></p>
+ <p><a name="misc-params-system-pa2a"></a>DrakX selects a
+ timezone for you, depending on your preferred language. You can change
+ it if needed. See also <a class="xref" href="configureTimezoneUTC.html" title="Configure your Timezone">Configure Timezone</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa3"></a><span class="guilabel">Country /
- Region</span></p>
+ <p><a name="misc-params-system-pa3"></a><span class="bold"><strong>Country / Region</strong></span></p>
- <p><a name="misc-params-system-pa3a"></a>If you are not in
- the selected country, it is very important that you correct the
- setting. See <a class="xref" href="selectCountry.html" title="Select your Country / Region">the section called &#8220;Select your Country / Region&#8221;</a></p>
+ <p><a name="misc-params-system-pa3a"></a>If the selected
+ country is wrong, it is very important that you correct the setting.
+ See <a class="xref" href="selectCountry.html" title="Select your Country / Region">Select Country</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa4"></a><span class="guilabel">Bootloader</span></p>
+ <p><a name="misc-params-system-pa4"></a><span class="bold"><strong>Bootloader</strong></span></p>
- <p><a name="misc-params-system-pa4a"></a>DrakX has made
- good choices for the bootloader setting.
+ <p><a name="misc-params-system-pa4a"></a>DrakX proposal for
+ the bootloader setting
</p>
<p><a name="misc-params-system-pa4b"></a>Do not change
- anything, unless you know how to configure Grub2
- </p>
+ anything, unless you know how to configure GRUB2. For more
+ information, see <a class="xref" href="setupBootloader.html" title="Bootloader">Bootloader</a></p>
- <p><a name="misc-params-system-pa4c"></a>For more
- information, see <a class="xref" href="setupBootloader.html" title="Bootloader main options">the section called &#8220;Bootloader main options&#8221;</a></p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa5"></a><span class="guilabel">User
- management</span></p>
+ <p><a name="misc-params-system-pa5"></a><span class="bold"><strong>User management</strong></span></p>
<p><a name="misc-params-system-pa5a"></a>You can add extra
- users here. They will each get their own <code class="literal">/home</code>
- directories.
+ users here. They will each be allocated their own
+ <code class="filename">/home</code> directories.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa6"></a><span class="guilabel">Services</span>:
- </p>
+ <p><a name="misc-params-system-pa6"></a><span class="bold"><strong>Services</strong></span></p>
<p><a name="misc-params-system-pa6a"></a>System services
- refer to those small programs which run the background (daemons). This
- tool allows you to enable or disable certain tasks.
+ refer to those small programs which run in the background (daemons).
+ This tool allows you to enable or disable certain processes.
</p>
<p><a name="misc-params-system-pa6b"></a>You should check
carefully before changing anything here - a mistake may prevent your
- computer from operating correctly.
- </p>
-
-
- <p>For more information, see <a class="xref" href="configureServices.html" title="Configure your Services">the section called &#8220;Configure your
- Services&#8221;</a></p>
+ computer from operating correctly. For more information, see <a class="xref" href="configureServices.html" title="Configure your Services">Configure Services</a></p>
</li>
</ul>
@@ -185,13 +186,12 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-hardware-pa1"></a><span class="guilabel">Keyboard</span>:
- </p>
+ <p><a name="misc-params-hardware-pa1"></a><span class="bold"><strong>Keyboard</strong></span></p>
- <p><a name="misc-params-hardware-pa1a"></a>This is where
- you setup or change your keyboard layout which will depend on your
- location, language or type of keyboard.
+ <p><a name="misc-params-hardware-pa1a"></a>Configure your
+ keyboard layout according to your location, language and type of
+ keyboard.
</p>
@@ -216,8 +216,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa2"></a><span class="guilabel">Mouse</span>:
- </p>
+ <p><a name="misc-params-hardware-pa2"></a><span class="bold"><strong>Mouse</strong></span></p>
<p><a name="misc-params-hardware-pa2a"></a>Here you can add
@@ -227,34 +226,33 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa3"></a><span class="guilabel">Sound
- card</span>:
- </p>
+ <p><a name="misc-params-hardware-pa3"></a><span class="bold"><strong>Sound card</strong></span></p>
<p><a name="misc-params-hardware-pa3a"></a>The installer
- uses the default driver, if there is a default one. The option to
- select a different driver is only given when there is more than one
- driver for your card, but none of them is the default one.
+ will use the default driver if one is available.
+ </p>
+
+
+ <p>If there is no specific default driver for your sound card,
+ there may be other possible alternative drivers available to choose
+ from. If this is the case, but you think the installer has not made
+ the most appropriate choice, you can click on
+ <span class="emphasis"><em>Advanced</em></span> to manually specify a driver.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa4"></a><span class="guilabel">Graphical
- interface</span>:
- </p>
+ <p><a name="misc-params-hardware-pa4"></a><span class="bold"><strong>Graphical interface</strong></span></p>
<p><a name="misc-params-hardware-pa4a"></a>This section
- allows you to configure your graphic card(s) and displays.
- </p>
+ allows you to configure your graphics card(s) and displays. For more
+ information, see <a class="xref" href="configureX_chooser.html" title="Graphic Card and Monitor Configuration">the section called &#8220;Graphic Card and Monitor
+ Configuration&#8221;</a></p>
- <p><a name="misc-params-hardware-pa4b"></a>For more
- information, see <a class="xref" href="configureX_chooser.html" title="Graphic Card and Monitor Configuration">the section called &#8220;Graphic Card and Monitor
- Configuration&#8221;</a>.
- </p>
</li>
</ul>
@@ -282,14 +280,13 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-network-pa1"></a><span class="guilabel">Network</span>:
- </p>
+ <p><a name="misc-params-network-pa1"></a><span class="bold"><strong>Network</strong></span></p>
<p><a name="misc-params-network-pa2"></a>You can configure
your network here, but for network cards with non-free drivers it is
- better to do that after reboot, in the <span class="application">Mageia Control
- Center</span>, if you have not yet enabled the Nonfree media
+ better to do that after reboot, using the Mageia Control Center if you
+ have not yet enabled the <span class="emphasis"><em>Nonfree</em></span> media
repositories.
</p>
@@ -304,7 +301,7 @@
<td align="left" valign="top">
<p><a name="misc-params-network-pa3"></a>When you add a
- network card, do not forget to set your firewall to watch that
+ network card, do not forget to set your firewall to monitor that
interface as well.
</p>
@@ -316,20 +313,19 @@
</li>
<li class="listitem">
- <p><a name="misc-params-network-pa4"></a><span class="guilabel">Proxies</span>:
- </p>
+ <p><a name="misc-params-network-pa4"></a><span class="bold"><strong>Proxies</strong></span></p>
<p><a name="misc-params-network-pa4a"></a>A Proxy Server
- acts as an intermediary between your computer and the wider internet.
+ acts as an intermediary between your computer and the wider Internet.
This section allows you to configure your computer to utilize a proxy
service.
</p>
<p><a name="misc-params-network-pa4b"></a>You may need to
- consult your systems administrator to get the parameters you need to
- enter here
+ consult your systems administrator to obtain the parameters you need
+ to enter here.
</p>
</li>
@@ -355,38 +351,38 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-security-pa1"></a><span class="guilabel">Security
- Level</span>:
- </p>
-
-
- <p><a name="misc-params-security-pa1a"></a>Here you set the
- Security level for your computer, in most cases the default setting
- (Standard) is adequate for general use.
- </p>
+ <p><a name="misc-params-security-pa1"></a><span class="bold"><strong>Security Level</strong></span></p>
- <p><a name="misc-params-security-pa1b"></a>Check the option
- which best suits your usage.
+ <p><a name="misc-params-security-pa1a"></a>The default
+ Security level (Standard) for your computer should be adequate for
+ general use in most cases. However, select the option which best suits
+ your usage.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-security-pa2"></a><span class="guilabel">Firewall</span>:
+ <p><a name="misc-params-security-pa2"></a><span class="bold"><strong>Firewall</strong></span></p>
+
+
+ <p><a name="misc-params-security-pa2b"></a>The firewall
+ allows you to manage which network connections are allowed on your
+ computer. The safe and secure default is to allow ZERO inbound
+ connections. This does not stop you connecting outbound and using your
+ computer normally.
</p>
- <p><a name="misc-params-security-pa2a"></a>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.
+ <p>Please be aware that the Internet is a high risk
+ network where there are continuous attempts to probe and attack
+ systems. Even seemingly <span class="quote">&#8220;<span class="quote">safe</span>&#8221;</span> connections such as ICMP
+ (for ping) have been used as covert data channels for exfiltrating
+ data by malicious persons.
</p>
- <p><a name="misc-params-security-pa2b"></a>Select the
- services that you wish to have access to your system. Your selections
- will depend on what you use your computer for. For more information,
- see <a class="xref" href="firewall.html" title="Firewall">the section called &#8220;Firewall&#8221;</a>.
+ <p>For more information, see <a class="xref" href="">???</a>.
</p>
@@ -400,7 +396,8 @@
<td align="left" valign="top">
<p><a name="misc-params-security-pa2c"></a>Bear in mind
- that allowing everything (no firewall) may be very risky.
+ that allowing <span class="emphasis"><em>everything</em></span> (no firewall) may be
+ very risky.
</p>
</td>
diff --git a/ru/Select-and-use-ISOs.html b/ru/Select-and-use-ISOs.html
index 84a2080..6d29ed6 100644
--- a/ru/Select-and-use-ISOs.html
+++ b/ru/Select-and-use-ISOs.html
@@ -23,217 +23,209 @@
</div>
</div>
-
-
- <div class="section" title="Introduction">
+
+
+
+
+
+
+ <div class="section" title="&#1042;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e19"></a>Introduction
+ <h3 class="title"><a name="d5e19"></a>&#1042;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077;
</h3>
</div>
</div>
</div>
-
- <p>Mageia is distributed via ISO images. This page will help you to choose
- which image match your needs.
+ <p>&#1056;&#1072;&#1089;&#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1077; Mageia &#1087;&#1088;&#1086;&#1080;&#1089;&#1093;&#1086;&#1076;&#1080;&#1090; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074; ISO. &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081;
+ &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1089;&#1087;&#1088;&#1072;&#1074;&#1082;&#1080; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1074;&#1072;&#1096;&#1080;&#1084;
+ &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1085;&#1086;&#1089;&#1090;&#1103;&#1084;.
</p>
-
- <p>There is two families of media:</p>
-
+ <p>&#1057;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1090;&#1088;&#1080; &#1089;&#1077;&#1084;&#1077;&#1081;&#1089;&#1090;&#1074;&#1072; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1076;&#1080;&#1089;&#1090;&#1088;&#1080;&#1073;&#1091;&#1090;&#1080;&#1074;&#1072;:</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>Classical installer: After booting the media, it will follow a process
- allowing to choose what to install and how to configure your target
- system. This give you the maximal flexibility for a customized installation,
- in particular to choose which Desktop Environment you will install.
+ <p><span class="bold"><strong>&#1050;&#1083;&#1072;&#1089;&#1089;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1089;&#1087;&#1086;&#1089;&#1086;&#1073; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;:</strong></span> &#1087;&#1086;&#1089;&#1083;&#1077;
+ &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1072;&#1095;&#1072;&#1090;&#1072; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1072;, &#1074; &#1093;&#1086;&#1076;&#1077; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1074;&#1099;
+ &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1080; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1073;&#1091;&#1076;&#1091;&#1097;&#1091;&#1102; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1091;&#1102;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;. &#1069;&#1090;&#1086;&#1090; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090; &#1074;&#1072;&#1084; &#1084;&#1072;&#1082;&#1089;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1075;&#1080;&#1073;&#1082;&#1086;&#1089;&#1090;&#1080;
+ &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1089;&#1088;&#1077;&#1076;&#1091;, &#1082;&#1072;&#1082;&#1086;&#1081; &#1073;&#1099; &#1074;&#1099; &#1093;&#1086;&#1090;&#1077;&#1083;&#1080;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;.
</p>
</li>
<li class="listitem">
- <p>LIVE media: you can boot the media in a real Mageia system without
- installing it, to see what you will get after installation. The
- installation process is simpler, but you get lesser choices.
+ <p><span class="bold"><strong>&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1087;&#1086;&#1088;&#1090;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; LIVE &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;:</strong></span> &#1101;&#1090;&#1086;&#1090;
+ &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1076;&#1072;&#1089;&#1090; &#1074;&#1072;&#1084; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1087;&#1086;&#1087;&#1088;&#1086;&#1073;&#1086;&#1074;&#1072;&#1090;&#1100; Mageia &#1073;&#1077;&#1079; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082; &#1080;
+ &#1074;&#1085;&#1077;&#1089;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081; &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1074; &#1087;&#1086;&#1088;&#1090;&#1072;&#1090;&#1080;&#1074;&#1085;&#1091;&#1102;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1090;&#1072;&#1082;&#1078;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1087;&#1088;&#1080;
+ &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1077; &#1080;&#1083;&#1080; &#1091;&#1078;&#1077; &#1087;&#1086;&#1089;&#1083;&#1077; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103;.
+ </p>
+
+ <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1048;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1086;&#1088;&#1090;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; Live &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1087;&#1088;&#1086;&#1097;&#1077;
+ &#1082;&#1083;&#1072;&#1089;&#1089;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086;, &#1085;&#1086; &#1091; &#1074;&#1072;&#1089; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074; &#1085;&#1105;&#1084; &#1091;&#1079;&#1082;&#1080;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div class="important" title="&#1042;&#1072;&#1078;&#1085;&#1086;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1072;&#1078;&#1085;&#1086;]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1054;&#1073;&#1088;&#1072;&#1079;&#1072;&#1084;&#1080; ISO &#1087;&#1086;&#1088;&#1090;&#1072;&#1090;&#1080;&#1074;&#1085;&#1099;&#1093; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; <span class="quote">&laquo;<span class="quote">&laquo;&#1089; &#1085;&#1091;&#1083;&#1103;&raquo;</span>&raquo;</span>. &#1054;&#1085;&#1080; &#1085;&#1077;&#1087;&#1088;&#1080;&#1075;&#1086;&#1076;&#1085;&#1099; &#1076;&#1083;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1080;&#1079;
+ &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1080;&#1093; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1086;&#1074;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1087;&#1086; &#1089;&#1077;&#1090;&#1080;:</strong></span> &#1050;&#1072;&#1078;&#1076;&#1099;&#1081; &#1080;&#1079; &#1090;&#1072;&#1082;&#1080;&#1093; &#1084;&#1072;&#1083;&#1099;&#1093;
+ &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;, &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1076;&#1083;&#1103; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072; &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; DrakX &#1080;
+ &#1087;&#1086;&#1080;&#1089;&#1082;&#1072; <code class="literal">DrakX-installer-stage2</code> &#1080; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
+ &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100; &#1080; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1080;&#1090;&#1100; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1091;. &#1058;&#1072;&#1082;&#1080;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1084;&#1086;&#1075;&#1091;&#1090; &#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100;&#1089;&#1103;
+ &#1085;&#1072; &#1078;&#1105;&#1089;&#1090;&#1082;&#1086;&#1084; &#1076;&#1080;&#1089;&#1082;&#1077; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;, &#1083;&#1086;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1084; &#1076;&#1080;&#1089;&#1082;&#1077;, &#1074; &#1083;&#1086;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1077;&#1090;&#1080; &#1080;&#1083;&#1080; &#1074;
+ &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1077;.
+ </p>
+
+ <p>&#1058;&#1072;&#1082;&#1080;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1086;&#1095;&#1077;&#1085;&#1100; &#1084;&#1072;&#1083;&#1077;&#1085;&#1100;&#1082;&#1080;&#1077; (&#1084;&#1077;&#1085;&#1077;&#1077; 100 &#1052;&#1041;). &#1048;&#1084;&#1080; &#1091;&#1076;&#1086;&#1073;&#1085;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080;
+ &#1082;&#1072;&#1085;&#1072;&#1083; &#1089;&#1074;&#1103;&#1079;&#1080; &#1074; &#1089;&#1077;&#1090;&#1080; &#1089;&#1083;&#1080;&#1096;&#1082;&#1086;&#1084; &#1091;&#1079;&#1082;&#1080;&#1081; &#1076;&#1083;&#1103; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086;&#1083;&#1085;&#1086;&#1094;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; DVD, &#1085;&#1072;
+ &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;&#1093; &#1073;&#1077;&#1079; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072; &#1076;&#1083;&#1103; &#1095;&#1090;&#1077;&#1085;&#1080;&#1103; DVD &#1080;&#1083;&#1080; &#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;&#1093;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1085;&#1077;
+ &#1084;&#1086;&#1075;&#1091;&#1090; &#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1072;&#1090;&#1100; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1089; &#1092;&#1083;&#1101;&#1096;-&#1076;&#1080;&#1089;&#1082;&#1072; USB.
</p>
</li>
</ul>
</div>
-
- <p>Details are given in the next sections.</p>
+ <p>&#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1077;&#1085;&#1099; &#1074; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1093; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&#1093;.</p>
</div>
-
<div class="section" title="&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e29"></a>&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;
+ <h3 class="title"><a name="d5e41"></a>&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;
</h3>
</div>
</div>
</div>
-
<div class="section" title="&#1054;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e31"></a>&#1054;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077;
+ <h4 class="title"><a name="d5e43"></a>&#1054;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077;
</h4>
</div>
</div>
</div>
-
<p>&#1047;&#1076;&#1077;&#1089;&#1100; &#1084;&#1099; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1084; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1084; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1092;&#1072;&#1081;&#1083; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1084;&#1086;&#1078;&#1085;&#1086;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1080;/&#1080;&#1083;&#1080; &#1086;&#1073;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; Mageia, &#1072; &#1090;&#1072;&#1082;&#1078;&#1077; &#1083;&#1102;&#1073;&#1086;&#1081; &#1092;&#1080;&#1079;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;, &#1085;&#1072;
- &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1093;&#1088;&#1072;&#1085;&#1103;&#1090;&#1089;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1092;&#1072;&#1081;&#1083;&#1072; ISO.
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1080;/&#1080;&#1083;&#1080; &#1086;&#1073;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; Mageia, &#1072; &#1090;&#1072;&#1082;&#1078;&#1077; &#1083;&#1102;&#1073;&#1086;&#1081; &#1092;&#1080;&#1079;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;, &#1075;&#1076;&#1077;
+ &#1093;&#1088;&#1072;&#1085;&#1103;&#1090;&#1089;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1092;&#1072;&#1081;&#1083;&#1072; ISO.
</p>
-
- <p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1081;&#1090;&#1080; &#1080;&#1093; <a class="ulink" href="http://www.mageia.org/ru/downloads/" target="_top">&#1079;&#1076;&#1077;&#1089;&#1100;</a>.
+ <p>&#1053;&#1072;&#1081;&#1090;&#1080; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1084;&#1086;&#1078;&#1085;&#1086; <a class="ulink" href="http://www.mageia.org/ru/downloads/" target="_top">&#1079;&#1076;&#1077;&#1089;&#1100;</a>.
</p>
</div>
-
<div class="section" title="&#1050;&#1083;&#1072;&#1089;&#1089;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e36"></a>&#1050;&#1083;&#1072;&#1089;&#1089;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ <h4 class="title"><a name="d5e48"></a>&#1050;&#1083;&#1072;&#1089;&#1089;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
</h4>
</div>
</div>
</div>
-
<div class="section" title="&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e38"></a>&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
- </h5>
- </div>
- </div>
- </div>
-
-
-
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p>&#1069;&#1090;&#1080; ISO &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090; &#1090;&#1088;&#1072;&#1076;&#1080;&#1094;&#1080;&#1086;&#1085;&#1085;&#1099;&#1081; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;, &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1084;&#1099;&#1081; drakx.</p>
-
- </li>
- <li class="listitem">
-
- <p>&#1054;&#1085;&#1080; &#1087;&#1088;&#1080;&#1075;&#1086;&#1076;&#1085;&#1099; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &laquo;&#1089; &#1085;&#1091;&#1083;&#1103;&raquo; &#1080;&#1083;&#1080; &#1076;&#1083;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1080;&#1093; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1086;&#1074;.</p>
-
- </li>
- </ul>
- </div>
-
- </div>
-
-
- <div class="section" title="DVD">
- <div class="titlepage">
- <div>
- <div>
- <h5 class="title"><a name="d5e45"></a>DVD
+ <h5 class="title"><a name="d5e50"></a>&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088; 32 &#1080;&#1083;&#1080; 64 &#1073;&#1080;&#1090;.</p>
-
- </li>
- <li class="listitem">
-
- <p>&#1044;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1080;&#1079; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1074; &#1101;&#1082;&#1088;&#1072;&#1085;&#1077; &#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103;:
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1074;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;, &#1090;&#1077;&#1089;&#1090; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;, &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1080;&#1103; &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
+ <p>&#1053;&#1072; &#1101;&#1090;&#1080;&#1093; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;&#1093; ISO &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1090;&#1088;&#1072;&#1076;&#1080;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1077; &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086;&#1076;
+ &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; DrakX.
</p>
</li>
<li class="listitem">
- <p>&#1050;&#1072;&#1078;&#1076;&#1099;&#1081; DVD &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1084;&#1085;&#1086;&#1075;&#1080;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1088;&#1072;&#1073;&#1086;&#1095;&#1080;&#1077; &#1089;&#1088;&#1077;&#1076;&#1099; &#1080; &#1103;&#1079;&#1099;&#1082;&#1080;.</p>
-
- </li>
- <li class="listitem">
-
- <p>&#1055;&#1088;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1091; &#1042;&#1072;&#1089; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1075;&#1086;
- &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1103;.
+ <p>&#1054;&#1085;&#1080; &#1087;&#1088;&#1080;&#1075;&#1086;&#1076;&#1085;&#1099; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &laquo;&#1089; &#1085;&#1091;&#1083;&#1103;&raquo; &#1080;&#1083;&#1080; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1080;&#1093; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1086;&#1074;
+ Mageia
</p>
</li>
- </ul>
- </div>
-
- </div>
-
-
- <div class="section" title="DVD &#1076;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099;">
- <div class="titlepage">
- <div>
- <div>
- <h5 class="title"><a name="d5e56"></a>DVD &#1076;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099;
- </h5>
- </div>
- </div>
- </div>
-
-
-
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
- <p>&#1055;&#1072;&#1082;&#1077;&#1090;&#1099; &#1086;&#1073;&#1077;&#1080;&#1093; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088; &#1087;&#1088;&#1080;&#1089;&#1091;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1090; &#1085;&#1072; &#1086;&#1076;&#1085;&#1086;&#1084; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1074;&#1099;&#1073;&#1086;&#1088;
- &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080; &#1085;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1086;&#1073; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1085;&#1086;&#1084;
- &#1087;&#1088;&#1086;&#1094;&#1077;&#1089;&#1089;&#1086;&#1088;&#1077;.
- </p>
+ <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; 32-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1080; 64-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;.</p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1080;&#1081; &#1089;&#1090;&#1086;&#1083; XFCE.</p>
+ <p>&#1044;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1080;&#1079; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1074; &#1101;&#1082;&#1088;&#1072;&#1085;&#1077;
+ <span class="quote">&laquo;<span class="quote">&#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103;</span>&raquo;</span> &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;&#1072;: <span class="emphasis"><em>&#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1074;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;,
+ &#1090;&#1077;&#1089;&#1090; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;</em></span> &#1080; <span class="emphasis"><em>&#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1080;&#1103;
+ &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;</em></span></p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1103;&#1079;&#1099;&#1082;&#1080; (be, bg, ca, de, en, es, fr, it, mk, pl, pt, ru, sv,
- uk) &#1041;&#1067;&#1051;&#1048; &#1055;&#1056;&#1054;&#1042;&#1045;&#1056;&#1045;&#1053;&#1067;!
- </p>
+ <p>&#1050;&#1072;&#1078;&#1076;&#1099;&#1081; DVD &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1084;&#1085;&#1086;&#1075;&#1080;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1088;&#1072;&#1073;&#1086;&#1095;&#1080;&#1077; &#1089;&#1088;&#1077;&#1076;&#1099; &#1080; &#1103;&#1079;&#1099;&#1082;&#1080;</p>
</li>
<li class="listitem">
- <p>&#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1077; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077;.</p>
+ <p>&#1055;&#1088;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1091; &#1042;&#1072;&#1089; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1075;&#1086;
+ &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1103;
+ </p>
</li>
</ul>
@@ -242,201 +234,155 @@
</div>
</div>
-
<div class="section" title="Live &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e67"></a>Live &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;
+ <h4 class="title"><a name="d5e68"></a>Live &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;
</h4>
</div>
</div>
</div>
-
<div class="section" title="&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e69"></a>&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
+ <h5 class="title"><a name="d5e70"></a>&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<p>&#1052;&#1086;&#1078;&#1085;&#1086; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1076;&#1083;&#1103; &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1083;&#1077;&#1085;&#1080;&#1103; &#1089; &#1076;&#1080;&#1089;&#1090;&#1088;&#1080;&#1073;&#1091;&#1090;&#1080;&#1074;&#1086;&#1084; &#1073;&#1077;&#1079; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1077;&#1075;&#1086; &#1085;&#1072;
- &#1078;&#1105;&#1089;&#1090;&#1082;&#1080;&#1081; &#1076;&#1080;&#1089;&#1082; &#1080; &#1086;&#1087;&#1094;&#1080;&#1086;&#1085;&#1072;&#1083;&#1100;&#1085;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; Mageia &#1085;&#1072; &#1074;&#1072;&#1096; &#1078;&#1105;&#1089;&#1090;&#1082;&#1080;&#1081; &#1076;&#1080;&#1089;&#1082;.
+ &#1078;&#1105;&#1089;&#1090;&#1082;&#1080;&#1081; &#1076;&#1080;&#1089;&#1082;.
</p>
</li>
<li class="listitem">
- <p>&#1050;&#1072;&#1078;&#1076;&#1099;&#1081; ISO &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1086;&#1076;&#1085;&#1091; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1089;&#1088;&#1077;&#1076;&#1091; (KDE &#1080;&#1083;&#1080; GNOME).</p>
-
- </li>
- <li class="listitem">
-
- <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088; 32 &#1080;&#1083;&#1080; 64 &#1073;&#1080;&#1090;.</p>
-
- </li>
- <li class="listitem">
-
- <p><span class="bold"><strong>Live &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;&#1084;&#1080; ISO &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &laquo;&#1089; &#1085;&#1091;&#1083;&#1103;&raquo;. &#1054;&#1085;&#1080; &#1085;&#1077;&#1087;&#1088;&#1080;&#1075;&#1086;&#1076;&#1085;&#1099; &#1076;&#1083;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1089;
- &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1080;&#1093; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1086;&#1074;.</strong></span></p>
+ <p>&#1048;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1090;&#1072;&#1082;&#1078;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085; &#1074; Live &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;.</p>
</li>
<li class="listitem">
- <p>&#1054;&#1085;&#1080; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1077; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077;.</p>
-
- </li>
- </ul>
- </div>
-
- </div>
-
-
- <div class="section" title="Live CD KDE">
- <div class="titlepage">
- <div>
- <div>
- <h5 class="title"><a name="d5e83"></a>Live CD KDE
- </h5>
- </div>
- </div>
- </div>
-
-
-
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; KDE.</p>
+ <p>&#1050;&#1072;&#1078;&#1076;&#1099;&#1081; ISO &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1083;&#1080;&#1096;&#1100; &#1086;&#1076;&#1085;&#1091; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1089;&#1088;&#1077;&#1076;&#1091; (Plasma, GNOME &#1080;&#1083;&#1080; Xfce)</p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1072;&#1085;&#1075;&#1083;&#1080;&#1081;&#1089;&#1082;&#1080;&#1081; &#1103;&#1079;&#1099;&#1082;.</p>
+ <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; 32-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1080; 64-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;.</p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; 32 &#1073;&#1080;&#1090;.</p>
+ <p>&#1054;&#1085;&#1080; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1077; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077;</p>
</li>
</ul>
</div>
</div>
-
- <div class="section" title="Live CD GNOME">
+ <div class="section" title="Live DVD Plasma">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e92"></a>Live CD GNOME
+ <h5 class="title"><a name="d5e83"></a>Live DVD Plasma
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; GNOME.</p>
+ <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; Plasma</p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1072;&#1085;&#1075;&#1083;&#1080;&#1081;&#1089;&#1082;&#1080;&#1081; &#1103;&#1079;&#1099;&#1082;.</p>
+ <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1087;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076;&#1099; &#1085;&#1072; &#1074;&#1089;&#1077;&#1093; &#1103;&#1079;&#1099;&#1082;&#1072;&#1093;</p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; 32 &#1073;&#1080;&#1090;.</p>
+ <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; 64-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099;</p>
</li>
</ul>
</div>
</div>
-
- <div class="section" title="Live DVD KDE">
+ <div class="section" title="Live DVD GNOME">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e101"></a>Live DVD KDE
+ <h5 class="title"><a name="d5e92"></a>Live DVD GNOME
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; KDE.</p>
+ <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; GNOME</p>
</li>
<li class="listitem">
- <p>&#1055;&#1088;&#1080;&#1089;&#1091;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1090; &#1074;&#1089;&#1077; &#1103;&#1079;&#1099;&#1082;&#1080;.</p>
+ <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1087;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076;&#1099; &#1085;&#1072; &#1074;&#1089;&#1077;&#1093; &#1103;&#1079;&#1099;&#1082;&#1072;&#1093;</p>
</li>
<li class="listitem">
- <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088; 32 &#1080;&#1083;&#1080; 64 &#1073;&#1080;&#1090;.</p>
+ <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; 64-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099;</p>
</li>
</ul>
</div>
</div>
-
- <div class="section" title="Live DVD GNOME">
+ <div class="section" title="Live DVD Xfce">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e110"></a>Live DVD GNOME
+ <h5 class="title"><a name="d5e101"></a>Live DVD Xfce
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; GNOME.</p>
+ <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; Xfce</p>
</li>
<li class="listitem">
- <p>&#1055;&#1088;&#1080;&#1089;&#1091;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1090; &#1074;&#1089;&#1077; &#1103;&#1079;&#1099;&#1082;&#1080;.</p>
+ <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1087;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076;&#1099; &#1085;&#1072; &#1074;&#1089;&#1077;&#1093; &#1103;&#1079;&#1099;&#1082;&#1072;&#1093;</p>
</li>
<li class="listitem">
- <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088; 32 &#1080;&#1083;&#1080; 64 &#1073;&#1080;&#1090;.</p>
+ <p>32-&#1073;&#1080;&#1090;&#1085;&#1072;&#1103; &#1080;&#1083;&#1080; 64-&#1073;&#1080;&#1090;&#1085;&#1072;&#1103; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099;.</p>
</li>
</ul>
@@ -445,87 +391,63 @@
</div>
</div>
-
- <div class="section" title="&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; CD &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;">
+ <div class="section" title="&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086; &#1089;&#1077;&#1090;&#1080;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e119"></a>&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; CD &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;
+ <h4 class="title"><a name="d5e110"></a>&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086; &#1089;&#1077;&#1090;&#1080;
</h4>
</div>
</div>
</div>
-
<div class="section" title="&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e121"></a>&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
+ <h5 class="title"><a name="d5e112"></a>&#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1050;&#1072;&#1078;&#1076;&#1099;&#1081; &#1080;&#1079; &#1090;&#1072;&#1082;&#1080;&#1093; &#1084;&#1072;&#1083;&#1099;&#1093; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1084;&#1080;&#1085;&#1080;&#1084;&#1091;&#1084; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1093; &#1076;&#1083;&#1103;
- &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;&#1072; drakx &#1080; &#1087;&#1086;&#1080;&#1089;&#1082;&#1072; drakx-installer-stage2, &#1080; &#1076;&#1088;&#1091;&#1075;&#1080;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;,
- &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1085;&#1091;&#1078;&#1085;&#1099; &#1076;&#1083;&#1103; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1103; &#1080; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1080;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;. &#1058;&#1072;&#1082;&#1080;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1084;&#1086;&#1075;&#1091;&#1090;
- &#1085;&#1072;&#1093;&#1086;&#1076;&#1080;&#1090;&#1100;&#1089;&#1103; &#1085;&#1072; &#1078;&#1105;&#1089;&#1090;&#1082;&#1086;&#1084; &#1076;&#1080;&#1089;&#1082;&#1077; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;, &#1083;&#1086;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1084; &#1076;&#1080;&#1089;&#1082;&#1077;, &#1074; &#1083;&#1086;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1077;&#1090;&#1080;
- &#1080;&#1083;&#1080; &#1074; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1077;.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>&#1058;&#1072;&#1082;&#1080;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1086;&#1095;&#1077;&#1085;&#1100; &#1084;&#1072;&#1083;&#1077;&#1085;&#1100;&#1082;&#1080;&#1077; (&#1084;&#1077;&#1085;&#1077;&#1077; 100 &#1052;&#1041;). &#1048;&#1084;&#1080; &#1091;&#1076;&#1086;&#1073;&#1085;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080;
- &#1082;&#1072;&#1085;&#1072;&#1083; &#1089;&#1074;&#1103;&#1079;&#1080; &#1074; &#1089;&#1077;&#1090;&#1080; &#1089;&#1083;&#1080;&#1096;&#1082;&#1086;&#1084; &#1091;&#1079;&#1082;&#1080;&#1081; &#1076;&#1083;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1087;&#1086;&#1083;&#1085;&#1086;&#1094;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; DVD, &#1085;&#1072;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;&#1093; &#1073;&#1077;&#1079; &#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1072; DVD &#1080;&#1083;&#1080; &#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;&#1093;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1085;&#1077; &#1084;&#1086;&#1075;&#1091;&#1090; &#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1072;&#1090;&#1100;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1089; &#1092;&#1083;&#1101;&#1096;-&#1076;&#1080;&#1089;&#1082;&#1072; USB.
- </p>
-
- </li>
- <li class="listitem">
-
- <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088; 32 &#1080;&#1083;&#1080; 64 &#1073;&#1080;&#1090;.</p>
+ <p>&#1056;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1076;&#1083;&#1103; 32-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1080; 64-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081; &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;.</p>
</li>
<li class="listitem">
- <p>&#1058;&#1086;&#1083;&#1100;&#1082;&#1086; &#1072;&#1085;&#1075;&#1083;&#1080;&#1081;&#1089;&#1082;&#1080;&#1081; &#1103;&#1079;&#1099;&#1082;.</p>
+ <p>&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1085;&#1072; &#1072;&#1085;&#1075;&#1083;&#1080;&#1081;&#1089;&#1082;&#1086;&#1084; &#1103;&#1079;&#1099;&#1082;&#1077;</p>
</li>
</ul>
</div>
</div>
-
- <div class="section" title="boot.iso">
+ <div class="section" title="netinstall.iso">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e132"></a>boot.iso
+ <h5 class="title"><a name="d5e119"></a>netinstall.iso
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1077; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077;. &#1055;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1085;&#1077; &#1078;&#1077;&#1083;&#1072;&#1102;&#1090; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1084;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1072;&#1084;&#1080;.
+ <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1077; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077;. &#1055;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1086; &#1076;&#1083;&#1103;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1085;&#1077; &#1093;&#1086;&#1090;&#1103;&#1090; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1084;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1072;&#1084;&#1080;.
</p>
</li>
@@ -533,26 +455,24 @@
</div>
</div>
-
- <div class="section" title="boot-nonfree.iso">
+ <div class="section" title="netinstall-nonfree.iso">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e137"></a>boot-nonfree.iso
+ <h5 class="title"><a name="d5e124"></a>netinstall-nonfree.iso
</h5>
</div>
</div>
</div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1055;&#1054; (&#1074; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1086;&#1084; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1099;, &#1082;&#1086;&#1076;&#1077;&#1082;&#1080; &#1080; &#1090;.&#1076;.). &#1055;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;
- &#1076;&#1083;&#1103; &#1090;&#1077;&#1093;, &#1082;&#1090;&#1086; &#1085;&#1091;&#1078;&#1076;&#1072;&#1077;&#1090;&#1089;&#1103; &#1074; &#1101;&#1090;&#1080;&#1093; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;&#1093; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+ &#1076;&#1083;&#1103; &#1090;&#1077;&#1093;, &#1082;&#1090;&#1086; &#1085;&#1091;&#1078;&#1076;&#1072;&#1077;&#1090;&#1089;&#1103; &#1074; &#1101;&#1090;&#1080;&#1093; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;&#1093; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;
</p>
</li>
@@ -564,119 +484,130 @@
</div>
</div>
-
<div class="section" title="&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1080; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e142"></a>&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1080; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;
+ <h3 class="title"><a name="d5e129"></a>&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1080; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;
</h3>
</div>
</div>
</div>
-
<div class="section" title="&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e144"></a>&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072;
+ <h4 class="title"><a name="d5e131"></a>&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072;
</h4>
</div>
</div>
</div>
-
- <p>&#1050;&#1072;&#1082; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;&#1072;&#1084;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1085;&#1091;&#1078;&#1085;&#1099;&#1081; &#1074;&#1072;&#1084; &#1092;&#1072;&#1081;&#1083; ISO, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1077;&#1075;&#1086; &#1080;&#1083;&#1080;
+ <p>&#1050;&#1072;&#1082; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;&#1072;&#1084;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1085;&#1091;&#1078;&#1085;&#1099;&#1081; &#1074;&#1072;&#1084; &#1092;&#1072;&#1081;&#1083; ISO, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1089;&#1082;&#1072;&#1095;&#1072;&#1090;&#1100; &#1077;&#1075;&#1086; &#1080;&#1083;&#1080;
&#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1088;&#1086;&#1090;&#1086;&#1082;&#1086;&#1083;&#1072; http, &#1080;&#1083;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; BitTorrent. &#1042; &#1086;&#1073;&#1086;&#1080;&#1093; &#1089;&#1083;&#1091;&#1095;&#1072;&#1103;&#1093; &#1074; &#1086;&#1082;&#1085;&#1077;
&#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1072; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1072;&#1103; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1103; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080;
- &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1072; &#8203;&#8203;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1077;&#1075;&#1086;, &#1077;&#1089;&#1083;&#1080; &#1089;&#1082;&#1086;&#1088;&#1086;&#1089;&#1090;&#1100; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;
- &#1089;&#1083;&#1080;&#1096;&#1082;&#1086;&#1084; &#1084;&#1072;&#1083;&#1072;. &#1045;&#1089;&#1083;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1086; http, &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1085;&#1077;&#1095;&#1090;&#1086;:
+ &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1072; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1077;&#1075;&#1086; &#1085;&#1072; &#1072;&#1083;&#1100;&#1090;&#1077;&#1088;&#1085;&#1072;&#1090;&#1080;&#1074;&#1091;, &#1077;&#1089;&#1083;&#1080; &#1089;&#1082;&#1086;&#1088;&#1086;&#1089;&#1090;&#1100;
+ &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1089;&#1083;&#1080;&#1096;&#1082;&#1086;&#1084; &#1084;&#1072;&#1083;&#1072;.
</p>
-
+ <p>&#1045;&#1089;&#1083;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1086; http, &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1099;&#1077; &#1089;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103; &#1086; &#1082;&#1086;&#1085;&#1090;&#1088;&#1086;&#1083;&#1100;&#1085;&#1099;&#1093;
+ &#1089;&#1091;&#1084;&#1084;&#1072;&#1093;.
+ </p>
- <p>md5sum and sha1sum are tools to check the ISO integrity. Use only one of
- them. Keep one of them <a class="link" href="Select-and-use-ISOs.html#integrity">for further
- usage</a>. Then this window appears:
+ <p><code class="literal">md5sum</code>, <code class="literal">sha1sum</code> &#1080;
+ <code class="literal">sha512sum</code> (&#1089;&#1072;&#1084;&#1072;&#1103; &#1079;&#1072;&#1097;&#1080;&#1097;&#1105;&#1085;&#1085;&#1072;&#1103;) &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072;&#1084;&#1080; &#1076;&#1083;&#1103;
+ &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1080; &#1094;&#1077;&#1083;&#1086;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO. &#1057;&#1082;&#1086;&#1087;&#1080;&#1088;&#1091;&#1081;&#1090;&#1077; &#1086;&#1076;&#1085;&#1091; &#1080;&#1079; &#1082;&#1086;&#1085;&#1090;&#1088;&#1086;&#1083;&#1100;&#1085;&#1099;&#1093; &#1089;&#1091;&#1084;&#1084;
+ (&#1089;&#1090;&#1088;&#1086;&#1082;&#1072;, &#1089;&#1086;&#1089;&#1090;&#1086;&#1103;&#1097;&#1072;&#1103; &#1080;&#1079; &#1073;&#1091;&#1082;&#1074; &#1080; &#1094;&#1080;&#1092;&#1088;) &#1076;&#1083;&#1103; &#1076;&#1072;&#1083;&#1100;&#1085;&#1077;&#1081;&#1096;&#1077;&#1075;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
</p>
-
- <p>&#1054;&#1090;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090; &laquo;&#1057;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1092;&#1072;&#1081;&#1083;&raquo;.</p>
+ <p>&#1052;&#1077;&#1078;&#1076;&#1091; &#1090;&#1077;&#1084;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1086; &#1086;&#1082;&#1085;&#1086; &#1076;&#1083;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089;&#1072;&#1084;&#1086;&#1075;&#1086; ISO:</p>
+
+
+ <p>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; <span class="emphasis"><em>&#1057;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1092;&#1072;&#1081;&#1083;</em></span>, &#1079;&#1072;&#1090;&#1077;&#1084; <span class="emphasis"><em>&#1054;&#1050;</em></span>.
+ </p>
</div>
-
- <div class="section" title="&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1094;&#1077;&#1083;&#1086;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;&#1085;&#1099;&#1093; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;">
+ <div class="section" title="&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1094;&#1077;&#1083;&#1086;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1085;&#1099;&#1093; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;">
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="d5e156"></a>&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1094;&#1077;&#1083;&#1086;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;&#1085;&#1099;&#1093; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;
+ <h4 class="title"><a name="d5e149"></a>&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1094;&#1077;&#1083;&#1086;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1085;&#1099;&#1093; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;
</h4>
</div>
</div>
</div>
-
- <p>Both checksums are hexadecimal numbers calculated by an algorithm from the
- file to be downloaded. When you ask these algorithms to recalculate this
- number from your downloaded file, either you have the same number and your
- downloaded file is correct, or the number is different and you have a
- failure. A failure infers that you should retry the download.
+ <p>&#1054;&#1073;&#1072; &#1096;&#1077;&#1089;&#1090;&#1085;&#1072;&#1076;&#1094;&#1072;&#1090;&#1077;&#1088;&#1080;&#1095;&#1085;&#1099;&#1093; &#1095;&#1080;&#1089;&#1083;&#1072; &#1074;&#1099;&#1095;&#1080;&#1089;&#1083;&#1077;&#1085;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1086;&#1075;&#1086; &#1072;&#1083;&#1075;&#1086;&#1088;&#1080;&#1090;&#1084;&#1072; &#1085;&#1072;
+ &#1086;&#1089;&#1085;&#1086;&#1074;&#1077; &#1092;&#1072;&#1081;&#1083;&#1072;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;. &#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1087;&#1086;&#1087;&#1088;&#1086;&#1089;&#1080;&#1090;&#1077; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1091;&#1102;
+ &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091; &#1089;&#1085;&#1086;&#1074;&#1072; &#1074;&#1099;&#1095;&#1080;&#1089;&#1083;&#1080;&#1090;&#1100; &#1096;&#1077;&#1089;&#1090;&#1085;&#1072;&#1076;&#1094;&#1072;&#1090;&#1077;&#1088;&#1080;&#1095;&#1085;&#1086;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; &#1085;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086;
+ &#1092;&#1072;&#1081;&#1083;&#1072;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1086; &#1090;&#1086; &#1078;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; (&#1101;&#1090;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1079;&#1085;&#1072;&#1095;&#1072;&#1090;&#1100; &#1095;&#1090;&#1086; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1073;&#1099;&#1083;&#1080;
+ &#1089;&#1082;&#1072;&#1095;&#1072;&#1085;&#1099; &#1085;&#1072;&#1076;&#1083;&#1077;&#1078;&#1072;&#1097;&#1080;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;) &#1080;&#1083;&#1080; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; (&#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;, &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1073;&#1099;&#1083;&#1080;
+ &#1089;&#1082;&#1072;&#1095;&#1072;&#1085;&#1099; &#1089; &#1086;&#1096;&#1080;&#1073;&#1082;&#1072;&#1084;&#1080;). &#1056;&#1072;&#1089;&#1093;&#1086;&#1078;&#1076;&#1077;&#1085;&#1080;&#1077; &#1094;&#1080;&#1092;&#1088; &#1086;&#1079;&#1085;&#1072;&#1095;&#1072;&#1077;&#1090;, &#1095;&#1090;&#1086; &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1100;
+ &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1091; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; &#1080;&#1083;&#1080; &#1087;&#1086;&#1087;&#1099;&#1090;&#1072;&#1090;&#1100;&#1089;&#1103; &#1074;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1077;&#1075;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; BitTorrent.
</p>
-
- <p>&#1054;&#1090;&#1082;&#1088;&#1086;&#1081;&#1090;&#1077; &#1082;&#1086;&#1085;&#1089;&#1086;&#1083;&#1100; (&#1086;&#1090; &#1080;&#1084;&#1077;&#1085;&#1080; &#1086;&#1073;&#1099;&#1095;&#1085;&#1086;&#1075;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;) &#1080; &#1076;&#1072;&#1081;&#1090;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1091;&#1102; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;:</p>
-
-
- <p>- &#1055;&#1088;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; md5sum: [sam@localhost]$ <strong class="userinput"><code>md5sum
- &#1087;&#1091;&#1090;&#1100;/&#1076;&#1086;/&#1092;&#1072;&#1081;&#1083;&#1072;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1072;/file.iso</code></strong>.
+ <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1082;&#1086;&#1085;&#1090;&#1088;&#1086;&#1083;&#1100;&#1085;&#1091;&#1102; &#1089;&#1091;&#1084;&#1084;&#1091; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO, &#1086;&#1090;&#1082;&#1088;&#1086;&#1081;&#1090;&#1077; &#1082;&#1086;&#1085;&#1089;&#1086;&#1083;&#1100;
+ (&#1086;&#1090; &#1080;&#1084;&#1077;&#1085;&#1080; &#1086;&#1073;&#1099;&#1095;&#1085;&#1086;&#1075;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;) &#1080; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1091;&#1102; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;:
</p>
-
- <p>- &#1055;&#1088;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; sha1sum: [sam@localhost]$ <strong class="userinput"><code>sha1sum
- &#1087;&#1091;&#1090;&#1100;/&#1076;&#1086;/&#1092;&#1072;&#1081;&#1083;&#1072;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1072;/file.iso</code></strong>.
- </p>
-
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; md5sum: <span class="command"><strong>md5sum &#1087;&#1091;&#1090;&#1100;/&#1082;/&#1092;&#1072;&#1081;&#1083;&#1091;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; sha1sum: <span class="command"><strong>sha1sum
+ &#1087;&#1091;&#1090;&#1100;/&#1082;/&#1092;&#1072;&#1081;&#1083;&#1091;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;.iso</strong></span></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; sha512sum: <span class="command"><strong>sha512sum
+ &#1087;&#1091;&#1090;&#1100;/&#1082;/&#1092;&#1072;&#1081;&#1083;&#1091;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;.iso</strong></span></p>
+
+ </li>
+ </ul>
+ </div>
- <p>&#1080; &#1089;&#1088;&#1072;&#1074;&#1085;&#1080;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1085;&#1086;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086;&#1074;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; (&#1076;&#1083;&#1103; &#1077;&#1075;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1091;&#1077;&#1090;&#1089;&#1103;
- &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103;) &#1089; &#1095;&#1080;&#1089;&#1083;&#1086;&#1084;, &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1084; &#1085;&#1072; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077; Mageia. &#1055;&#1088;&#1080;&#1084;&#1077;&#1088;:
- </p>
-
+ <p>&#1053;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;:</p>
- <p></p>
+ <p>&#1079;&#1072;&#1090;&#1077;&#1084; &#1089;&#1088;&#1072;&#1074;&#1085;&#1080;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1085;&#1086;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086;&#1074;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; (&#1076;&#1083;&#1103; &#1077;&#1075;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086;&#1085;&#1072;&#1076;&#1086;&#1073;&#1080;&#1090;&#1089;&#1103;
+ &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103;) &#1089; &#1095;&#1080;&#1089;&#1083;&#1086;&#1084; ISO, &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1084; &#1085;&#1072; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077; Mageia.
+ </p>
</div>
</div>
-
<div class="section" title="&#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="d5e169"></a>&#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO
+ <h3 class="title"><a name="d5e168"></a>&#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO
</h3>
</div>
</div>
</div>
-
- <p>&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1077;&#1085;&#1085;&#1099;&#1081; &#1086;&#1073;&#1088;&#1072;&#1079; ISO &#1084;&#1086;&#1078;&#1085;&#1086; &#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1090;&#1100; &#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1072;&#1082;&#1090;-&#1076;&#1080;&#1089;&#1082;, DVD &#1080;&#1083;&#1080; &#1092;&#1083;&#1077;&#1096;&#1082;&#1091;
- USB. &#1044;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1085;&#1077; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1086;&#1089;&#1090;&#1099;&#1084; &#1082;&#1086;&#1087;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084;, - &#1086;&#1085;&#1072; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1072;
- &#1076;&#1083;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1086;&#1095;&#1085;&#1086;&#1075;&#1086; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103;.
+ <p>&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1077;&#1085;&#1085;&#1099;&#1081; &#1086;&#1073;&#1088;&#1072;&#1079; ISO &#1084;&#1086;&#1078;&#1085;&#1086; <span class="quote">&laquo;<span class="quote">&#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1090;&#1100;</span>&raquo;</span> &#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1072;&#1082;&#1090;-&#1076;&#1080;&#1089;&#1082;, DVD &#1080;&#1083;&#1080;
+ &#1092;&#1083;&#1077;&#1096;&#1082;&#1091; USB. &#1044;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077; &#1087;&#1086; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1085;&#1077; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1086;&#1089;&#1090;&#1099;&#1084; &#1082;&#1086;&#1087;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084;, - &#1086;&#1085;&#1086;
+ &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1086; &#1076;&#1083;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1086;&#1095;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;.
</p>
-
<div class="section" title="&#1047;&#1072;&#1087;&#1080;&#1089;&#1072;&#1090;&#1100; ISO &#1085;&#1072; CD/DVD">
<div class="titlepage">
@@ -688,16 +619,14 @@
</div>
</div>
-
<p>&#1042;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1083;&#1102;&#1073;&#1099;&#1084; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1086;&#1084; &#1076;&#1083;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;, &#1085;&#1086; &#1077;&#1075;&#1086; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1085;&#1072;
- <span class="bold"><strong>&#1079;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;</strong></span>. &#1055;&#1088;&#1086;&#1089;&#1090;&#1086; &#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1090;&#1100; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1080;&#1083;&#1080;
- &#1092;&#1072;&#1081;&#1083;&#1099; &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;. &#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1077;&#1077; &#1086;&#1073; &#1101;&#1090;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1080;&#1079; <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">&#1074;&#1080;&#1082;&#1080;
+ <span class="emphasis"><em>&#1079;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;</em></span>. &#1055;&#1088;&#1086;&#1089;&#1090;&#1086; &#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1090;&#1100; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1080;&#1083;&#1080; &#1092;&#1072;&#1081;&#1083;&#1099;
+ &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;. &#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1077;&#1077; &#1086;&#1073; &#1101;&#1090;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1080;&#1079; <a class="ulink" href="https://wiki.mageia.org/en/Writing_CD_and_DVD_images" target="_top">&#1074;&#1080;&#1082;&#1080;
Mageia</a>.
</p>
</div>
-
<div class="section" title="&#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO &#1085;&#1072; USB &#1092;&#1083;&#1077;&#1096;&#1082;&#1091;">
<div class="titlepage">
@@ -709,12 +638,10 @@
</div>
</div>
-
<p>&#1042;&#1089;&#1077; &#1086;&#1073;&#1088;&#1072;&#1079;&#1099; ISO Mageia &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1075;&#1080;&#1073;&#1088;&#1080;&#1076;&#1085;&#1099;&#1084;&#1080;, &#1090;.&#1077;. &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1099;&#1074;&#1072;&#1090;&#1100; &#1080;&#1093; &#1085;&#1072;
USB &#1092;&#1083;&#1077;&#1096;&#1082;&#1091; &#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1077;&#1102; &#1076;&#1083;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
</p>
-
<div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Warning">
@@ -726,76 +653,99 @@
<td align="left" valign="top">
<p>&#1042; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;&#1077; &laquo;&#1079;&#1072;&#1087;&#1080;&#1089;&#1080;&raquo; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082; USB (&#1092;&#1083;&#1077;&#1096;&#1082;&#1091;) &#1074;&#1089;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1086;&#1081;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1085;&#1077;&#1081; &#1073;&#1091;&#1076;&#1091;&#1090; &#1091;&#1085;&#1080;&#1095;&#1090;&#1086;&#1078;&#1077;&#1085;&#1099;. &#1044;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082;&#1086; &#1074;&#1089;&#1077;&#1084; &#1076;&#1072;&#1085;&#1085;&#1099;&#1084;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1085;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090;
- &#1091;&#1085;&#1080;&#1095;&#1090;&#1086;&#1078;&#1077;&#1085;&#1099;, &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1090;&#1077;&#1088;&#1103;&#1085;&#1099;. &#1056;&#1072;&#1079;&#1084;&#1077;&#1088; &#1076;&#1080;&#1089;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1091;&#1084;&#1077;&#1085;&#1100;&#1096;&#1077;&#1085; &#1085;&#1072; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072;.
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1085;&#1077;&#1081; &#1073;&#1091;&#1076;&#1091;&#1090; &#1091;&#1085;&#1080;&#1095;&#1090;&#1086;&#1078;&#1077;&#1085;&#1099;.
</p>
</td>
</tr>
</table>
</div>
-
- <p>To recover the original capacity, you must redo partitioning and re-format
- the USB stick.
- </p>
-
+ <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1077;&#1076;&#1080;&#1085;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1084; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1084; &#1085;&#1072; &#1092;&#1083;&#1077;&#1096;&#1082;&#1077; &#1086;&#1089;&#1090;&#1072;&#1085;&#1077;&#1090;&#1089;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO
+ Mageia.
+ </p>
+
+ <p>&#1048;&#1090;&#1072;&#1082;, &#1077;&#1089;&#1083;&#1080; &#1086;&#1073;&#1088;&#1072;&#1079; ISO &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1086;&#1084; &#1074; 4 &#1043;&#1041; &#1073;&#1091;&#1076;&#1077;&#1090; &#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1085; &#1085;&#1072; &#1092;&#1083;&#1077;&#1096;&#1082;&#1091; USB &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1086;&#1084; 8
+ &#1043;&#1041;, &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1090;&#1100;, &#1095;&#1090;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088; &#1092;&#1083;&#1077;&#1096;&#1082;&#1080; - 4 &#1043;&#1041;. &#1055;&#1088;&#1080;&#1095;&#1080;&#1085;&#1086;&#1081; &#1101;&#1090;&#1086;&#1075;&#1086;
+ &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1090;&#1086;, &#1095;&#1090;&#1086; &#1086;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1105;&#1084;&#1082;&#1086;&#1089;&#1090;&#1100; &#1092;&#1083;&#1077;&#1096;&#1082;&#1080;, 4 &#1043;&#1041;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1077;&#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1102;,
+ &#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;, &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1081; &#1076;&#1083;&#1103; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1091;&#1102;
+ &#1105;&#1084;&#1082;&#1086;&#1089;&#1090;&#1100; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103;, &#1074;&#1072;&#1084; &#1087;&#1088;&#1080;&#1076;&#1105;&#1090;&#1089;&#1103; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1085;&#1086; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100; &#1080; &#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
+ &#1092;&#1083;&#1077;&#1096;&#1082;&#1091;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
- <div class="section" title="Using a graphical tool within Mageia">
+ <div class="section" title="&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; Mageia">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e183"></a>Using a graphical tool within Mageia
+ <h5 class="title"><a name="d5e185"></a>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; Mageia
</h5>
</div>
</div>
</div>
-
<p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1084; &#1089; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1086;&#1084;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;
<a class="ulink" href="https://wiki.mageia.org/en/IsoDumper_Writing_ISO_images_on_USB_sticks" target="_top">IsoDumper</a></p>
</div>
-
- <div class="section" title="Using a graphical tool within Windows">
+ <div class="section" title="&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; Windows">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e187"></a>Using a graphical tool within Windows
+ <h5 class="title"><a name="d5e189"></a>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; Windows
</h5>
</div>
</div>
</div>
-
<p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1087;&#1088;&#1086;&#1073;&#1086;&#1074;&#1072;&#1090;&#1100;:</p>
-
-
- <p>- <a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> using the
- "ISO image" option;
- </p>
-
- <p>- <a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32
- Disk Imager</a></p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://rufus.akeo.ie/?locale=en_US" target="_top">Rufus</a> &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
+ &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &laquo;ISO image&raquo; (&laquo;ISO-&#1086;&#1073;&#1088;&#1072;&#1079;&raquo;);
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a class="ulink" href="http://sourceforge.net/projects/win32diskimager" target="_top">Win32 Disk
+ Imager</a></p>
+
+ </li>
+ </ul>
+ </div>
</div>
-
- <div class="section" title="Using Command line within a GNU/Linux system">
+ <div class="section" title="&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; GNU/Linux">
<div class="titlepage">
<div>
<div>
- <h5 class="title"><a name="d5e194"></a>Using Command line within a GNU/Linux system
+ <h5 class="title"><a name="d5e199"></a>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; GNU/Linux
</h5>
</div>
</div>
</div>
-
<div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Warning">
@@ -806,18 +756,14 @@
<tr>
<td align="left" valign="top">
- <p>It is potentially *dangerous* to do this by hand. You risk to overwrite a
- disc partition if you get the device-ID wrong.
+ <p>&#1069;&#1090;&#1086;&#1090; &#1087;&#1091;&#1090;&#1100; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1086;&#1090;&#1077;&#1085;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1086; &#1086;&#1087;&#1072;&#1089;&#1085;&#1099;&#1084;. &#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1074;&#1088;&#1077;&#1076;&#1080;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;
+ &#1076;&#1080;&#1089;&#1082;&#1077;, &#1077;&#1089;&#1083;&#1080; &#1091;&#1082;&#1072;&#1078;&#1077;&#1090;&#1077; &#1083;&#1086;&#1078;&#1085;&#1099;&#1081; &#1080;&#1076;&#1077;&#1085;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1088; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;.
</p>
</td>
</tr>
</table>
</div>
-
-
- <p>&#1042;&#1099; &#1090;&#1072;&#1082;&#1078;&#1077; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1082;&#1086;&#1085;&#1089;&#1086;&#1083;&#1100;&#1085;&#1086;&#1081; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1086;&#1081; dd:</p>
-
<div class="orderedlist">
<ol class="orderedlist" type="1">
@@ -828,10 +774,9 @@
</li>
<li class="listitem">
- <p>&#1055;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1077; &#1087;&#1088;&#1072;&#1074;&#1072; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; root &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1099; <strong class="userinput"><code>su
- -</code></strong> (&#1085;&#1077; &#1079;&#1072;&#1073;&#1091;&#1076;&#1100;&#1090;&#1077; &laquo;-&raquo; &#1074; &#1082;&#1086;&#1085;&#1094;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1099;)
+ <p>&#1055;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1077; &#1087;&#1088;&#1072;&#1074;&#1072; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; <span class="emphasis"><em>root</em></span> (&#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;) &#1089;
+ &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1099; <span class="command"><strong>su -</strong></span> (&#1085;&#1077; &#1079;&#1072;&#1073;&#1091;&#1076;&#1100;&#1090;&#1077; <span class="command"><strong>-</strong></span>)
</p>
-
</li>
@@ -845,16 +790,23 @@
</li>
<li class="listitem">
- <p>&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091; <strong class="userinput"><code>fdisk -l</code></strong></p>
-
+ <p>&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091; <span class="command"><strong>fdisk -l</strong></span></p>
-
+
+ </li>
+ <li class="listitem">
- <p>Alternatively, you can get the device name with the command
- <code class="code">dmesg</code>: at end, you see the device name starting with
- <span class="emphasis"><em>sd</em></span>, and <span class="emphasis"><em>sdd</em></span> in this case:
+ <p>&#1053;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1087;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1091;. &#1053;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1085;&#1072; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085;&#1085;&#1086;&#1084;
+ &#1074;&#1099;&#1096;&#1077; &#1089;&#1085;&#1080;&#1084;&#1082;&#1077; <code class="filename">/dev/sdb</code> - &#1101;&#1090;&#1086; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1086; &#1105;&#1084;&#1082;&#1086;&#1089;&#1090;&#1100;&#1102; 8 &#1043;&#1041;, &#1090;&#1086;
+ &#1077;&#1089;&#1090;&#1100; &#1092;&#1083;&#1077;&#1096;&#1082;&#1072; USB.
+ </p>
+
+ <p>&#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1099;
+ <span class="command"><strong>dmesg</strong></span>: &#1074; &#1082;&#1086;&#1085;&#1094;&#1077; &#1074;&#1099;&#1074;&#1077;&#1076;&#1077;&#1085;&#1085;&#1099;&#1093; &#1077;&#1102; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1073;&#1091;&#1076;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1086;
+ &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1090;&#1100;&#1089;&#1103; &#1089; <code class="filename">sd</code> &#1089;
+ &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1084; &#1092;&#1088;&#1072;&#1075;&#1084;&#1077;&#1085;&#1090;&#1086;&#1084; <code class="filename">sdd</code> &#1074; &#1085;&#1072;&#1096;&#1077;&#1084; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077;. &#1042;&#1099; &#1090;&#1072;&#1082;&#1078;&#1077;
+ &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1074;&#1080;&#1076;&#1077;&#1090;&#1100;, &#1095;&#1090;&#1086; &#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088; &#1089;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090; 2 &#1043;&#1041;:
</p>
-
<pre class="screen">[72594.604531] usb 1-1: new high-speed USB device number 27 using xhci_hcd
[72594.770528] usb 1-1: New USB device found, idVendor=8564, idProduct=1000
[72594.770533] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
@@ -876,32 +828,43 @@
</li>
<li class="listitem">
- <p>Find the device name for your USB stick (by its size), for example
- <code class="code">/dev/sdb</code> in the screenshot above, it is a 8GB USB stick.
- </p>
-
- </li>
- <li class="listitem">
+ <p>&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;: # <span class="command"><strong>dd if=&#1087;&#1091;&#1090;&#1100;/&#1076;&#1086;/&#1092;&#1072;&#1081;&#1083;&#1072;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1072;/file
+ of=/dev/sd<em class="replaceable"><code>X</code></em> bs=1M</strong></span></p>
- <p>&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;: # <strong class="userinput"><code>dd if=&#1087;&#1091;&#1090;&#1100;/&#1076;&#1086;/&#1092;&#1072;&#1081;&#1083;&#1072;/&#1086;&#1073;&#1088;&#1072;&#1079;&#1072;/file of=/dev/sdX
- bs=1M</code></strong></p>
-
+ <p>&#1075;&#1076;&#1077; <em class="replaceable"><code>X</code></em> - &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1085;&#1091;&#1078;&#1085;&#1086;&#1075;&#1086; &#1074;&#1072;&#1084; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;. &#1055;&#1088;&#1080;&#1084;&#1077;&#1088;:
+ <code class="filename">/dev/sdd</code></p>
- <p>&#1043;&#1076;&#1077; X=&#1080;&#1084;&#1103; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;: /dev/sdc</p>
-
+ <p>&#1053;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;:<code class="literal"> dd if=/home/user/Downloads/Mageia-6-x86_64-DVD.iso
+ of=/dev/sdd bs=1M</code></p>
- <p>&#1053;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;: # <strong class="userinput"><code>dd if=/home/user/Downloads/Mageia-4-x86_64-DVD.iso
- of=/dev/sdb bs=1M</code></strong></p>
+ <div class="tip" title="&#1055;&#1086;&#1076;&#1089;&#1082;&#1072;&#1079;&#1082;&#1072;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1055;&#1086;&#1076;&#1089;&#1082;&#1072;&#1079;&#1082;&#1072;]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1042;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;, &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1084; &#1073;&#1091;&#1076;&#1077;&#1090; &#1079;&#1085;&#1072;&#1090;&#1100;, &#1095;&#1090;&#1086; <span class="bold"><strong>if</strong></span>
+ &#1086;&#1079;&#1085;&#1072;&#1095;&#1072;&#1077;&#1090; <span class="bold"><strong>i</strong></span>nput <span class="bold"><strong>f</strong></span>ile (&#1074;&#1093;&#1086;&#1076;&#1085;&#1086;&#1081; &#1092;&#1072;&#1081;&#1083;), &#1072; <span class="bold"><strong>of</strong></span> &#1086;&#1079;&#1085;&#1072;&#1095;&#1072;&#1077;&#1090; <span class="bold"><strong>o</strong></span>utput
+ <span class="bold"><strong>f</strong></span>ile (&#1074;&#1099;&#1093;&#1086;&#1076;&#1085;&#1086;&#1081; &#1092;&#1072;&#1081;&#1083;)
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p>&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;: # <strong class="userinput"><code>sync</code></strong></p>
+ <p>&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;: <span class="command"><strong>sync</strong></span></p>
</li>
<li class="listitem">
- <p>&#1048;&#1079;&#1074;&#1083;&#1077;&#1082;&#1080;&#1090;&#1077; &#1092;&#1083;&#1077;&#1096;&#1082;&#1091; USB. &#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1072;.</p>
+ <p>&#1069;&#1090;&#1086; &#1082;&#1086;&#1085;&#1077;&#1094; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1099;. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1086;&#1090;&#1082;&#1083;&#1102;&#1095;&#1072;&#1090;&#1100; &#1074;&#1072;&#1096;&#1091; &#1092;&#1083;&#1077;&#1096;&#1082;&#1091; USB.</p>
</li>
</ol>
diff --git a/ru/acceptLicense.html b/ru/acceptLicense.html
index 496be66..6a6e53a 100644
--- a/ru/acceptLicense.html
+++ b/ru/acceptLicense.html
@@ -45,6 +45,12 @@
+
+
+
+
+
+
<div class="section" title="&#1051;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1086;&#1085;&#1085;&#1086;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1096;&#1077;&#1085;&#1080;&#1077;">
<div class="titlepage">
<div>
@@ -57,25 +63,34 @@
- <p>&#1055;&#1077;&#1088;&#1077;&#1076; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; <span class="application">Mageia</span> &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;&#1084;&#1080;
- &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
- </p>
-
-
- <p>&#1069;&#1090;&#1080; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1082;&#1072;&#1089;&#1072;&#1102;&#1090;&#1089;&#1103; &#1074;&#1089;&#1077;&#1075;&#1086; &#1076;&#1080;&#1089;&#1090;&#1088;&#1080;&#1073;&#1091;&#1090;&#1080;&#1074;&#1072;
- <span class="application">Mageia</span>. &#1042;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1088;&#1080;&#1085;&#1103;&#1090;&#1100; &#1101;&#1090;&#1080; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;, &#1080;&#1085;&#1072;&#1095;&#1077;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1072;.
- </p>
-
-
- <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;&#1084;&#1080;, &#1086;&#1090;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090; <span class="guilabel">&#1055;&#1088;&#1080;&#1085;&#1103;&#1090;&#1100;</span>,
- &#1072; &#1087;&#1086;&#1090;&#1086;&#1084; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1044;&#1072;&#1083;&#1077;&#1077;</span>.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1055;&#1077;&#1088;&#1077;&#1076; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; Mageia &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;&#1084;&#1080; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.</p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1069;&#1090;&#1080; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1082;&#1072;&#1089;&#1072;&#1102;&#1090;&#1089;&#1103; &#1074;&#1089;&#1077;&#1075;&#1086; &#1076;&#1080;&#1089;&#1090;&#1088;&#1080;&#1073;&#1091;&#1090;&#1080;&#1074;&#1072; Mageia. &#1042;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;
+ &#1087;&#1088;&#1080;&#1085;&#1103;&#1090;&#1100; &#1101;&#1090;&#1080; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;, &#1080;&#1085;&#1072;&#1095;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1072;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;&#1084;&#1080;, &#1086;&#1090;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090; <span class="emphasis"><em>&#1055;&#1088;&#1080;&#1085;&#1103;&#1090;&#1100;</em></span>,
+ &#1072; &#1079;&#1072;&#1090;&#1077;&#1084; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1072;&#1083;&#1077;&#1077;</em></span>.
+ </p>
+
+ </li>
+ </ul>
+ </div>
<p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1085;&#1099; &#1089; &#1091;&#1089;&#1083;&#1086;&#1074;&#1080;&#1103;&#1084;&#1080; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1086;&#1085;&#1085;&#1086;&#1075;&#1086; &#1089;&#1086;&#1075;&#1083;&#1072;&#1096;&#1077;&#1085;&#1080;&#1103;, &#1084;&#1099; &#1073;&#1091;&#1076;&#1077;&#1084;
&#1073;&#1083;&#1072;&#1075;&#1086;&#1076;&#1072;&#1088;&#1085;&#1099; &#1079;&#1072; &#1090;&#1086;, &#1095;&#1090;&#1086; &#1074;&#1099; &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1083;&#1080; &#1074;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077; &#1085;&#1072; &#1085;&#1072;&#1096; &#1076;&#1080;&#1089;&#1090;&#1088;&#1080;&#1073;&#1091;&#1090;&#1080;&#1074;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103;
- &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; <span class="guibutton">&#1042;&#1099;&#1081;&#1090;&#1080;</span> &#1074;&#1072;&#1096; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;.
+ &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; <span class="emphasis"><em>&#1042;&#1099;&#1081;&#1090;&#1080;</em></span> &#1074;&#1072;&#1096; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;.
</p>
@@ -99,9 +114,8 @@
- <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089;&#1086; &#1089;&#1087;&#1080;&#1089;&#1082;&#1086;&#1084; &#1085;&#1086;&#1074;&#1086;&#1074;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1081; &#1074;
- <span class="application">Mageia</span>, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1047;&#1072;&#1084;&#1077;&#1090;&#1082;&#1080; &#1086;
- &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1077;</span>.
+ <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1074;&#1072;&#1078;&#1085;&#1086;&#1081; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1077;&#1081; &#1086; &#1090;&#1077;&#1082;&#1091;&#1097;&#1077;&#1084; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1077; Mageia, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077;
+ &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1047;&#1072;&#1084;&#1077;&#1090;&#1082;&#1080; &#1086; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1077;</em></span>.
</p>
</div>
diff --git a/ru/addUser.html b/ru/addUser.html
index 0a45714..f4d1cc1 100644
--- a/ru/addUser.html
+++ b/ru/addUser.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;</title>
+ <title>&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
@@ -13,35 +13,22 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="ru" class="section" title="&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;">
+ <div lang="ru" class="section" title="&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="addUser"></a>&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;
+ <h2 class="title"><a name="addUser"></a>&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;
</h2>
</div>
</div>
</div>
-
-
-
-
-
-
-
-
-
-
-
-
-
<div class="section" title="&#1042;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072; (root):">
<div class="titlepage">
@@ -53,17 +40,15 @@
</div>
</div>
-
- <p>&#1042; &#1082;&#1072;&#1078;&#1076;&#1086;&#1081; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; <span class="application">Mageia</span> &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;
- &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1089;&#1091;&#1087;&#1077;&#1088;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080;&#1083;&#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;. &#1058;&#1072;&#1082;&#1086;&#1081; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1074; Linux
- &#1086;&#1073;&#1099;&#1095;&#1085;&#1086; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; <span class="emphasis"><em>&#1087;&#1072;&#1088;&#1086;&#1083;&#1100; root</em></span>. &#1055;&#1088;&#1080; &#1074;&#1074;&#1086;&#1076;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; &#1094;&#1074;&#1077;&#1090;
- &#1086;&#1090;&#1084;&#1077;&#1090;&#1082;&#1080; &#1079;&#1072;&#1097;&#1080;&#1097;&#1077;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1084;&#1077;&#1085;&#1103;&#1090;&#1100;&#1089;&#1103; &#1089; &#1082;&#1088;&#1072;&#1089;&#1085;&#1086;&#1075;&#1086; &#1085;&#1072; &#1078;&#1105;&#1083;&#1090;&#1099;&#1081;, &#1072; &#1079;&#1072;&#1090;&#1077;&#1084; &#1085;&#1072;
- &#1079;&#1077;&#1083;&#1105;&#1085;&#1099;&#1081; &#1074; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1086;&#1090; &#1089;&#1083;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;. &#1047;&#1077;&#1083;&#1105;&#1085;&#1099;&#1081; &#1094;&#1074;&#1077;&#1090; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090;
- &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1089;&#1083;&#1086;&#1078;&#1085;&#1099;&#1084; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;&#1084;. &#1042;&#1072;&#1084; &#1090;&#1072;&#1082;&#1078;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1100; &#1074;&#1074;&#1086;&#1076; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; &#1074; &#1087;&#1086;&#1083;&#1077;,
- &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1085;&#1086;&#1084; &#1085;&#1080;&#1078;&#1077;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1091;&#1076;&#1086;&#1089;&#1090;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100;&#1089;&#1103;, &#1095;&#1090;&#1086; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1073;&#1099;&#1083; &#1074;&#1074;&#1077;&#1076;&#1105;&#1085; &#1073;&#1077;&#1079; &#1086;&#1096;&#1080;&#1073;&#1086;&#1082;.
+ <p>&#1042; &#1082;&#1072;&#1078;&#1076;&#1086;&#1081; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1105;&#1085;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; Mageia &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;
+ <span class="emphasis"><em>&#1089;&#1091;&#1087;&#1077;&#1088;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</em></span> &#1080;&#1083;&#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;. &#1058;&#1072;&#1082;&#1086;&#1081; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1074;
+ Linux &#1086;&#1073;&#1099;&#1095;&#1085;&#1086; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; <span class="emphasis"><em>root</em></span>. &#1055;&#1088;&#1080; &#1074;&#1074;&#1086;&#1076;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;
+ &#1094;&#1074;&#1077;&#1090; &#1086;&#1090;&#1084;&#1077;&#1090;&#1082;&#1080; &#1097;&#1080;&#1090;&#1072; &#1084;&#1077;&#1085;&#1103;&#1090;&#1100;&#1089;&#1103; &#1089; &#1082;&#1088;&#1072;&#1089;&#1085;&#1086;&#1075;&#1086; &#1085;&#1072; &#1078;&#1077;&#1083;&#1090;&#1099;&#1081;, &#1072; &#1079;&#1072;&#1090;&#1077;&#1084; &#1085;&#1072; &#1079;&#1077;&#1083;&#1105;&#1085;&#1099;&#1081;, &#1074;
+ &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1086;&#1090; &#1089;&#1083;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;. &#1047;&#1077;&#1083;&#1105;&#1085;&#1099;&#1081; &#1094;&#1074;&#1077;&#1090; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;
+ &#1089;&#1083;&#1086;&#1078;&#1085;&#1099;&#1084; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;&#1084;. &#1042;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1100; &#1074;&#1074;&#1086;&#1076; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; &#1074; &#1087;&#1086;&#1083;&#1077;, &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1085;&#1086;&#1084;
+ &#1085;&#1080;&#1078;&#1077;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1091;&#1076;&#1086;&#1089;&#1090;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100;&#1089;&#1103;, &#1095;&#1090;&#1086; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1073;&#1099;&#1083; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085; &#1073;&#1077;&#1079; &#1086;&#1096;&#1080;&#1073;&#1086;&#1082;.
</p>
-
<div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
@@ -74,8 +59,8 @@
<tr>
<td align="left" valign="top">
- <p>&#1042;&#1089;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1080; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1090;&#1100; &#1089; &#1091;&#1095;&#1077;&#1090;&#1086;&#1084; &#1088;&#1077;&#1075;&#1080;&#1089;&#1090;&#1088;&#1072;. &#1051;&#1091;&#1095;&#1096;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1074; &#1087;&#1072;&#1088;&#1086;&#1083;&#1077;
- &#1089;&#1084;&#1077;&#1089;&#1100; &#1073;&#1091;&#1082;&#1074; (&#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1077; &#1080; &#1084;&#1072;&#1083;&#1077;&#1085;&#1100;&#1082;&#1080;&#1077;), &#1094;&#1080;&#1092;&#1088;&#1099; &#1080; &#1076;&#1088;&#1091;&#1075;&#1080;&#1077; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1099;.
+ <p>&#1042;&#1089;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1080; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1090;&#1100; &#1089; &#1091;&#1095;&#1105;&#1090;&#1086;&#1084; &#1088;&#1077;&#1075;&#1080;&#1089;&#1090;&#1088;&#1072;. &#1051;&#1091;&#1095;&#1096;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1074; &#1087;&#1072;&#1088;&#1086;&#1083;&#1077;
+ &#1089;&#1084;&#1077;&#1089;&#1100; &#1073;&#1091;&#1082;&#1074; (&#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1093; &#1080; &#1084;&#1072;&#1083;&#1099;&#1093;), &#1094;&#1080;&#1092;&#1088; &#1080; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1086;&#1074;.
</p>
</td>
@@ -84,7 +69,6 @@
</div>
</div>
-
<div class="section" title="&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;">
<div class="titlepage">
@@ -96,59 +80,57 @@
</div>
</div>
-
- <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;. &#1050;&#1072;&#1078;&#1076;&#1099;&#1081; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;
- &#1080;&#1084;&#1077;&#1077;&#1090; &#1084;&#1077;&#1085;&#1100;&#1096;&#1080;&#1077; &#1087;&#1088;&#1072;&#1074;&#1072; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072;, &#1095;&#1077;&#1084; &#1089;&#1091;&#1087;&#1077;&#1088;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; (root), &#1085;&#1086; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;
- &#1087;&#1088;&#1072;&#1074; &#1076;&#1083;&#1103; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1072; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1072;, &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1086;&#1092;&#1080;&#1089;&#1085;&#1099;&#1084;&#1080; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072;&#1084;&#1080;, &#1076;&#1083;&#1103; &#1080;&#1075;&#1088; &#1080;
- &#1083;&#1102;&#1073;&#1099;&#1093; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1079;&#1072;&#1076;&#1072;&#1095;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1102;&#1090;&#1089;&#1103; &#1086;&#1073;&#1099;&#1095;&#1085;&#1099;&#1084; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1084; &#1079;&#1072;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1086;&#1084;.
+ <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1084;&#1086;&#1078;&#1085;&#1086; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;. &#1050;&#1072;&#1078;&#1076;&#1099;&#1081; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;
+ &#1080;&#1084;&#1077;&#1077;&#1090; &#1073;&#1086;&#1083;&#1077;&#1077; &#1091;&#1079;&#1082;&#1080;&#1077; &#1087;&#1088;&#1072;&#1074;&#1072; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072;, &#1095;&#1077;&#1084; <code class="literal">&#1089;&#1091;&#1087;&#1077;&#1088;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;</code>
+ (root), &#1085;&#1086; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1087;&#1088;&#1072;&#1074; &#1076;&#1083;&#1103; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1072; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1072;, &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1086;&#1092;&#1080;&#1089;&#1085;&#1099;&#1084;&#1080;
+ &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072;&#1084;&#1080;, &#1080;&#1075;&#1088; &#1080; &#1083;&#1102;&#1073;&#1099;&#1093; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1079;&#1072;&#1076;&#1072;&#1095;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1102;&#1090;&#1089;&#1103; &#1086;&#1073;&#1099;&#1095;&#1085;&#1099;&#1084;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1084; &#1079;&#1072; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1086;&#1084;.
</p>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guibutton">&#1048;&#1082;&#1086;&#1085;&#1082;&#1072;</span>: &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1086;&#1082;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;.
- </p>
+ <p><span class="bold"><strong>&#1055;&#1080;&#1082;&#1090;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072;</strong></span></p>
+
+ <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1086;&#1082; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#1048;&#1084;&#1103;</span>: &#1074; &#1101;&#1090;&#1086;&#1084; &#1087;&#1086;&#1083;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1077; &#1080;&#1084;&#1103;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;.
- </p>
+ <p><span class="bold"><strong>&#1053;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1077; &#1080;&#1084;&#1103;</strong></span></p>
+
+ <p>&#1042; &#1101;&#1090;&#1086;&#1084; &#1087;&#1086;&#1083;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1077; &#1080;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;.</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#1048;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</span>: &#1079;&#1076;&#1077;&#1089;&#1100; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1074;&#1077;&#1089;&#1090;&#1080;
- &#1088;&#1077;&#1075;&#1080;&#1089;&#1090;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1077; &#1080;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080;&#1083;&#1080; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090;&#1100; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; drakx
- &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1091;&#1102; &#1074;&#1077;&#1088;&#1089;&#1080;&#1102; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1075;&#1086; &#1080;&#1084;&#1077;&#1085;&#1080;. <span class="emphasis"><em>&#1048;&#1084;&#1103;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1095;&#1091;&#1074;&#1089;&#1090;&#1074;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1082; &#1088;&#1077;&#1075;&#1080;&#1089;&#1090;&#1088;&#1091;.</em></span></p>
+ <p><span class="bold"><strong>&#1051;&#1086;&#1075;&#1080;&#1085;</strong></span></p>
+
+ <p>&#1047;&#1076;&#1077;&#1089;&#1100; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1074;&#1077;&#1089;&#1090;&#1080; &#1088;&#1077;&#1075;&#1080;&#1089;&#1090;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1077; &#1080;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080;&#1083;&#1080; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090;&#1100;
+ &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; DrakX &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1091;&#1102; &#1074;&#1077;&#1088;&#1089;&#1080;&#1102; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1075;&#1086; &#1080;&#1084;&#1077;&#1085;&#1080;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;. <span class="bold"><strong>&#1048;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1095;&#1091;&#1074;&#1089;&#1090;&#1074;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1082;
+ &#1088;&#1077;&#1075;&#1080;&#1089;&#1090;&#1088;&#1091;.</strong></span></p>
+
</li>
<li class="listitem">
- <p><span class="guilabel">&#1055;&#1072;&#1088;&#1086;&#1083;&#1100;</span>: &#1074; &#1101;&#1090;&#1086;&#1084; &#1087;&#1086;&#1083;&#1077; &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;. &#1062;&#1074;&#1077;&#1090;
- &#1086;&#1090;&#1084;&#1077;&#1090;&#1082;&#1080; &#1079;&#1072;&#1097;&#1080;&#1097;&#1077;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080; &#1088;&#1103;&#1076;&#1086;&#1084; &#1089; &#1087;&#1086;&#1083;&#1077;&#1084; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1089;&#1083;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; (&#1089;&#1084;. &#1090;&#1072;&#1082;&#1078;&#1077;
- <a class="xref" href="addUser.html#givePassword" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;">&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;</a>)
+ <p><span class="bold"><strong>&#1055;&#1072;&#1088;&#1086;&#1083;&#1100;</strong></span></p>
+
+ <p>&#1042; &#1101;&#1090;&#1086;&#1084; &#1087;&#1086;&#1083;&#1077; &#1074;&#1099; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;. &#1062;&#1074;&#1077;&#1090; &#1086;&#1090;&#1084;&#1077;&#1090;&#1082;&#1080; &#1097;&#1080;&#1090;&#1072; &#1088;&#1103;&#1076;&#1086;&#1084; &#1089; &#1101;&#1090;&#1080;&#1084; &#1087;&#1086;&#1083;&#1077;&#1084;
+ &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1089;&#1083;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; (&#1089;&#1084;. &#1090;&#1072;&#1082;&#1078;&#1077; <a class="xref" href="addUser.html#givePassword" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;">&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;</a>)
</p>
-
- </li>
- <li class="listitem">
- <p><span class="guilabel">&#1055;&#1072;&#1088;&#1086;&#1083;&#1100; (&#1077;&#1097;&#1077; &#1088;&#1072;&#1079;)</span>: &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1077; &#1074;&#1074;&#1086;&#1076; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; &#1074; &#1101;&#1090;&#1086;&#1084;
- &#1087;&#1086;&#1083;&#1077;. DrakX &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;, &#1089;&#1086;&#1074;&#1087;&#1072;&#1076;&#1072;&#1077;&#1090; &#1083;&#1080; &#1074;&#1074;&#1077;&#1076;&#1077;&#1085;&#1085;&#1099;&#1081; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1085;&#1086; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1089; &#1077;&#1075;&#1086;
- &#1087;&#1077;&#1088;&#1074;&#1086;&#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1099;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084;.
+ <p><span class="bold"><strong>&#1055;&#1072;&#1088;&#1086;&#1083;&#1100; (&#1077;&#1097;&#1105; &#1088;&#1072;&#1079;):</strong></span> &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1077; &#1074;&#1074;&#1086;&#1076; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1074; &#1101;&#1090;&#1086;&#1084; &#1087;&#1086;&#1083;&#1077;. DrakX &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;, &#1089;&#1086;&#1074;&#1087;&#1072;&#1076;&#1072;&#1077;&#1090; &#1083;&#1080; &#1074;&#1074;&#1077;&#1076;&#1105;&#1085;&#1085;&#1099;&#1081; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1085;&#1086;
+ &#1087;&#1072;&#1088;&#1086;&#1083;&#1100; &#1089; &#1077;&#1075;&#1086; &#1087;&#1077;&#1088;&#1074;&#1086;&#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1099;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084;.
</p>
</li>
</ul>
</div>
-
<div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
@@ -159,33 +141,15 @@
<tr>
<td align="left" valign="top">
- <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1080;&#1093; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074; &#1074;&#1089;&#1077;&#1093; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;, &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093;
- &#1073;&#1091;&#1076;&#1091;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1099; &#1087;&#1088;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; Mageia, &#1089;&#1084;&#1086;&#1078;&#1077;&#1090; &#1095;&#1080;&#1090;&#1072;&#1090;&#1100; &#1083;&#1102;&#1073;&#1086;&#1081; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; (&#1085;&#1086; &#1085;&#1077;
- &#1079;&#1072;&#1087;&#1080;&#1089;&#1099;&#1074;&#1072;&#1090;&#1100; &#1074; &#1101;&#1090;&#1080; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;).
+ <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1080;&#1093; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074; &#1074;&#1089;&#1077;&#1093; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;, &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1073;&#1091;&#1076;&#1091;&#1090;
+ &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1099; &#1087;&#1088;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; Mageia, &#1073;&#1091;&#1076;&#1091;&#1090; &#1079;&#1072;&#1097;&#1080;&#1097;&#1077;&#1085;&#1099; &#1086;&#1090; &#1095;&#1090;&#1077;&#1085;&#1080;&#1103; &#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; (umask =
+ 0027).
</p>
-
- <p>&#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1087;&#1086;&#1089;&#1083;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1080;&#1077; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;, &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;
- &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1073;&#1091;&#1076;&#1091;&#1090; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1099; &#1095;&#1077;&#1088;&#1077;&#1079; <span class="emphasis"><em> &#1062;&#1077;&#1085;&#1090;&#1088; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; Mageia - &#1057;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; -
- &#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080; </em></span>, &#1073;&#1091;&#1076;&#1091;&#1090; &#1079;&#1072;&#1097;&#1080;&#1097;&#1077;&#1085;&#1099; &#1082;&#1072;&#1082; &#1086;&#1090; &#1095;&#1090;&#1077;&#1085;&#1080;&#1103;, &#1090;&#1072;&#1082; &#1080;
- &#1086;&#1090; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;.
+ <p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1074;&#1089;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1073;&#1091;&#1076;&#1091;&#1097;&#1080;&#1093; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1101;&#1090;&#1072;&#1087;&#1077;
+ <span class="emphasis"><em>&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; - &#1057;&#1074;&#1086;&#1076;&#1082;&#1072;</em></span> &#1074;&#1086; &#1074;&#1088;&#1077;&#1084;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;. &#1044;&#1083;&#1103;
+ &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; <span class="emphasis"><em>&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;</em></span>.
</p>
-
-
- <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1079;&#1072;&#1097;&#1080;&#1090;&#1080;&#1090;&#1100; &#1074;&#1072;&#1096; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1080;&#1081; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; &#1086;&#1090; &#1095;&#1090;&#1077;&#1085;&#1080;&#1103; &#1076;&#1083;&#1103; &#1082;&#1086;&#1085;&#1082;&#1088;&#1077;&#1090;&#1085;&#1086;&#1075;&#1086;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;, &#1090;&#1086; &#1074;&#1072;&#1084; &#1089;&#1090;&#1086;&#1080;&#1090; &#1085;&#1072; &#1101;&#1090;&#1072;&#1087;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;, &#1072; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1075;&#1086; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1091;&#1078;&#1077; &#1087;&#1086;&#1089;&#1083;&#1077; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1080;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1080;
- &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
- </p>
-
-
- <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1087;&#1088;&#1077;&#1076;&#1087;&#1086;&#1095;&#1080;&#1090;&#1072;&#1077;&#1090;&#1077; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1080;&#1077; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;, &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093;
- &#1073;&#1091;&#1076;&#1077;&#1090; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086; &#1074;&#1089;&#1077;&#1084; &#1076;&#1088;&#1091;&#1075;&#1080;&#1084; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;, &#1090;&#1086; &#1074;&#1072;&#1084; &#1089;&#1090;&#1086;&#1080;&#1090; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1074;&#1089;&#1077;&#1093; &#1073;&#1091;&#1076;&#1091;&#1097;&#1080;&#1093;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1096;&#1072;&#1075;&#1077; <span class="emphasis"><em> &#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; - &#1056;&#1077;&#1079;&#1102;&#1084;&#1077; </em></span> &#1087;&#1088;&#1080;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;. &#1044;&#1083;&#1103; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; <span class="emphasis"><em> &#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080; </em></span>.
- </p>
-
<p>&#1055;&#1088;&#1072;&#1074;&#1072; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1082; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1080;&#1084; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075;&#1072;&#1084;, &#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1086; &#1078;&#1077;, &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1080; &#1087;&#1086;&#1089;&#1083;&#1077;
&#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1080;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
@@ -197,84 +161,48 @@
</div>
</div>
-
- <div class="section" title="&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;">
+ <div class="section" title="&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="addUserAdvanced"></a>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;
+ <h3 class="title"><a name="addUserAdvanced"></a>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;
</h3>
</div>
</div>
</div>
-
- <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1072;&#1078;&#1084;&#1077;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</span>, &#1090;&#1086; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072;
- &#1086;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
- &#1091;&#1095;&#1077;&#1090;&#1085;&#1086;&#1081; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1091;&#1102; &#1074;&#1099; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090;&#1077;.
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1072;&#1078;&#1084;&#1105;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</em></span>, &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1086;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090;
+ &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1091;&#1095;&#1105;&#1090;&#1085;&#1086;&#1081;
+ &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1091;&#1102; &#1074;&#1099; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090;&#1077;.
</p>
-
-
- <p>Additionally, you can disable or enable a guest account.</p>
-
-
- <div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#1051;&#1102;&#1073;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090; &#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1085;&#1099; &#1089; &#1075;&#1086;&#1089;&#1090;&#1077;&#1074;&#1086;&#1075;&#1086; &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090;&#1072;
- <span class="emphasis"><em>rbash</em></span> &#1074; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1081; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; &#1074; /home, &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1090;&#1077;&#1088;&#1103;&#1085;&#1099;
- &#1087;&#1088;&#1080; &#1074;&#1099;&#1093;&#1086;&#1076;&#1077; &#1080;&#1079; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;. &#1055;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1102; &#1075;&#1086;&#1089;&#1090;&#1077;&#1074;&#1086;&#1075;&#1086; &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090;&#1072; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1086;&#1079;&#1072;&#1073;&#1086;&#1090;&#1080;&#1090;&#1100;&#1089;&#1103;
- &#1086; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1080; &#1074;&#1072;&#1078;&#1085;&#1099;&#1093; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074; &#1085;&#1072; &#1087;&#1086;&#1088;&#1090;&#1072;&#1090;&#1080;&#1074;&#1085;&#1099;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p><span class="guilabel">&#1042;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1075;&#1086;&#1089;&#1090;&#1077;&#1074;&#1086;&#1081; &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090;</span>: &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086;
- &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1086;&#1090;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1075;&#1086;&#1089;&#1090;&#1077;&#1074;&#1086;&#1081; &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090;. &#1055;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; &#1075;&#1086;&#1089;&#1090;&#1077;&#1074;&#1086;&#1075;&#1086; &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090;&#1072;
- &#1089;&#1084;&#1086;&#1078;&#1077;&#1090; &#1074;&#1086;&#1081;&#1090;&#1080; &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;, &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1086;&#1084;, &#1085;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1084;&#1077;&#1090;&#1100;
- &#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1077;&#1085;&#1085;&#1099;&#1077; &#1087;&#1088;&#1072;&#1074;&#1072; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1076;&#1072;&#1078;&#1077; &#1087;&#1086; &#1089;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1102; &#1089; &#1086;&#1073;&#1099;&#1095;&#1085;&#1099;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;.
- </p>
-
- </li>
- <li class="listitem">
-
- <p><span class="guilabel">&#1050;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1072;&#1103; &#1086;&#1073;&#1086;&#1083;&#1086;&#1095;&#1082;&#1072;</span>: &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1089;&#1082;&#1088;&#1099;&#1074;&#1072;&#1102;&#1097;&#1077;&#1075;&#1086;&#1089;&#1103;
+ <p><span class="emphasis"><em>&#1050;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1072;&#1103; &#1086;&#1073;&#1086;&#1083;&#1086;&#1095;&#1082;&#1072;</em></span>: &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1089;&#1082;&#1088;&#1099;&#1074;&#1072;&#1102;&#1097;&#1077;&#1075;&#1086;&#1089;&#1103;
&#1089;&#1087;&#1080;&#1089;&#1082;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1091;&#1102; &#1086;&#1073;&#1086;&#1083;&#1086;&#1095;&#1082;&#1091;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1072;&#1103; &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;
- &#1076;&#1083;&#1103; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;. &#1042;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1099;: Bash, Dash &#1080; Sh.
+ &#1076;&#1083;&#1103; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;, &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1088;&#1077;&#1076;&#1074;&#1072;&#1088;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1075;&#1086;
+ &#1086;&#1082;&#1085;&#1072;. &#1042;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1099;: <code class="literal">Bash</code>,
+ <code class="literal">Dash</code> &#1080; <code class="literal">Sh</code>.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#1050;&#1086;&#1076; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</span>: &#1079;&#1076;&#1077;&#1089;&#1100; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1082;&#1086;&#1076;
- (&#1080;&#1076;&#1077;&#1085;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1088;) &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;, &#1080;&#1084;&#1103; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1073;&#1099;&#1083;&#1086; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
- &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1077;&#1075;&#1086; &#1086;&#1082;&#1085;&#1072;. &#1057;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1085;&#1086;&#1084;&#1077;&#1088; &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090;&#1072;. &#1053;&#1077; &#1079;&#1072;&#1087;&#1086;&#1083;&#1085;&#1103;&#1081;&#1090;&#1077; &#1101;&#1090;&#1086; &#1087;&#1086;&#1083;&#1077;,
- &#1077;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084; &#1085;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1099; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1089;&#1090;&#1074;&#1080;&#1103; &#1074;&#1072;&#1096;&#1080;&#1093; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;.
+ <p><span class="emphasis"><em>&#1050;&#1086;&#1076; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</em></span>: &#1079;&#1076;&#1077;&#1089;&#1100; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1082;&#1086;&#1076;
+ (&#1080;&#1076;&#1077;&#1085;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1088;) &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;, &#1072;&#1082;&#1082;&#1072;&#1091;&#1085;&#1090; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1073;&#1099;&#1083; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
+ &#1087;&#1088;&#1077;&#1076;&#1074;&#1072;&#1088;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1075;&#1086; &#1086;&#1082;&#1085;&#1072;. &#1057;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1085;&#1086;&#1084;&#1077;&#1088; &#1091;&#1095;&#1105;&#1090;&#1085;&#1086;&#1081; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;. &#1053;&#1077; &#1079;&#1072;&#1087;&#1086;&#1083;&#1085;&#1103;&#1081;&#1090;&#1077;
+ &#1101;&#1090;&#1086; &#1087;&#1086;&#1083;&#1077;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084; &#1085;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1099; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1089;&#1090;&#1074;&#1080;&#1103; &#1074;&#1072;&#1096;&#1080;&#1093; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;.
</p>
</li>
<li class="listitem">
- <p><span class="guilabel">&#1050;&#1086;&#1076; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;</span>: &#1079;&#1076;&#1077;&#1089;&#1100; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1082;&#1086;&#1076;
- (&#1080;&#1076;&#1077;&#1085;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1088;) &#1075;&#1088;&#1091;&#1087;&#1087;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;. &#1057;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1085;&#1086;&#1084;&#1077;&#1088;, &#1086;&#1073;&#1099;&#1095;&#1085;&#1086; &#1090;&#1086;&#1090; &#1078;&#1077;,
- &#1095;&#1090;&#1086; &#1080; &#1076;&#1083;&#1103; &#1091;&#1095;&#1077;&#1090;&#1085;&#1086;&#1081; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;. &#1053;&#1077; &#1079;&#1072;&#1087;&#1086;&#1083;&#1085;&#1103;&#1081;&#1090;&#1077; &#1101;&#1090;&#1086; &#1087;&#1086;&#1083;&#1077;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084;
- &#1085;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1099; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1089;&#1090;&#1074;&#1080;&#1103; &#1074;&#1072;&#1096;&#1080;&#1093; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;.
+ <p><span class="emphasis"><em>&#1048;&#1076;. &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;</em></span>: &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090; &#1074;&#1072;&#1084; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100;
+ &#1080;&#1076;&#1077;&#1085;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;. &#1054;&#1087;&#1103;&#1090;&#1100; &#1078;&#1077;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1077; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099;, &#1086;&#1089;&#1090;&#1072;&#1074;&#1100;&#1090;&#1077; &#1101;&#1090;&#1086; &#1087;&#1086;&#1083;&#1077;.
</p>
</li>
diff --git a/ru/add_supplemental_media.html b/ru/add_supplemental_media.html
index 8b20319..8b40c0c 100644
--- a/ru/add_supplemental_media.html
+++ b/ru/add_supplemental_media.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;)</title>
+ <title>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="prev" href="formatPartitions.html" title="&#1060;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;">
- <link rel="next" href="media_selection.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; (Nonfree)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="media_selection.html" title="&#1044;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="ru" class="section" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;)">
+ <div lang="ru" class="section" title="&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="add_supplemental_media"></a>&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;)
+ <h2 class="title"><a name="add_supplemental_media"></a>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
</h2>
</div>
</div>
@@ -25,16 +25,22 @@
+
+
+
+
+
+
- <p>&#1053;&#1072; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1077;&#1076;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1077;&#1074;
- &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;. &#1042;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1076;&#1088;&#1091;&#1075;&#1080;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080;
- &#1086;&#1087;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1080;&#1083;&#1080; &#1091;&#1076;&#1072;&#1083;&#1077;&#1085;&#1085;&#1099;&#1081; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088; &#1089;&#1077;&#1090;&#1080;. &#1053;&#1072;&#1073;&#1086;&#1088; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1093; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1077;&#1074;
- &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;, &#1082;&#1072;&#1082;&#1080;&#1077; &#1080;&#1079; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1073;&#1091;&#1076;&#1091;&#1090; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099; &#1076;&#1083;&#1103; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1085;&#1072; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1093; &#1096;&#1072;&#1075;&#1072;&#1093;.
+ <p>&#1053;&#1072; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1099;&#1093; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;. &#1042;&#1099;
+ &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1076;&#1088;&#1091;&#1075;&#1080;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1086;&#1087;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;
+ &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080;&#1083;&#1080; &#1091;&#1076;&#1072;&#1083;&#1105;&#1085;&#1085;&#1099;&#1081; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088; &#1074; &#1089;&#1077;&#1090;&#1080;. &#1053;&#1072;&#1073;&#1086;&#1088; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1093; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;,
+ &#1082;&#1072;&#1082;&#1080;&#1077; &#1080;&#1079; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1073;&#1091;&#1076;&#1091;&#1090; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099; &#1076;&#1083;&#1103; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1085;&#1072; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1093; &#1096;&#1072;&#1075;&#1072;&#1093;.
</p>
@@ -45,24 +51,25 @@
<ol class="orderedlist" type="1">
<li class="listitem">
- <p>&#1042;&#1099;&#1073;&#1086;&#1088; &#1080; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1077; &#1089;&#1077;&#1090;&#1080;, &#1077;&#1089;&#1083;&#1080; &#1086;&#1085;&#1072; &#1077;&#1097;&#1077; &#1085;&#1077; &#1073;&#1099;&#1083;&#1072; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072;. </p>
+ <p>&#1042;&#1099;&#1073;&#1086;&#1088; &#1080; &#1072;&#1082;&#1090;&#1080;&#1074;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1089;&#1077;&#1090;&#1080;, &#1077;&#1089;&#1083;&#1080; &#1086;&#1085;&#1072; &#1077;&#1097;&#1105; &#1085;&#1077; &#1073;&#1099;&#1083;&#1072; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072;.</p>
</li>
<li class="listitem">
- <p>&#1042;&#1099;&#1073;&#1086;&#1088; &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1072; &#1080;&#1083;&#1080; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; URL-&#1072;&#1076;&#1088;&#1077;&#1089;&#1072; (&#1087;&#1077;&#1088;&#1074;&#1072;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1100;). &#1055;&#1086;&#1089;&#1083;&#1077; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072;
- &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1072; &#1074;&#1099; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1074;&#1099;&#1073;&#1086;&#1088;&#1091; &#1074;&#1089;&#1077;&#1093; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1077;&#1074;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103;
- &#1074; Mageia, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1082; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1102; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1082; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1102;
- &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1089; &#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1074; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; &#1080; &#1082; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1102; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1081;. &#1057;
- &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; URL-&#1072;&#1076;&#1088;&#1077;&#1089;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089;&#1074;&#1103;&#1079;&#1072;&#1090;&#1100; &#1089; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1081; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;
- &#1080;&#1083;&#1080; &#1088;&#1072;&#1079;&#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1091;&#1102; &#1074;&#1072;&#1084;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; NFS &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;.
+ <p>&#1042;&#1099;&#1073;&#1086;&#1088; &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1072; &#1080;&#1083;&#1080; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1072;&#1076;&#1088;&#1077;&#1089;&#1072; (&#1087;&#1077;&#1088;&#1074;&#1072;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1100;). &#1055;&#1086;&#1089;&#1083;&#1077; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1072;
+ &#1074;&#1099; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1074;&#1099;&#1073;&#1086;&#1088;&#1091; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103; &#1074; Mageia, &#1074;
+ &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097; &#1085;&#1077;&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; (<span class="emphasis"><em>Nonfree</em></span>),
+ &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1089; &#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1074; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; (<span class="emphasis"><em>Tainted</em></span>) &#1080;
+ &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1081; (<span class="emphasis"><em>Updates</em></span>). &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1072;&#1076;&#1088;&#1077;&#1089;&#1072;
+ &#1084;&#1086;&#1078;&#1085;&#1086; &#1089;&#1074;&#1103;&#1079;&#1072;&#1090;&#1100; &#1089; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1086;&#1077; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1080;&#1083;&#1080; &#1088;&#1072;&#1079;&#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1091;&#1102; &#1074;&#1072;&#1084;&#1080;
+ &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; NFS &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;.
</p>
</li>
</ol>
</div>
-
+
<div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
@@ -71,22 +78,21 @@
</tr>
<tr>
<td align="left" valign="top">
-
+
<p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1103;&#1077;&#1090;&#1077; 64-&#1073;&#1080;&#1090;&#1085;&#1091;&#1102; &#1074;&#1077;&#1088;&#1089;&#1080;&#1102; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;, &#1075;&#1076;&#1077; &#1084;&#1086;&#1075;&#1091;&#1090; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090;&#1100;&#1089;&#1103; &#1082;&#1072;&#1082;&#1080;&#1077;-&#1090;&#1086;
- 32-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1074;&#1072;&#1084; &#1089;&#1090;&#1086;&#1080;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;&#1081; &#1076;&#1083;&#1103; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;
+ 32-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1090;&#1086; &#1074;&#1072;&#1084; &#1089;&#1090;&#1086;&#1080;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;&#1081; &#1076;&#1083;&#1103; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;
&#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1072; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;: &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1100;&#1090;&#1077; &#1086;&#1076;&#1080;&#1085; &#1080;&#1079; &#1087;&#1088;&#1086;&#1090;&#1086;&#1082;&#1086;&#1083;&#1086;&#1074; &#1089;&#1077;&#1090;&#1080;. DVD &#1089; 64-&#1073;&#1080;&#1090;&#1085;&#1086;&#1081;
- &#1074;&#1077;&#1088;&#1089;&#1080;&#1077;&#1081; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; 64-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1073;&#1077;&#1079; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081;
- &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099;. &#1057; &#1077;&#1075;&#1086; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1085;&#1077;&#1083;&#1100;&#1079;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; 32-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1087;&#1086;&#1089;&#1083;&#1077;
- &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;-&#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1072;, &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1080;&#1090;&#1100; &#1085;&#1091;&#1078;&#1085;&#1099;&#1077;
- &#1076;&#1083;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; 32-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;.
+ &#1074;&#1077;&#1088;&#1089;&#1080;&#1077;&#1081; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; 64-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1073;&#1077;&#1079; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1086;&#1081;
+ &#1072;&#1088;&#1093;&#1080;&#1090;&#1077;&#1082;&#1090;&#1091;&#1088;&#1099; <span class="emphasis"><em>noarch</em></span>. &#1057; &#1077;&#1075;&#1086; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1085;&#1077;&#1083;&#1100;&#1079;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100;
+ 32-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1087;&#1086;&#1089;&#1083;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;-&#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1072;, &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1086;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1080;&#1090;&#1100; &#1085;&#1091;&#1078;&#1085;&#1099;&#1077; &#1076;&#1083;&#1103; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; 32-&#1073;&#1080;&#1090;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;.
</p>
-
+
</td>
</tr>
</table>
</div>
-
</div>
</body>
</html>
diff --git a/ru/ask_mntpoint_s.html b/ru/ask_mntpoint_s.html
index b2166db..e2f59a2 100644
--- a/ru/ask_mntpoint_s.html
+++ b/ru/ask_mntpoint_s.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
- <link rel="prev" href="doPartitionDisks.html" title="&#1056;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;">
+ <link rel="prev" href="doPartitionDisks.html" title="&#1055;&#1088;&#1077;&#1076;&#1083;&#1072;&#1075;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;">
<link rel="next" href="takeOverHdConfirm.html" title="&#1055;&#1086;&#1076;&#1090;&#1074;&#1077;&#1088;&#1078;&#1076;&#1077;&#1085;&#1080;&#1077; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1078;&#1077;&#1089;&#1090;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,78 +22,66 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
+
+
+
+
<p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; Linux &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1077;. &#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1085;&#1099; &#1089; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080;
- <span class="application">DrakX</span>, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1079;&#1072;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
+ &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1077;. &#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1085;&#1099; &#1089; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; DrakX, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1079;&#1072;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100;
+ &#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1089;&#1072;&#1084;&#1086;&#1089;&#1090;&#1086;&#1103;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;.
</p>
- <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#1042; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; &#1074;&#1085;&#1077;&#1089;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081; &#1085;&#1077; &#1079;&#1072;&#1073;&#1091;&#1076;&#1100;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1089;&#1088;&#1077;&#1076;&#1080; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1086;&#1073;&#1103;&#1079;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
- &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100; &#1082;&#1086;&#1088;&#1085;&#1077;&#1074;&#1086;&#1081; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; <code class="literal">/</code>.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1044;&#1083;&#1103; &#1082;&#1072;&#1078;&#1076;&#1086;&#1075;&#1086; &#1080;&#1079; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1090;&#1072;&#1082;&#1080;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;: &laquo;&#1059;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1086;&raquo;
- (&laquo;&#1025;&#1084;&#1082;&#1086;&#1089;&#1090;&#1100;&raquo;, &laquo;&#1058;&#1086;&#1095;&#1082;&#1072; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1080;&#1103;&raquo;, &laquo;&#1058;&#1080;&#1087;&raquo;).
+ <p>&#1057;&#1083;&#1077;&#1074;&#1072; &#1086;&#1090; &#1088;&#1072;&#1089;&#1082;&#1088;&#1099;&#1074;&#1072;&#1102;&#1097;&#1080;&#1093;&#1089;&#1103; &#1084;&#1077;&#1085;&#1102; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1093;
+ &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;. &#1055;&#1088;&#1080;&#1084;&#1077;&#1088;: <code class="filename">sda</code> - &#1090;&#1074;&#1105;&#1088;&#1076;&#1099;&#1081; &#1076;&#1080;&#1089;&#1082;, &#1072;
+ <code class="filename">5</code> - <span class="emphasis"><em>&#1085;&#1086;&#1084;&#1077;&#1088; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;</em></span>, &#1087;&#1086; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084;&#1091;
+ &#1073;&#1091;&#1076;&#1077;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1086; <span class="emphasis"><em>(&#1074;&#1084;&#1077;&#1089;&#1090;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100;, &#1090;&#1086;&#1095;&#1082;&#1072; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1080; &#1090;&#1080;&#1087; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1086;&#1081;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;)</em></span> &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;.
</p>
</li>
<li class="listitem">
- <p>&#1044;&#1083;&#1103; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &laquo;&#1059;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1086;&raquo; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1077;: &laquo;&#1078;&#1077;&#1089;&#1090;&#1082;&#1080;&#1081; &#1076;&#1080;&#1089;&#1082;&raquo;, [&laquo;&#1085;&#1086;&#1084;&#1077;&#1088;
- &#1078;&#1077;&#1089;&#1090;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072;&raquo; (&#1073;&#1091;&#1082;&#1074;&#1072;)], &laquo;&#1085;&#1086;&#1084;&#1077;&#1088; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&raquo; (&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &laquo;sda5&raquo;).
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1084;&#1085;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;, &#1074; &#1074;&#1099;&#1087;&#1072;&#1076;&#1072;&#1102;&#1097;&#1077;&#1084; &#1084;&#1077;&#1085;&#1102; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100;
+ &#1076;&#1083;&#1103; &#1085;&#1080;&#1093; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; <span class="emphasis"><em>&#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;</em></span>, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080;
+ &#1090;&#1072;&#1082;&#1080;&#1077;: <code class="literal">/</code>, <code class="literal">/home</code> &#1080;
+ <code class="literal">/var</code>. &#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1089;&#1086;&#1073;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1077; &#1090;&#1086;&#1095;&#1082;&#1080;
+ &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088; <code class="literal">/video</code> &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;, &#1085;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084;
+ &#1073;&#1091;&#1076;&#1091;&#1090; &#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074;&#1072;&#1096;&#1080; &#1074;&#1080;&#1076;&#1077;&#1086;&#1092;&#1072;&#1081;&#1083;&#1099; &#1080; <code class="literal">/Data</code> (&#1080;&#1083;&#1080; &#1083;&#1102;&#1073;&#1086;&#1077; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077;
+ &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077;) &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1089; &#1076;&#1072;&#1085;&#1085;&#1099;&#1084;&#1080;.
</p>
</li>
<li class="listitem">
- <p>&#1045;&#1089;&#1083;&#1080; &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1084;&#1085;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1074;&#1099;&#1087;&#1072;&#1076;&#1072;&#1102;&#1097;&#1077;&#1075;&#1086; &#1084;&#1077;&#1085;&#1102; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100;
- &#1076;&#1083;&#1103; &#1085;&#1080;&#1093; &#1088;&#1072;&#1079;&#1085;&#1099;&#1077; &#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1090;&#1072;&#1082;&#1080;&#1077;: <code class="literal">/</code>,
- <code class="literal">/home</code> &#1080; <code class="literal">/var</code>. &#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
- &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1089;&#1086;&#1073;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1077; &#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088; <code class="literal">/video</code>
- &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;, &#1085;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1073;&#1091;&#1076;&#1091;&#1090; &#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074;&#1072;&#1096;&#1080; &#1074;&#1080;&#1076;&#1077;&#1086; &#1092;&#1072;&#1081;&#1083;&#1099; &#1080;&#1083;&#1080;
- <code class="literal">/cauldron-home</code> &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; <code class="literal">/home</code>
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; &#1090;&#1077;&#1089;&#1090;&#1086;&#1074;&#1086;&#1081; &#1074;&#1077;&#1088;&#1089;&#1080;&#1080; (cauldron).
- </p>
-
- </li>
- <li class="listitem">
-
- <p>&#1044;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;, &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1074; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090;
+ <p>&#1044;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;, &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090;
&#1086;&#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1083;&#1103;&#1090;&#1100;&#1089;&#1103;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1077; &#1091;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1090;&#1100; &#1090;&#1086;&#1095;&#1082;&#1091; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
</p>
@@ -111,10 +99,29 @@
<tr>
<td align="left" valign="top">
- <p>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1053;&#1072;&#1079;&#1072;&#1076;</span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099; &#1089;
- &#1074;&#1099;&#1073;&#1086;&#1088;&#1086;&#1084;. &#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guilabel">&#1057;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1076;&#1080;&#1089;&#1082;&#1072;</span>. &#1042;
- &#1086;&#1082;&#1085;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1086; &#1074; &#1086;&#1090;&#1074;&#1077;&#1090;, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;,
- &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1086; &#1090;&#1080;&#1087;&#1091; &#1080; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1091; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;.
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1074;&#1085;&#1077;&#1089;&#1105;&#1090;&#1077; &#1079;&#1076;&#1077;&#1089;&#1100; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1103;, &#1085;&#1077; &#1079;&#1072;&#1073;&#1091;&#1076;&#1100;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1086;&#1073;&#1103;&#1079;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
+ &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; <code class="filename">/</code> (&#1082;&#1086;&#1088;&#1077;&#1085;&#1100;).
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <div class="tip" title="&#1055;&#1086;&#1076;&#1089;&#1082;&#1072;&#1079;&#1082;&#1072;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Tip">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1055;&#1086;&#1076;&#1089;&#1082;&#1072;&#1079;&#1082;&#1072;]" src="tip.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1053;&#1072;&#1079;&#1072;&#1076;</em></span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099; &#1074;
+ &#1074;&#1099;&#1073;&#1086;&#1088;&#1077;. &#1047;&#1072;&#1090;&#1077;&#1084; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072;</em></span>. &#1042;
+ &#1086;&#1082;&#1085;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1086;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090;&#1089;&#1103; &#1074; &#1086;&#1090;&#1074;&#1077;&#1090;, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;,
+ &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1086; &#1090;&#1080;&#1087;&#1091; &#1080; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1091; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;.
</p>
</td>
@@ -124,7 +131,7 @@
<p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099;, &#1095;&#1090;&#1086; &#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1099; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;
- <span class="guibutton">&#1044;&#1072;&#1083;&#1077;&#1077;</span> &#1080; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1077;&#1089;&#1100; &#1089; &#1090;&#1077;&#1084;, &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1083;&#1080; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086;
+ <span class="emphasis"><em>&#1044;&#1072;&#1083;&#1077;&#1077;</em></span> &#1080; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1077;&#1089;&#1100; &#1089; &#1090;&#1077;&#1084;, &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1083;&#1080; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086;
&#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1085;&#1086; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1102; DrakX &#1080;&#1083;&#1080; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100;
&#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103;.
</p>
diff --git a/ru/chooseDesktop.html b/ru/chooseDesktop.html
index d0257cf..d5c82dc 100644
--- a/ru/chooseDesktop.html
+++ b/ru/chooseDesktop.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
- <link rel="prev" href="media_selection.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; (Nonfree)">
+ <link rel="prev" href="media_selection.html" title="&#1044;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;">
<link rel="next" href="choosePackageGroups.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,41 +22,56 @@
</div>
</div>
</div>
+
+
-
+
+
-
-
- <p>&#1042; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1086;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1072;&#1084;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;,
- &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1084;&#1086;&#1078;&#1077;&#1090; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1080;&#1090;&#1100; &#1085;&#1072; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1093; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1072;&#1093; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077;
- &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1086;&#1082;&#1086;&#1085;&#1095;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1081; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
- </p>
-
-
- <p>&#1055;&#1086;&#1089;&#1083;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072;, &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1076;&#1077;&#1084;&#1086;&#1085;&#1089;&#1090;&#1088;&#1072;&#1094;&#1080;&#1102; &#1089;&#1083;&#1072;&#1081;&#1076;&#1086;&#1074;. &#1054;&#1090;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100;
- &#1087;&#1086;&#1082;&#1072;&#1079; &#1089;&#1083;&#1072;&#1081;&#1076;&#1086;&#1074; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; <span class="guilabel">&#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1089;&#1090;&#1080;</span>.
- </p>
+
+
+
+ <p>&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1085;&#1099;&#1093; &#1079;&#1076;&#1077;&#1089;&#1100; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1074; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1090; &#1082; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1080;&#1102; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093;
+ &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;, &#1089;&#1074;&#1103;&#1079;&#1072;&#1085;&#1085;&#1099;&#1093; &#1089; &#1074;&#1099;&#1073;&#1086;&#1088;&#1086;&#1084; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074;.
+ </p>
+
+ <p>&#1055;&#1086;&#1089;&#1083;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103; &#1096;&#1072;&#1075;&#1086;&#1074; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072;, &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1089;&#1083;&#1072;&#1081;&#1076;-&#1096;&#1086;&#1091; &#1087;&#1086;&#1082;&#1072; &#1073;&#1091;&#1076;&#1091;&#1090;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;. &#1054;&#1090;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1087;&#1086;&#1082;&#1072;&#1079; &#1089;&#1083;&#1072;&#1081;&#1076;&#1086;&#1074; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084;
+ &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; <span class="emphasis"><em>&#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1089;&#1090;&#1080;</em></span>.
+ </p>
+
-
- <p>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1091;&#1102; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1091;&#1102; &#1089;&#1088;&#1077;&#1076;&#1091;, <span class="application">KDE</span>
- &#1080;&#1083;&#1080; <span class="application">Gnome</span>. &#1069;&#1090;&#1080; &#1089;&#1088;&#1077;&#1076;&#1099; &#1086;&#1073;&#1098;&#1077;&#1076;&#1080;&#1085;&#1103;&#1102;&#1090; &#1087;&#1086;&#1083;&#1085;&#1086;&#1094;&#1077;&#1085;&#1085;&#1099;&#1077;
- &#1085;&#1072;&#1073;&#1086;&#1088;&#1099; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084; &#1080; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;. &#1054;&#1090;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;
- <span class="guilabel">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1072;&#1084;&#1077;&#1088;&#1077;&#1085;&#1099; &#1085;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1085;&#1080; &#1086;&#1076;&#1085;&#1091;
- &#1080;&#1079; &#1101;&#1090;&#1080;&#1093; &#1089;&#1088;&#1077;&#1076;, &#1085;&#1072;&#1084;&#1077;&#1088;&#1077;&#1085;&#1099; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1086;&#1073;&#1077; &#1080;&#1083;&#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1082;&#1072;&#1082;&#1086;&#1081;-&#1090;&#1086; &#1086;&#1089;&#1086;&#1073;&#1099;&#1081;
- &#1087;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1103; &#1076;&#1083;&#1103; &#1101;&#1090;&#1080;&#1093; &#1089;&#1088;&#1077;&#1076;. &#1056;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;
- <span class="application">LXDE</span> &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1084;&#1077;&#1085;&#1077;&#1077; &#1090;&#1088;&#1077;&#1073;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1084; &#1082; &#1088;&#1077;&#1089;&#1091;&#1088;&#1089;&#1072;&#1084;,
- &#1095;&#1077;&#1084; &#1087;&#1077;&#1088;&#1074;&#1099;&#1077; &#1076;&#1074;&#1077; &#1089;&#1088;&#1077;&#1076;&#1099;, &#1085;&#1086; &#1074;&#1099;&#1075;&#1083;&#1103;&#1076;&#1080;&#1090; &#1085;&#1077; &#1090;&#1072;&#1082; &#1103;&#1088;&#1082;&#1086; &#1080; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1084;&#1077;&#1085;&#1100;&#1096;&#1077;
- &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1093; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1085;&#1091;&#1078;&#1085;&#1099;&#1081; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; - &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1089;&#1088;&#1077;&#1076;&#1091; &#1055;&#1083;&#1072;&#1079;&#1084;&#1091; KDE &#1080;&#1083;&#1080; GNOME. &#1054;&#1073;&#1077; &#1089;&#1088;&#1077;&#1076;&#1099;
+ &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090; &#1087;&#1086;&#1083;&#1085;&#1099;&#1081; &#1085;&#1072;&#1073;&#1086;&#1088; &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1093; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084; &#1080; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1099;&#1093; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1054;&#1090;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090; <span class="emphasis"><em>&#1057;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081;</em></span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1085;&#1072;&#1084;&#1077;&#1088;&#1077;&#1085;&#1099;
+ &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1086;&#1076;&#1085;&#1091; &#1080;&#1079; &#1101;&#1090;&#1080;&#1093; &#1089;&#1088;&#1077;&#1076;, &#1085;&#1072;&#1084;&#1077;&#1088;&#1077;&#1085;&#1099; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1086;&#1073;&#1077; &#1080;&#1083;&#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100;
+ &#1082;&#1072;&#1082;&#1086;&#1081;-&#1090;&#1086; &#1086;&#1089;&#1086;&#1073;&#1099;&#1081; &#1087;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1103; &#1076;&#1083;&#1103; &#1101;&#1090;&#1080;&#1093; &#1089;&#1088;&#1077;&#1076;. &#1056;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103;
+ &#1089;&#1088;&#1077;&#1076;&#1072; LXDE &#1084;&#1077;&#1085;&#1077;&#1077; &#1087;&#1088;&#1080;&#1074;&#1077;&#1088;&#1077;&#1076;&#1083;&#1080;&#1074;&#1072; &#1082; &#1088;&#1077;&#1089;&#1091;&#1088;&#1089;&#1072;&#1084; &#1095;&#1077;&#1084; &#1087;&#1077;&#1088;&#1074;&#1099;&#1077; &#1076;&#1074;&#1077; &#1089;&#1088;&#1077;&#1076;&#1099;, &#1085;&#1086; &#1074;&#1099;&#1075;&#1083;&#1103;&#1076;&#1080;&#1090;
+ &#1085;&#1077; &#1090;&#1072;&#1082; &#1103;&#1088;&#1082;&#1086; &#1080; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1084;&#1077;&#1085;&#1100;&#1096;&#1077; &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1093; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
</div>
</body>
</html>
diff --git a/ru/choosePackageGroups.html b/ru/choosePackageGroups.html
index 8835682..684afe3 100644
--- a/ru/choosePackageGroups.html
+++ b/ru/choosePackageGroups.html
@@ -22,53 +22,55 @@
</div>
</div>
</div>
+
-
-
-
+
+
+
-
- <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1086;&#1073;&#1083;&#1077;&#1075;&#1095;&#1080;&#1090;&#1100; &#1074;&#1099;&#1073;&#1086;&#1088; &#1085;&#1091;&#1078;&#1085;&#1099;&#1093; &#1074;&#1072;&#1084; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085; &#1085;&#1072;
- &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;. &#1053;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1075;&#1088;&#1091;&#1087;&#1087; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1085;&#1103;&#1090;&#1100; &#1080;&#1079; &#1080;&#1093; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1081;, &#1074;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
- &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1087;&#1086;&#1076;&#1089;&#1082;&#1072;&#1079;&#1082;&#1091; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1103; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099; &#1074; &#1086;&#1090;&#1074;&#1077;&#1090; &#1085;&#1072; &#1085;&#1072;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077;
+
+ <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1086;&#1073;&#1083;&#1077;&#1075;&#1095;&#1080;&#1090;&#1100; &#1074;&#1099;&#1073;&#1086;&#1088; &#1085;&#1091;&#1078;&#1085;&#1099;&#1093; &#1074;&#1072;&#1084; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1105;&#1085; &#1085;&#1072; &#1089;&#1090;&#1072;&#1085;&#1076;&#1072;&#1088;&#1090;&#1085;&#1099;&#1077;
+ &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;. &#1053;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1075;&#1088;&#1091;&#1087;&#1087; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1085;&#1103;&#1090;&#1100; &#1080;&#1079; &#1080;&#1093; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1081;, &#1074;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1074;&#1099; &#1090;&#1072;&#1082;&#1078;&#1077;
+ &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1087;&#1086;&#1076;&#1089;&#1082;&#1072;&#1079;&#1082;&#1091; &#1087;&#1086; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1102; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099; &#1074; &#1086;&#1090;&#1074;&#1077;&#1090; &#1085;&#1072; &#1085;&#1072;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077;
&#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1077;&#1083;&#1103; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1087;&#1091;&#1085;&#1082;&#1090; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099; &#1074; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077;.
</p>
-
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>&#1056;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1090;&#1072;&#1085;&#1094;&#1080;&#1103;.</p>
+ <p><span class="bold"><strong>&#1056;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1090;&#1072;&#1085;&#1094;&#1080;&#1103;</strong></span></p>
+
</li>
<li class="listitem">
-
- <p>&#1057;&#1077;&#1088;&#1074;&#1077;&#1088;.</p>
+ <p><span class="bold"><strong>&#1057;&#1077;&#1088;&#1074;&#1077;&#1088;</strong></span></p>
+
</li>
<li class="listitem">
-
- <p>&#1043;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;.</p>
+ <p><span class="bold"><strong>&#1043;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;</strong></span></p>
+
</li>
<li class="listitem">
-
- <p>&#1048;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;: &#1101;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1076;&#1083;&#1103; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;
- &#1080;&#1083;&#1080; &#1091;&#1076;&#1072;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;.
- </p>
+ <p><span class="bold"><strong>&#1048;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</strong></span>: &#1101;&#1090;&#1080;&#1084;
+ &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1076;&#1083;&#1103; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1083;&#1080; &#1091;&#1076;&#1072;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;.
+ </p>
+
</li>
</ul>
</div>
-
- <p>&#1054;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1084; <a class="xref" href="minimal-install.html" title="&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;">&laquo;&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;&raquo;</a>, &#1075;&#1076;&#1077;
- &#1080;&#1079;&#1083;&#1086;&#1078;&#1077;&#1085;&#1099; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1082;&#1094;&#1080;&#1080; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1084;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; (&#1073;&#1077;&#1079; &#1080;&#1083;&#1080; &#1089;
- &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1086;&#1084; &#1080; IceWM).
- </p>
+
+ <p>&#1054;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1084; <a class="xref" href="minimal-install.html" title="&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;">Minimal Install</a>, &#1075;&#1076;&#1077; &#1080;&#1079;&#1083;&#1086;&#1078;&#1077;&#1085;&#1099;
+ &#1085;&#1072;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1084;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; (&#1073;&#1077;&#1079; &#1080;&#1083;&#1080; &#1089; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1086;&#1084;
+ &#1080; IceWM).
+ </p>
+
</div>
</body>
</html>
diff --git a/ru/choosePackagesTree.html b/ru/choosePackagesTree.html
index 0728093..394a238 100644
--- a/ru/choosePackagesTree.html
+++ b/ru/choosePackagesTree.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="prev" href="minimal-install.html" title="&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;">
- <link rel="next" href="addUser.html" title="&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="addUser.html" title="&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,28 +22,31 @@
</div>
</div>
</div>
+
-
+
-
+
+
+
-
+
<p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077;
- &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1103;&#1090; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1091;&#1102; &#1074;&#1072;&#1084;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;, &#1080;&#1083;&#1080; &#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1103;&#1074;&#1083;&#1103;&#1102;&#1097;&#1080;&#1077;&#1089;&#1103; &#1095;&#1072;&#1089;&#1090;&#1100;&#1102;
- &#1090;&#1080;&#1087;&#1086;&#1074;&#1086;&#1075;&#1086; &#1085;&#1072;&#1073;&#1086;&#1088;&#1072;.
+ &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1103;&#1090; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1091;&#1102; &#1074;&#1072;&#1084;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;, &#1080;&#1083;&#1080; &#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103;
+ &#1095;&#1072;&#1089;&#1090;&#1100;&#1102; &#1090;&#1080;&#1087;&#1086;&#1074;&#1086;&#1075;&#1086; &#1085;&#1072;&#1073;&#1086;&#1088;&#1072;.
</p>
-
- <p>&#1050;&#1072;&#1082; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;&#1099;&#1073;&#1086;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; <span class="guibutton">&#1079;&#1085;&#1072;&#1095;&#1086;&#1082;
- &#1076;&#1080;&#1089;&#1082;&#1077;&#1090;&#1099;</span> &#1074; &#1085;&#1080;&#1078;&#1085;&#1077;&#1081; &#1095;&#1072;&#1089;&#1090;&#1080; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;
+
+ <p>&#1050;&#1072;&#1082; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;&#1099;&#1073;&#1086;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; <span class="emphasis"><em>&#1079;&#1085;&#1072;&#1095;&#1086;&#1082;
+ &#1076;&#1080;&#1089;&#1082;&#1077;&#1090;&#1099;</em></span> &#1074; &#1085;&#1080;&#1078;&#1085;&#1077;&#1081; &#1095;&#1072;&#1089;&#1090;&#1080; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;
(&#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1085;&#1072; &#1092;&#1083;&#1101;&#1096;-&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077; USB). &#1055;&#1086;&#1089;&#1083;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1085;&#1099;&#1084;
&#1092;&#1072;&#1081;&#1083;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1076;&#1088;&#1091;&#1075;&#1080;&#1077;
&#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1099;: &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1101;&#1090;&#1091; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1077;&#1097;&#1077; &#1088;&#1072;&#1079; &#1087;&#1088;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1080; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100;
&#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1085;&#1099;&#1081; &#1092;&#1072;&#1081;&#1083;.
</p>
-
+
</div>
</body>
</html>
diff --git a/ru/configureServices.html b/ru/configureServices.html
index 1eb5d10..46fc622 100644
--- a/ru/configureServices.html
+++ b/ru/configureServices.html
@@ -22,41 +22,48 @@
</div>
</div>
</div>
+
+
-
-
-
-
-
+
+
+
+
-
+
<p><a name="configureServices-pa1"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100;, &#1082;&#1072;&#1082;&#1080;&#1077; &#1089;&#1083;&#1091;&#1078;&#1073;&#1099; &#1073;&#1091;&#1076;&#1091;&#1090;
- &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1072; &#1082;&#1072;&#1082;&#1080;&#1077; &#1085;&#1077;&#1090;, &#1087;&#1088;&#1080; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1077; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+ &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1072; &#1082;&#1072;&#1082;&#1080;&#1077; &#1085;&#1077;&#1090;, &#1074;&#1086; &#1074;&#1088;&#1077;&#1084;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
</p>
-
- <p><a name="configureServices-pa2"></a>&#1055;&#1088;&#1077;&#1076;&#1091;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1085;&#1086; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099; &#1089;&#1083;&#1091;&#1078;&#1073;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1088;&#1072;&#1079;&#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1082;&#1072;&#1078;&#1076;&#1086;&#1081; &#1080;&#1079; &#1075;&#1088;&#1091;&#1087;&#1087;,
- &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1089; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1077;&#1084; &#1090;&#1088;&#1077;&#1091;&#1075;&#1086;&#1083;&#1100;&#1085;&#1080;&#1082;&#1072; &#1087;&#1077;&#1088;&#1077;&#1076; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1084; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;.
- </p>
-
-
- <p><a name="configureServices-pa3"></a>&#1054;&#1073;&#1099;&#1095;&#1085;&#1086; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1074; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1080; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;, &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1099;&#1093; DrakX, &#1085;&#1077;&#1090;.
- </p>
-
-
- <p><a name="configureServices-pa4"></a>&#1055;&#1086;&#1089;&#1083;&#1077; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1089;&#1083;&#1091;&#1078;&#1073;&#1099;, &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1087;&#1086;&#1082;&#1072;&#1078;&#1077;&#1090; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1086;
- &#1089;&#1083;&#1091;&#1078;&#1073;&#1077; &#1085;&#1072; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1087;&#1086;&#1076; &#1089;&#1087;&#1080;&#1089;&#1082;&#1086;&#1084;.
- </p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureServices-pa2"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1090;&#1088;&#1077;&#1091;&#1075;&#1086;&#1083;&#1100;&#1085;&#1080;&#1082;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1088;&#1072;&#1079;&#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091; &#1074; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1074;&#1089;&#1077;&#1093; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1093;
+ &#1089;&#1083;&#1091;&#1078;&#1073;. &#1054;&#1073;&#1099;&#1095;&#1085;&#1086;, &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1099;&#1077; DrakX &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1087;&#1088;&#1080;&#1077;&#1084;&#1083;&#1077;&#1084;&#1099;&#1084;&#1080;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="configureServices-pa4"></a>&#1055;&#1086;&#1089;&#1083;&#1077; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1089;&#1083;&#1091;&#1078;&#1073;&#1099;, &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1087;&#1086;&#1082;&#1072;&#1078;&#1077;&#1090; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1086;
+ &#1089;&#1083;&#1091;&#1078;&#1073;&#1077; &#1085;&#1072; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1087;&#1086;&#1076; &#1089;&#1087;&#1080;&#1089;&#1082;&#1086;&#1084;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
-
+
<p><a name="configureServices-pa5"></a>&#1042;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1103; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1077;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084; &#1093;&#1086;&#1088;&#1086;&#1096;&#1086; &#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1099; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1089;&#1090;&#1074;&#1080;&#1103; &#1074;&#1072;&#1096;&#1080;&#1093;
&#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;.
</p>
-
+
</div>
</body>
</html>
diff --git a/ru/configureTimezoneUTC.html b/ru/configureTimezoneUTC.html
index 4a78253..359a5b5 100644
--- a/ru/configureTimezoneUTC.html
+++ b/ru/configureTimezoneUTC.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
- <link rel="prev" href="misc-params.html" title="&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;">
+ <link rel="prev" href="misc-params.html" title="&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;">
<link rel="next" href="selectCountry.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1089;&#1090;&#1088;&#1072;&#1085;&#1099; &#1080; &#1088;&#1077;&#1075;&#1080;&#1086;&#1085;&#1072;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -31,15 +31,27 @@
- <p><a name="configureTimezoneUTC-pa1"></a>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1074;&#1072;&#1096; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089;. &#1044;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1074;&#1072;&#1096;&#1091; &#1089;&#1090;&#1088;&#1072;&#1085;&#1091; &#1080;&#1083;&#1080;
- &#1082;&#1072;&#1082;&#1086;&#1081;-&#1090;&#1086; &#1075;&#1086;&#1088;&#1086;&#1076; &#1088;&#1103;&#1076;&#1086;&#1084; &#1089; &#1074;&#1072;&#1096;&#1080;&#1084; &#1084;&#1077;&#1089;&#1090;&#1086;&#1084; &#1087;&#1088;&#1077;&#1073;&#1099;&#1074;&#1072;&#1085;&#1080;&#1103; &#1090;&#1072;&#1082;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1101;&#1090;&#1086;&#1090; &#1075;&#1086;&#1088;&#1086;&#1076; &#1073;&#1099;&#1083;
- &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085; &#1074; &#1090;&#1086;&#1084; &#1078;&#1077; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1084; &#1087;&#1086;&#1103;&#1089;&#1077;.
- </p>
- <p><a name="configureTimezoneUTC-pa2"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1088;&#1077;&#1078;&#1080;&#1084; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1085;&#1099;&#1093; &#1095;&#1072;&#1089;&#1086;&#1074;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;: &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1084;&#1077;&#1089;&#1090;&#1085;&#1086;&#1075;&#1086; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1080;&#1083;&#1080; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1087;&#1086; &#1043;&#1088;&#1080;&#1085;&#1074;&#1080;&#1095;&#1091; (GMT),
- &#1090;&#1072;&#1082;&#1078;&#1077; &#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1086;&#1075;&#1086; &#1082;&#1072;&#1082; &#1042;&#1089;&#1077;&#1084;&#1080;&#1088;&#1085;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103; (UTC).
+
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="configureTimezoneUTC-pa1"></a>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1074;&#1072;&#1096; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089;. &#1044;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1074;&#1072;&#1096;&#1091; &#1089;&#1090;&#1088;&#1072;&#1085;&#1091; &#1080;&#1083;&#1080;
+ &#1082;&#1072;&#1082;&#1086;&#1081;-&#1090;&#1086; &#1075;&#1086;&#1088;&#1086;&#1076; &#1088;&#1103;&#1076;&#1086;&#1084; &#1089; &#1074;&#1072;&#1096;&#1080;&#1084; &#1084;&#1077;&#1089;&#1090;&#1086;&#1084; &#1087;&#1088;&#1077;&#1073;&#1099;&#1074;&#1072;&#1085;&#1080;&#1103; &#1090;&#1072;&#1082;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1101;&#1090;&#1086;&#1090; &#1075;&#1086;&#1088;&#1086;&#1076; &#1073;&#1099;&#1083;
+ &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085; &#1074; &#1090;&#1086;&#1084; &#1078;&#1077; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1084; &#1087;&#1086;&#1103;&#1089;&#1077;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p><a name="configureTimezoneUTC-pa2"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1088;&#1077;&#1078;&#1080;&#1084; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1072;&#1087;&#1087;&#1072;&#1088;&#1072;&#1090;&#1085;&#1099;&#1093; &#1095;&#1072;&#1089;&#1086;&#1074;
+ &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;: &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1084;&#1077;&#1089;&#1090;&#1085;&#1086;&#1075;&#1086; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1080;&#1083;&#1080; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1087;&#1086; &#1043;&#1088;&#1080;&#1085;&#1074;&#1080;&#1095;&#1091;, &#1090;&#1072;&#1082;&#1078;&#1077;
+ &#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1086;&#1075;&#1086; &#1082;&#1072;&#1082; &#1042;&#1089;&#1077;&#1084;&#1080;&#1088;&#1085;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103;.
</p>
diff --git a/ru/configureX_card_list.html b/ru/configureX_card_list.html
index 999c0cc..6f2f49b 100644
--- a/ru/configureX_card_list.html
+++ b/ru/configureX_card_list.html
@@ -29,7 +29,13 @@
+
+
+
+
+
+
@@ -48,7 +54,7 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1088;&#1072;&#1079;&#1088;&#1072;&#1073;&#1086;&#1090;&#1095;&#1080;&#1082;</p>
+ <p>&#1055;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1100;</p>
</li>
<li class="listitem">
@@ -58,39 +64,48 @@
</li>
<li class="listitem">
- <p>&#1090;&#1080;&#1087; &#1074;&#1072;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;</p>
+ <p>&#1084;&#1086;&#1076;&#1077;&#1083;&#1100; &#1074;&#1072;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;</p>
</li>
</ul>
</div>
- <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1085;&#1077;&#1090; &#1074; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1082;&#1072;&#1088;&#1090; &#1087;&#1086; &#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1103;&#1084; (&#1087;&#1086;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1091; &#1086;&#1085;&#1072; &#1077;&#1097;&#1077; &#1085;&#1077;
- &#1091;&#1089;&#1087;&#1077;&#1083;&#1072; &#1087;&#1086;&#1087;&#1072;&#1089;&#1090;&#1100; &#1074; &#1073;&#1072;&#1079;&#1099; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080;&#1083;&#1080; &#1089;&#1083;&#1080;&#1096;&#1082;&#1086;&#1084; &#1089;&#1090;&#1072;&#1088;&#1072;&#1103;), &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1081;&#1090;&#1080;
- &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1081; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1074; &#1082;&#1072;&#1090;&#1077;&#1075;&#1086;&#1088;&#1080;&#1080; &laquo;Xorg&raquo;.
- </p>
-
-
- <p>&#1042; &#1082;&#1072;&#1090;&#1077;&#1075;&#1086;&#1088;&#1080;&#1080; &laquo;Xorg&raquo; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1086;&#1076;&#1085;&#1080;&#1084; &#1080;&#1079; &#1073;&#1086;&#1083;&#1077;&#1077; 40 &#1090;&#1080;&#1087;&#1086;&#1074;&#1099;&#1093;
- &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1074; &#1089; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1099;&#1084; &#1082;&#1086;&#1076;&#1086;&#1084; &#1076;&#1083;&#1103; &#1074;&#1080;&#1076;&#1077;&#1086;&#1082;&#1072;&#1088;&#1090;. &#1045;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084; &#1074;&#1089;&#1077; &#1078;&#1077; &#1085;&#1077; &#1091;&#1076;&#1072;&#1089;&#1090;&#1089;&#1103; &#1085;&#1072;&#1081;&#1090;&#1080;
- &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1087;&#1086; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1102;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1084; "vesa". &#1069;&#1090;&#1086;&#1090;
- &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1073;&#1072;&#1079;&#1086;&#1074;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1074;&#1080;&#1076;&#1077;&#1086;.
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1081;&#1090;&#1080; &#1074;&#1072;&#1096;&#1091; &#1082;&#1072;&#1088;&#1090;&#1091; &#1074; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; (&#1090;&#1072;&#1082; &#1082;&#1072;&#1082; &#1077;&#1105; &#1077;&#1097;&#1105;
+ &#1085;&#1077;&#1090; &#1074; &#1073;&#1072;&#1079;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080;&#1083;&#1080; &#1074;&#1099; &#1080;&#1084;&#1077;&#1077;&#1090;&#1077; &#1076;&#1077;&#1083;&#1086; &#1089; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1086;&#1081;), &#1090;&#1086; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
+ &#1085;&#1072;&#1081;&#1090;&#1080; &#1087;&#1086;&#1076;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1081; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1074; &#1082;&#1072;&#1090;&#1077;&#1075;&#1086;&#1088;&#1080;&#1080; <span class="emphasis"><em>Xorg</em></span>, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
+ &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1086;&#1076;&#1085;&#1080;&#1084; &#1080;&#1079; 40 &#1090;&#1080;&#1087;&#1086;&#1074;&#1099;&#1093; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1074; &#1089; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1099;&#1084; &#1082;&#1086;&#1076;&#1086;&#1084; &#1076;&#1083;&#1103;
+ &#1074;&#1080;&#1076;&#1077;&#1086;&#1082;&#1072;&#1088;&#1090;. &#1045;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084; &#1074;&#1089;&#1105; &#1078;&#1077; &#1085;&#1077; &#1091;&#1076;&#1072;&#1089;&#1090;&#1089;&#1103; &#1085;&#1072;&#1081;&#1090;&#1080; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1087;&#1086; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1102;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
+ &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1084; VESA. &#1069;&#1090;&#1086;&#1090; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1073;&#1072;&#1079;&#1086;&#1074;&#1099;&#1077;
+ &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1086; &#1087;&#1086;&#1082;&#1072;&#1079;&#1091; &#1074;&#1080;&#1076;&#1077;&#1086;.
</p>
- <p>&#1041;&#1091;&#1076;&#1100;&#1090;&#1077; &#1074;&#1085;&#1080;&#1084;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;: &#1077;&#1089;&#1083;&#1080; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1086;&#1096;&#1080;&#1073;&#1086;&#1095;&#1085;&#1086;, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100;
- &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1082; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1091; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080;.
- </p>
+ <div class="caution" title="&#1055;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1077;&#1088;&#1077;&#1078;&#1077;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1055;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1077;&#1088;&#1077;&#1078;&#1077;&#1085;&#1080;&#1077;]" src="caution.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1041;&#1091;&#1076;&#1100;&#1090;&#1077; &#1074;&#1085;&#1080;&#1084;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;: &#1077;&#1089;&#1083;&#1080; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1086;&#1096;&#1080;&#1073;&#1086;&#1095;&#1085;&#1086;, &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100;
+ &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1082; <span class="emphasis"><em>&#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1091; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080;</em></span>.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<p>&#1053;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1080; &#1074;&#1080;&#1076;&#1077;&#1086;&#1082;&#1072;&#1088;&#1090; &#1089;&#1072;&#1084;&#1080; &#1089;&#1086;&#1079;&#1076;&#1072;&#1102;&#1090; &#1087;&#1088;&#1086;&#1087;&#1088;&#1080;&#1077;&#1090;&#1072;&#1088;&#1085;&#1099;&#1077; (&#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1077;)
- &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1099; &#1076;&#1083;&#1103; Linux. &#1044;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1090;&#1072;&#1082;&#1080;&#1084; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1074; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
- &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1077;&#1074; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &laquo;Nonfree&raquo; &#1080;&#1083;&#1080; &#1085;&#1072; &#1089;&#1072;&#1081;&#1090;&#1072;&#1093; &#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;.
- </p>
-
-
- <p>&#1042;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1103;&#1074;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084; &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1080; &laquo;Nonfree&raquo;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1080;&#1084;&#1077;&#1090;&#1100; &#1082; &#1085;&#1080;&#1084;
- &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;. &#1057;&#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1101;&#1090;&#1086; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080; &#1087;&#1086;&#1079;&#1076;&#1085;&#1077;&#1077; - &#1087;&#1086;&#1089;&#1083;&#1077; &#1087;&#1077;&#1088;&#1074;&#1086;&#1081; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+ &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1099; &#1076;&#1083;&#1103; Linux. &#1044;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1090;&#1072;&#1082;&#1080;&#1084; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1072;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
+ &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; <span class="bold"><strong>Nonfree</strong></span> &#1080;&#1083;&#1080; &#1089;&#1072;&#1081;&#1090;&#1086;&#1074;
+ &#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1086;&#1095;&#1077;&#1082;. &#1044;&#1083;&#1103; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1082; &#1101;&#1090;&#1080;&#1084; &#1087;&#1072;&#1082;&#1077;&#1090;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1103;&#1074;&#1085;&#1086; &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100;
+ &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1077; <span class="emphasis"><em>Nonfree</em></span>. &#1045;&#1089;&#1083;&#1080; &#1086;&#1085;&#1086; &#1085;&#1077; &#1073;&#1099;&#1083;&#1086; &#1088;&#1072;&#1085;&#1100;&#1096;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1086;,
+ &#1101;&#1090;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1089;&#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1087;&#1086;&#1089;&#1083;&#1077; &#1087;&#1077;&#1088;&#1074;&#1086;&#1081; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;.
</p>
</div>
diff --git a/ru/configureX_chooser.html b/ru/configureX_chooser.html
index f29dce3..6e7fe50 100644
--- a/ru/configureX_chooser.html
+++ b/ru/configureX_chooser.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
- <link rel="prev" href="addUser.html" title="&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;">
+ <link rel="prev" href="addUser.html" title="&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;">
<link rel="next" href="configureX_card_list.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,13 @@
</div>
</div>
</div>
+
+
+
+
+
+
+
@@ -30,16 +37,17 @@
- <p><a name="configureX_chooser-pa1"></a>&#1041;&#1077;&#1079;&#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1086;, &#1082;&#1072;&#1082;&#1072;&#1103; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; (&#1080;&#1083;&#1080; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;) &#1073;&#1099;&#1083;&#1072; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1072; &#1074;&#1086;
- &#1074;&#1088;&#1077;&#1084;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; <span class="application">Mageia</span>, &#1074;&#1089;&#1077; &#1101;&#1090;&#1080; &#1089;&#1088;&#1077;&#1076;&#1099; &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1099; &#1085;&#1072;
- &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1084; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; <acronym class="acronym">X Window
- System</acronym> &#1080;&#1083;&#1080; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086; <acronym class="acronym">X</acronym>. &#1057;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;, &#1095;&#1090;&#1086;&#1073;&#1099;
- <acronym class="acronym">KDE</acronym>, <acronym class="acronym">Gnome</acronym>, <acronym class="acronym">LXDE</acronym>
- &#1080;&#1083;&#1080; &#1083;&#1102;&#1073;&#1072;&#1103; &#1076;&#1088;&#1091;&#1075;&#1072;&#1103; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1083;&#1072; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;, &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1080;&#1078;&#1077;
- &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; <acronym class="acronym">X</acronym> &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1073;&#1099;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1099;
- &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;. &#1048;&#1079;&#1084;&#1077;&#1085;&#1103;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;, &#1077;&#1089;&#1083;&#1080; &#1079;&#1072;&#1084;&#1077;&#1090;&#1085;&#1086;, &#1095;&#1090;&#1086;
- <span class="application">DrakX</span> &#1089;&#1076;&#1077;&#1083;&#1072;&#1083; &#1086;&#1096;&#1080;&#1073;&#1086;&#1095;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088;, &#1080;&#1083;&#1080; &#1077;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084;
- &#1082;&#1072;&#1078;&#1077;&#1090;&#1089;&#1103;, &#1095;&#1090;&#1086; &#1101;&#1090;&#1086;&#1090; &#1074;&#1099;&#1073;&#1086;&#1088; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1086;&#1096;&#1080;&#1073;&#1086;&#1095;&#1085;&#1099;&#1084;.
+ <p><a name="configureX_chooser-pa1"></a>&#1053;&#1077;&#1074;&#1072;&#1078;&#1085;&#1086;, &#1082;&#1072;&#1082;&#1072;&#1103; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; (&#1080;&#1083;&#1080; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;) &#1073;&#1099;&#1083;&#1072; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1072; &#1087;&#1088;&#1080;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; Mageia, &#1074;&#1089;&#1077; &#1101;&#1090;&#1080; &#1089;&#1088;&#1077;&#1076;&#1099; &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1099; &#1085;&#1072; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1084; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081;
+ &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; <code class="literal">X Window System</code> &#1080;&#1083;&#1080; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086;
+ <acronym class="acronym">X</acronym>. &#1048;&#1090;&#1072;&#1082;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1055;&#1083;&#1072;&#1079;&#1084;&#1072; KDE, GNOME, LXDE &#1080;&#1083;&#1080; &#1083;&#1102;&#1073;&#1072;&#1103; &#1076;&#1088;&#1091;&#1075;&#1072;&#1103;
+ &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1083;&#1072; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;, &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099;
+ &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; <acronym class="acronym">X</acronym> &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1073;&#1099;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1099; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;.
+ </p>
+
+
+ <p>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;, &#1077;&#1089;&#1083;&#1080; &#1089;&#1095;&#1080;&#1090;&#1072;&#1077;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1086;&#1085;&#1080; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099;
+ &#1085;&#1077;&#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;, &#1080;&#1083;&#1080; &#1077;&#1089;&#1083;&#1080; &#1085;&#1080;&#1082;&#1072;&#1082;&#1080;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1085;&#1077; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1086;.
</p>
@@ -47,71 +55,86 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="configureX_chooser-pa2"></a><span class="emphasis"><em><span class="guibutton">&#1043;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1082;&#1072;&#1088;&#1090;&#1072;</span></em></span>: &#1077;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086;,
- &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1091;&#1102; &#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1077; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1091;&#1102; &#1082;&#1072;&#1088;&#1090;&#1091; &#1080;&#1079; &#1089;&#1087;&#1080;&#1089;&#1082;&#1072;.
+ <p><a name="configureX_chooser-pa2"></a><span class="bold"><strong>&#1043;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1082;&#1072;&#1088;&#1090;&#1072;</strong></span></p>
+
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086;, &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1091;&#1102; &#1082;&#1072;&#1088;&#1090;&#1091; &#1080;&#1079; &#1089;&#1087;&#1080;&#1089;&#1082;&#1072;. &#1057;&#1084;. <a class="xref" href="configureX_card_list.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;)">&laquo;&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;)&raquo;</a>.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa3"></a><span class="emphasis"><em><span class="guibutton">&#1052;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;</span></em></span>: &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100;
- <span class="guilabel">Plug'n Play</span> &#1077;&#1089;&#1083;&#1080; &#1089;&#1095;&#1080;&#1090;&#1072;&#1077;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1101;&#1090;&#1086; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;, &#1080;&#1083;&#1080;
- &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1087;&#1091;&#1085;&#1082;&#1090; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1080;&#1079; &#1089;&#1087;&#1080;&#1089;&#1082;&#1072; <span class="guilabel">&#1055;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1100;</span>
- &#1080;&#1083;&#1080; <span class="guilabel">&#1054;&#1073;&#1097;&#1080;&#1081;</span>. &#1042;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;
- <span class="guilabel">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</span>, &#1077;&#1089;&#1083;&#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1091;
- &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086; &#1074;&#1077;&#1088;&#1090;&#1080;&#1082;&#1072;&#1083;&#1080; &#1080; &#1075;&#1086;&#1088;&#1080;&#1079;&#1086;&#1085;&#1090;&#1072;&#1083;&#1080; &#1076;&#1083;&#1103; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;.
- </p>
+ <p><a name="configureX_chooser-pa3"></a><span class="bold"><strong>&#1052;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;</strong></span></p>
- <div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p><a name="configureX_chooser-pa3a"></a>&#1054;&#1096;&#1080;&#1073;&#1086;&#1095;&#1085;&#1086; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1099; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1084;&#1086;&#1075;&#1091;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1089;&#1090;&#1080; &#1082;
- &#1087;&#1086;&#1074;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1080;&#1102; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
+ <p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; Plug'n Play, &#1077;&#1089;&#1083;&#1080; &#1089;&#1095;&#1080;&#1090;&#1072;&#1077;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1101;&#1090;&#1086; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;, &#1080;&#1083;&#1080; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100;
+ &#1087;&#1091;&#1085;&#1082;&#1090; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1080;&#1079; &#1089;&#1087;&#1080;&#1089;&#1082;&#1086;&#1074; <span class="emphasis"><em>&#1055;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1100;</em></span> &#1080;&#1083;&#1080;
+ <span class="emphasis"><em>&#1054;&#1073;&#1097;&#1080;&#1081;</em></span>. &#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; <span class="emphasis"><em>&#1057;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081;</em></span>, &#1077;&#1089;&#1083;&#1080;
+ &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1091; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086; &#1074;&#1077;&#1088;&#1090;&#1080;&#1082;&#1072;&#1083;&#1080; &#1080;
+ &#1075;&#1086;&#1088;&#1080;&#1079;&#1086;&#1085;&#1090;&#1072;&#1083;&#1080; &#1076;&#1083;&#1103; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;. &#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; <a class="xref" href="configureX_monitor.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;">&laquo;&#1042;&#1099;&#1073;&#1086;&#1088; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;&raquo;</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa4"></a><span class="emphasis"><em><span class="guibutton">&#1056;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1077;</span></em></span>: &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086;
- &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1077; &#1080; &#1075;&#1083;&#1091;&#1073;&#1080;&#1085;&#1091; &#1094;&#1074;&#1077;&#1090;&#1072; &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1077;.
+ <p><a name="configureX_chooser-pa4"></a><span class="bold"><strong>&#1056;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1077;</strong></span></p>
+
+
+ <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1077; &#1080; &#1075;&#1083;&#1091;&#1073;&#1080;&#1085;&#1091; &#1094;&#1074;&#1077;&#1090;&#1086;&#1074; &#1085;&#1072;
+ &#1074;&#1072;&#1096;&#1077;&#1084; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1077;.
</p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa5"></a><span class="emphasis"><em><span class="guibutton">&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100;</span></em></span>: &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1080; &#1087;&#1088;&#1080;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1072;. &#1045;&#1089;&#1083;&#1080; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1072;, &#1087;&#1086;&#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1086;&#1084; &#1077;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
- &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100;, &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086; &#1083;&#1080; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;. &#1042; &#1086;&#1090;&#1074;&#1077;&#1090; &#1085;&#1072; &#1074;&#1086;&#1087;&#1088;&#1086;&#1089; &#1086; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1080;
- &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1086;&#1090;&#1074;&#1077;&#1090;&#1080;&#1090;&#1100; &laquo;&#1076;&#1072;&raquo;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077;
- &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;. &#1045;&#1089;&#1083;&#1080; &#1078;&#1077; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1085;&#1072; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1077; &#1085;&#1077;&#1090;, &#1090;&#1086; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1095;&#1077;&#1088;&#1077;&#1079; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077;
- &#1074;&#1088;&#1077;&#1084;&#1103; &#1074;&#1077;&#1088;&#1085;&#1077;&#1090; &#1074;&#1072;&#1089; &#1082; &#1086;&#1082;&#1085;&#1091; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1089;&#1087;&#1088;&#1072;&#1074;&#1080;&#1090;&#1100;
- &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;, &#1087;&#1086;&#1082;&#1072; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1076;&#1086;&#1089;&#1090;&#1080;&#1075;&#1085;&#1091;&#1090; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1099;&#1081; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;. <span class="emphasis"><em>&#1045;&#1089;&#1083;&#1080; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072;
- &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1080; &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1072;, &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1089;&#1072;&#1084;&#1086;&#1089;&#1090;&#1086;&#1103;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1087;&#1086;&#1079;&#1072;&#1073;&#1086;&#1090;&#1080;&#1090;&#1100;&#1089;&#1103; &#1086; &#1090;&#1086;&#1084;, &#1095;&#1090;&#1086;&#1073;&#1099;
- &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1073;&#1099;&#1083;&#1080; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1099;&#1084;&#1080;.</em></span></p>
+ <p><a name="configureX_chooser-pa5"></a><span class="bold"><strong>&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100;</strong></span></p>
+
+
+ <p>&#1050;&#1085;&#1086;&#1087;&#1082;&#1072; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1080; &#1074;&#1086; &#1074;&#1088;&#1077;&#1084;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1081;. &#1045;&#1089;&#1083;&#1080; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072;
+ &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1072;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1077;&#1105; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100;, &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086; &#1083;&#1080; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099;
+ &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;. &#1042; &#1086;&#1090;&#1074;&#1077;&#1090; &#1085;&#1072; &#1074;&#1086;&#1087;&#1088;&#1086;&#1089; &#1086; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1086;&#1090;&#1074;&#1077;&#1090;&#1080;&#1090;&#1100;
+ <span class="emphasis"><em>&laquo;&#1044;&#1072;&raquo;</em></span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;. &#1045;&#1089;&#1083;&#1080; &#1078;&#1077;
+ &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1085;&#1072; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1077; &#1085;&#1077;&#1090;, &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1095;&#1077;&#1088;&#1077;&#1079; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103; &#1074;&#1077;&#1088;&#1085;&#1105;&#1090; &#1074;&#1072;&#1089; &#1082; &#1086;&#1082;&#1085;&#1091;
+ &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1089;&#1087;&#1088;&#1072;&#1074;&#1080;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;, &#1087;&#1086;&#1082;&#1072; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090;
+ &#1076;&#1086;&#1089;&#1090;&#1080;&#1075;&#1085;&#1091;&#1090; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1099;&#1081; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;. &#1045;&#1089;&#1083;&#1080; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1080; &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1072;, &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;
+ &#1089;&#1072;&#1084;&#1086;&#1089;&#1090;&#1086;&#1103;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1087;&#1086;&#1079;&#1072;&#1073;&#1086;&#1090;&#1080;&#1090;&#1100;&#1089;&#1103; &#1086; &#1090;&#1086;&#1084;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1073;&#1099;&#1083;&#1080;
+ &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1099;&#1084;&#1080;.
+ </p>
</li>
<li class="listitem">
- <p><a name="configureX_chooser-pa6"></a><span class="emphasis"><em><span class="guibutton">&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;</span></em></span>: &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086;
- &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1086;&#1090;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;.
- </p>
+ <p><a name="configureX_chooser-pa6"></a><span class="bold"><strong>&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;</strong></span></p>
+
+
+ <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1086;&#1090;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;.</p>
</li>
</ul>
</div>
+
+ <div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="configureX_chooser-pa3a"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1074;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1083;&#1086;&#1078;&#1085;&#1091;&#1102; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1091; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1072;&#1103; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103;
+ &#1085;&#1077;&#1076;&#1086;&#1087;&#1091;&#1089;&#1090;&#1080;&#1084;&#1086;&#1081; &#1076;&#1083;&#1103; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;, &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1088;&#1080;&#1089;&#1082; &#1087;&#1086;&#1074;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1080;&#1103; &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1069;&#1090;&#1086;
+ &#1082;&#1072;&#1089;&#1072;&#1077;&#1090;&#1089;&#1103; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1093; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1086;&#1074; &#1085;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1077; &#1101;&#1083;&#1077;&#1082;&#1090;&#1088;&#1086;&#1085;&#1085;&#1086;-&#1083;&#1091;&#1095;&#1077;&#1074;&#1099;&#1093;
+ &#1090;&#1088;&#1091;&#1073;&#1086;&#1082;. &#1057;&#1086;&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1099;&#1077; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1099; &#1086;&#1090;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1090;&#1100; &#1085;&#1072; &#1085;&#1077;&#1087;&#1086;&#1076;&#1076;&#1077;&#1088;&#1078;&#1080;&#1074;&#1072;&#1077;&#1084;&#1099;&#1093;
+ &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1072;&#1093; &#1080; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086; &#1087;&#1077;&#1088;&#1077;&#1093;&#1086;&#1076;&#1103;&#1090; &#1074; &#1088;&#1077;&#1078;&#1080;&#1084; &#1086;&#1078;&#1080;&#1076;&#1072;&#1085;&#1080;&#1103;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</div>
</body>
</html>
diff --git a/ru/configureX_monitor.html b/ru/configureX_monitor.html
index 216b047..9274d43 100644
--- a/ru/configureX_monitor.html
+++ b/ru/configureX_monitor.html
@@ -7,7 +7,7 @@
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="prev" href="configureX_card_list.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;)">
- <link rel="next" href="setupBootloader.html" title="&#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="setupBootloader.html" title="&#1053;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -22,6 +22,10 @@
</div>
</div>
</div>
+
+
+
+
@@ -47,10 +51,10 @@
<tr>
<td align="left" valign="top">
- <p><a name="configureX_monitor-pa1w"></a><span class="emphasis"><em>&#1042;&#1099;&#1073;&#1086;&#1088; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1089; &#1076;&#1088;&#1091;&#1075;&#1080;&#1084;&#1080; &#1072;&#1087;&#1087;&#1072;&#1088;&#1072;&#1090;&#1085;&#1099;&#1084;&#1080; &#1093;&#1072;&#1088;&#1072;&#1082;&#1090;&#1077;&#1088;&#1080;&#1089;&#1090;&#1080;&#1082;&#1072;&#1084;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090;
- &#1087;&#1088;&#1080;&#1074;&#1077;&#1089;&#1090;&#1080; &#1082; &#1087;&#1086;&#1074;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1080;&#1102; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1080;&#1083;&#1080; &#1074;&#1080;&#1076;&#1077;&#1086;&#1072;&#1087;&#1087;&#1072;&#1088;&#1072;&#1090;&#1091;&#1088;&#1099;. &#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072;, &#1087;&#1086;&#1076;&#1091;&#1084;&#1072;&#1081;&#1090;&#1077;
- &#1085;&#1072;&#1076; &#1074;&#1072;&#1096;&#1080;&#1084; &#1074;&#1099;&#1073;&#1086;&#1088;&#1086;&#1084;.</em></span> &#1045;&#1089;&#1083;&#1080; &#1077;&#1089;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1089;&#1086;&#1084;&#1085;&#1077;&#1085;&#1080;&#1103;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082;
- &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1080; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;.
+ <p><a name="configureX_monitor-pa1w"></a><span class="bold"><strong>&#1042;&#1099;&#1073;&#1086;&#1088; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1089; &#1076;&#1088;&#1091;&#1075;&#1080;&#1084;&#1080; &#1072;&#1087;&#1087;&#1072;&#1088;&#1072;&#1090;&#1085;&#1099;&#1084;&#1080;
+ &#1093;&#1072;&#1088;&#1072;&#1082;&#1090;&#1077;&#1088;&#1080;&#1089;&#1090;&#1080;&#1082;&#1072;&#1084;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1089;&#1090;&#1080; &#1082; &#1087;&#1086;&#1074;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1080;&#1102; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1080;&#1083;&#1080;
+ &#1074;&#1080;&#1076;&#1077;&#1086;&#1072;&#1087;&#1087;&#1072;&#1088;&#1072;&#1090;&#1091;&#1088;&#1099;. &#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072;, &#1087;&#1086;&#1076;&#1091;&#1084;&#1072;&#1081;&#1090;&#1077; &#1085;&#1072;&#1076; &#1074;&#1072;&#1096;&#1080;&#1084; &#1074;&#1099;&#1073;&#1086;&#1088;&#1086;&#1084;.</strong></span> &#1045;&#1089;&#1083;&#1080;
+ &#1077;&#1089;&#1090;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1099;&#1077; &#1089;&#1086;&#1084;&#1085;&#1077;&#1085;&#1080;&#1103;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1080; &#1087;&#1086; &#1074;&#1072;&#1096;&#1077;&#1084;&#1091; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1091;.
</p>
</td>
@@ -61,70 +65,79 @@
- <p><a name="configureX_monitor-pa2"></a><span class="emphasis"><em>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</em></span></p>
-
-
- <p><a name="configureX_monitor-pa3"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1074;&#1091;&#1093; &#1082;&#1088;&#1080;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093;
- &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;: &#1074;&#1077;&#1088;&#1090;&#1080;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1099; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080; &#1075;&#1086;&#1088;&#1080;&#1079;&#1086;&#1085;&#1090;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1099;
- &#1089;&#1080;&#1085;&#1093;&#1088;&#1086;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080;. &#1063;&#1072;&#1089;&#1090;&#1086;&#1090;&#1072; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1091;, &#1089; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103;
- &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1101;&#1082;&#1088;&#1072;&#1085;&#1077;, &#1072; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1072; &#1089;&#1080;&#1085;&#1093;&#1088;&#1086;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1086;&#1081;, &#1089; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081;
- &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1083;&#1080;&#1085;&#1080;&#1080; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;.
- </p>
-
-
- <p><a name="configureX_monitor-pa4"></a><span class="emphasis"><em>&#1054;&#1063;&#1045;&#1053;&#1068; &#1042;&#1040;&#1046;&#1053;&#1054;</em></span> &#1085;&#1077; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1090;&#1080;&#1087; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;, &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
- &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1087;&#1088;&#1077;&#1074;&#1099;&#1096;&#1072;&#1102;&#1090; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086;, &#1080;&#1085;&#1072;&#1095;&#1077; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1074;&#1088;&#1077;&#1076;&#1080;&#1090;&#1077;
- &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;. &#1045;&#1089;&#1083;&#1080; &#1089;&#1086;&#1084;&#1085;&#1077;&#1074;&#1072;&#1077;&#1090;&#1077;&#1089;&#1100;, &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1084;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1080; &#1074;&#1085;&#1080;&#1084;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
- &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1077;&#1081; &#1082; &#1074;&#1072;&#1096;&#1077;&#1084;&#1091; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1091;.
- </p>
-
-
- <p><a name="configureX_monitor-pa5"></a><span class="emphasis"><em>Plug 'n Play</em></span></p>
-
-
- <p><a name="configureX_monitor-pa6"></a>&#1069;&#1090;&#1086; &#1076;&#1077;&#1092;&#1086;&#1083;&#1090;&#1085;&#1099;&#1081; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;: &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1087;&#1099;&#1090;&#1072;&#1077;&#1090;&#1089;&#1103; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1090;&#1080;&#1087; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1087;&#1086;
- &#1073;&#1072;&#1079;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1086;&#1074;.
- </p>
-
-
- <p><a name="configureX_monitor-pa7"></a><span class="emphasis"><em>&#1055;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1100;</em></span></p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa2"></a>&#1042;&#1099;&#1073;&#1086;&#1088;&#1086;&#1095;&#1085;&#1086;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa3"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1074;&#1091;&#1093; &#1082;&#1088;&#1080;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093;
+ &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;: &#1074;&#1077;&#1088;&#1090;&#1080;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1099; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1080; &#1075;&#1086;&#1088;&#1080;&#1079;&#1086;&#1085;&#1090;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1099;
+ &#1089;&#1080;&#1085;&#1093;&#1088;&#1086;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080;. &#1063;&#1072;&#1089;&#1090;&#1086;&#1090;&#1072; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1091;, &#1089; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103;
+ &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1101;&#1082;&#1088;&#1072;&#1085;&#1077;, &#1072; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1072; &#1089;&#1080;&#1085;&#1093;&#1088;&#1086;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1086;&#1081;, &#1089; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081;
+ &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1083;&#1080;&#1085;&#1080;&#1080; &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;.
+ </p>
+
+
+ <p><a name="configureX_monitor-pa4"></a><span class="emphasis"><em>&#1054;&#1063;&#1045;&#1053;&#1068; &#1042;&#1040;&#1046;&#1053;&#1054;</em></span> &#1085;&#1077; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1090;&#1080;&#1087; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;, &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;
+ &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1087;&#1088;&#1077;&#1074;&#1099;&#1096;&#1072;&#1102;&#1090; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086;, &#1080;&#1085;&#1072;&#1095;&#1077; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1074;&#1088;&#1077;&#1076;&#1080;&#1090;&#1077;
+ &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;. &#1045;&#1089;&#1083;&#1080; &#1089;&#1086;&#1084;&#1085;&#1077;&#1074;&#1072;&#1077;&#1090;&#1077;&#1089;&#1100;, &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1084;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1080; &#1074;&#1085;&#1080;&#1084;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
+ &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1077;&#1081; &#1082; &#1074;&#1072;&#1096;&#1077;&#1084;&#1091; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1091;.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa5"></a>Plug'n'Play</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa6"></a>&#1069;&#1090;&#1086; &#1076;&#1077;&#1092;&#1086;&#1083;&#1090;&#1085;&#1099;&#1081; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;: &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1087;&#1099;&#1090;&#1072;&#1077;&#1090;&#1089;&#1103; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1090;&#1080;&#1087; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072; &#1087;&#1086;
+ &#1073;&#1072;&#1079;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1086;&#1074; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;.
+ </p>
+
+ </dd>
+ <dt><span class="term"><a name="configureX_monitor-pa7"></a>&#1055;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1100;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa8"></a>&#1045;&#1089;&#1083;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1097;&#1080;&#1082;&#1091; &#1085;&#1077; &#1091;&#1076;&#1072;&#1083;&#1086;&#1089;&#1100; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1074;&#1072;&#1096; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;, &#1080; &#1074;&#1072;&#1084;
+ &#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1086; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1077;&#1075;&#1086; &#1080;&#1079; &#1080;&#1077;&#1088;&#1072;&#1088;&#1093;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086;
+ &#1089;&#1087;&#1080;&#1089;&#1082;&#1072; &#1087;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1084; &#1082;&#1088;&#1080;&#1090;&#1077;&#1088;&#1080;&#1103;&#1084;:
+ </p>
+
+ </dd>
+ </dl>
+ </div>
- <p><a name="configureX_monitor-pa8"></a>&#1045;&#1089;&#1083;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1097;&#1080;&#1082;&#1091; &#1085;&#1077; &#1091;&#1076;&#1072;&#1083;&#1086;&#1089;&#1100; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1074;&#1072;&#1096; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;, &#1080; &#1074;&#1072;&#1084;
- &#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1086; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1077;&#1075;&#1086; &#1080;&#1079; &#1080;&#1077;&#1088;&#1072;&#1088;&#1093;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086;
- &#1089;&#1087;&#1080;&#1089;&#1082;&#1072; &#1087;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1084; &#1082;&#1088;&#1080;&#1090;&#1077;&#1088;&#1080;&#1103;&#1084;:
- </p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>&#1088;&#1072;&#1079;&#1088;&#1072;&#1073;&#1086;&#1090;&#1095;&#1080;&#1082;</p>
+ <p>&#1055;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1100;</p>
+
</li>
<li class="listitem">
-
- <p>&#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1092;&#1080;&#1088;&#1084;&#1099;-&#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1086;&#1076;&#1080;&#1090;&#1077;&#1083;&#1103; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;</p>
-
- </li>
- <li class="listitem">
-
- <p>&#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;</p>
+ <p>&#1052;&#1086;&#1076;&#1077;&#1083;&#1100; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;</p>
+
</li>
</ul>
</div>
- <p><a name="configureX_monitor-pa9"></a><span class="emphasis"><em>&#1054;&#1073;&#1097;&#1080;&#1081;</em></span></p>
-
-
- <p><a name="configureX_monitor-pa10"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1074;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1101;&#1090;&#1091; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1080;&#1079; &#1086;&#1082;&#1086;&#1083;&#1086; 30 &#1090;&#1080;&#1087;&#1086;&#1074;&#1099;&#1093;
- &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082; &#1076;&#1080;&#1089;&#1087;&#1083;&#1077;&#1077;&#1074;, &#1087;&#1086;&#1076;&#1086;&#1073;&#1085;&#1099;&#1093; 1024x768@60 &#1043;&#1094;, &#1074; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1099; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
- &#1087;&#1083;&#1086;&#1089;&#1082;&#1080;&#1093; &#1087;&#1072;&#1085;&#1077;&#1083;&#1077;&#1081; &#1076;&#1080;&#1089;&#1087;&#1083;&#1077;&#1077;&#1074; &#1076;&#1083;&#1103; &#1085;&#1086;&#1091;&#1090;&#1073;&#1091;&#1082;&#1086;&#1074;. &#1054;&#1073;&#1099;&#1095;&#1085;&#1086;, &#1101;&#1090;&#1086;&#1081; &#1075;&#1088;&#1091;&#1087;&#1087;&#1086;&#1081; &#1089;&#1090;&#1086;&#1080;&#1090;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080; &#1091; &#1074;&#1072;&#1089; &#1074;&#1086;&#1079;&#1085;&#1080;&#1082;&#1083;&#1072; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &laquo;Vesa&raquo;
- &#1076;&#1083;&#1103; &#1074;&#1072;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; &#1074;&#1072;&#1096;&#1091; &#1074;&#1080;&#1076;&#1077;&#1086;&#1082;&#1072;&#1088;&#1090;&#1091; &#1085;&#1077; &#1091;&#1076;&#1072;&#1083;&#1086;&#1089;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100;
- &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;. &#1054;&#1087;&#1103;&#1090;&#1100; &#1078;&#1077;, &#1089;&#1090;&#1086;&#1080;&#1090; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1074;&#1099;&#1073;&#1080;&#1088;&#1072;&#1090;&#1100; &#1086;&#1095;&#1077;&#1085;&#1100; &#1086;&#1089;&#1090;&#1086;&#1088;&#1086;&#1078;&#1085;&#1086;.
- </p>
+ <div class="variablelist">
+ <dl>
+ <dt><span class="term"><a name="configureX_monitor-pa9"></a>&#1054;&#1073;&#1099;&#1095;&#1085;&#1099;&#1081;</span></dt>
+ <dd>
+
+ <p><a name="configureX_monitor-pa10"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1074;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1101;&#1090;&#1091; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1080;&#1079; &#1086;&#1082;&#1086;&#1083;&#1086; 30 &#1090;&#1080;&#1087;&#1086;&#1074;&#1099;&#1093;
+ &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082; &#1076;&#1080;&#1089;&#1087;&#1083;&#1077;&#1077;&#1074;, &#1087;&#1086;&#1076;&#1086;&#1073;&#1085;&#1099;&#1093; 1024x768@60 &#1043;&#1094;, &#1074; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1099; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
+ &#1087;&#1083;&#1086;&#1089;&#1082;&#1080;&#1093; &#1087;&#1072;&#1085;&#1077;&#1083;&#1077;&#1081; &#1076;&#1080;&#1089;&#1087;&#1083;&#1077;&#1077;&#1074; &#1076;&#1083;&#1103; &#1085;&#1086;&#1091;&#1090;&#1073;&#1091;&#1082;&#1086;&#1074;. &#1054;&#1073;&#1099;&#1095;&#1085;&#1086;, &#1101;&#1090;&#1086;&#1081; &#1075;&#1088;&#1091;&#1087;&#1087;&#1086;&#1081; &#1089;&#1090;&#1086;&#1080;&#1090;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080; &#1091; &#1074;&#1072;&#1089; &#1074;&#1086;&#1079;&#1085;&#1080;&#1082;&#1083;&#1072; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &laquo;VESA&raquo;
+ &#1076;&#1083;&#1103; &#1074;&#1072;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; &#1074;&#1072;&#1096;&#1091; &#1074;&#1080;&#1076;&#1077;&#1086;&#1082;&#1072;&#1088;&#1090;&#1091; &#1085;&#1077; &#1091;&#1076;&#1072;&#1083;&#1086;&#1089;&#1100; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100;
+ &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;. &#1054;&#1087;&#1103;&#1090;&#1100; &#1078;&#1077;, &#1089;&#1090;&#1086;&#1080;&#1090; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1074;&#1099;&#1073;&#1080;&#1088;&#1072;&#1090;&#1100; &#1086;&#1095;&#1077;&#1085;&#1100; &#1086;&#1089;&#1090;&#1086;&#1088;&#1086;&#1078;&#1085;&#1086;.
+ </p>
+
+ </dd>
+ </dl>
+ </div>
</div>
</body>
diff --git a/ru/diskdrake.html b/ru/diskdrake.html
index 426a2ed..a0a84bc 100644
--- a/ru/diskdrake.html
+++ b/ru/diskdrake.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#1056;&#1091;&#1095;&#1085;&#1086;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake</title>
+ <title>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="ru" class="section" title="&#1056;&#1091;&#1095;&#1085;&#1086;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake">
+ <div lang="ru" class="section" title="&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="diskdrake"></a>&#1056;&#1091;&#1095;&#1085;&#1086;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake
+ <h2 class="title"><a name="diskdrake"></a>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake
</h2>
</div>
</div>
@@ -29,16 +29,55 @@
+
+
-
-
-
-
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa3"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1084;&#1086;&#1078;&#1085;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1086;&#1074;&#1082;&#1080; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1074; &#1074;&#1072;&#1096;&#1077;&#1081;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077;. &#1057; &#1077;&#1105; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1076;&#1072;&#1083;&#1103;&#1090;&#1100; &#1080; &#1089;&#1086;&#1079;&#1076;&#1072;&#1074;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;, &#1084;&#1077;&#1085;&#1103;&#1090;&#1100; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1099;&#1077;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&#1093; &#1080;&#1083;&#1080; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1080; &#1076;&#1072;&#1078;&#1077; &#1087;&#1088;&#1086;&#1089;&#1084;&#1072;&#1090;&#1088;&#1080;&#1074;&#1072;&#1090;&#1100; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1077;
+ &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1076;&#1086; &#1074;&#1085;&#1077;&#1089;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa4"></a>&#1042;&#1074;&#1077;&#1088;&#1093;&#1091; &#1076;&#1083;&#1103; &#1082;&#1072;&#1078;&#1076;&#1086;&#1075;&#1086; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1078;&#1105;&#1089;&#1090;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072; (&#1080;&#1083;&#1080; &#1076;&#1088;&#1091;&#1075;&#1086;&#1075;&#1086; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;
+ &#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1092;&#1083;&#1077;&#1096;&#1077;&#1082; USB) &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1074;&#1077;&#1076;&#1077;&#1085;&#1072; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1072;. &#1053;&#1072;
+ &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1077;&#1085;&#1085;&#1086;&#1084; &#1074;&#1099;&#1096;&#1077; &#1089;&#1085;&#1080;&#1084;&#1082;&#1077; &#1086;&#1082;&#1085;&#1072; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1076;&#1074;&#1072; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1093; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;:
+ <code class="filename">sda</code> &#1080; <code class="filename">sdb</code>.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6"></a>&#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1083;&#1102;&#1073;&#1086;&#1077; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077;, &#1089;&#1085;&#1072;&#1095;&#1072;&#1083;&#1072; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1100;&#1090;&#1077; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;
+ &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;. &#1047;&#1072;&#1090;&#1077;&#1084; &#1087;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1080;&#1090;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1091;, &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1077; &#1077;&#1075;&#1086;
+ &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1091;&#1102; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1080; &#1090;&#1086;&#1095;&#1082;&#1091; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099; &#1080;&#1083;&#1080; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086; &#1089;&#1086;&#1090;&#1088;&#1080;&#1090;&#1077; &#1074;&#1077;&#1089;&#1100;
+ &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;. &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; <span class="emphasis"><em>&#1056;&#1077;&#1078;&#1080;&#1084; &#1101;&#1082;&#1089;&#1087;&#1077;&#1088;&#1090;&#1072;</em></span> &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100;
+ &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1084; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1103;&#1084;, &#1074; &#1090;&#1086;&#1084; &#1095;&#1080;&#1089;&#1083;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1084;&#1077;&#1090;&#1082;&#1080; &#1080;&#1083;&#1080;
+ &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1090;&#1080;&#1087;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa6a"></a>&#1055;&#1086;&#1074;&#1090;&#1086;&#1088;&#1103;&#1081;&#1090;&#1077; &#1101;&#1090;&#1080; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103; &#1076;&#1083;&#1103; &#1074;&#1089;&#1077;&#1093; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1093; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;, &#1087;&#1086;&#1082;&#1072; &#1074;&#1089;&#1105; &#1085;&#1077;
+ &#1087;&#1088;&#1080;&#1086;&#1073;&#1088;&#1077;&#1090;&#1105;&#1090; &#1085;&#1091;&#1078;&#1085;&#1099;&#1093; &#1074;&#1072;&#1084; &#1086;&#1095;&#1077;&#1088;&#1090;&#1072;&#1085;&#1080;&#1081;. &#1044;&#1072;&#1083;&#1077;&#1077;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;
+ <span class="emphasis"><em>&#1043;&#1086;&#1090;&#1086;&#1074;&#1086;</em></span>, &#1082;&#1086;&#1075;&#1076;&#1072; &#1073;&#1091;&#1076;&#1091;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1085;&#1091;&#1078;&#1085;&#1099;&#1077; &#1074;&#1072;&#1084; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
<div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
@@ -50,11 +89,27 @@
<tr>
<td align="left" valign="top">
- <p><a name="diskdrake-pa1"></a>&#1045;&#1089;&#1083;&#1080; &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; <code class="literal">/</code> &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;
- &#1096;&#1080;&#1092;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084;, &#1090;&#1086; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; <code class="literal">/boot</code> &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1085;&#1072;
- &#1086;&#1090;&#1076;&#1077;&#1083;&#1100;&#1085;&#1086;&#1084; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;. &#1053;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1096;&#1080;&#1092;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; <code class="literal">/boot</code>,
- &#1080;&#1085;&#1072;&#1095;&#1077; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1089;&#1090;&#1072;&#1085;&#1077;&#1090; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1081;.
- </p>
+ <div class="orderedlist">
+ <ol class="orderedlist" type="1">
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa5"></a>&#1041;&#1091;&#1076;&#1100;&#1090;&#1077; &#1086;&#1089;&#1090;&#1086;&#1088;&#1086;&#1078;&#1085;&#1099; &#1089; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1084; <span class="emphasis"><em>&#1054;&#1095;&#1080;&#1089;&#1090;&#1080;&#1090;&#1100; &#1074;&#1089;&#1077;</em></span>, &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100;
+ &#1080;&#1084;, &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1089;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1085;&#1072; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1086;&#1084;
+ &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1073;&#1099;&#1083;&#1080; &#1080;&#1079;&#1098;&#1103;&#1090;&#1099;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="diskdrake-pa1"></a>&#1045;&#1089;&#1083;&#1080; &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; <code class="filename">/</code> &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;
+ &#1096;&#1080;&#1092;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084;, &#1090;&#1086; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; <code class="filename">/boot</code> &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1085;&#1072;
+ &#1086;&#1090;&#1076;&#1077;&#1083;&#1100;&#1085;&#1086;&#1084; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;. &#1053;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1096;&#1080;&#1092;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100; &#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; <code class="filename">/boot</code>,
+ &#1080;&#1085;&#1072;&#1095;&#1077; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1089;&#1090;&#1072;&#1085;&#1077;&#1090; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1081;.
+ </p>
+
+ </li>
+ </ol>
+ </div>
</td>
</tr>
@@ -62,62 +117,44 @@
</div>
- <p><a name="diskdrake-pa3"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1084;&#1086;&#1078;&#1085;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1086;&#1074;&#1082;&#1091; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;(&#1083;&#1072;) &#1074; &#1074;&#1072;&#1096;&#1077;&#1081;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077;. &#1057; &#1077;&#1077; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1074;&#1083;&#1077;&#1082;&#1072;&#1090;&#1100; &#1080; &#1089;&#1086;&#1079;&#1076;&#1072;&#1074;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;, &#1084;&#1077;&#1085;&#1103;&#1090;&#1100; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1099;&#1077;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&#1093; &#1080;&#1083;&#1080; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1080; &#1076;&#1072;&#1078;&#1077; &#1087;&#1088;&#1086;&#1089;&#1084;&#1072;&#1090;&#1088;&#1080;&#1074;&#1072;&#1090;&#1100; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1077;
- &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1076;&#1086; &#1074;&#1085;&#1077;&#1089;&#1077;&#1085;&#1080;&#1103; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081;.
- </p>
-
-
- <p><a name="diskdrake-pa4"></a>&#1044;&#1083;&#1103; &#1082;&#1072;&#1078;&#1076;&#1086;&#1075;&#1086; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1078;&#1077;&#1089;&#1090;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072; &#1080;&#1083;&#1080; &#1076;&#1088;&#1091;&#1075;&#1086;&#1075;&#1086; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; (&#1074;
- &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1092;&#1083;&#1101;&#1096; USB) &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1074;&#1077;&#1076;&#1077;&#1085;&#1072; &#1089;&#1074;&#1086;&#1103; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1072;. &#1055;&#1088;&#1080;&#1084;&#1077;&#1088;: sda, sdb &#1080; sdc,
- &#1077;&#1089;&#1083;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1086; &#1090;&#1088;&#1080; &#1076;&#1080;&#1089;&#1082;&#1072;.
- </p>
-
-
- <p><a name="diskdrake-pa5"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1054;&#1095;&#1080;&#1089;&#1090;&#1080;&#1090;&#1100; &#1074;&#1089;&#1077;</span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1089;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1085;&#1072;
- &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1086;&#1084; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1073;&#1099;&#1083;&#1080; &#1086;&#1095;&#1080;&#1097;&#1077;&#1085;&#1099;.
- </p>
-
-
- <p><a name="diskdrake-pa6"></a>&#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1083;&#1102;&#1073;&#1086;&#1077; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077;, &#1089;&#1085;&#1072;&#1095;&#1072;&#1083;&#1072; &#1086;&#1090;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;
- &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;. &#1047;&#1072;&#1090;&#1077;&#1084; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1080;&#1090;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1091;, &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1077; &#1077;&#1075;&#1086;
- &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1091;&#1102; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1080; &#1090;&#1086;&#1095;&#1082;&#1091; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099; &#1080;&#1083;&#1080; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086; &#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1077; &#1074;&#1089;&#1077;
- &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;.
- </p>
-
-
- <p><a name="diskdrake-pa6a"></a>&#1055;&#1086;&#1074;&#1090;&#1086;&#1088;&#1103;&#1081;&#1090;&#1077; &#1101;&#1090;&#1080; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103; &#1076;&#1083;&#1103; &#1074;&#1089;&#1077;&#1093; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1093; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;, &#1087;&#1086;&#1082;&#1072; &#1074;&#1089;&#1077; &#1085;&#1077;
- &#1089;&#1090;&#1072;&#1085;&#1077;&#1090; &#1090;&#1072;&#1082;, &#1082;&#1072;&#1082; &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077;.
- </p>
-
-
- <p><a name="diskdrake-pa7"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1042;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1086;</span>, &#1082;&#1086;&#1075;&#1076;&#1072; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1073;&#1091;&#1076;&#1091;&#1090;
- &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1099;.
- </p>
-
-
- <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="important" title="&#1042;&#1072;&#1078;&#1085;&#1086;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1072;&#1078;&#1085;&#1086;]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1077;&#1090;&#1077; Mageia &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091; &#1089; UEFI, &#1091;&#1073;&#1077;&#1076;&#1080;&#1090;&#1077;&#1089;&#1100;, &#1095;&#1090;&#1086; &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090;
- ESP (EFI System Partition) &#1080; &#1086;&#1085;&#1072; &#1089;&#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1072; &#1074; /boot/EFI (&#1089;&#1084;. &#1042;&#1099;&#1096;&#1077;).
- </p>
-
-
- <p></p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1077;&#1090;&#1077; Mageia &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1089; UEFI, &#1091;&#1073;&#1077;&#1076;&#1080;&#1090;&#1077;&#1089;&#1100;, &#1095;&#1090;&#1086; &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090;
+ ESP (EFI System Partition) &#1080; &#1086;&#1085; &#1089;&#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085; &#1074; <code class="filename">/boot/EFI</code>
+ (&#1089;&#1084;. &#1085;&#1080;&#1078;&#1077;).
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1077;&#1090;&#1077; Mageia &#1085;&#1072; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1089; GPT, &#1091;&#1073;&#1077;&#1076;&#1080;&#1090;&#1077;&#1089;&#1100;, &#1095;&#1090;&#1086;
+ &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; BIOS &#1085;&#1072;&#1076;&#1083;&#1077;&#1078;&#1072;&#1097;&#1077;&#1075;&#1086; &#1090;&#1080;&#1087;&#1072;. &#1057;&#1084;. &#1089;&#1085;&#1080;&#1084;&#1086;&#1082;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085; &#1085;&#1080;&#1078;&#1077;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</td>
</tr>
</table>
</div>
+
+
+
+
</div>
</body>
</html>
diff --git a/ru/doPartitionDisks.html b/ru/doPartitionDisks.html
index c6404be..d71e63c 100644
--- a/ru/doPartitionDisks.html
+++ b/ru/doPartitionDisks.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#1056;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;</title>
+ <title>&#1055;&#1088;&#1077;&#1076;&#1083;&#1072;&#1075;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
@@ -13,11 +13,11 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="ru" class="section" title="&#1056;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;">
+ <div lang="ru" class="section" title="&#1055;&#1088;&#1077;&#1076;&#1083;&#1072;&#1075;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="doPartitionDisks"></a>&#1056;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
+ <h2 class="title"><a name="doPartitionDisks"></a>&#1055;&#1088;&#1077;&#1076;&#1083;&#1072;&#1075;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
</h2>
</div>
</div>
@@ -29,183 +29,221 @@
- <p><a name="doPartitionDisks-pa1"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1077; &#1074;&#1089;&#1077;&#1093; &#1076;&#1080;&#1089;&#1082;&#1086;&#1074;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072; &#1080; &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1084;&#1072;&#1089;&#1090;&#1077;&#1088;&#1072; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1103; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; DrakX
- &#1086; &#1084;&#1077;&#1089;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; <span class="application">Mageia</span>.
+
+
+
+
+
+
+
+
+
+
+ <p><a name="doPartitionDisks-pa1"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1077; &#1074;&#1089;&#1077;&#1093; &#1076;&#1080;&#1089;&#1082;&#1086;&#1074;
+ &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072; &#1080; &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1084;&#1072;&#1089;&#1090;&#1077;&#1088;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
+ DrakX &#1086; &#1084;&#1077;&#1089;&#1090;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia.
</p>
- <p><a name="doPartitionDisks-pa2"></a>&#1055;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074; &#1074; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085;&#1085;&#1086;&#1084; &#1085;&#1080;&#1078;&#1077; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1090; &#1086;&#1090; &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1090;&#1072;&#1094;&#1080;&#1080;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072; &#1080; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1086;&#1074;.
+ <p><a name="doPartitionDisks-pa2"></a>&#1040;&#1082;&#1090;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1087;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074; &#1074; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085;&#1085;&#1086;&#1084; &#1085;&#1080;&#1078;&#1077; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1079;&#1072;&#1074;&#1080;&#1089;&#1077;&#1090;&#1100; &#1086;&#1090;
+ &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1090;&#1072;&#1094;&#1080;&#1080; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072; &#1080; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1103; &#1076;&#1080;&#1089;&#1082;&#1086;&#1074;.
</p>
- <p><a name="doPartitionDisks-pa3"></a></p>
- <div class="itemizedlist">
+ <div class="itemizedlist" title="&#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;">
+ <p class="title"><b>&#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;</b></p>
<ul class="itemizedlist">
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa4"></a>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
- </p>
+
+ <p><a name="doPartitionDisks-pa4"></a><span class="bold"><strong>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;</strong></span></p>
-
+
<p><a name="doPartitionDisks-pa5"></a>&#1069;&#1090;&#1080;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1099;
&#1089;&#1086;&#1074;&#1084;&#1077;&#1089;&#1090;&#1080;&#1084;&#1099;&#1077; &#1089; Linux &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084;&#1080; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
&#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
</p>
-
+
</li>
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa6"></a>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086;
- </p>
+
+ <p><a name="doPartitionDisks-pa6"></a><span class="bold"><strong>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1089;&#1090;&#1074;&#1086;</strong></span></p>
-
+
<p><a name="doPartitionDisks-pa7"></a>&#1069;&#1090;&#1080;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084; &#1076;&#1080;&#1089;&#1082;&#1077; &#1077;&#1089;&#1090;&#1100;
&#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086;, &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;&#1077; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1085;&#1086;&#1074;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; Mageia.
</p>
-
+
</li>
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa8"></a>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; Microsoft Windows&reg;
- </p>
-
-
- <p><a name="doPartitionDisks-pa9"></a>&#1069;&#1090;&#1080;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1072; &#1091;&#1078;&#1077; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&#1093;
- Windows &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1089;&#1090;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1085;&#1086;&#1074;&#1086;&#1081; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1081;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
- </p>
-
-
- <p><a name="doPartitionDisks-pa10"></a>&#1069;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1084;&#1077;&#1089;&#1090;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1084;, &#1085;&#1086; &#1074;
- &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; &#1077;&#1075;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1074;&#1099; &#1088;&#1080;&#1089;&#1082;&#1091;&#1077;&#1090;&#1077; &#1087;&#1086;&#1090;&#1077;&#1088;&#1077;&#1081; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1087;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091; &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;
- &#1087;&#1088;&#1077;&#1076;&#1074;&#1072;&#1088;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1088;&#1077;&#1079;&#1077;&#1088;&#1074;&#1085;&#1099;&#1077; &#1082;&#1086;&#1087;&#1080;&#1080; &#1074;&#1072;&#1078;&#1085;&#1099;&#1093; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;!
- </p>
+
+ <p><a name="doPartitionDisks-pa8"></a><span class="bold"><strong>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1089;&#1090;&#1074;&#1086; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;
+ Windows</strong></span></p>
-
- <p><a name="doPartitionDisks-pa11"></a>&#1047;&#1072;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; Windows &#1073;&#1091;&#1076;&#1077;&#1090; &#1091;&#1084;&#1077;&#1085;&#1100;&#1096;&#1077;&#1085;. &#1056;&#1072;&#1079;&#1076;&#1077;&#1083; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100;
- &laquo;&#1086;&#1095;&#1080;&#1097;&#1077;&#1085;&raquo;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072; Windows &#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1073;&#1099;&#1090;&#1100; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1072; &#1074; &#1096;&#1090;&#1072;&#1090;&#1085;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077; &#1074;&#1086;
- &#1074;&#1088;&#1077;&#1084;&#1103; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1075;&#1086; &#1089;&#1077;&#1072;&#1085;&#1089;&#1072;, &#1082;&#1086;&#1075;&#1076;&#1072; &#1074;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1083;&#1080;&#1089;&#1100; &#1101;&#1090;&#1086;&#1081; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1081;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081;. &#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100; &#1076;&#1077;&#1092;&#1088;&#1072;&#1075;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;, &#1093;&#1086;&#1090;&#1103;
- &#1076;&#1077;&#1092;&#1088;&#1072;&#1075;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1103; &#1080; &#1085;&#1077; &#1075;&#1072;&#1088;&#1072;&#1085;&#1090;&#1080;&#1088;&#1091;&#1077;&#1090; &#1087;&#1086;&#1083;&#1085;&#1086;&#1075;&#1086; &#1087;&#1077;&#1088;&#1077;&#1076;&#1074;&#1080;&#1078;&#1077;&#1085;&#1080;&#1103; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074; &#1089; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1089;&#1090;&#1072;
- &#1085;&#1072; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085; &#1076;&#1083;&#1103; Mageia. &#1052;&#1099; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
- &#1088;&#1077;&#1082;&#1086;&#1084;&#1077;&#1085;&#1076;&#1091;&#1077;&#1084; &#1074;&#1072;&#1084; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1088;&#1077;&#1079;&#1077;&#1088;&#1074;&#1085;&#1099;&#1077; &#1082;&#1086;&#1087;&#1080;&#1080; &#1074;&#1072;&#1078;&#1085;&#1099;&#1093; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;.
+
+ <p><a name="suggestedPartitioning-pa9"></a>&#1045;&#1089;&#1083;&#1080; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; &#1089; Windows &#1077;&#1089;&#1090;&#1100; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086;, &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1084;&#1086;&#1078;&#1077;&#1090; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1080;&#1090;&#1100;
+ &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1080;&#1084;. &#1069;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1084;&#1077;&#1089;&#1090;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia &#1084;&#1086;&#1078;&#1077;&#1090;
+ &#1073;&#1099;&#1090;&#1100; &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1084;, &#1085;&#1086; &#1074; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; &#1077;&#1075;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1074;&#1099; &#1088;&#1080;&#1089;&#1082;&#1091;&#1077;&#1090;&#1077; &#1087;&#1086;&#1090;&#1077;&#1088;&#1077;&#1081; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;,
+ &#1087;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091; &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1088;&#1077;&#1076;&#1074;&#1072;&#1088;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1088;&#1077;&#1079;&#1077;&#1088;&#1074;&#1085;&#1099;&#1077; &#1082;&#1086;&#1087;&#1080;&#1080; &#1074;&#1072;&#1078;&#1085;&#1099;&#1093; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089;
+ &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;!
</p>
-
- <p>&#1045;&#1089;&#1083;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1101;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;, &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086;&#1082;&#1072;&#1078;&#1077;&#1090; &#1086;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;
- Windows &#1075;&#1086;&#1083;&#1091;&#1073;&#1099;&#1084; &#1094;&#1074;&#1077;&#1090;&#1086;&#1084;, &#1072; &#1073;&#1091;&#1076;&#1091;&#1097;&#1080;&#1081; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1089; Mageia - &#1090;&#1077;&#1084;&#1085;&#1086;-&#1089;&#1080;&#1085;&#1080;&#1084;. &#1056;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099;
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1101;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;, &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086;&#1082;&#1072;&#1078;&#1077;&#1090; &#1086;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
+ Windows &#1075;&#1086;&#1083;&#1091;&#1073;&#1099;&#1084; &#1094;&#1074;&#1077;&#1090;&#1086;&#1084;, &#1072; &#1073;&#1091;&#1076;&#1091;&#1097;&#1080;&#1081; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1089; Mageia - &#1090;&#1105;&#1084;&#1085;&#1086;-&#1089;&#1080;&#1085;&#1080;&#1084;. &#1056;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099;
&#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1073;&#1091;&#1076;&#1091;&#1090; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1087;&#1086;&#1076; &#1085;&#1080;&#1084;&#1080;. &#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1101;&#1090;&#1080; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
&#1087;&#1077;&#1088;&#1077;&#1090;&#1072;&#1089;&#1082;&#1080;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; &#1088;&#1080;&#1089;&#1082;&#1080; &#1084;&#1077;&#1078;&#1076;&#1091; &#1085;&#1080;&#1084;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1077;&#1083;&#1103; &#1084;&#1099;&#1096;&#1080;. &#1057;&#1084;. &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1077;&#1085;&#1085;&#1099;&#1081;
&#1085;&#1080;&#1078;&#1077; &#1089;&#1085;&#1080;&#1084;&#1086;&#1082; &#1101;&#1082;&#1088;&#1072;&#1085;&#1072;.
</p>
-
-
-
+
</li>
- </ul>
- </div>
- <p> </p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa12"></a>&#1057;&#1090;&#1077;&#1088;&#1077;&#1090;&#1100; &#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1074;&#1077;&#1089;&#1100; &#1076;&#1080;&#1089;&#1082;
- </p>
+
+ <p><a name="doPartitionDisks-pa12"></a><span class="bold"><strong>&#1057;&#1090;&#1077;&#1088;&#1077;&#1090;&#1100; &#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1074;&#1077;&#1089;&#1100; &#1076;&#1080;&#1089;&#1082;</strong></span></p>
-
- <p><a name="doPartitionDisks-pa13"></a>&#1055;&#1088;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; &#1101;&#1090;&#1086;&#1075;&#1086; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085; &#1074;&#1077;&#1089;&#1100;
- &#1076;&#1080;&#1089;&#1082;.
+
+ <p><a name="doPartitionDisks-pa13"></a>&#1055;&#1088;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; &#1101;&#1090;&#1086;&#1075;&#1086; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1086; &#1074;&#1089;&#1105;
+ &#1084;&#1077;&#1089;&#1090;&#1086; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077;
</p>
-
- <p><a name="doPartitionDisks-pa14"></a>&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;: &#1074;&#1089;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090; &#1074; &#1090;&#1072;&#1082;&#1086;&#1084; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; &#1091;&#1085;&#1080;&#1095;&#1090;&#1086;&#1078;&#1077;&#1085;&#1099;. &#1041;&#1091;&#1076;&#1100;&#1090;&#1077;
- &#1086;&#1089;&#1090;&#1086;&#1088;&#1086;&#1078;&#1085;&#1099;!
- </p>
+
+ <div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Warning">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;]" src="warning.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa14"></a>&#1042; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;&#1077; &#1089; &#1076;&#1080;&#1089;&#1082;&#1072; &#1073;&#1091;&#1076;&#1091;&#1090; &#1089;&#1090;&#1105;&#1088;&#1090;&#1099; &#1074;&#1089;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;. &#1045;&#1089;&#1083;&#1080; &#1095;&#1072;&#1089;&#1090;&#1100; &#1076;&#1080;&#1089;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090;
+ &#1074;&#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1089;&#1090;&#1074;&#1080;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1072; &#1076;&#1083;&#1103; &#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1103; &#1082;&#1072;&#1082;&#1080;&#1093;-&#1090;&#1086; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080;&#1083;&#1080; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077; &#1091;&#1078;&#1077;
+ &#1093;&#1088;&#1072;&#1085;&#1103;&#1090;&#1089;&#1103; &#1082;&#1072;&#1082;&#1080;&#1077;-&#1090;&#1086; &#1074;&#1072;&#1078;&#1085;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;, &#1085;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1101;&#1090;&#1080;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
-
- <p><a name="doPartitionDisks-pa15"></a>&#1045;&#1089;&#1083;&#1080; &#1095;&#1072;&#1089;&#1090;&#1100; &#1076;&#1080;&#1089;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1089;&#1090;&#1074;&#1080;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1072; &#1076;&#1083;&#1103; &#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1103; &#1082;&#1072;&#1082;&#1080;&#1093;-&#1090;&#1086;
- &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080;&#1083;&#1080; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077; &#1091;&#1078;&#1077; &#1093;&#1088;&#1072;&#1085;&#1103;&#1090;&#1089;&#1103; &#1082;&#1072;&#1082;&#1080;&#1077;-&#1090;&#1086; &#1074;&#1072;&#1078;&#1085;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;, &#1085;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1101;&#1090;&#1080;&#1084;
- &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084;.
- </p>
+ <div class="important" title="&#1042;&#1072;&#1078;&#1085;&#1086;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1072;&#1078;&#1085;&#1086;]" src="important.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p><a name="doPartitionDisks-pa11"></a>&#1047;&#1072;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; Windows &#1073;&#1091;&#1076;&#1077;&#1090; &#1091;&#1084;&#1077;&#1085;&#1100;&#1096;&#1077;&#1085;. &#1056;&#1072;&#1079;&#1076;&#1077;&#1083; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100;
+ &laquo;&#1086;&#1095;&#1080;&#1097;&#1077;&#1085;&raquo;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072; Windows &#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1073;&#1099;&#1090;&#1100; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1072; &#1074; &#1096;&#1090;&#1072;&#1090;&#1085;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077; &#1074;&#1086;
+ &#1074;&#1088;&#1077;&#1084;&#1103; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1075;&#1086; &#1089;&#1077;&#1072;&#1085;&#1089;&#1072;, &#1082;&#1086;&#1075;&#1076;&#1072; &#1074;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1083;&#1080;&#1089;&#1100; &#1101;&#1090;&#1086;&#1081; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1081;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081;. &#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100; &#1076;&#1077;&#1092;&#1088;&#1072;&#1075;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;, &#1093;&#1086;&#1090;&#1103;
+ &#1076;&#1077;&#1092;&#1088;&#1072;&#1075;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1103; &#1080; &#1085;&#1077; &#1075;&#1072;&#1088;&#1072;&#1085;&#1090;&#1080;&#1088;&#1091;&#1077;&#1090; &#1087;&#1086;&#1083;&#1085;&#1086;&#1075;&#1086; &#1087;&#1077;&#1088;&#1077;&#1076;&#1074;&#1080;&#1078;&#1077;&#1085;&#1080;&#1103; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074; &#1089; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1089;&#1090;&#1072;
+ &#1085;&#1072; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085; &#1076;&#1083;&#1103; Mageia. &#1052;&#1099; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
+ &#1088;&#1077;&#1082;&#1086;&#1084;&#1077;&#1085;&#1076;&#1091;&#1077;&#1084; &#1074;&#1072;&#1084; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1088;&#1077;&#1079;&#1077;&#1088;&#1074;&#1085;&#1099;&#1077; &#1082;&#1086;&#1087;&#1080;&#1080; &#1074;&#1072;&#1078;&#1085;&#1099;&#1093; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
</li>
- </ul>
- </div>
- <div class="itemizedlist">
- <ul class="itemizedlist">
<li class="listitem">
-
- <p><a name="doPartitionDisks-pa16"></a>&#1042;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;
- </p>
+
+ <p><a name="doPartitionDisks-pa16"></a><span class="bold"><strong>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072;</strong></span></p>
-
+
<p><a name="doPartitionDisks-pa17"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1087;&#1086;&#1083;&#1085;&#1099;&#1081; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1102;
&#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074; &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084; &#1076;&#1080;&#1089;&#1082;&#1077; &#1074; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1080; &#1089; &#1074;&#1072;&#1096;&#1080;&#1084;&#1080; &#1087;&#1088;&#1077;&#1076;&#1087;&#1086;&#1095;&#1090;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080;.
</p>
-
+
</li>
</ul>
</div>
- <p><span class="bold"><strong>Partitions sizing:</strong></span></p>
- <p>The installer will share the available place out according to the following
- rules:
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1083;&#1080;&#1089;&#1100; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1084; <span class="bold"><strong>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072;
+ &#1076;&#1080;&#1089;&#1082;&#1072;</strong></span>, &#1090;&#1086; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1088;&#1072;&#1089;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086; &#1087;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1084;
+ &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1072;&#1084;:
</p>
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>If the total available place is lower than 50 GB, only one partition is
- created for /, there is no separate partition for /home.
- </p>
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074; &#1094;&#1077;&#1083;&#1086;&#1084; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1089;&#1090;&#1072; &#1084;&#1077;&#1085;&#1100;&#1096;&#1077; 50 &#1043;&#1041;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1086;&#1076;&#1080;&#1085;
+ &#1082;&#1086;&#1088;&#1085;&#1077;&#1074;&#1086;&#1081; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;, <code class="filename">/</code>, &#1086;&#1090;&#1076;&#1077;&#1083;&#1100;&#1085;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1076;&#1083;&#1103; /home
+ &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1086; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090;.
+ </p>
+
</li>
<li class="listitem">
-
- <p>If the total available place is over 50 GB, then three partitions are
- created
- </p>
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074; &#1094;&#1077;&#1083;&#1086;&#1084; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1089;&#1090;&#1072; &#1073;&#1086;&#1083;&#1077;&#1077; 50 &#1043;&#1041;, &#1090;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1086; &#1090;&#1088;&#1080; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;</p>
-
+
<div class="itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
-
- <p>6/19 of the total available place is allocated to / with a maximum of 50 GB</p>
+ <p>6/19 &#1086;&#1090; &#1086;&#1073;&#1097;&#1077;&#1075;&#1086; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1089;&#1090;&#1074;&#1072; &#1074;&#1099;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1086;&#1076; <code class="filename">/</code>
+ &#1089; &#1084;&#1072;&#1082;&#1089;&#1080;&#1084;&#1091;&#1084;&#1086;&#1084; 50 &#1043;&#1073;
+ </p>
+
</li>
<li class="listitem">
-
- <p>1/19 is allocated to swap with a maximum of 4 GB</p>
+ <p>1/19 &#1074;&#1099;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1086;&#1076; <code class="filename">&#1089;&#1074;&#1086;&#1087;</code> &#1089; &#1084;&#1072;&#1082;&#1089;&#1080;&#1084;&#1091;&#1084;&#1086;&#1084; 4 &#1043;&#1073;
+ </p>
+
</li>
<li class="listitem">
-
- <p>the rest (at least 12/19) is allocated to /home</p>
+ <p>&#1086;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; (&#1087;&#1086; &#1082;&#1088;&#1072;&#1081;&#1085;&#1077;&#1081; &#1084;&#1077;&#1088;&#1077; 12/19) &#1074;&#1099;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1086;&#1076; <code class="filename">/home</code></p>
+
</li>
</ul>
</div>
-
+
</li>
</ul>
</div>
- <p>That means that from 160 GB and over of available place, the installer will
- create three partitions: 50 GB for /, 4 GB for swap and the rest for /home.
+ <p>&#1069;&#1090;&#1086; &#1086;&#1079;&#1085;&#1072;&#1095;&#1072;&#1077;&#1090;, &#1095;&#1090;&#1086; &#1077;&#1089;&#1083;&#1080; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077; 160 &#1043;&#1041; &#1080;&#1083;&#1080; &#1073;&#1086;&#1083;&#1077;&#1077; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1089;&#1090;&#1072;,
+ &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;&#1086;&#1084; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1086; &#1090;&#1088;&#1080; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;:
</p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>50 &#1043;&#1041; &#1076;&#1083;&#1103; <code class="filename">/</code></p>
+
+ </li>
+ <li class="listitem">
+
+ <p>4 &#1043;&#1041; &#1076;&#1083;&#1103; &#1088;&#1077;&#1079;&#1077;&#1088;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080; &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;&#1077; (<code class="filename">&#1089;&#1074;&#1086;&#1087;&#1072;</code>)
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1054;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1090;&#1076;&#1072;&#1085;&#1086; &#1087;&#1086;&#1076; <code class="filename">/home</code></p>
+
+ </li>
+ </ul>
+ </div>
+
+
<div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
@@ -215,10 +253,25 @@
<tr>
<td align="left" valign="top">
- <p>If you are using an UEFI system, the ESP (EFI System Partition) will be
- automatically detected, or created if it does not exist yet, and mounted on
- /boot/EFI. The "Custom" option is the only one that allows to check it has
- been correctly done
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1077;&#1089;&#1100; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081; &#1089; UEFI, ESP (&#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1089; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081; EFI) &#1073;&#1091;&#1076;&#1077;&#1090;
+ &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080; &#1080;&#1083;&#1080; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;, &#1077;&#1089;&#1083;&#1080; &#1077;&#1075;&#1086; &#1077;&#1097;&#1105; &#1085;&#1077; &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1086;&#1074;&#1072;&#1083;&#1086;, &#1080;
+ &#1089;&#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085; &#1074; <code class="filename">/boot/EFI</code>. &#1055;&#1091;&#1085;&#1082;&#1090; <span class="emphasis"><em>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103;
+ &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072;</em></span> &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1077;&#1076;&#1080;&#1085;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1084; &#1087;&#1088;&#1080;&#1075;&#1086;&#1076;&#1085;&#1099;&#1084; &#1082; &#1074;&#1099;&#1073;&#1086;&#1088;&#1091;, &#1077;&#1089;&#1083;&#1080;
+ &#1074;&#1099;&#1103;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; UEFI &#1073;&#1099;&#1083;&#1086; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1086; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;.
+ </p>
+
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1077;&#1089;&#1100; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081; (&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1086;&#1081; &#1082;&#1072;&#1082; BIOS) &#1089; &#1076;&#1080;&#1089;&#1082;&#1086;&#1084; GPT,
+ &#1074;&#1072;&#1084; &#1087;&#1088;&#1080;&#1076;&#1105;&#1090;&#1089;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1076;&#1083;&#1103; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; BIOS, &#1077;&#1089;&#1083;&#1080; &#1086;&#1085; &#1077;&#1097;&#1105; &#1085;&#1077;
+ &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090;. &#1056;&#1072;&#1079;&#1084;&#1077;&#1088; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1087;&#1088;&#1080;&#1084;&#1077;&#1088;&#1085;&#1086; &#1088;&#1072;&#1074;&#1077;&#1085; 1 &#1052;&#1041;, &#1086;&#1085; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1084;&#1077;&#1090;&#1100; &#1090;&#1086;&#1095;&#1082;&#1080;
+ &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1057;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100; &#1090;&#1072;&#1082;&#1086;&#1081; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;&#1072;, &#1074;&#1099;&#1073;&#1088;&#1072;&#1074;
+ &#1087;&#1091;&#1085;&#1082;&#1090; <span class="emphasis"><em>&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072;</em></span>, &#1082;&#1072;&#1082; &#1083;&#1102;&#1073;&#1086;&#1081; &#1076;&#1088;&#1091;&#1075;&#1086;&#1081;
+ &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;. &#1053;&#1077; &#1079;&#1072;&#1073;&#1091;&#1076;&#1100;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1090;&#1080;&#1087; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;
+ <span class="quote">&laquo;<span class="quote">&laquo;&#1056;&#1072;&#1079;&#1076;&#1077;&#1083; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; BIOS&raquo;</span>&raquo;</span>.
+ </p>
+
+
+ <p>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1089;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103; &#1086; &#1076;&#1072;&#1083;&#1100;&#1085;&#1077;&#1081;&#1096;&#1080;&#1093; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103;&#1093; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1081;&#1090;&#1080; &#1074; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; <a class="xref" href="diskdrake.html" title="&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake">DiskDrake</a>.
</p>
</td>
@@ -227,32 +280,54 @@
</div>
- <div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
+
+
+
+
+ <div class="important" title="&#1042;&#1072;&#1078;&#1085;&#1086;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Important">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1072;&#1078;&#1085;&#1086;]" src="important.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
<p>&#1042; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1085;&#1086;&#1074;&#1099;&#1093; &#1076;&#1080;&#1089;&#1082;&#1072;&#1093; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103; &#1083;&#1086;&#1075;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;&#1072; &#1074; 4096 &#1073;&#1072;&#1081;&#1090; &#1074;&#1084;&#1077;&#1089;&#1090;&#1086;
- &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1077;&#1075;&#1086; &#1089;&#1090;&#1072;&#1085;&#1076;&#1072;&#1088;&#1090;&#1072; &#1074; 512 &#1073;&#1072;&#1081;&#1090; &#1085;&#1072; &#1083;&#1086;&#1075;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;. &#1058;&#1072;&#1082; &#1082;&#1072;&#1082; &#1091;
- &#1088;&#1072;&#1079;&#1088;&#1072;&#1073;&#1086;&#1090;&#1095;&#1080;&#1082;&#1086;&#1074; &#1085;&#1077;&#1090; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;&#1075;&#1086; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1082; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1077;&#1084;&#1091; &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1102;,
- &#1085;&#1072;&#1076;&#1083;&#1077;&#1078;&#1072;&#1097;&#1077;&#1077; &#1090;&#1077;&#1089;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1085;&#1072; &#1090;&#1072;&#1082;&#1080;&#1093;
- &#1076;&#1080;&#1089;&#1082;&#1072;&#1093; &#1085;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1083;&#1086;&#1089;&#1100;. &#1057;&#1086;&#1074;&#1077;&#1090;&#1091;&#1077;&#1084; &#1074;&#1072;&#1084; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1090;&#1072;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072;
- &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1072;&#1083;&#1100;&#1090;&#1077;&#1088;&#1085;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1080;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1081; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;
- gparted &#1089; &#1090;&#1072;&#1082;&#1080;&#1084;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;&#1080;:
+ &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1077;&#1075;&#1086; &#1089;&#1090;&#1072;&#1085;&#1076;&#1072;&#1088;&#1090;&#1072; &#1074; 512 &#1073;&#1072;&#1081;&#1090;. &#1058;&#1072;&#1082; &#1082;&#1072;&#1082; &#1091; &#1088;&#1072;&#1079;&#1088;&#1072;&#1073;&#1086;&#1090;&#1095;&#1080;&#1082;&#1086;&#1074; &#1085;&#1077;&#1090; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086;&#1075;&#1086;
+ &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1082; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1077;&#1084;&#1091; &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1102;, &#1085;&#1072;&#1076;&#1083;&#1077;&#1078;&#1072;&#1097;&#1077;&#1077; &#1090;&#1077;&#1089;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;
+ &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1085;&#1072; &#1090;&#1072;&#1082;&#1080;&#1093; &#1076;&#1080;&#1089;&#1082;&#1072;&#1093; &#1085;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1083;&#1086;&#1089;&#1100;.
</p>
- <p>&laquo;&#1042;&#1099;&#1088;&#1086;&#1074;&#1085;&#1103;&#1090;&#1100; &#1087;&#1086;&raquo; &laquo;&#1052;&#1080;&#1041;&raquo;</p>
+ <p>&#1042; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1076;&#1080;&#1089;&#1082;&#1072;&#1093; SSD &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088; &#1073;&#1083;&#1086;&#1082;&#1072; &#1073;&#1086;&#1083;&#1077;&#1077; 1 &#1052;&#1041;. &#1057;&#1086;&#1074;&#1077;&#1090;&#1091;&#1077;&#1084; &#1074;&#1072;&#1084;
+ &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1090;&#1072;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1072;&#1083;&#1100;&#1090;&#1077;&#1088;&#1085;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081;
+ &#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1080;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1081; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088; gparted &#1089; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; &#1090;&#1072;&#1082;&#1080;&#1093;
+ &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1081; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;:
+ </p>
- <p>&laquo;&#1057;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086; &#1076;&#1086; (&#1052;&#1080;&#1041;)&raquo; &laquo;2&raquo;</p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>&#1042;&#1099;&#1088;&#1086;&#1074;&#1085;&#1103;&#1090;&#1100; &#1076;&#1086;</em></span> = &#1052;&#1073;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="emphasis"><em>&#1057;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1086;&#1077; &#1084;&#1077;&#1089;&#1090;&#1086; &#1087;&#1077;&#1088;&#1077;&#1076; (&#1052;&#1073;)</em></span> = 2
+ </p>
+
+ </li>
+ </ul>
+ </div>
- <p>&#1058;&#1072;&#1082;&#1078;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1074;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089; &#1095;&#1105;&#1090;&#1085;&#1099;&#1084; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1086;&#1084; &#1074; &#1084;&#1077;&#1075;&#1072;&#1073;&#1072;&#1081;&#1090;&#1072;&#1093;.</p>
+ <p>&#1058;&#1072;&#1082;&#1078;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1073;&#1077;&#1076;&#1080;&#1090;&#1100;&#1089;&#1103;, &#1095;&#1090;&#1086; &#1074;&#1089;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1073;&#1091;&#1076;&#1091;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1099; &#1089; &#1087;&#1072;&#1088;&#1085;&#1099;&#1084;&#1080; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1072;&#1084;&#1080; &#1074;
+ &#1084;&#1077;&#1075;&#1072;&#1073;&#1072;&#1081;&#1090;&#1072;&#1093;.
+ </p>
</td>
</tr>
diff --git a/ru/exitInstall.html b/ru/exitInstall.html
index f162fcc..73ca725 100644
--- a/ru/exitInstall.html
+++ b/ru/exitInstall.html
@@ -22,43 +22,39 @@
</div>
</div>
</div>
-
-
-
-
+
+
+
+
-
- <p><a name="exitInstall-pa1"></a>&#1058;&#1077;&#1087;&#1077;&#1088;&#1100; <span class="application">Mageia</span> &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1072; &#1080; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1085;&#1072;, &#1084;&#1086;&#1078;&#1085;&#1086;
- &#1080;&#1079;&#1074;&#1083;&#1077;&#1082;&#1072;&#1090;&#1100; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1080; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1072;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;.
+ <p><a name="exitInstall-pa1"></a>&#1058;&#1077;&#1087;&#1077;&#1088;&#1100; Mageia &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1072; &#1080; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1085;&#1072;, &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1074;&#1083;&#1077;&#1082;&#1072;&#1090;&#1100; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100; &#1076;&#1083;&#1103;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1080; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1072;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;.
</p>
- <p><a name="exitInstall-pa2"></a>&#1055;&#1086;&#1089;&#1083;&#1077; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1082;&#1088;&#1072;&#1085;&#1072; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1086;&#1076;&#1085;&#1091; &#1080;&#1079;
- &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1099;&#1093; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;, &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1085;&#1072; &#1074;&#1072;&#1096;&#1077;&#1084; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1077; (&#1077;&#1089;&#1083;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1086;
- &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;).
+ <p><a name="exitInstall-pa2"></a>&#1055;&#1086;&#1089;&#1083;&#1077; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1082;&#1088;&#1072;&#1085;&#1086;&#1084; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072; &#1076;&#1083;&#1103; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072;
+ &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1076;&#1083;&#1103; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072; (&#1077;&#1089;&#1083;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1086; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;).
</p>
<p><a name="exitInstall-pa3"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1089;&#1082;&#1086;&#1088;&#1088;&#1077;&#1082;&#1090;&#1080;&#1088;&#1091;&#1077;&#1090;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;, &#1090;&#1086;&#1075;&#1076;&#1072; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;
- &#1079;&#1072;&#1087;&#1091;&#1089;&#1090;&#1080;&#1090;&#1089;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1072;&#1103; &#1074;&#1072;&#1084;&#1080; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1072;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; Mageia.
+ &#1079;&#1072;&#1087;&#1091;&#1089;&#1090;&#1080;&#1090;&#1089;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1072;&#1103; &#1074;&#1072;&#1084;&#1080; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1072;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; Mageia.
</p>
-
+
<p><a name="exitInstall-pa4"></a>&#1055;&#1088;&#1080;&#1103;&#1090;&#1085;&#1086;&#1081; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099;!
</p>
+
-
- <p><a name="exitInstall-pa5"></a>&#1055;&#1086;&#1089;&#1077;&#1090;&#1080;&#1090;&#1077; www.mageia.org, &#1077;&#1089;&#1083;&#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077; &#1086;&#1073; &#1091;&#1095;&#1072;&#1089;&#1090;&#1080;&#1080; &#1074; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1089;&#1090;&#1074;&#1077;
- Mageia
+ <p><a name="exitInstall-pa5"></a>&#1055;&#1086;&#1089;&#1077;&#1090;&#1080;&#1090;&#1077; <a class="ulink" href="http://www.mageia.org/en/" target="_top">www.mageia.org</a>,
+ &#1077;&#1089;&#1083;&#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077; &#1086;&#1073; &#1091;&#1095;&#1072;&#1089;&#1090;&#1080;&#1080; &#1074; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1089;&#1090;&#1074;&#1077; Mageia
</p>
-
-
</div>
</body>
diff --git a/ru/formatPartitions.html b/ru/formatPartitions.html
index 02e826e..37a718d 100644
--- a/ru/formatPartitions.html
+++ b/ru/formatPartitions.html
@@ -6,8 +6,8 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
- <link rel="prev" href="diskdrake.html" title="&#1056;&#1091;&#1095;&#1085;&#1086;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake">
- <link rel="next" href="add_supplemental_media.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="prev" href="diskdrake.html" title="&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake">
+ <link rel="next" href="add_supplemental_media.html" title="&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
@@ -24,23 +24,22 @@
</div>
-
-
-
-
-
+
+
+
+
+
-
<p><a name="formatPartitions-pa1"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1090;&#1077;&#1084;, &#1082;&#1072;&#1082;&#1080;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;
&#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;. &#1042;&#1089;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&#1093;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; <span class="emphasis"><em>&#1085;&#1077;</em></span>
- &#1086;&#1090;&#1084;&#1077;&#1095;&#1077;&#1085;&#1099; &#1076;&#1083;&#1103; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1073;&#1091;&#1076;&#1091;&#1090; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1099;.
+ &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1099; &#1076;&#1083;&#1103; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1073;&#1091;&#1076;&#1091;&#1090; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1099;.
</p>
@@ -48,8 +47,8 @@
</p>
- <p><a name="formatPartitions-pa3"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;,
- &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100; &#1085;&#1072; &#1090;&#1072;&#1082; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1084;&#1099;&#1077; <span class="emphasis"><em>&#1087;&#1086;&#1074;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1085;&#1099;&#1077;
+ <p><a name="formatPartitions-pa3"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</em></span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;,
+ &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100; &#1085;&#1072; &#1090;&#1072;&#1082; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1084;&#1099;&#1077; <span class="emphasis"><em>&#1087;&#1086;&#1074;&#1088;&#1077;&#1078;&#1076;&#1105;&#1085;&#1085;&#1099;&#1077;
&#1073;&#1083;&#1086;&#1082;&#1080;</em></span>.
</p>
@@ -64,10 +63,10 @@
<td align="left" valign="top">
<p><a name="formatPartitions-pa4"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099; &#1074; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1080; &#1089;&#1074;&#1086;&#1077;&#1075;&#1086; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;
- <span class="guibutton">&#1053;&#1072;&#1079;&#1072;&#1076;</span>, &#1077;&#1097;&#1077; &#1088;&#1072;&#1079; <span class="guibutton">&#1053;&#1072;&#1079;&#1072;&#1076;</span>, &#1072; &#1087;&#1086;&#1090;&#1086;&#1084;
- &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1042;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;</span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1082; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1086;&#1081;
- &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;. &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1090;&#1077;&#1082;&#1091;&#1097;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
- &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;.
+ <span class="emphasis"><em>&#1053;&#1072;&#1079;&#1072;&#1076;</em></span>, &#1077;&#1097;&#1105; &#1088;&#1072;&#1079; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1053;&#1072;&#1079;&#1072;&#1076;</em></span>, &#1072;
+ &#1079;&#1072;&#1090;&#1077;&#1084; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1057;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081;</em></span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1082; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1086;&#1081;
+ &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;. &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1090;&#1077;&#1082;&#1091;&#1097;&#1080;&#1077;
+ &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;.
</p>
</td>
@@ -76,7 +75,7 @@
</div>
- <p><a name="formatPartitions-pa5"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099; &#1074; &#1089;&#1074;&#1086;&#1077;&#1084; &#1074;&#1099;&#1073;&#1086;&#1088;&#1077;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1044;&#1072;&#1083;&#1077;&#1077;</span>,
+ <p><a name="formatPartitions-pa5"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099; &#1074; &#1089;&#1074;&#1086;&#1077;&#1084; &#1074;&#1099;&#1073;&#1086;&#1088;&#1077;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1072;&#1083;&#1077;&#1077;</em></span>,
&#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100; &#1088;&#1072;&#1073;&#1086;&#1090;&#1091; &#1089; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1086;&#1081;.
</p>
diff --git a/ru/index.html b/ru/index.html
index 2b828dd..bed735b 100644
--- a/ru/index.html
+++ b/ru/index.html
@@ -26,17 +26,18 @@
<dt><span class="section"><a href="Select-and-use-ISOs.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074; ISO</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e19">Introduction</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e29">&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e142">&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1080; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</a></span></dt>
- <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e169">&#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e19">&#1042;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077;</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e41">&#1053;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e129">&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1080; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</a></span></dt>
+ <dt><span class="section"><a href="Select-and-use-ISOs.html#d5e168">&#1047;&#1072;&#1087;&#1080;&#1089;&#1100; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; ISO</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="installer.html">DrakX, &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="installer.html#installationSteps">&#1064;&#1072;&#1075;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;</a></span></dt>
- <dt><span class="section"><a href="installer.html#installationProblems">&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; &#1080; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099;&#1077; &#1087;&#1091;&#1090;&#1080; &#1080;&#1093; &#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e259">&#1064;&#1072;&#1075;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e281">&#1055;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;</a></span></dt>
+ <dt><span class="section"><a href="installer.html#d5e330">&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; &#1080; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099;&#1077; &#1087;&#1091;&#1090;&#1080; &#1080;&#1093; &#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="selectLanguage.html">&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077;, &#1087;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072;, &#1103;&#1079;&#1099;&#1082;</a></span></dt>
@@ -50,43 +51,38 @@
<dt><span class="section"><a href="setupSCSI.html">&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; SCSI</a></span></dt>
<dt><span class="section"><a href="selectInstallClass.html">&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1080;&#1083;&#1080; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;</a></span></dt>
<dt><span class="section"><a href="selectKeyboard.html">&#1050;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1072;</a></span></dt>
- <dt><span class="section"><a href="doPartitionDisks.html">&#1056;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;</a></span></dt>
+ <dt><span class="section"><a href="doPartitionDisks.html">&#1055;&#1088;&#1077;&#1076;&#1083;&#1072;&#1075;&#1072;&#1077;&#1084;&#1086;&#1077; &#1088;&#1072;&#1079;&#1073;&#1080;&#1077;&#1085;&#1080;&#1077; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;</a></span></dt>
<dt><span class="section"><a href="ask_mntpoint_s.html">&#1042;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1090;&#1086;&#1095;&#1082;&#1080; &#1084;&#1086;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1080;&#1103;</a></span></dt>
<dt><span class="section"><a href="takeOverHdConfirm.html">&#1055;&#1086;&#1076;&#1090;&#1074;&#1077;&#1088;&#1078;&#1076;&#1077;&#1085;&#1080;&#1077; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1078;&#1077;&#1089;&#1090;&#1082;&#1086;&#1075;&#1086; &#1076;&#1080;&#1089;&#1082;&#1072;</a></span></dt>
- <dt><span class="section"><a href="diskdrake.html">&#1056;&#1091;&#1095;&#1085;&#1086;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake</a></span></dt>
+ <dt><span class="section"><a href="diskdrake.html">&#1056;&#1091;&#1095;&#1085;&#1072;&#1103; &#1088;&#1072;&#1079;&#1084;&#1077;&#1090;&#1082;&#1072; &#1076;&#1080;&#1089;&#1082;&#1072; &#1085;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DiskDrake</a></span></dt>
<dt><span class="section"><a href="formatPartitions.html">&#1060;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;</a></span></dt>
- <dt><span class="section"><a href="add_supplemental_media.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;)</a></span></dt>
- <dt><span class="section"><a href="media_selection.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; (Nonfree)</a></span></dt>
+ <dt><span class="section"><a href="add_supplemental_media.html">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;</a></span></dt>
+ <dt><span class="section"><a href="media_selection.html">&#1044;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</a></span></dt>
<dt><span class="section"><a href="chooseDesktop.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1088;&#1072;&#1073;&#1086;&#1095;&#1077;&#1075;&#1086; &#1089;&#1090;&#1086;&#1083;&#1072;</a></span></dt>
<dt><span class="section"><a href="choosePackageGroups.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</a></span></dt>
<dt><span class="section"><a href="minimal-install.html">&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;</a></span></dt>
<dt><span class="section"><a href="choosePackagesTree.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</a></span></dt>
- <dt><span class="section"><a href="addUser.html">&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;</a></span></dt>
+ <dt><span class="section"><a href="addUser.html">&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080;</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="addUser.html#root-password">&#1042;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072; (root):</a></span></dt>
<dt><span class="section"><a href="addUser.html#enterUser">&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</a></span></dt>
- <dt><span class="section"><a href="addUser.html#addUserAdvanced">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;</a></span></dt>
+ <dt><span class="section"><a href="addUser.html#addUserAdvanced">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="configureX_chooser.html">&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1080; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;</a></span></dt>
<dt><span class="section"><a href="configureX_card_list.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;)</a></span></dt>
<dt><span class="section"><a href="configureX_monitor.html">&#1042;&#1099;&#1073;&#1086;&#1088; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html">&#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html">&#1053;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="setupBootloader.html#d5e901">With a Bios system</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html#d5e938">With an UEFI system</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e983">Grub2</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e998">&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html#d5e1088">&#1044;&#1088;&#1091;&#1075;&#1080;&#1077; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1099;</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="setupBootloaderAddEntry.html">&#1044;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074; &#1084;&#1077;&#1085;&#1102; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1080;&#1083;&#1080; &#1074;&#1085;&#1077;&#1089;&#1077;&#1085;&#1080;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081; &#1074; &#1090;&#1072;&#1082;&#1080;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;&#1099;</a></span></dt>
- <dd>
- <dl>
- <dt><span class="section"><a href="setupBootloaderAddEntry.html#d5e953">With a Bios system</a></span></dt>
- <dt><span class="section"><a href="setupBootloaderAddEntry.html#d5e971">With an UEFI system</a></span></dt>
- </dl>
- </dd>
- <dt><span class="section"><a href="misc-params.html">&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</a></span></dt>
+ <dt><span class="section"><a href="misc-params.html">&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;</a></span></dt>
<dd>
<dl>
<dt><span class="section"><a href="misc-params.html#misc-params-system">&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;</a></span></dt>
@@ -114,11 +110,6 @@
<dt><span class="section"><a href="installUpdates.html">&#1054;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;</a></span></dt>
<dt><span class="section"><a href="exitInstall.html">&#1055;&#1086;&#1079;&#1076;&#1088;&#1072;&#1074;&#1083;&#1103;&#1077;&#1084;</a></span></dt>
<dt><span class="section"><a href="uninstall-Mageia.html">&#1059;&#1076;&#1072;&#1083;&#1077;&#1085;&#1080;&#1077; Mageia</a></span></dt>
- <dd>
- <dl>
- <dt><span class="section"><a href="uninstall-Mageia.html#d5e1208">&#1056;&#1091;&#1082;&#1086;&#1074;&#1086;&#1076;&#1089;&#1090;&#1074;&#1086;</a></span></dt>
- </dl>
- </dd>
</dl>
</div>
@@ -132,12 +123,6 @@
-
-
-
-
-
-
@@ -156,28 +141,38 @@
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -199,18 +194,17 @@
+
-
-
-
-
-
-
+
+
+
+
diff --git a/ru/installUpdates.html b/ru/installUpdates.html
index 25523ce..1481e13 100644
--- a/ru/installUpdates.html
+++ b/ru/installUpdates.html
@@ -26,28 +26,49 @@
-
-
-
-
-
- <p><a name="installUpdates-pa1"></a>&#1057;&#1086; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1072; &#1101;&#1090;&#1086;&#1081; &#1074;&#1077;&#1088;&#1089;&#1080;&#1080; <span class="application">Mageia</span> &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077;
- &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1084;&#1086;&#1075;&#1083;&#1080; &#1073;&#1099;&#1090;&#1100; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1099; &#1080;&#1083;&#1080; &#1091;&#1083;&#1091;&#1095;&#1096;&#1077;&#1085;&#1099;.
- </p>
+
- <p><a name="installUpdates-pa2"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guilabel">&#1044;&#1072;</span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100;
- &#1101;&#1090;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1080;&#1083;&#1080; &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; <span class="guilabel">&#1085;&#1077;&#1090;</span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1076;&#1077;&#1083;&#1072;&#1090;&#1100;
- &#1101;&#1090;&#1086;&#1075;&#1086; &#1089;&#1077;&#1081;&#1095;&#1072;&#1089; &#1080;&#1083;&#1080; &#1074;&#1072;&#1096; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1085;&#1077; &#1087;&#1086;&#1076;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085; &#1082; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1091;.
- </p>
- <p><a name="installUpdates-pa3"></a>&#1050;&#1072;&#1082; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;&#1099;&#1073;&#1086;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1044;&#1072;&#1083;&#1077;&#1077;</span>,
- &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100; &#1088;&#1072;&#1073;&#1086;&#1090;&#1091; &#1089; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1086;&#1081;.
+
+
+
+
+
+
+ <p><a name="installUpdates-pa1"></a>&#1057;&#1086; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1072; &#1101;&#1090;&#1086;&#1081; &#1074;&#1077;&#1088;&#1089;&#1080;&#1080; Mageia &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1084;&#1086;&#1075;&#1083;&#1080; &#1073;&#1099;&#1090;&#1100; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1099;
+ &#1080;&#1083;&#1080; &#1091;&#1083;&#1091;&#1095;&#1096;&#1077;&#1085;&#1099;.
</p>
+
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa2"></a>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1072;</em></span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1080;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1101;&#1090;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; <span class="emphasis"><em>&#1053;&#1077;&#1090;</em></span>, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1101;&#1090;&#1086;&#1075;&#1086; &#1089;&#1077;&#1081;&#1095;&#1072;&#1089; &#1080;&#1083;&#1080;
+ &#1074;&#1072;&#1096; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1085;&#1077; &#1087;&#1086;&#1076;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085; &#1082; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1091;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><a name="installUpdates-pa3"></a>&#1050;&#1072;&#1082; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;&#1099;&#1073;&#1086;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1072;&#1083;&#1077;&#1077;</em></span>,
+ &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100; &#1088;&#1072;&#1073;&#1086;&#1090;&#1091; &#1089; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1086;&#1081;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
</div>
</body>
diff --git a/ru/installer.html b/ru/installer.html
index 9d24b88..9cf8b99 100644
--- a/ru/installer.html
+++ b/ru/installer.html
@@ -37,228 +37,25 @@
- <p>&#1053;&#1077;&#1074;&#1072;&#1078;&#1085;&#1086;, &#1077;&#1089;&#1090;&#1100; &#1091; &#1074;&#1072;&#1089; &#1086;&#1087;&#1099;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; GNU-Linux &#1080;&#1083;&#1080; &#1085;&#1077;&#1090;, &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1076;&#1083;&#1103;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia &#1088;&#1072;&#1079;&#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1085;&#1072; &#1090;&#1072;&#1082;&#1080;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1080;&#1083;&#1080; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1087;&#1088;&#1086;&#1096;&#1083;&#1086; &#1082;&#1072;&#1082; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1097;&#1077; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089;.
- </p>
-
-
-
-
-
- <p>&#1053;&#1072; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1084; &#1086;&#1082;&#1085;&#1077; &#1084;&#1077;&#1085;&#1102; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;&#1099; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1074;
- &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;. &#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1084; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1091;&#1085;&#1082;&#1090; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;. &#1054;&#1073;&#1099;&#1095;&#1085;&#1086;, &#1101;&#1090;&#1086; &#1080;&#1084;&#1077;&#1085;&#1085;&#1086; &#1090;&#1086;&#1090; &#1087;&#1091;&#1085;&#1082;&#1090;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1072;&#1084; &#1085;&#1091;&#1078;&#1077;&#1085;.
- </p>
-
-
-
-
- <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1077;&#1088;&#1074;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1087;&#1088;&#1077;&#1076;&#1087;&#1086;&#1095;&#1090;&#1077;&#1085;&#1080;&#1103;:</p>
- <div class="itemizedlist">
- <ul class="itemizedlist">
- <li class="listitem">
-
- <p>&#1071;&#1079;&#1099;&#1082; (&#1085;&#1072; &#1074;&#1088;&#1077;&#1084;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;, &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1089;&#1086;&#1074;&#1089;&#1077;&#1084; &#1076;&#1088;&#1091;&#1075;&#1086;&#1081; &#1103;&#1079;&#1099;&#1082;)
- &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1087;&#1086;&#1089;&#1083;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; F2 (&#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;).
- </p>
-
-
- <p></p>
-
-
-
-
- <p>&#1048;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; &#1089;&#1086; &#1089;&#1090;&#1088;&#1077;&#1083;&#1082;&#1072;&#1084;&#1080;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1085;&#1091;&#1078;&#1085;&#1099;&#1081; &#1074;&#1072;&#1084; &#1087;&#1091;&#1085;&#1082;&#1090; &#1074; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077;, &#1080;
- &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; Enter.
- </p>
-
-
- <p>&#1053;&#1080;&#1078;&#1077; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085; &#1087;&#1088;&#1080;&#1084;&#1077;&#1088; &#1086;&#1082;&#1085;&#1072; &#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103; &#1074; Live DVD/CD. &#1047;&#1072;&#1084;&#1077;&#1090;&#1100;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1074; &#1084;&#1077;&#1085;&#1102;
- Live DVD/CD &#1085;&#1077;&#1090; &#1090;&#1072;&#1082;&#1080;&#1093; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074;: <span class="guilabel">&#1042;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;</span>,
- <span class="guilabel">&#1058;&#1077;&#1089;&#1090; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;</span> &#1080; <span class="guilabel">&#1048;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090; &#1087;&#1086;&#1080;&#1089;&#1082;&#1072;
- &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;</span>.
- </p>
-
-
- <p></p>
-
-
-
-
- <p></p>
-
- </li>
- <li class="listitem">
-
- <p>&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1077; &#1101;&#1082;&#1088;&#1072;&#1085;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; F3 (&#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074;
- &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;).
- </p>
-
-
-
- </li>
- <li class="listitem">
-
- <p>&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1103;&#1076;&#1088;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; <span class="bold"><strong>F6</strong></span> &#1074; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1080;&#1083;&#1080; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; <span class="bold"><strong>e</strong></span> &#1074; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077; UEFI.
- </p>
-
-
- <p>&#1045;&#1089;&#1083;&#1080; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1085;&#1077; &#1091;&#1076;&#1072;&#1105;&#1090;&#1089;&#1103; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1089;&#1074;&#1086;&#1077; &#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084;
- &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1100; &#1087;&#1086;&#1087;&#1099;&#1090;&#1082;&#1091;, &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1074;&#1096;&#1080;&#1089;&#1100; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1084;&#1080;
- &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1103;&#1084;&#1080;. &#1042; &#1084;&#1077;&#1085;&#1102;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1079;&#1074;&#1072;&#1090;&#1100; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; F6, &#1073;&#1091;&#1076;&#1077;&#1090;
- &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085; &#1085;&#1086;&#1074;&#1099;&#1081; &#1087;&#1091;&#1085;&#1082;&#1090;, <span class="guilabel">Boot options</span> (<span class="guilabel">&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
- &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;</span>) &#1089; &#1090;&#1072;&#1082;&#1080;&#1084;&#1080; &#1095;&#1077;&#1090;&#1099;&#1088;&#1100;&#1084;&#1103; &#1087;&#1086;&#1076;&#1087;&#1091;&#1085;&#1082;&#1090;&#1072;&#1084;&#1080;:
- </p>
-
-
- <p>- Default (&#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;), &#1085;&#1077; &#1084;&#1077;&#1085;&#1103;&#1090;&#1100; &#1085;&#1080;&#1095;&#1077;&#1075;&#1086; &#1074; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1093; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;.</p>
-
-
- <p>- Safe Settings (&#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;), &#1087;&#1088;&#1077;&#1080;&#1084;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1086; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1080;
- &#1085;&#1072;&#1076; &#1073;&#1099;&#1089;&#1090;&#1088;&#1086;&#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077;&#1084;.
- </p>
-
-
- <p>- No ACPI (&#1073;&#1077;&#1079; &#1088;&#1072;&#1089;&#1096;&#1080;&#1088;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1072; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1080; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1080;&#1090;&#1072;&#1085;&#1080;&#1077;&#1084;), &#1085;&#1077;
- &#1087;&#1088;&#1080;&#1085;&#1080;&#1084;&#1072;&#1090;&#1100; &#1074;&#1086; &#1074;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1080;&#1090;&#1072;&#1085;&#1080;&#1077;&#1084;.
- </p>
-
-
- <p>- No Local APIC (&#1073;&#1077;&#1079; &#1083;&#1086;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1075;&#1086; &#1088;&#1072;&#1089;&#1096;&#1080;&#1088;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1082;&#1086;&#1085;&#1090;&#1088;&#1086;&#1083;&#1083;&#1077;&#1088;&#1072; &#1087;&#1088;&#1077;&#1088;&#1099;&#1074;&#1072;&#1085;&#1080;&#1081; &#1089;
- &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100;&#1102; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;), &#1101;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1089;&#1074;&#1103;&#1079;&#1072;&#1085; &#1089; &#1087;&#1088;&#1077;&#1088;&#1099;&#1074;&#1072;&#1085;&#1080;&#1103;&#1084;&#1080; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099;
- &#1094;&#1077;&#1085;&#1090;&#1088;&#1072;&#1083;&#1100;&#1085;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1094;&#1077;&#1089;&#1089;&#1086;&#1088;&#1072;, &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1077;&#1075;&#1086;, &#1077;&#1089;&#1083;&#1080; &#1077;&#1089;&#1090;&#1100; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;.
- </p>
-
-
- <p>&#1042;&#1099;&#1073;&#1086;&#1088; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1080;&#1079; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074; &#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1080;&#1090; &#1082; &#1074;&#1085;&#1077;&#1089;&#1077;&#1085;&#1080;&#1102; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081; &#1074; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1087;&#1086;
- &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;, &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1077; &#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1077; <span class="guilabel">&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;</span>.
- </p>
-
-
- <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#1042; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1088;&#1077;&#1083;&#1080;&#1079;&#1072;&#1093; Mageia &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;, &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1099;&#1077; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; F6, &#1085;&#1077; &#1087;&#1086;&#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103;
- &#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1077; <span class="guilabel">&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;</span>. &#1054;&#1076;&#1085;&#1072;&#1082;&#1086;, &#1101;&#1090;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
- &#1073;&#1091;&#1076;&#1091;&#1090; &#1091;&#1095;&#1090;&#1077;&#1085;&#1099; &#1087;&#1088;&#1080; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1077;.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
-
- </li>
- <li class="listitem">
-
- <p>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1103;&#1076;&#1088;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1087;&#1086;&#1089;&#1083;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; F1
- (&#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;).
- </p>
-
-
- <p>&#1053;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; F1 &#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090; &#1085;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; &#1089;&#1086; &#1089;&#1087;&#1080;&#1089;&#1082;&#1086;&#1084; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074;. &#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1086;&#1076;&#1080;&#1085; &#1080;&#1079;
- &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1074; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096; &#1089;&#1086; &#1089;&#1090;&#1088;&#1077;&#1083;&#1082;&#1072;&#1084;&#1080; &#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; Enter, &#1095;&#1090;&#1086;&#1073;&#1099;
- &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1087;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1091;&#1102; &#1089;&#1087;&#1088;&#1072;&#1074;&#1082;&#1091;, &#1080;&#1083;&#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; Esc, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1082; &#1086;&#1082;&#1085;&#1091;
- &#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103;.
- </p>
-
-
- <p></p>
-
-
-
-
- <p></p>
-
-
- <p>&#1053;&#1080;&#1078;&#1077; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085; &#1089;&#1085;&#1080;&#1084;&#1086;&#1082; &#1086;&#1082;&#1085;&#1072; &#1089; &#1087;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1099;&#1084; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077;&#1084; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1086;&#1082;&#1085;&#1072; &#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;. &#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; Esc &#1080;&#1083;&#1080; &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; <span class="guilabel">Return to Boot
- Options</span> (&#1042;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1082; &#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;), &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1082;
- &#1089;&#1087;&#1080;&#1089;&#1082;&#1091; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;. &#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1085;&#1099;&#1077; &#1074; &#1086;&#1082;&#1085;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1084;&#1086;&#1078;&#1085;&#1086; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102; &#1074;
- &#1089;&#1090;&#1088;&#1086;&#1082;&#1091; <span class="guilabel">&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;</span>.
- </p>
-
-
-
-
- <p></p>
-
-
- <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#1055;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1087;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076; &#1089;&#1087;&#1088;&#1072;&#1074;&#1082;&#1080; &#1085;&#1072; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1086;&#1084; &#1103;&#1079;&#1099;&#1082;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103;
- &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; F2.
- </p>
-
- </td>
- </tr>
- </table>
- </div>
-
- </li>
- </ul>
- </div>
- <p>&#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1103;&#1076;&#1088;&#1072; &#1074; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1093; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1093; &#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1093; &#1089; UEFI
- &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1081;&#1090;&#1080; <a class="ulink" href="https://wiki.mageia.org/en/How_to_set_up_kernel_options" target="_top">&#1079;&#1076;&#1077;&#1089;&#1100;</a>.
- </p>
- <p>&#1053;&#1080;&#1078;&#1077; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1077;&#1085;&#1086; &#1086;&#1082;&#1085;&#1086; &#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086; &#1089;&#1077;&#1090;&#1080;
- (&#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1103; - Boot.iso &#1080;&#1083;&#1080; Boot-Nonfree.iso):
+ <p>&#1053;&#1077;&#1074;&#1072;&#1078;&#1085;&#1086;, &#1077;&#1089;&#1090;&#1100; &#1091; &#1074;&#1072;&#1089; &#1086;&#1087;&#1099;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; GNU-Linux &#1080;&#1083;&#1080; &#1085;&#1077;&#1090;, &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1076;&#1083;&#1103;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; Mageia &#1088;&#1072;&#1079;&#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1085;&#1072; &#1090;&#1072;&#1082;&#1080;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1080;&#1083;&#1080; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1087;&#1088;&#1086;&#1096;&#1083;&#1086; &#1082;&#1072;&#1082; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1097;&#1077; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089;.
</p>
- <p>&#1047;&#1076;&#1077;&#1089;&#1100; &#1085;&#1077;&#1083;&#1100;&#1079;&#1103; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1103;&#1079;&#1099;&#1082;. &#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085; &#1085;&#1072;
- &#1101;&#1082;&#1088;&#1072;&#1085;&#1077;. &#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1086;&#1073;&#1088;&#1072;&#1079;&#1072; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1087;&#1086; &#1089;&#1077;&#1090;&#1080;
- &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1077;&#1085;&#1086; &#1074; <a class="ulink" href="https://wiki.mageia.org/en/Boot.iso_install" target="_top">&#1042;&#1080;&#1082;&#1080; Mageia</a></p>
-
-
- <div class="warning" title="&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Warning">
- <tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;]" src="warning.png"></td>
- <th align="left"></th>
- </tr>
- <tr>
- <td align="left" valign="top">
-
- <p>&#1056;&#1072;&#1089;&#1082;&#1083;&#1072;&#1076;&#1082;&#1072; &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1072;&#1084;&#1077;&#1088;&#1080;&#1082;&#1072;&#1085;&#1089;&#1082;&#1086;&#1084;&#1091; &#1072;&#1085;&#1075;&#1083;&#1080;&#1081;&#1089;&#1082;&#1086;&#1084;&#1091;.</p>
-
- </td>
- </tr>
- </table>
- </div>
-
-
-
-
<div class="section" title="&#1064;&#1072;&#1075;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="installationSteps"></a>&#1064;&#1072;&#1075;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ <h3 class="title"><a name="d5e259"></a>&#1064;&#1072;&#1075;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
</h3>
</div>
</div>
@@ -266,42 +63,60 @@
- <p>&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1072; &#1085;&#1072; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1100; &#1096;&#1072;&#1075;&#1086;&#1074;, &#1087;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1073;&#1091;&#1076;&#1077;&#1090;
- &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085; &#1085;&#1072; &#1073;&#1086;&#1082;&#1086;&#1074;&#1086;&#1081; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1101;&#1082;&#1088;&#1072;&#1085;&#1072;.
- </p>
-
-
- <p>&#1053;&#1072; &#1082;&#1072;&#1078;&#1076;&#1086;&#1084; &#1096;&#1072;&#1075;&#1077; &#1074;&#1072;&#1084; &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1086;&#1076;&#1085;&#1072; &#1080;&#1083;&#1080; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;, &#1085;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1074;&#1099;
- &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1074;&#1080;&#1076;&#1077;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</span>. &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081;
- &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1086;&#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1084; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084;&#1080;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103; &#1085;&#1077; &#1090;&#1072;&#1082; &#1095;&#1072;&#1089;&#1090;&#1086;, &#1082;&#1072;&#1082; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1084;&#1080;.
- </p>
-
-
- <p>&#1053;&#1072; &#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1085;&#1089;&#1090;&#1074;&#1077; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094; &#1074;&#1099; &#1090;&#1072;&#1082;&#1078;&#1077; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;
- <span class="guibutton">&#1057;&#1087;&#1088;&#1072;&#1074;&#1082;&#1072;</span>, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100;
- &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1086;&#1073;&#1098;&#1103;&#1089;&#1085;&#1077;&#1085;&#1080;&#1103; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1090;&#1077;&#1082;&#1091;&#1097;&#1077;&#1075;&#1086; &#1096;&#1072;&#1075;&#1072;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1055;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077;&#1085;&#1072; &#1085;&#1072; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1100; &#1096;&#1072;&#1075;&#1086;&#1074;, &#1087;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093;
+ &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085; &#1085;&#1072; &#1083;&#1077;&#1074;&#1086;&#1081; &#1073;&#1086;&#1082;&#1086;&#1074;&#1086;&#1081; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1101;&#1082;&#1088;&#1072;&#1085;&#1072;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1053;&#1072; &#1082;&#1072;&#1078;&#1076;&#1086;&#1084; &#1096;&#1072;&#1075;&#1091; &#1074;&#1072;&#1084; &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1099; &#1086;&#1076;&#1085;&#1072; &#1080;&#1083;&#1080; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;, &#1085;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1074;&#1099;
+ &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1091;&#1074;&#1080;&#1076;&#1077;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</em></span>, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081;
+ &#1086;&#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1084; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103; &#1085;&#1077;
+ &#1090;&#1072;&#1082; &#1095;&#1072;&#1089;&#1090;&#1086; &#1082;&#1072;&#1082; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1084;&#1080;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1053;&#1072; &#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1085;&#1089;&#1090;&#1074;&#1077; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094; &#1074;&#1099; &#1090;&#1072;&#1082;&#1078;&#1077; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1057;&#1087;&#1088;&#1072;&#1074;&#1082;&#1072;</em></span>,
+ &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1086;&#1073;&#1098;&#1103;&#1089;&#1085;&#1077;&#1085;&#1080;&#1103; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
+ &#1090;&#1077;&#1082;&#1091;&#1097;&#1077;&#1075;&#1086; &#1096;&#1072;&#1075;&#1072;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
- <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
- <table border="0" summary="Note">
+ <div class="caution" title="&#1055;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1077;&#1088;&#1077;&#1078;&#1077;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Caution">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1055;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1077;&#1088;&#1077;&#1078;&#1077;&#1085;&#1080;&#1077;]" src="caution.png"></td>
<th align="left"></th>
</tr>
<tr>
<td align="left" valign="top">
- <p>&#1045;&#1089;&#1083;&#1080; &#1074; &#1090;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1074;&#1099; &#1088;&#1077;&#1096;&#1080;&#1090;&#1077; &#1087;&#1088;&#1077;&#1082;&#1088;&#1072;&#1090;&#1080;&#1090;&#1100; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1091;, &#1090;&#1086;&#1075;&#1076;&#1072; &#1074;&#1099;
- &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1090;&#1097;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1086;&#1073;&#1076;&#1091;&#1084;&#1072;&#1090;&#1100; &#1074;&#1072;&#1096;&#1080;
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074; &#1090;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1074;&#1099; &#1088;&#1077;&#1096;&#1080;&#1090;&#1077; &#1087;&#1088;&#1077;&#1082;&#1088;&#1072;&#1090;&#1080;&#1090;&#1100; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1091;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
+ &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1090;&#1097;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1086;&#1073;&#1076;&#1091;&#1084;&#1072;&#1090;&#1100; &#1074;&#1072;&#1096;&#1080;
&#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1080;&#1083;&#1080; &#1085;&#1072;&#1095;&#1072;&#1083;&#1072; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
- &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1081; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1085;&#1072;&#1093;&#1086;&#1076;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074; &#1087;&#1088;&#1086;&#1084;&#1077;&#1078;&#1091;&#1090;&#1086;&#1095;&#1085;&#1086;&#1084; &#1089;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1080;&#1080;. &#1055;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072;
- &#1084;&#1086;&#1078;&#1077;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1089;&#1090;&#1080; &#1082; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1086;&#1081;. &#1045;&#1089;&#1083;&#1080;, &#1074;&#1086;&#1087;&#1088;&#1077;&#1082;&#1080; &#1101;&#1090;&#1080;&#1084;
- &#1087;&#1088;&#1077;&#1076;&#1091;&#1087;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1080;&#1077;&#1084;, &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;, &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1099;&#1081;
- &#1090;&#1077;&#1088;&#1084;&#1080;&#1085;&#1072;&#1083; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1086;&#1084;&#1073;&#1080;&#1085;&#1072;&#1094;&#1080;&#1080; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096; <span class="guibutton">Alt Ctrl F2</span>
- &#1086;&#1076;&#1085;&#1086;&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1073;&#1080;&#1085;&#1072;&#1094;&#1080;&#1102; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096; <span class="guibutton">Alt Ctrl
- Delete</span> &#1086;&#1076;&#1085;&#1086;&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;.
+ &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1081; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1072;&#1093;&#1086;&#1076;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074; &#1087;&#1088;&#1086;&#1084;&#1077;&#1078;&#1091;&#1090;&#1086;&#1095;&#1085;&#1086;&#1084;
+ &#1089;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1080;&#1080;. &#1055;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1084;&#1086;&#1078;&#1077;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1089;&#1090;&#1080; &#1082; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+ </p>
+
+
+ <p>&#1045;&#1089;&#1083;&#1080;, &#1074;&#1086;&#1087;&#1088;&#1077;&#1082;&#1080; &#1101;&#1090;&#1080;&#1084; &#1087;&#1088;&#1077;&#1076;&#1091;&#1087;&#1088;&#1077;&#1078;&#1076;&#1077;&#1085;&#1080;&#1077;&#1084;, &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;,
+ &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1099;&#1081; &#1090;&#1077;&#1088;&#1084;&#1080;&#1085;&#1072;&#1083; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1086;&#1084;&#1073;&#1080;&#1085;&#1072;&#1094;&#1080;&#1080; &#1101;&#1090;&#1080;&#1093; &#1090;&#1088;&#1105;&#1093; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;:
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span>
+ &#1086;&#1076;&#1085;&#1086;&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1073;&#1080;&#1085;&#1072;&#1094;&#1080;&#1102; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;
+ <span class="keycap"><strong>Ctrl</strong></span>+<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>Delete</strong></span>
+ &#1086;&#1076;&#1085;&#1086;&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;.
</p>
</td>
@@ -312,11 +127,157 @@
</div>
+ <div class="section" title="&#1055;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h3 class="title"><a name="d5e281"></a>&#1055;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ </h3>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1077; &#1101;&#1082;&#1088;&#1072;&#1085;&#1072;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1074;&#1086; &#1074;&#1088;&#1077;&#1084;&#1103; &#1087;&#1077;&#1088;&#1074;&#1086;&#1081; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103;
+ &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;, &#1073;&#1091;&#1076;&#1077;&#1090; &#1079;&#1072;&#1074;&#1080;&#1089;&#1077;&#1090;&#1100; &#1086;&#1090; &#1090;&#1086;&#1075;&#1086;, &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1077;&#1090; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
+ &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1077;&#1081; &#1084;&#1080;&#1082;&#1088;&#1086;&#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; (BIOS) &#1080;&#1083;&#1080; UEFI.
+ </p>
+
+
+ <p>&#1053;&#1072; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1084; &#1086;&#1082;&#1085;&#1077; &#1084;&#1077;&#1085;&#1102; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1074;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;&#1099; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1074;
+ &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;. &#1058;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1084; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1091;&#1085;&#1082;&#1090; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;. &#1054;&#1073;&#1099;&#1095;&#1085;&#1086;, &#1101;&#1090;&#1086; &#1080;&#1084;&#1077;&#1085;&#1085;&#1086; &#1090;&#1086;&#1090; &#1087;&#1091;&#1085;&#1082;&#1090;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1072;&#1084; &#1085;&#1091;&#1078;&#1077;&#1085;.
+ </p>
+
+
+ <div class="section" title="&#1059;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1077; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; (BIOS)">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e285"></a>&#1059;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1077; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; (BIOS)
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+ <div class="itemizedlist" title="&#1052;&#1077;&#1085;&#1102;">
+ <p class="title"><b>&#1052;&#1077;&#1085;&#1102;</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; Mageia</strong></span></p>
+
+
+ <p>&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; Mageia &#1085;&#1072; &#1076;&#1080;&#1089;&#1082;. &#1069;&#1090;&#1086; &#1090;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1081; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;. &#1054;&#1085; &#1073;&#1091;&#1076;&#1077;&#1090; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;, &#1077;&#1089;&#1083;&#1080;
+ &#1074; &#1090;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1085;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085; &#1076;&#1088;&#1091;&#1075;&#1086;&#1081; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#1057;&#1087;&#1072;&#1089;&#1077;&#1085;&#1080;&#1077; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;</strong></span></p>
+
+
+ <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1083;&#1080; &#1087;&#1077;&#1088;&#1077;&#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082; &#1076;&#1083;&#1103;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; Mageia, &#1080;&#1083;&#1080; &#1074;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082; Windows.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#1058;&#1077;&#1089;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;</strong></span></p>
+
+
+ <p>&#1042;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1090;&#1077;&#1089;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080; &#1087;&#1091;&#1090;&#1105;&#1084; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1085;&#1086;&#1075;&#1086; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103;
+ &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081; &#1087;&#1086; &#1095;&#1090;&#1077;&#1085;&#1080;&#1102; &#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;. &#1047;&#1072;&#1074;&#1077;&#1088;&#1096;&#1080;&#1074; &#1090;&#1077;&#1089;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;, &#1084;&#1086;&#1078;&#1085;&#1086;
+ &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>F2: &#1071;&#1079;&#1099;&#1082;</strong></span></p>
+
+
+ <p>&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; F2, &#1077;&#1089;&#1083;&#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1076;&#1088;&#1091;&#1075;&#1086;&#1081; &#1103;&#1079;&#1099;&#1082;.</p>
+
+ </li>
+ </ul>
+ </div>
+
+ </div>
+
+
+ <div class="section" title="&#1057;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; UEFI">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h4 class="title"><a name="d5e308"></a>&#1057;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; UEFI
+ </h4>
+ </div>
+ </div>
+ </div>
+
+
+
+ <p>&#1057; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;, &#1085;&#1072;&#1078;&#1072;&#1074; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091;
+ <span class="keycap"><strong>E</strong></span> &#1076;&#1083;&#1103; &#1074;&#1093;&#1086;&#1076;&#1072; &#1074; &#1088;&#1077;&#1078;&#1080;&#1084; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1080;&#1079;
+ &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1077;&#1078;&#1080;&#1084;&#1072;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1080;&#1083;&#1080; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; <span class="keycap"><strong>Esc</strong></span>, &#1077;&#1089;&#1083;&#1080; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1103; &#1085;&#1077;
+ &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100;, &#1080;&#1083;&#1080; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; <span class="keycap"><strong>F10</strong></span>, &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1103;
+ &#1080; &#1074;&#1099;&#1081;&#1090;&#1080; &#1080;&#1079; &#1088;&#1077;&#1078;&#1080;&#1084;&#1072; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
+ </p>
+
+
+
+
+ <div class="itemizedlist" title="&#1052;&#1077;&#1085;&#1102;">
+ <p class="title"><b>&#1052;&#1077;&#1085;&#1102;</b></p>
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100;:</strong></span> &#1085;&#1072;&#1095;&#1072;&#1090;&#1100; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1091; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>&#1057;&#1087;&#1072;&#1089;&#1077;&#1085;&#1080;&#1077;:</strong></span> &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
+ &#1080;&#1083;&#1080; &#1087;&#1077;&#1088;&#1077;&#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; Mageia, &#1080;&#1083;&#1080; &#1074;&#1086;&#1089;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100;
+ &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082; Windows.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p><span class="bold"><strong>F2: &#1071;&#1079;&#1099;&#1082;:</strong></span> &#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; <span class="keycap"><strong>F2</strong></span>,
+ &#1095;&#1090;&#1086;&#1073;&#1099; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1103;&#1079;&#1099;&#1082;.
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1072; &#1087;&#1088;&#1086;&#1080;&#1089;&#1093;&#1086;&#1076;&#1080;&#1083;&#1072; &#1089; &#1092;&#1083;&#1077;&#1096;&#1082;&#1080; USB, &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1086; &#1076;&#1074;&#1077; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093;
+ &#1089;&#1090;&#1088;&#1086;&#1082;&#1080;, &#1076;&#1091;&#1073;&#1083;&#1080;&#1082;&#1072;&#1090;&#1099; &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1080;&#1093;, &#1089; &#1089;&#1091;&#1092;&#1092;&#1080;&#1082;&#1089;&#1072;&#1084;&#1080; &laquo;USB&raquo;. &#1042;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1080;&#1084;&#1077;&#1085;&#1085;&#1086;
+ &#1086;&#1076;&#1085;&#1091; &#1080;&#1079; &#1101;&#1090;&#1080;&#1093; &#1089;&#1090;&#1088;&#1086;&#1082;.
+ </p>
+
+ </div>
+
+ </div>
+
+
<div class="section" title="&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; &#1080; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099;&#1077; &#1087;&#1091;&#1090;&#1080; &#1080;&#1093; &#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;">
<div class="titlepage">
<div>
<div>
- <h3 class="title"><a name="installationProblems"></a>&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; &#1080; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099;&#1077; &#1087;&#1091;&#1090;&#1080; &#1080;&#1093; &#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;
+ <h3 class="title"><a name="d5e330"></a>&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; &#1080; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099;&#1077; &#1087;&#1091;&#1090;&#1080; &#1080;&#1093; &#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;
</h3>
</div>
</div>
@@ -328,7 +289,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="noX"></a>&#1053;&#1077;&#1090; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1072;
+ <h4 class="title"><a name="d5e332"></a>&#1053;&#1077;&#1090; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1072;
</h4>
</div>
</div>
@@ -340,21 +301,24 @@
<ul class="itemizedlist">
<li class="listitem">
- <p>&#1055;&#1086;&#1089;&#1083;&#1077; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1085;&#1077; &#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1072; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1103;&#1079;&#1099;&#1082;&#1072;. &#1058;&#1072;&#1082;&#1086;&#1077; &#1084;&#1086;&#1078;&#1077;&#1090;
- &#1089;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1093; &#1089; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084;&#1080; &#1082;&#1072;&#1088;&#1090;&#1072;&#1084;&#1080; &#1080; &#1074; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1093;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1093;. &#1055;&#1086;&#1087;&#1088;&#1086;&#1073;&#1091;&#1081;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1088;&#1077;&#1078;&#1080;&#1084;&#1086;&#1084; &#1085;&#1080;&#1079;&#1082;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;. &#1044;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086;
- &#1074;&#1087;&#1080;&#1096;&#1080;&#1090;&#1077; <code class="code">vgalo</code> &#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1091; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;&#1072;.
+ <p>&#1055;&#1086;&#1089;&#1083;&#1077; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1085;&#1077; &#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1072; <span class="command"><strong>&#1074;&#1099;&#1073;&#1086;&#1088;&#1072;
+ &#1103;&#1079;&#1099;&#1082;&#1072;</strong></span>. &#1058;&#1072;&#1082;&#1086;&#1077; &#1084;&#1086;&#1078;&#1077;&#1090; &#1089;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1093; &#1089; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084;&#1080;
+ &#1082;&#1072;&#1088;&#1090;&#1072;&#1084;&#1080; &#1080; &#1074; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1093; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1093;. &#1055;&#1086;&#1087;&#1088;&#1086;&#1073;&#1091;&#1081;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1088;&#1077;&#1078;&#1080;&#1084;&#1086;&#1084; &#1085;&#1080;&#1079;&#1082;&#1086;&#1075;&#1086;
+ &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;. &#1044;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1074;&#1087;&#1080;&#1096;&#1080;&#1090;&#1077; <span class="command"><strong>vgalo</strong></span> &#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1091; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;&#1072;.
</p>
</li>
<li class="listitem">
- <p>&#1045;&#1089;&#1083;&#1080; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1086;&#1095;&#1077;&#1085;&#1100; &#1089;&#1090;&#1072;&#1088;&#1099;&#1084;, &#1090;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1074; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;
- &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1072;. &#1042; &#1090;&#1072;&#1082;&#1086;&#1084; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; &#1089;&#1090;&#1086;&#1080;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1099;&#1084;
- &#1088;&#1077;&#1078;&#1080;&#1084;&#1086;&#1084;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1080;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1086;&#1084;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; Esc, &#1082;&#1086;&#1075;&#1076;&#1072;
- &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085; &#1087;&#1077;&#1088;&#1074;&#1099;&#1081; &#1101;&#1082;&#1088;&#1072;&#1085; &#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103;, &#1080; &#1087;&#1086;&#1076;&#1090;&#1074;&#1077;&#1088;&#1076;&#1080;&#1090;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103;
- &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; Enter. &#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; <code class="code">text</code>, &#1091;&#1074;&#1080;&#1076;&#1077;&#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1091; "boot:", &#1080;
- &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; Enter. &#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1072; &#1074; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;.
+ <p>&#1045;&#1089;&#1083;&#1080; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1086;&#1095;&#1077;&#1085;&#1100; &#1091;&#1089;&#1090;&#1072;&#1088;&#1077;&#1074;&#1096;&#1080;&#1084;, &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1074; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;
+ &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1081;. &#1042; &#1090;&#1072;&#1082;&#1086;&#1084; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; &#1089;&#1090;&#1086;&#1080;&#1090; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;
+ &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1086;&#1081; &#1074; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1080;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1086;&#1084;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077;
+ &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; <span class="keycap"><strong>Esc</strong></span>, &#1082;&#1086;&#1075;&#1076;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085; &#1087;&#1077;&#1088;&#1074;&#1099;&#1081; &#1101;&#1082;&#1088;&#1072;&#1085;
+ <span class="keycap"><strong>&#1087;&#1088;&#1080;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1103;</strong></span>, &#1080; &#1087;&#1086;&#1076;&#1090;&#1074;&#1077;&#1088;&#1076;&#1080;&#1090;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084;
+ &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; <code class="prompt">Enter</code>. &#1042; &#1086;&#1090;&#1074;&#1077;&#1090; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085; &#1095;&#1105;&#1088;&#1085;&#1099;&#1081; &#1101;&#1082;&#1088;&#1072;&#1085; &#1089;
+ &#1087;&#1088;&#1080;&#1075;&#1083;&#1072;&#1096;&#1077;&#1085;&#1080;&#1077;&#1084; <span class="command"><strong>boot:</strong></span>. &#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; <span class="keycap"><strong>text</strong></span> &#1080;
+ &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; <span class="keycap"><strong>Enter</strong></span>. &#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1072; &#1074;
+ &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;.
</p>
</li>
@@ -368,7 +332,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="installFreezes"></a>&#1054;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
+ <h4 class="title"><a name="d5e347"></a>&#1054;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;
</h4>
</div>
</div>
@@ -381,7 +345,7 @@
&#1084;&#1086;&#1078;&#1085;&#1086; &#1086;&#1073;&#1086;&#1081;&#1090;&#1080; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077; &#1093;&#1072;&#1088;&#1072;&#1082;&#1090;&#1077;&#1088;&#1080;&#1089;&#1090;&#1080;&#1082; &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1080;
&#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1077;&#1075;&#1086; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1091; &#1087;&#1086;&#1079;&#1078;&#1077;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1087;&#1077;&#1088;&#1077;&#1074;&#1077;&#1089;&#1090;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1091; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1074;
&#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1081; &#1088;&#1077;&#1078;&#1080;&#1084;, &#1074;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1091; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;&#1072; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091;
- <code class="code">noauto</code>. &#1055;&#1088;&#1080; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1101;&#1090;&#1091; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089;&#1086;&#1074;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1089;
+ <span class="command"><strong>noauto</strong></span>. &#1055;&#1088;&#1080; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1101;&#1090;&#1091; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1091; &#1084;&#1086;&#1078;&#1085;&#1086; &#1089;&#1086;&#1074;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1089;
&#1074;&#1099;&#1096;&#1077;&#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1084;&#1080; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1072;&#1084;&#1080;.
</p>
@@ -392,7 +356,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="kernelOptions"></a>&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; RAM (&#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1100;&#1102;)
+ <h4 class="title"><a name="d5e351"></a>&#1055;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; RAM (&#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1100;&#1102;)
</h4>
</div>
</div>
@@ -400,11 +364,13 @@
- <p>&#1055;&#1086;&#1090;&#1088;&#1077;&#1073;&#1085;&#1086;&#1089;&#1090;&#1100; &#1074; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1103;&#1076;&#1088;&#1072; &#1074;&#1086;&#1079;&#1085;&#1080;&#1082;&#1072;&#1077;&#1090; &#1085;&#1077; &#1095;&#1072;&#1089;&#1090;&#1086;, &#1085;&#1086; &#1074; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093;
- &#1089;&#1083;&#1091;&#1095;&#1072;&#1103;&#1093; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1084;&#1086;&#1078;&#1077;&#1090; &#1089;&#1086;&#1086;&#1073;&#1097;&#1072;&#1090;&#1100; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088;&#1091; &#1083;&#1086;&#1078;&#1085;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
- &#1086;&#1073;&#1098;&#1077;&#1084;&#1072; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1086;&#1073;&#1098;&#1077;&#1084; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;,
- &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1086;&#1081; <code class="code">mem=xxxM</code>, &#1075;&#1076;&#1077; xxx &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;
- &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088; <code class="code">mem=256M</code> &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; 256 &#1052;&#1041;
+ <p>&#1055;&#1086;&#1090;&#1088;&#1077;&#1073;&#1085;&#1086;&#1089;&#1090;&#1100; &#1074; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1103;&#1076;&#1088;&#1072; &#1074;&#1086;&#1079;&#1085;&#1080;&#1082;&#1072;&#1077;&#1090; &#1085;&#1077;&#1095;&#1072;&#1089;&#1090;&#1086;, &#1085;&#1086; &#1074;
+ &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1099;&#1093; &#1089;&#1083;&#1091;&#1095;&#1072;&#1103;&#1093; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1084;&#1086;&#1078;&#1077;&#1090; &#1089;&#1086;&#1086;&#1073;&#1097;&#1072;&#1090;&#1100; &#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1091; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1083;&#1086;&#1078;&#1085;&#1099;&#1077;
+ &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1087;&#1086; &#1086;&#1073;&#1098;&#1105;&#1084;&#1091; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1086;&#1073;&#1098;&#1105;&#1084; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;
+ &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;, &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1086;&#1081;
+ <code class="literal">mem=<em class="replaceable"><code>xxx</code></em>M</code>, &#1075;&#1076;&#1077;
+ <em class="replaceable"><code>xxx</code></em> &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1086;&#1073;&#1098;&#1105;&#1084;&#1072; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081;
+ &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088; <code class="literal">mem=256M</code> &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; 256 &#1052;&#1041;
&#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1081; &#1087;&#1072;&#1084;&#1103;&#1090;&#1080;.
</p>
@@ -415,7 +381,7 @@
<div class="titlepage">
<div>
<div>
- <h4 class="title"><a name="DynamicPartitions"></a>&#1044;&#1080;&#1085;&#1072;&#1084;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
+ <h4 class="title"><a name="d5e358"></a>&#1044;&#1080;&#1085;&#1072;&#1084;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1099;
</h4>
</div>
</div>
@@ -423,10 +389,11 @@
- <p>&#1045;&#1089;&#1083;&#1080; &#1042;&#1099; &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1083;&#1080; &#1089;&#1074;&#1086;&#1081; &#1076;&#1080;&#1089;&#1082; &#1080;&#1079; "&#1073;&#1072;&#1079;&#1086;&#1074;&#1086;&#1075;&#1086;" &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1072; &#1074; "&#1076;&#1080;&#1085;&#1072;&#1084;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;"
- &#1092;&#1086;&#1088;&#1084;&#1072;&#1090; Microsoft Windows, &#1090;&#1086; &#1042;&#1099; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1079;&#1085;&#1072;&#1090;&#1100;, &#1095;&#1090;&#1086; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100;
- Mageia &#1085;&#1072; &#1101;&#1090;&#1086;&#1090; &#1076;&#1080;&#1089;&#1082;. &#1042;&#1077;&#1088;&#1085;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1073;&#1072;&#1079;&#1086;&#1074;&#1086;&#1084;&#1091; &#1076;&#1080;&#1089;&#1082;&#1091;, &#1087;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1080;&#1090;&#1077; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1102;
- Microsoft: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1072;&#1084;&#1080; &#1073;&#1099;&#1083; &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1085; &#1074;&#1072;&#1096; &#1078;&#1105;&#1089;&#1090;&#1082;&#1080;&#1081; &#1076;&#1080;&#1089;&#1082; &#1089; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1072;
+ <code class="literal">basic</code> &#1074; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090; <code class="literal">dynamic</code> &#1074; Microsoft
+ Windows, &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1079;&#1085;&#1072;&#1090;&#1100;, &#1095;&#1090;&#1086; &#1074;&#1072;&#1084; &#1085;&#1077; &#1091;&#1076;&#1072;&#1089;&#1090;&#1089;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1085;&#1072; &#1101;&#1090;&#1086;&#1090; &#1076;&#1080;&#1089;&#1082;
+ Mageia. &#1063;&#1090;&#1086;&#1073;&#1099; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103; &#1082; <code class="literal">&#1073;&#1072;&#1079;&#1086;&#1074;&#1086;&#1084;&#1091;</code> &#1076;&#1080;&#1089;&#1082;&#1091;, &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089;
+ &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1077;&#1081; &#1086;&#1090; Microsoft: <a class="ulink" href="http://msdn.microsoft.com/en-us/library/cc776315.aspx" target="_top">http://msdn.microsoft.com/en-us/library/cc776315.aspx</a>.
</p>
</div>
diff --git a/ru/media_selection.html b/ru/media_selection.html
index 8fb3354..0b32be8 100644
--- a/ru/media_selection.html
+++ b/ru/media_selection.html
@@ -2,22 +2,22 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; (Nonfree)</title>
+ <title>&#1044;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
- <link rel="prev" href="add_supplemental_media.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1103; (&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1093; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1077;&#1081; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;)">
+ <link rel="prev" href="add_supplemental_media.html" title="&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1076;&#1083;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;">
<link rel="next" href="chooseDesktop.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1088;&#1072;&#1073;&#1086;&#1095;&#1077;&#1075;&#1086; &#1089;&#1090;&#1086;&#1083;&#1072;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="ru" class="section" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; (Nonfree)">
+ <div lang="ru" class="section" title="&#1044;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="media_selection"></a>&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072; (Nonfree)
+ <h2 class="title"><a name="media_selection"></a>&#1044;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;
</h2>
</div>
</div>
@@ -25,11 +25,18 @@
+
+
+
+
+
+
+
<p>&#1047;&#1076;&#1077;&#1089;&#1100; &#1074;&#1099; &#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099;&#1093; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1077;&#1074;. &#1053;&#1077; &#1074;&#1089;&#1077; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1080;
@@ -54,20 +61,20 @@
&#1073;&#1077;&#1089;&#1087;&#1083;&#1072;&#1090;&#1085;&#1099;&#1084;&#1080;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; Mageia &#1084;&#1086;&#1078;&#1077;&#1090; &#1088;&#1072;&#1089;&#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1103;&#1090;&#1100; &#1080;&#1093;, &#1085;&#1086; &#1074; &#1085;&#1080;&#1093; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090;&#1089;&#1103;
&#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1085;&#1086;&#1077; &#1086;&#1073;&#1077;&#1089;&#1087;&#1077;&#1095;&#1077;&#1085;&#1080;&#1077; &#1089; &#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1084; &#1082;&#1086;&#1076;&#1086;&#1084; (&#1086;&#1090;&#1089;&#1102;&#1076;&#1072; &#1080; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; - Nonfree). &#1042;
&#1101;&#1090;&#1086;&#1084; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1080;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090;&#1089;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099; &#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1093; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1074; &#1082;
- &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084; &#1082;&#1072;&#1088;&#1090;&#1072;&#1084; nVidia &#1080; ATI, &#1087;&#1088;&#1086;&#1096;&#1080;&#1074;&#1082;&#1080; &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1093; &#1082;&#1072;&#1088;&#1090; WiFi &#1080; &#1090;. &#1087;.
+ &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084; &#1082;&#1072;&#1088;&#1090;&#1072;&#1084; nVidia &#1080; AMD, &#1087;&#1088;&#1086;&#1096;&#1080;&#1074;&#1082;&#1080; &#1076;&#1083;&#1103; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1093; &#1082;&#1072;&#1088;&#1090; WiFi &#1080; &#1090;. &#1087;.
</p>
</li>
<li class="listitem">
- <p>&#1042; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1080; <span class="emphasis"><em>Tainted</em></span> &#1093;&#1088;&#1072;&#1085;&#1103;&#1090;&#1089;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1074;&#1099;&#1087;&#1091;&#1097;&#1077;&#1085;&#1085;&#1099;&#1077; &#1074;
- &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1080; &#1089;&#1086; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1084;&#1080; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1086;&#1085;&#1085;&#1099;&#1084;&#1080; &#1089;&#1086;&#1075;&#1083;&#1072;&#1096;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080;. &#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1084; &#1082;&#1088;&#1080;&#1090;&#1077;&#1088;&#1080;&#1077;&#1084;
- &#1076;&#1083;&#1103; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1074; &#1101;&#1090;&#1086;&#1090; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1081; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1090;&#1086;, &#1095;&#1090;&#1086; &#1080;&#1093; &#1088;&#1072;&#1089;&#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1077;
+ <p>&#1042; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1077; <span class="emphasis"><em>Tainted</em></span> &#1093;&#1088;&#1072;&#1085;&#1103;&#1090;&#1089;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1074;&#1099;&#1087;&#1091;&#1097;&#1077;&#1085;&#1085;&#1099;&#1077; &#1074;
+ &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1080; &#1089;&#1086; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1084; &#1083;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1086;&#1085;&#1085;&#1099;&#1084; &#1089;&#1086;&#1075;&#1083;&#1072;&#1096;&#1077;&#1085;&#1080;&#1077;&#1084;. &#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1084; &#1082;&#1088;&#1080;&#1090;&#1077;&#1088;&#1080;&#1077;&#1084; &#1076;&#1083;&#1103;
+ &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1103; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1074; &#1101;&#1090;&#1086; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1077; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1090;&#1086;, &#1095;&#1090;&#1086; &#1080;&#1093; &#1088;&#1072;&#1089;&#1087;&#1088;&#1086;&#1089;&#1090;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1077;
&#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1087;&#1072;&#1090;&#1077;&#1085;&#1090;&#1085;&#1099;&#1084; &#1079;&#1072;&#1082;&#1086;&#1085;&#1086;&#1076;&#1072;&#1090;&#1077;&#1083;&#1100;&#1089;&#1090;&#1074;&#1086;&#1084; &#1080; &#1079;&#1072;&#1082;&#1086;&#1085;&#1072;&#1084;&#1080; &#1086;&#1073; &#1072;&#1074;&#1090;&#1086;&#1088;&#1089;&#1082;&#1080;&#1093; &#1080; &#1089;&#1084;&#1077;&#1078;&#1085;&#1099;&#1093;
- &#1087;&#1088;&#1072;&#1074;&#1072;&#1093; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1089;&#1090;&#1088;&#1072;&#1085;. &#1042; &#1101;&#1090;&#1086;&#1090; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1081; &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1099;
- &#1084;&#1091;&#1083;&#1100;&#1090;&#1080;&#1084;&#1077;&#1076;&#1080;&#1081;&#1085;&#1099;&#1077; &#1082;&#1086;&#1076;&#1077;&#1082;&#1080;, &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1076;&#1083;&#1103; &#1074;&#1086;&#1089;&#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1093; &#1079;&#1074;&#1091;&#1082;&#1086;&#1074;&#1099;&#1093; &#1080;
- &#1074;&#1080;&#1076;&#1077;&#1086; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1076;&#1083;&#1103; &#1074;&#1086;&#1089;&#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103; &#1082;&#1086;&#1084;&#1084;&#1077;&#1088;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093; &#1074;&#1080;&#1076;&#1077;&#1086;-DVD
- &#1080; &#1090;. &#1087;.
+ &#1087;&#1088;&#1072;&#1074;&#1072;&#1093; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1089;&#1090;&#1088;&#1072;&#1085;. &#1042; &#1101;&#1090;&#1086; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097;&#1077; &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1099; &#1084;&#1091;&#1083;&#1100;&#1090;&#1080;&#1084;&#1077;&#1076;&#1080;&#1081;&#1085;&#1099;&#1077;
+ &#1082;&#1086;&#1076;&#1077;&#1082;&#1080;, &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1076;&#1083;&#1103; &#1074;&#1086;&#1089;&#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1093; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074; &#1079;&#1074;&#1091;&#1082;&#1086;&#1074;&#1099;&#1093; &#1080;
+ &#1074;&#1080;&#1076;&#1077;&#1086;&#1076;&#1072;&#1085;&#1085;&#1099;&#1093;; &#1087;&#1072;&#1082;&#1077;&#1090;&#1099;, &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1076;&#1083;&#1103; &#1074;&#1086;&#1089;&#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103; &#1082;&#1086;&#1084;&#1084;&#1077;&#1088;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093; &#1074;&#1080;&#1076;&#1077;&#1086;-DVD
+ &#1080; &#1090;&#1086;&#1084;&#1091; &#1087;&#1086;&#1076;&#1086;&#1073;&#1085;&#1086;&#1077;.
</p>
</li>
diff --git a/ru/minimal-install.html b/ru/minimal-install.html
index 975599d..eb41cbd 100644
--- a/ru/minimal-install.html
+++ b/ru/minimal-install.html
@@ -22,49 +22,71 @@
</div>
</div>
</div>
-
+
+
+
+
- <p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &laquo;&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;&raquo; &#1089;&#1085;&#1103;&#1090;&#1080;&#1077;&#1084; &#1086;&#1090;&#1084;&#1077;&#1090;&#1086;&#1082; &#1087;&#1086; &#1074;&#1089;&#1077;&#1084; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072;&#1084; &#1074;
- &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1089;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; <a class="xref" href="choosePackageGroups.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;">&laquo;&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;&raquo;</a>.
- </p>
+
- <p>&#1045;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1086;&#1087;&#1094;&#1080;&#1102; &laquo;&#1048;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088;
- &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;&raquo; &#1085;&#1072; &#1090;&#1086;&#1081; &#1078;&#1077; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;.
- </p>
+
- <p>&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1088;&#1077;&#1078;&#1080;&#1084; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1090;&#1077;&#1093;, &#1082;&#1090;&#1086; &#1085;&#1072;&#1084;&#1077;&#1088;&#1077;&#1085; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;
- <span class="application">Mageia</span> &#1089; &#1082;&#1072;&#1082;&#1086;&#1081; &#1090;&#1086; &#1091;&#1079;&#1082;&#1086;&#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1080;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1081; &#1094;&#1077;&#1083;&#1100;&#1102;, &#1074;
- &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1082;&#1072;&#1082; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088; &#1080;&#1083;&#1080; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1089;&#1090;&#1072;&#1085;&#1094;&#1080;&#1102; &#1091;&#1079;&#1082;&#1086;&#1075;&#1086; &#1085;&#1072;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;. &#1042;&#1072;&#1084; &#1089;&#1090;&#1086;&#1080;&#1090;
- &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1080;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1074; &#1089;&#1086;&#1095;&#1077;&#1090;&#1072;&#1085;&#1080;&#1080; &#1089; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1084; &laquo;&#1048;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088;
- &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;&raquo;, &#1091;&#1087;&#1086;&#1084;&#1103;&#1085;&#1091;&#1090;&#1099;&#1081; &#1074;&#1099;&#1096;&#1077;, &#1076;&#1083;&#1103; &#1073;&#1086;&#1083;&#1077;&#1077; &#1090;&#1086;&#1095;&#1085;&#1086;&#1081; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1089;&#1087;&#1080;&#1089;&#1082;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093;
- &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1089;&#1084;. <a class="xref" href="choosePackagesTree.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;">&laquo;&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;&raquo;</a>.
- </p>
+
- <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1074;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1101;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;, &#1085;&#1072; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1074;&#1072;&#1084;
- &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1077; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080;
- &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1102; &#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;.
+ <p>&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1088;&#1077;&#1078;&#1080;&#1084; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1090;&#1077;&#1093;, &#1082;&#1090;&#1086; &#1085;&#1072;&#1084;&#1077;&#1088;&#1077;&#1085; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; Mageia &#1089;
+ &#1082;&#1072;&#1082;&#1086;&#1081;-&#1090;&#1086; &#1091;&#1079;&#1082;&#1086;&#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1080;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1081; &#1094;&#1077;&#1083;&#1100;&#1102;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1082;&#1072;&#1082; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088; &#1080;&#1083;&#1080; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102;
+ &#1089;&#1090;&#1072;&#1085;&#1094;&#1080;&#1102; &#1091;&#1079;&#1082;&#1086;&#1075;&#1086; &#1085;&#1072;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;. &#1042;&#1072;&#1084; &#1089;&#1090;&#1086;&#1080;&#1090; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1080;&#1084; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1074;
+ &#1089;&#1086;&#1095;&#1077;&#1090;&#1072;&#1085;&#1080;&#1080; &#1089; &#1087;&#1091;&#1085;&#1082;&#1090;&#1086;&#1084; <span class="emphasis"><em>&#1048;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</em></span>, &#1076;&#1083;&#1103;
+ &#1073;&#1086;&#1083;&#1077;&#1077; &#1090;&#1086;&#1095;&#1085;&#1086;&#1081; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1089;&#1087;&#1080;&#1089;&#1082;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074; &#1089;&#1084;. <a class="xref" href="choosePackagesTree.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1080;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;">Choose Packages Tree</a>.
</p>
+
- <p>&#1055;&#1088;&#1080; &#1074;&#1099;&#1073;&#1086;&#1088;&#1077;, &#1074; &#1082;&#1072;&#1090;&#1077;&#1075;&#1086;&#1088;&#1080;&#1080; &laquo;&#1042;&#1084;&#1077;&#1089;&#1090;&#1077; &#1089; X&raquo; &#1073;&#1091;&#1076;&#1077;&#1090; &#1090;&#1072;&#1082;&#1078;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090; IceWM, &#1083;&#1077;&#1075;&#1082;&#1086;&#1074;&#1077;&#1089;&#1085;&#1072;&#1103;
- &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;.
- </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &laquo;&#1052;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072;&raquo; &#1089;&#1085;&#1103;&#1090;&#1080;&#1077;&#1084; &#1086;&#1090;&#1084;&#1077;&#1090;&#1086;&#1082; &#1087;&#1086; &#1074;&#1089;&#1077;&#1084; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072;&#1084; &#1074;
+ &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1089;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; <a class="xref" href="choosePackageGroups.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;">Choose Package Groups</a>.
+ </p>
+
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1080;&#1090;&#1100; &#1087;&#1091;&#1085;&#1082;&#1090;
+ <span class="emphasis"><em>&#1048;&#1085;&#1076;&#1080;&#1074;&#1080;&#1076;&#1091;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1099;&#1073;&#1086;&#1088; &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;</em></span> &#1085;&#1072; &#1090;&#1086;&#1081; &#1078;&#1077; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;.
+ </p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1074;&#1099;&#1073;&#1077;&#1088;&#1077;&#1090;&#1077; &#1101;&#1090;&#1086;&#1090; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;, &#1090;&#1086; &#1085;&#1072; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;
+ (&#1089;&#1084;. &#1089;&#1082;&#1088;&#1080;&#1085;&#1096;&#1086;&#1090; &#1085;&#1080;&#1078;&#1077;) &#1074;&#1072;&#1084; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1088;&#1077;&#1076;&#1083;&#1086;&#1078;&#1077;&#1085;&#1086; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1099;&#1077; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1102; &#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088; <span class="quote">&laquo;<span class="quote">X</span>&raquo;</span>.
+ </p>
+
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; <span class="emphasis"><em>&#1042;&#1084;&#1077;&#1089;&#1090;&#1077; &#1089; X</em></span>, &#1090;&#1086; &#1082; &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1077;&#1084;&#1099;&#1084;
+ &#1087;&#1072;&#1082;&#1077;&#1090;&#1072;&#1084; &#1073;&#1091;&#1076;&#1077;&#1090; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072; IceWM (&#1085;&#1077;&#1087;&#1088;&#1080;&#1093;&#1086;&#1090;&#1083;&#1080;&#1074;&#1072;&#1103; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1089;&#1088;&#1077;&#1076;&#1072;).
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
- <p>&#1041;&#1072;&#1079;&#1086;&#1074;&#1072;&#1103; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1103; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1074; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1077; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094; man &#1080; info. &#1042; &#1085;&#1077;&#1081;
- &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090;&#1089;&#1103; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; man &#1089; <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top"> &#1055;&#1088;&#1086;&#1077;&#1082;&#1090; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;
- Linux</a> &#1080; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; info &#1089; <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU coreutils
- </a>.
+ <p>&#1041;&#1072;&#1079;&#1086;&#1074;&#1072;&#1103; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;&#1094;&#1080;&#1103; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1074; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1077; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094; <a class="ulink" href="http://www.tldp.org/manpages/man.html" target="_top">man</a> &#1080; info. &#1042; &#1085;&#1077;&#1081;
+ &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090;&#1089;&#1103; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; man &#1080;&#1079; <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">&#1055;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072;
+ &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; Linux</a> &#1080; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; info &#1089; <a class="ulink" href="http://www.gnu.org/software/coreutils/manual/" target="_top">GNU
+ coreutils</a>.
</p>
-
</div>
</body>
</html>
diff --git a/ru/misc-params.html b/ru/misc-params.html
index e809eef..428284b 100644
--- a/ru/misc-params.html
+++ b/ru/misc-params.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</title>
+ <title>&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
<link rel="up" href="index.html" title="&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1072; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; DrakX">
@@ -13,26 +13,16 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="ru" class="section" title="&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;">
+ <div lang="ru" class="section" title="&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="misc-params"></a>&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;
+ <h2 class="title"><a name="misc-params"></a>&#1056;&#1077;&#1079;&#1102;&#1084;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1077;&#1082;
</h2>
</div>
</div>
</div>
-
-
-
-
-
-
-
-
-
-
@@ -49,13 +39,51 @@
+ <p><a name="misc-params-pa1"></a>DrakX &#1087;&#1099;&#1090;&#1072;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1074; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1080;
+ &#1089;&#1086; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;&#1085;&#1099;&#1084; &#1074;&#1072;&#1084;&#1080; &#1074;&#1099;&#1073;&#1086;&#1088;&#1086;&#1084; &#1080; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1077;&#1085;&#1085;&#1099;&#1084; DrakX &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084;. &#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
+ &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1099;&#1084;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;&#1080; &#1080;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086;, &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1080;&#1093;: &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086;
+ &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100;</em></span>.
+ </p>
- <p><a name="misc-params-pa1"></a>DrakX &#1087;&#1099;&#1090;&#1072;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1085;&#1086;
- &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1072;&#1084;&#1080; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1080; &#1074;&#1099;&#1103;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1095;&#1077;&#1088;&#1077;&#1079; DrakX &#1086;&#1073;&#1086;&#1088;&#1091;&#1076;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
- &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1080;&#1090;&#1100;&#1089;&#1103; &#1089; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1099;&#1084;&#1080; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;&#1080; &#1080;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086;, &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100;: &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086;
- &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1086; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="guibutton">&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100;</span>.
- </p>
+ <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1050;&#1072;&#1082; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1086;, &#1088;&#1077;&#1082;&#1086;&#1084;&#1077;&#1085;&#1076;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1084; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1090;&#1080;&#1087;&#1086;&#1074;&#1099;&#1093; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;. &#1042;&#1099;
+ &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1080;&#1095;&#1077;&#1075;&#1086; &#1085;&#1077; &#1084;&#1077;&#1085;&#1103;&#1090;&#1100;, &#1082;&#1088;&#1086;&#1084;&#1077; &#1090;&#1072;&#1082;&#1080;&#1093; &#1080;&#1089;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1081;:
+ </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1099; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1105;&#1085;&#1085;&#1099;&#1077; &#1085;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1082;&#1080; &#1074; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1093; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;;</p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1074;&#1099; &#1087;&#1086;&#1087;&#1099;&#1090;&#1072;&#1083;&#1080;&#1089;&#1100; &#1089; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1084;&#1080; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;, &#1080; &#1085;&#1080;&#1095;&#1077;&#1075;&#1086; &#1085;&#1077; &#1074;&#1099;&#1096;&#1083;&#1086;;</p>
+
+ </li>
+ <li class="listitem">
+
+ <p>&#1074; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072;&#1093; &#1089; &#1087;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1081; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1077;&#1081;, &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1105;&#1085;&#1085;&#1099;&#1093; &#1085;&#1080;&#1078;&#1077;, &#1091;&#1090;&#1074;&#1077;&#1088;&#1078;&#1076;&#1072;&#1077;&#1090;&#1089;&#1103;, &#1095;&#1090;&#1086;
+ &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1085;&#1077;&#1090;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
+ </p>
+
+ </li>
+ </ul>
+ </div>
+
+ </td>
+ </tr>
+ </table>
+ </div>
<div class="section" title="&#1055;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;">
@@ -74,68 +102,64 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-system-pa2"></a><span class="guilabel">&#1063;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089;</span></p>
+ <p><a name="misc-params-system-pa2"></a><span class="bold"><strong>&#1063;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089;</strong></span></p>
- <p><a name="misc-params-system-pa2a"></a>DrakX &#1074;&#1099;&#1073;&#1080;&#1088;&#1072;&#1077;&#1090; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089; &#1085;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1077; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1072;&#1084;&#1080; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1086;&#1075;&#1086; &#1103;&#1079;&#1099;&#1082;&#1072;. &#1055;&#1088;&#1080;
- &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089;. &#1057;&#1084;. &#1090;&#1072;&#1082;&#1078;&#1077; <a class="xref" href="configureTimezoneUTC.html" title="&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1075;&#1086; &#1087;&#1086;&#1103;&#1089;&#1072;">&laquo;&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1075;&#1086; &#1087;&#1086;&#1103;&#1089;&#1072;&raquo;</a></p>
+ <p><a name="misc-params-system-pa2a"></a>DrakX &#1074;&#1099;&#1073;&#1080;&#1088;&#1072;&#1077;&#1090; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089; &#1085;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1077; &#1091;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1072;&#1084;&#1080; &#1078;&#1077;&#1083;&#1072;&#1077;&#1084;&#1086;&#1081; &#1103;&#1079;&#1099;&#1082;&#1072;. &#1045;&#1089;&#1083;&#1080;
+ &#1085;&#1091;&#1078;&#1085;&#1086;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1087;&#1086;&#1103;&#1089;. &#1057;&#1084;. &#1090;&#1072;&#1082;&#1078;&#1077; <a class="xref" href="configureTimezoneUTC.html" title="&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1075;&#1086; &#1087;&#1086;&#1103;&#1089;&#1072;">Configure Timezone</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa3"></a><span class="guilabel">&#1057;&#1090;&#1088;&#1072;&#1085;&#1072; / &#1056;&#1077;&#1075;&#1080;&#1086;&#1085;</span></p>
+ <p><a name="misc-params-system-pa3"></a><span class="bold"><strong>&#1057;&#1090;&#1088;&#1072;&#1085;&#1072; / &#1056;&#1077;&#1075;&#1080;&#1086;&#1085;</strong></span></p>
<p><a name="misc-params-system-pa3a"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1072;&#1093;&#1086;&#1076;&#1080;&#1090;&#1077;&#1089;&#1100; &#1085;&#1077; &#1074; &#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1077;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1072;&#1103; &#1073;&#1099;&#1083;&#1072; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1072; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;,
- &#1086;&#1095;&#1077;&#1085;&#1100; &#1074;&#1072;&#1078;&#1085;&#1086; &#1080;&#1089;&#1087;&#1088;&#1072;&#1074;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;. &#1057;&#1084;. <a class="xref" href="selectCountry.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1089;&#1090;&#1088;&#1072;&#1085;&#1099; &#1080; &#1088;&#1077;&#1075;&#1080;&#1086;&#1085;&#1072;">&laquo;&#1042;&#1099;&#1073;&#1086;&#1088; &#1089;&#1090;&#1088;&#1072;&#1085;&#1099; &#1080; &#1088;&#1077;&#1075;&#1080;&#1086;&#1085;&#1072;&raquo;</a></p>
+ &#1086;&#1095;&#1077;&#1085;&#1100; &#1074;&#1072;&#1078;&#1085;&#1086; &#1080;&#1089;&#1087;&#1088;&#1072;&#1074;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;. &#1057;&#1084;. <a class="xref" href="selectCountry.html" title="&#1042;&#1099;&#1073;&#1086;&#1088; &#1089;&#1090;&#1088;&#1072;&#1085;&#1099; &#1080; &#1088;&#1077;&#1075;&#1080;&#1086;&#1085;&#1072;">Select Country</a>.
+ </p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa4"></a><span class="guilabel">&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;</span></p>
+ <p><a name="misc-params-system-pa4"></a><span class="bold"><strong>&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;</strong></span></p>
<p><a name="misc-params-system-pa4a"></a>DrakX &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080; &#1074;&#1099;&#1073;&#1080;&#1088;&#1072;&#1077;&#1090; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;.
</p>
- <p><a name="misc-params-system-pa4b"></a>&#1053;&#1077; &#1074;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077; &#1085;&#1080;&#1082;&#1072;&#1082;&#1080;&#1093; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1077;&#1089;&#1100; &#1079;&#1085;&#1072;&#1090;&#1086;&#1082;&#1086;&#1084; &#1074; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072;&#1093;
- Grub &#1080;/&#1080;&#1083;&#1080; Lilo
+ <p><a name="misc-params-system-pa4b"></a>&#1053;&#1077; &#1074;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077; &#1085;&#1080;&#1082;&#1072;&#1082;&#1080;&#1093; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1081;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1077;&#1089;&#1100; &#1079;&#1085;&#1072;&#1090;&#1086;&#1082;&#1086;&#1084; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;
+ GRUB2. &#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;, &#1086;&#1079;&#1085;&#1072;&#1082;&#1086;&#1084;&#1100;&#1090;&#1077;&#1089;&#1100; &#1089; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1084; <a class="xref" href="setupBootloader.html" title="&#1053;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;">Bootloader</a>.
</p>
- <p><a name="misc-params-system-pa4c"></a>&#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1091; <a class="xref" href="setupBootloader.html" title="&#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;">&laquo;&#1054;&#1089;&#1085;&#1086;&#1074;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1095;&#1080;&#1082;&#1072;&raquo;</a></p>
+
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa5"></a><span class="guilabel">&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1084;&#1080; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080;</span></p>
+ <p><a name="misc-params-system-pa5"></a><span class="bold"><strong>&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1103;&#1084;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;</strong></span></p>
<p><a name="misc-params-system-pa5a"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1091;&#1095;&#1077;&#1090;&#1085;&#1099;&#1077; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;. &#1059;
- &#1082;&#1072;&#1078;&#1076;&#1086;&#1075;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1074;&#1086;&#1081; &#8203;&#8203;&#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; <code class="literal">/home</code>.
+ &#1082;&#1072;&#1078;&#1076;&#1086;&#1075;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1074;&#1086;&#1081; &#8203;&#8203;&#1082;&#1072;&#1090;&#1072;&#1083;&#1086;&#1075; <code class="filename">/home</code>.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-system-pa6"></a><span class="guilabel">&#1057;&#1083;&#1091;&#1078;&#1073;&#1099;</span>:
- </p>
+ <p><a name="misc-params-system-pa6"></a><span class="bold"><strong>&#1057;&#1083;&#1091;&#1078;&#1073;&#1099;</strong></span></p>
<p><a name="misc-params-system-pa6a"></a>&#1057;&#1080;&#1089;&#1090;&#1077;&#1084;&#1085;&#1099;&#1084;&#1080; &#1089;&#1083;&#1091;&#1078;&#1073;&#1072;&#1084;&#1080; &#1085;&#1072;&#1079;&#1099;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1090;&#1077; &#1085;&#1077;&#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1102;&#1090; &#1074;
&#1092;&#1086;&#1085;&#1086;&#1074;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077; (&#1092;&#1086;&#1085;&#1086;&#1074;&#1099;&#1077; &#1089;&#1083;&#1091;&#1078;&#1073;&#1099;). &#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072; &#1074;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
- &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1086;&#1090;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1080;&#1079; &#1101;&#1090;&#1080;&#1093; &#1089;&#1083;&#1091;&#1078;&#1073;.
+ &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1074;&#1099;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1080;&#1079; &#1101;&#1090;&#1080;&#1093; &#1089;&#1083;&#1091;&#1078;&#1073;.
</p>
<p><a name="misc-params-system-pa6b"></a>&#1042;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1086;&#1089;&#1090;&#1086;&#1088;&#1086;&#1078;&#1085;&#1099;&#1084;&#1080; &#1074; &#1074;&#1099;&#1073;&#1086;&#1088;&#1077;: &#1086;&#1096;&#1080;&#1073;&#1082;&#1080; &#1084;&#1086;&#1075;&#1091;&#1090; &#1087;&#1088;&#1080;&#1074;&#1077;&#1089;&#1090;&#1080; &#1082; &#1091;&#1093;&#1091;&#1076;&#1096;&#1077;&#1085;&#1080;&#1102;
- &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;.
- </p>
-
-
- <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1091; <a class="xref" href="configureServices.html" title="&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1074;&#1072;&#1096;&#1080;&#1093; &#1089;&#1083;&#1091;&#1078;&#1073;">&laquo;&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1074;&#1072;&#1096;&#1080;&#1093; &#1089;&#1083;&#1091;&#1078;&#1073;&raquo;</a>.
- </p>
+ &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;. &#1055;&#1086;&#1076;&#1088;&#1086;&#1073;&#1085;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1081;&#1090;&#1080; &#1074; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; <a class="xref" href="configureServices.html" title="&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072; &#1074;&#1072;&#1096;&#1080;&#1093; &#1089;&#1083;&#1091;&#1078;&#1073;">Configure Services</a></p>
</li>
</ul>
@@ -160,20 +184,38 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-hardware-pa1"></a><span class="guilabel">&#1050;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1072;</span>:
- </p>
+ <p><a name="misc-params-hardware-pa1"></a><span class="bold"><strong>&#1050;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1072;</strong></span></p>
- <p><a name="misc-params-hardware-pa1a"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1088;&#1072;&#1089;&#1082;&#1083;&#1072;&#1076;&#1082;&#1091; &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099;,
- &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1073;&#1091;&#1076;&#1091;&#1090; &#1079;&#1072;&#1074;&#1080;&#1089;&#1077;&#1090;&#1100; &#1086;&#1090; &#1084;&#1077;&#1089;&#1090;&#1072; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;, &#1103;&#1079;&#1099;&#1082;&#1072; &#1080; &#1090;&#1080;&#1087;&#1072;
- &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099;.
+ <p><a name="misc-params-hardware-pa1a"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1080;&#1083;&#1080; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1088;&#1072;&#1089;&#1082;&#1083;&#1072;&#1076;&#1082;&#1091;
+ &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099;, &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1073;&#1091;&#1076;&#1091;&#1090; &#1079;&#1072;&#1074;&#1080;&#1089;&#1077;&#1090;&#1100; &#1086;&#1090; &#1084;&#1077;&#1089;&#1090;&#1072; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;,
+ &#1103;&#1079;&#1099;&#1082;&#1072; &#1080; &#1090;&#1080;&#1087;&#1072; &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099;.
</p>
+
+
+ <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1079;&#1072;&#1084;&#1077;&#1090;&#1080;&#1083;&#1080;, &#1095;&#1090;&#1086; &#1088;&#1072;&#1089;&#1082;&#1083;&#1072;&#1076;&#1082;&#1072; &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1086;&#1096;&#1080;&#1073;&#1086;&#1095;&#1085;&#1086;&#1081;, &#1080; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077;
+ &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1077;&#1105;, &#1085;&#1077; &#1079;&#1072;&#1073;&#1091;&#1076;&#1100;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1089; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1080;&#1077;&#1084; &#1088;&#1072;&#1089;&#1082;&#1083;&#1072;&#1076;&#1082;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100;&#1089;&#1103; &#1080;
+ &#1090;&#1077;&#1082;&#1089;&#1090; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1087;&#1072;&#1088;&#1086;&#1083;&#1103;.
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa2"></a><span class="guilabel">&#1052;&#1099;&#1096;&#1100;</span>:
- </p>
+ <p><a name="misc-params-hardware-pa2"></a><span class="bold"><strong>&#1052;&#1099;&#1096;&#1100;</strong></span></p>
<p><a name="misc-params-hardware-pa2a"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1085;&#1099;&#1077; &#1091;&#1089;&#1090;&#1088;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;, &#1087;&#1083;&#1072;&#1085;&#1096;&#1077;&#1090;&#1099;,
@@ -183,31 +225,34 @@
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa3"></a><span class="guilabel">&#1047;&#1074;&#1091;&#1082;&#1086;&#1074;&#1072;&#1103; &#1087;&#1083;&#1072;&#1090;&#1072;</span>:
+ <p><a name="misc-params-hardware-pa3"></a><span class="bold"><strong>&#1047;&#1074;&#1091;&#1082;&#1086;&#1074;&#1072;&#1103; &#1082;&#1072;&#1088;&#1090;&#1072;</strong></span></p>
+
+
+ <p><a name="misc-params-hardware-pa3a"></a>&#1048;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1090;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1084; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1086;&#1084;, &#1077;&#1089;&#1083;&#1080; &#1090;&#1072;&#1082;&#1086;&#1081; &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1072;&#1081;&#1076;&#1077;&#1085;.
</p>
-
- <p><a name="misc-params-hardware-pa3a"></a>&#1048;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;, &#1077;&#1089;&#1083;&#1080; &#1086;&#1085; &#1074;&#1089;&#1077;&#1075;&#1086; &#1086;&#1076;&#1080;&#1085; &#1080; &#1087;&#1088;&#1080; &#1101;&#1090;&#1086;&#1084;
- &#1076;&#1077;&#1092;&#1086;&#1083;&#1090;&#1085;&#1099;&#1081;. &#1054;&#1087;&#1094;&#1080;&#1103; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072; &#1076;&#1088;&#1091;&#1075;&#1086;&#1075;&#1086; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1072; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1072; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1082;&#1086;&#1075;&#1076;&#1072; &#1091; &#1074;&#1072;&#1089;
- &#1073;&#1086;&#1083;&#1077;&#1077; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1072; &#1076;&#1083;&#1103; &#1074;&#1072;&#1096;&#1077;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;, &#1085;&#1086; &#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1080;&#1079; &#1085;&#1080;&#1093; &#1085;&#1077; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103;
- &#1076;&#1077;&#1092;&#1086;&#1083;&#1090;&#1085;&#1099;&#1084;.
+
+ <p>&#1045;&#1089;&#1083;&#1080; &#1076;&#1083;&#1103; &#1074;&#1072;&#1096;&#1077;&#1081; &#1079;&#1074;&#1091;&#1082;&#1086;&#1074;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1085;&#1077;&#1090; &#1090;&#1080;&#1087;&#1080;&#1095;&#1085;&#1086;&#1075;&#1086; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1072;, &#1074;&#1077;&#1088;&#1086;&#1103;&#1090;&#1085;&#1086;, &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1102;&#1090;
+ &#1072;&#1083;&#1100;&#1090;&#1077;&#1088;&#1085;&#1072;&#1090;&#1080;&#1074;&#1085;&#1099;&#1077; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1099;, &#1086;&#1076;&#1085;&#1080;&#1084; &#1080;&#1079; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103;. &#1045;&#1089;&#1083;&#1080;
+ &#1101;&#1090;&#1086; &#1080;&#1084;&#1077;&#1085;&#1085;&#1086; &#1090;&#1072;&#1082;, &#1085;&#1086; &#1074;&#1099; &#1089;&#1095;&#1080;&#1090;&#1072;&#1077;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1090;&#1086;&#1088; &#1089;&#1086;&#1074;&#1077;&#1088;&#1096;&#1080;&#1083; &#1085;&#1077;&#1086;&#1087;&#1090;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081;
+ &#1074;&#1099;&#1073;&#1086;&#1088;, &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; <span class="emphasis"><em>&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;</em></span> &#1080; &#1091;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100;
+ &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-hardware-pa4"></a><span class="guilabel">&#1043;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;</span>:
- </p>
+ <p><a name="misc-params-hardware-pa4"></a><span class="bold"><strong>&#1043;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;</strong></span></p>
<p><a name="misc-params-hardware-pa4a"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1088;&#1072;&#1073;&#1086;&#1090;&#1099; &#1074;&#1072;&#1096;&#1080;&#1093;
- &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093; &#1082;&#1072;&#1088;&#1090; &#1080; &#1076;&#1080;&#1089;&#1087;&#1083;&#1077;&#1077;&#1074;.
+ &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093; &#1082;&#1072;&#1088;&#1090; &#1080; &#1076;&#1080;&#1089;&#1087;&#1083;&#1077;&#1077;&#1074;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;, &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1084;
+ <a class="xref" href="configureX_chooser.html" title="&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1080; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;">&laquo;&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1080; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;&raquo;</a>.
</p>
- <p><a name="misc-params-hardware-pa4b"></a>&#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1091; <a class="xref" href="configureX_chooser.html" title="&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1080; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;">&laquo;&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099; &#1080; &#1084;&#1086;&#1085;&#1080;&#1090;&#1086;&#1088;&#1072;&raquo;</a>.
- </p>
+
</li>
</ul>
</div>
@@ -233,15 +278,13 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-network-pa1"></a><span class="guilabel">&#1057;&#1077;&#1090;&#1100;</span>:
- </p>
+ <p><a name="misc-params-network-pa1"></a><span class="bold"><strong>&#1057;&#1077;&#1090;&#1100;</strong></span></p>
- <p><a name="misc-params-network-pa2"></a>&#1042; &#1101;&#1090;&#1086;&#1084; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1077; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1089;&#1077;&#1090;&#1100;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1077;
- &#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1077; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1072; &#1076;&#1083;&#1103; &#1089;&#1077;&#1090;&#1077;&#1074;&#1086;&#1081; &#1082;&#1072;&#1088;&#1090;&#1099;, &#1090;&#1086; &#1083;&#1091;&#1095;&#1096;&#1077; &#1089;&#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1091; &#1087;&#1086;&#1089;&#1083;&#1077;
- &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099; &#1074; <span class="application">&#1062;&#1077;&#1085;&#1090;&#1088;&#1077; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; Mageia</span>,
- &#1087;&#1086;&#1089;&#1083;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1103; &#1088;&#1077;&#1087;&#1086;&#1079;&#1080;&#1090;&#1086;&#1088;&#1080;&#1077;&#1074; &#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1093; (nonfree) &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1089;&#1076;&#1077;&#1083;&#1072;&#1083;&#1080;
- &#1101;&#1090;&#1086; &#1085;&#1072; &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1077;&#1084; &#1096;&#1072;&#1075;&#1077;.
+ <p><a name="misc-params-network-pa2"></a>&#1069;&#1090;&#1086;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090; &#1074;&#1072;&#1084; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1089;&#1077;&#1090;&#1100;. &#1042;&#1087;&#1088;&#1086;&#1095;&#1077;&#1084;, &#1077;&#1089;&#1083;&#1080; &#1074;&#1099;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1077;&#1089;&#1100; &#1082;&#1072;&#1088;&#1090;&#1072;&#1084;&#1080;, &#1076;&#1083;&#1103; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1090;&#1088;&#1077;&#1073;&#1091;&#1102;&#1090;&#1089;&#1103; &#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1077; &#1076;&#1088;&#1072;&#1081;&#1074;&#1077;&#1088;&#1099;, &#1083;&#1091;&#1095;&#1096;&#1077;
+ &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1087;&#1086;&#1089;&#1083;&#1077; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1062;&#1077;&#1085;&#1090;&#1088;&#1072; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; Mageia,
+ &#1087;&#1086;&#1089;&#1083;&#1077; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1103; &#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080;&#1097; &#1079;&#1072;&#1082;&#1088;&#1099;&#1090;&#1099;&#1093; <span class="emphasis"><em>(Nonfree)</em></span> &#1087;&#1072;&#1082;&#1077;&#1090;&#1086;&#1074;.
</p>
@@ -266,8 +309,7 @@
</li>
<li class="listitem">
- <p><a name="misc-params-network-pa4"></a><span class="guilabel">&#1055;&#1088;&#1086;&#1082;&#1089;&#1080;</span>:
- </p>
+ <p><a name="misc-params-network-pa4"></a><span class="bold"><strong>&#1055;&#1088;&#1086;&#1082;&#1089;&#1080;</strong></span></p>
<p><a name="misc-params-network-pa4a"></a>&#1055;&#1088;&#1086;&#1082;&#1089;&#1080;-&#1089;&#1077;&#1088;&#1074;&#1077;&#1088; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1086;&#1084;&#1077;&#1078;&#1091;&#1090;&#1086;&#1095;&#1085;&#1099;&#1084; &#1079;&#1074;&#1077;&#1085;&#1086;&#1084; &#1084;&#1077;&#1078;&#1076;&#1091; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1086;&#1084; &#1080;
@@ -303,36 +345,36 @@
<ul class="itemizedlist">
<li class="listitem">
- <p><a name="misc-params-security-pa1"></a><span class="guilabel">&#1059;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1080;</span>:
- </p>
+ <p><a name="misc-params-security-pa1"></a><span class="bold"><strong>&#1059;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1080;</strong></span></p>
<p><a name="misc-params-security-pa1a"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1072; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1091;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1079;&#1072;&#1097;&#1080;&#1090;&#1099; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086;
&#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;. &#1042; &#1086;&#1089;&#1085;&#1086;&#1074;&#1085;&#1086;&#1084;, &#1076;&#1077;&#1092;&#1086;&#1083;&#1090;&#1085;&#1099;&#1081; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090; (&#1057;&#1090;&#1072;&#1085;&#1076;&#1072;&#1088;&#1090;&#1085;&#1099;&#1081;) &#1087;&#1088;&#1077;&#1076;&#1086;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090; &#1074;&#1072;&#1096;&#1077;&#1084;&#1091;
- &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1091; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1091;&#1102; &#1079;&#1072;&#1097;&#1080;&#1090;&#1091;.
- </p>
-
-
- <p><a name="misc-params-security-pa1b"></a>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1090;&#1086;&#1090; &#1080;&#1079; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1074;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1083;&#1091;&#1095;&#1096;&#1077; &#1074;&#1089;&#1077;&#1075;&#1086; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1074;&#1072;&#1096;&#1077;&#1084;&#1091; &#1086;&#1073;&#1088;&#1072;&#1079;&#1091;
- &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+ &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1091; &#1076;&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1095;&#1085;&#1091;&#1102; &#1079;&#1072;&#1097;&#1080;&#1090;&#1091;. &#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1089;&#1095;&#1080;&#1090;&#1072;&#1077;&#1090;&#1077; &#1083;&#1091;&#1095;&#1096;&#1080;&#1084;.
</p>
</li>
<li class="listitem">
- <p><a name="misc-params-security-pa2"></a><span class="guilabel">&#1060;&#1072;&#1081;&#1077;&#1088;&#1074;&#1086;&#1083;</span>:
+ <p><a name="misc-params-security-pa2"></a><span class="bold"><strong>&#1060;&#1072;&#1081;&#1077;&#1088;&#1074;&#1086;&#1083;</strong></span></p>
+
+
+ <p><a name="misc-params-security-pa2b"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1073;&#1088;&#1072;&#1085;&#1076;&#1084;&#1072;&#1091;&#1101;&#1088;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1103;&#1090;&#1100; &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1085;&#1072; &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1080;&#1077; &#1089;&#1077;&#1090;&#1080; &#1089;
+ &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1086;&#1084;. &#1041;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1099;&#1077; &#1090;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1087;&#1088;&#1077;&#1076;&#1091;&#1089;&#1084;&#1072;&#1090;&#1088;&#1080;&#1074;&#1072;&#1102;&#1090; &#1085;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100;
+ &#1074;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1093; &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1080;&#1081;. &#1069;&#1090;&#1086; &#1085;&#1077; &#1087;&#1086;&#1084;&#1077;&#1096;&#1072;&#1077;&#1090; &#1074;&#1072;&#1084; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1080;&#1089;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1077; &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1080;&#1103; &#1080;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1086;&#1084; &#1074; &#1086;&#1073;&#1099;&#1095;&#1085;&#1086;&#1084; &#1088;&#1077;&#1078;&#1080;&#1084;&#1077;.
</p>
- <p><a name="misc-params-security-pa2a"></a>&#1060;&#1072;&#1081;&#1077;&#1088;&#1074;&#1086;&#1083; &#1080;&#1083;&#1080; &#1089;&#1077;&#1090;&#1077;&#1074;&#1086;&#1081; &#1101;&#1082;&#1088;&#1072;&#1085; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1073;&#1072;&#1088;&#1100;&#1077;&#1088;&#1086;&#1084;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1079;&#1072;&#1097;&#1080;&#1097;&#1072;&#1077;&#1090; &#1074;&#1072;&#1078;&#1085;&#1099;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;
- &#1086;&#1090; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1082; &#1085;&#1080;&#1084; &#1084;&#1086;&#1096;&#1077;&#1085;&#1085;&#1080;&#1082;&#1086;&#1074; &#1080;&#1079; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1072;, &#1087;&#1099;&#1090;&#1072;&#1102;&#1097;&#1080;&#1093;&#1089;&#1103; &#1087;&#1086;&#1093;&#1080;&#1090;&#1080;&#1090;&#1100; &#1080;
- &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; &#1101;&#1090;&#1080;&#1084;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1084;&#1080;.
+ <p>&#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072;, &#1091;&#1095;&#1090;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1074; &#1080;&#1085;&#1090;&#1077;&#1088;&#1085;&#1077;&#1090;&#1077; &#1084;&#1085;&#1086;&#1075;&#1086; &#1088;&#1080;&#1089;&#1082;&#1086;&#1074;, &#1074;&#1072;&#1096; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088; &#1085;&#1077;&#1087;&#1088;&#1077;&#1088;&#1099;&#1074;&#1085;&#1086;
+ &#1079;&#1086;&#1085;&#1076;&#1080;&#1088;&#1091;&#1077;&#1090;&#1089;&#1103; &#1080; &#1072;&#1090;&#1072;&#1082;&#1091;&#1077;&#1090;&#1089;&#1103; &#1076;&#1088;&#1091;&#1075;&#1080;&#1084;&#1080; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;&#1084;&#1080;. &#1044;&#1072;&#1078;&#1077; &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;
+ <span class="quote">&laquo;<span class="quote">&laquo;&#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1077;&raquo;</span>&raquo;</span> &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1080;&#1077;, &#1074; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1089;&#1090;&#1080; ICMP (&#1076;&#1083;&#1103; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1080;
+ &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1089;&#1074;&#1103;&#1079;&#1080;), &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1086; &#1079;&#1083;&#1086;&#1091;&#1084;&#1099;&#1096;&#1083;&#1077;&#1085;&#1085;&#1080;&#1082;&#1072;&#1084;&#1080; &#1082;&#1072;&#1082; &#1082;&#1072;&#1085;&#1072;&#1083; &#1076;&#1083;&#1103;
+ &#1087;&#1086;&#1093;&#1080;&#1097;&#1077;&#1085;&#1080;&#1103; &#1074;&#1072;&#1096;&#1080;&#1093; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;.
</p>
- <p><a name="misc-params-security-pa2b"></a>&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1089;&#1083;&#1091;&#1078;&#1073;&#1099;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087; &#1082; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1077; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1073;&#1099;&#1090;&#1100; &#1088;&#1072;&#1079;&#1088;&#1077;&#1096;&#1077;&#1085;. &#1042;&#1099;&#1073;&#1086;&#1088;
- &#1089;&#1083;&#1091;&#1078;&#1073; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1090; &#1086;&#1090; &#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1072;, &#1085;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1077;&#1090; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1072;&#1103;
- &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;.
+ <p>&#1063;&#1090;&#1086;&#1073;&#1099; &#1091;&#1079;&#1085;&#1072;&#1090;&#1100; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1091; <a class="xref" href="">???</a>.
</p>
@@ -345,8 +387,9 @@
<tr>
<td align="left" valign="top">
- <p><a name="misc-params-security-pa2c"></a>&#1055;&#1086;&#1084;&#1085;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1073;&#1077;&#1079; &#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1077;&#1085;&#1080;&#1081; (&#1074;&#1099;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1077; &#1092;&#1072;&#1081;&#1077;&#1088;&#1074;&#1086;&#1083;&#1072;) &#1084;&#1086;&#1078;&#1077;&#1090;
- &#1079;&#1085;&#1072;&#1095;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1089;&#1085;&#1080;&#1079;&#1080;&#1090;&#1100; &#1091;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1079;&#1072;&#1097;&#1080;&#1090;&#1099; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+ <p><a name="misc-params-security-pa2c"></a>&#1055;&#1086;&#1084;&#1085;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; <span class="emphasis"><em>&#1073;&#1077;&#1079; &#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1077;&#1085;&#1080;&#1081;</em></span>
+ (&#1074;&#1099;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1077; &#1092;&#1072;&#1081;&#1077;&#1088;&#1074;&#1086;&#1083;&#1072;) &#1084;&#1086;&#1078;&#1077;&#1090; &#1079;&#1085;&#1072;&#1095;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1089;&#1085;&#1080;&#1079;&#1080;&#1090;&#1100; &#1091;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1079;&#1072;&#1097;&#1080;&#1090;&#1099; &#1074;&#1072;&#1096;&#1077;&#1081;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
</p>
</td>
diff --git a/ru/securityLevel.html b/ru/securityLevel.html
index de92c52..f72d9e4 100644
--- a/ru/securityLevel.html
+++ b/ru/securityLevel.html
@@ -22,29 +22,72 @@
</div>
</div>
</div>
+
+
-
+
-
-
+
+
+
+ <p><span class="bold"><strong>&#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072;, &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1091;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1080;</strong></span></p>
-
- <p><a name="securityLevel-pa1"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099; &#1074;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1091;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100; &#1079;&#1072;&#1097;&#1080;&#1090;&#1099; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;.
+
+ <p><a name="securityLevel-pa1"></a><span class="emphasis"><em>&#1057;&#1090;&#1072;&#1085;&#1076;&#1072;&#1088;&#1090;&#1085;&#1099;&#1081; (Standard)</em></span> - &#1090;&#1080;&#1087;&#1080;&#1095;&#1085;&#1099;&#1081; &#1091;&#1088;&#1086;&#1074;&#1077;&#1085;&#1100;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1084;&#1099;
+ &#1088;&#1077;&#1082;&#1086;&#1084;&#1077;&#1085;&#1076;&#1091;&#1077;&#1084; &#1088;&#1103;&#1076;&#1086;&#1074;&#1086;&#1084;&#1091; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1102;.
</p>
-
- <p><a name="securityLevel-pa2"></a>&#1045;&#1089;&#1083;&#1080; &#1074;&#1099; &#1085;&#1077; &#1091;&#1074;&#1077;&#1088;&#1077;&#1085;&#1099; &#1074; &#1085;&#1091;&#1078;&#1085;&#1099;&#1093; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;&#1093;, &#1083;&#1091;&#1095;&#1096;&#1077; &#1085;&#1077; &#1084;&#1077;&#1085;&#1103;&#1081;&#1090;&#1077; &#1080;&#1093;
- &#1076;&#1077;&#1092;&#1086;&#1083;&#1090;&#1085;&#1099;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;.
+
+ <p>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1072; <span class="emphasis"><em>Secure (&#1041;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1099;&#1081;)</em></span> &#1084;&#1086;&#1078;&#1085;&#1086; &#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100;
+ &#1086;&#1095;&#1077;&#1085;&#1100; &#1079;&#1072;&#1097;&#1080;&#1097;&#1105;&#1085;&#1085;&#1091;&#1102; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1091;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1076;&#1083;&#1103; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1077;&#1105; &#1074; &#1082;&#1072;&#1095;&#1077;&#1089;&#1090;&#1074;&#1077;
+ &#1086;&#1073;&#1097;&#1077;&#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1086;&#1075;&#1086; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072;.
</p>
-
- <p><a name="securityLevel-pa3"></a>&#1055;&#1086;&#1089;&#1083;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1074;&#1099; &#1074;&#1089;&#1077;&#1075;&#1076;&#1072; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1097;&#1080;&#1090;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1084;&#1086;&#1076;&#1091;&#1083;&#1103;
- <span class="guilabel">&#1041;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1100;</span> &#1074; &#1062;&#1077;&#1085;&#1090;&#1088;&#1077; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; Mageia.
+
+ <p><span class="bold"><strong>&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1080;</strong></span></p>
+
+
+ <p><a name="securityLevel-pa2"></a>&#1057; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1072;&#1076;&#1088;&#1077;&#1089; &#1101;&#1083;&#1077;&#1082;&#1090;&#1088;&#1086;&#1085;&#1085;&#1086;&#1081; &#1087;&#1086;&#1095;&#1090;&#1099;, &#1085;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1089;&#1099;&#1083;&#1072;&#1090;&#1100; <span class="emphasis"><em>&#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1103; &#1086; &#1073;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1080;
+ &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;</em></span>, &#1077;&#1089;&#1083;&#1080; &#1086;&#1073;&#1085;&#1072;&#1088;&#1091;&#1078;&#1080;&#1090; &#1087;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099;, &#1090;&#1088;&#1077;&#1073;&#1091;&#1102;&#1097;&#1080;&#1077; &#1091;&#1074;&#1077;&#1076;&#1086;&#1084;&#1083;&#1077;&#1085;&#1080;&#1103;
+ &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1072;.
+ </p>
+
+
+ <p>&#1053;&#1077;&#1087;&#1083;&#1086;&#1093;&#1080;&#1084;, &#1087;&#1088;&#1086;&#1089;&#1090;&#1099;&#1084; &#1074; &#1088;&#1077;&#1072;&#1083;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080; &#1074;&#1072;&#1088;&#1080;&#1072;&#1085;&#1090;&#1086;&#1084; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1074;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080;
+ &lt;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&gt;@localhost, &#1075;&#1076;&#1077; &lt;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&gt; - &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1091;&#1095;&#1105;&#1090;&#1085;&#1086;&#1081; &#1079;&#1072;&#1087;&#1080;&#1089;&#1080;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1073;&#1091;&#1076;&#1077;&#1090; &#1087;&#1086;&#1083;&#1091;&#1095;&#1072;&#1090;&#1100; &#1101;&#1090;&#1080; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1103;.
</p>
+
+ <div class="note" title="&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <table border="0" summary="Note">
+ <tr>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[&#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;]" src="note.png"></td>
+ <th align="left"></th>
+ </tr>
+ <tr>
+ <td align="left" valign="top">
+
+ <p>&#1057;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072; &#1087;&#1086;&#1089;&#1099;&#1083;&#1072;&#1077;&#1090; &#1090;&#1072;&#1082;&#1080;&#1077; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1103; &#1082;&#1072;&#1082; <span class="bold"><strong>&#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1077; Unix
+ Mailspool</strong></span>, &#1072; &#1085;&#1077; &laquo;&#1086;&#1073;&#1099;&#1095;&#1085;&#1099;&#1077;&raquo; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1103; SMTP. &#1055;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091; &#1079;&#1072;&#1087;&#1080;&#1089;&#1100;
+ &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;&#1084; &#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1084; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1076;&#1083;&#1103; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1103; &#1090;&#1072;&#1082;&#1080;&#1093;
+ &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1081;!
+ </p>
+
+ </td>
+ </tr>
+ </table>
+ </div>
+
+
+ <p><a name="securityLevel-pa3"></a>&#1055;&#1086;&#1089;&#1083;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080; &#1074;&#1099; &#1074;&#1089;&#1077;&#1075;&#1076;&#1072; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1079;&#1072;&#1097;&#1080;&#1090;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1084;&#1086;&#1076;&#1091;&#1083;&#1103;
+ <span class="emphasis"><em>&#1041;&#1077;&#1079;&#1086;&#1087;&#1072;&#1089;&#1085;&#1086;&#1089;&#1090;&#1100;</em></span> &#1062;&#1077;&#1085;&#1090;&#1088;&#1072; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; Mageia.
+ </p>
+
</div>
</body>
</html>