summaryrefslogtreecommitdiffstats
path: root/perl-install/do_resize_fat
blob: 0668ecb1908df2d916481e9f9c541716e4eef4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

use diagnostics;
use strict;

use lib qw(.);
use common;
use resize_fat::main;

local *log::l = sub { print join(' ', @_), "\n" };

@ARGV = qw(/tmp/eee +0);

@ARGV == 2 or die "usage: fatresize <device> <size>\n  <size> = 100 means `resize to 100Mb'\n  <size> = +10 means `keep 10Mb of free space'\n";

my $fs = new resize_fat::main(common::basename($ARGV[0]), $ARGV[0]);
resize_fat::main::resize($fs, $ARGV[1]);

='#n47'>47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
package help; # $Id$

use common qw(:common);

%steps = (
empty => '',

selectLanguage =>
 __("Please choose your preferred language for installation and system usage."),

license =>
 __("You need to accept the terms of the above license to continue installation.


Please click on \"Accept\" if you agree with its terms.


Please click on \"Refuse\" if you disagree with its terms. Installation will end without modifying your current
configuration."),

selectKeyboard =>
 __("Choose the layout corresponding to your keyboard from the list above"),

selectLangs => 
 __("If you wish other languages (than the one you choose at
beginning of installation) will be available after installation, please chose
them in list above. If you want select all, you just need to select \"All\"."),

selectInstallClass =>
 __("Please choose \"Install\" if there are no previous version of Linux-Mandrake
installed or if you wish to use several operating systems.


Please choose \"Update\" if you wish to update an already installed version of Linux-Mandrake.


Depend of your knowledge in GNU/Linux, you can choose one of the following levels to install or update your
Linux-Mandrake operating system:

	* Recommended: if you have never installed a GNU/Linux operating system choose this. Installation will be
	  be very easy and you will be asked only on few questions.


	* Customized: if you are familiar enough with GNU/Linux, you may choose the primary usage (workstation, server,
	  development) of your system. You will need to answer to more questions than in \"Recommended\" installation
	  class, so you need to know how GNU/Linux works to choose this installation class.


	* Expert: if you have a good knowledge in GNU/Linux, you can choose this installation class. As in \"Customized\"
	  installation class, you will be able to choose the primary usage (workstation, server, development). Be very
	  careful before choose this installation class. You will be able to perform a higly customized installation.
	  Answer to some questions can be very difficult if you haven't a good knowledge in GNU/Linux. So, don't choose
	  this installation class unless you know what you are doing."),

selectInstallClassCorpo =>
 __("Select:

  - Customized: If you are familiar enough with GNU/Linux, you may then choose
    the primary usage for your machine. See below for details.


  - Expert: This supposes that you are fluent with GNU/Linux and want to
    perform a highly customized installation. As for a \"Customized\"
    installation class, you will be able to select the usage for your system.
    But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE DOING!"),

selectInstallClass2 =>
 __("You must now define your machine usage. Choices are:

	* Workstation: this the ideal choice if you intend to use your machine primarily for everyday use, at office or
	  at home.


	* Development: if you intend to use your machine primarily for software development, it is the good choice. You
	  will then have a complete collection of software installed in order to compile, debug and format source code,
	  or create software packages.


	* Server: if you intend to use this machine as a server, it is the good choice. Either a file server (NFS or
	  SMB), a print server (Unix style or Microsoft Windows style), an authentication server (NIS), a database
	  server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) to be installed."),

setupSCSI => 
 __("DrakX will attempt to look for PCI SCSI adapter(s). If DrakX
finds an SCSI adapter and knows which driver to use, it will be automatically
installed.


If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that
DrakX doesn't recognize, you will be asked if a SCSI adapter is present in your
system. If there is no adapter present, you can click on \"No\". If you click on
\"Yes\", a list of drivers will be presented from which you can select your
specific adapter.


If you have to manually specify your adapter, DrakX will ask if you want to
specify options for it. You should allow DrakX to probe the hardware for the
options. This usually works well.


If not, you will need to provide options to the driver. Please review the User
Guide (chapter 3, section \"Collective informations on your hardware) for hints
on retrieving this information from hardware documentation, from the
manufacturer's Web site (if you have Internet access) or from Microsoft Windows
(if you have it on your system)."),

doPartitionDisks => 
 __("At this point, you need to choose where to install your
Linux-Mandrake operating system on your hard drive. If it is empty or if an
existing operating system uses all the space available on it, you need to
partition it. Basically, partitioning a hard drive consists of logically
dividing it to create space to install your new Linux-Mandrake system.


Because the effects of the partitioning process are usually irreversible,
partitioning can be intimidating and stressful if you are an inexperienced user.
This wizard simplifies this process. Before beginning, please consult the manual
and take your time.


You need at least two partitions. One is for the operating system itself and the
other is for the virtual memory (also called Swap).


If partitions have been already defined (from a previous installation or from
another partitioning tool), you just need choose those to use to install your
Linux system.


If partitions haven't been already defined, you need to create them. 
To do that, use the wizard available above. Depending of your hard drive
configuration, several solutions can be available:

	* Use existing partition: the wizard has detected one or more existing Linux partitions on your hard drive. If
	  you want to keep them, choose this option. 


	* Erase entire disk: if you want delete all data and all partitions present on your hard drive and replace them by
	  your new Linux-Mandrake system, you can choose this option. Be careful with this solution, you will not be
	  able to revert your choice after confirmation.


	* Use the free space on the Windows partition: if Microsoft Windows is installed on your hard drive and takes
	  all space available on it, you have to create free space for Linux data. To do that you can delete your
	  Microsoft Windows partition and data (see \"Erase entire disk\" or \"Expert mode\" solutions) or resize your
	  Microsoft Windows partition. Resizing can be performed without loss of any data. This solution is
	  recommended if you want use both Linux-Mandrake and Microsoft Windows on same computer.


	  Before choosing this solution, please understand that the size of your Microsoft
	  Windows partition will be smaller than at present time. It means that you will have less free space under
	  Microsoft Windows to store your data or install new software.


	* Expert mode: if you want to partition manually your hard drive, you can choose this option. Be careful before
	  choosing this solution. It is powerful but it is very dangerous. You can lose all your data very easily. So,
	  don't choose this solution unless you know what you are doing."),

partition_with_diskdrake => 
 __("At this point, you need to choose what
partition(s) to use to install your new Linux-Mandrake system. If partitions
have been already defined (from a previous installation of GNU/Linux or from
another partitioning tool), you can use existing partitions. In other cases,
hard drive partitions must be defined.


To create partitions, you must first select a hard drive. You can select the
disk for partitioning by clicking on \"hda\" for the first IDE drive, \"hdb\" for
the second or \"sda\" for the first SCSI drive and so on.


To partition the selected hard drive, you can use these options:

   * Clear all: this option deletes all partitions available on the selected hard drive.


   * Auto allocate: this option allows you to automatically create Ext2 and swap partitions in free space of your
     hard drive.


   * Rescue partition table: if your partition table is damaged, you can try to recover it using this option. Please
     be careful and remember that it can fail.


   * Undo: you can use this option to cancel your changes.


   * Reload: you can use this option if you wish to undo all changes and load your initial partitions table


   * Wizard: If you wish to use a wizard to partition your hard drive, you can use this option. It is recommended if
     you do not have a good knowledge in partitioning.


   * Restore from floppy: if you have saved your partition table on a floppy during a previous installation, you can
     recover it using this option.


   * Save on floppy: if you wish to save your partition table on a floppy to be able to recover it, you can use this
     option. It is strongly recommended to use this option


   * Done: when you have finished partitioning your hard drive, use this option to save your changes.


For information, you can reach any option using the keyboard: navigate trough the partitions using Tab and Up/Down arrows.


When a partition is selected, you can use:

           * Ctrl-c to create a new partition (when a empty partition is selected)

           * Ctrl-d to delete a partition

           * Ctrl-m to set the mount point
           

           
If you are installing on a PPC Machine, you will want to create a small HFS 'bootstrap' partition of at least 1MB for use
by the yaboot bootloader. If you opt to make the partition a bit larger, say 50MB, you may find it a useful place to store 
a spare kernel and ramdisk image for emergency boot situations."),

ask_mntpoint_s => 
 __("Above are listed the existing Linux partitions detected on
your hard drive. You can keep choices make by the wizard, they are good for a
common usage. If you change these choices, you must at least define a root
partition (\"/\"). Don't choose a too little partition or you will not be able
to install enough software. If you want store your data on a separate partition,
you need also to choose a \"/home\" (only possible if you have more than one
Linux partition available).


For information, each partition is listed as follows: \"Name\", \"Capacity\".


\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",
\"partition number\" (for example, \"hda1\").


\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and \"sd\"
if it is an SCSI hard drive.


\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE hard drives:

   * \"a\" means \"master hard drive on the primary IDE controller\",

   * \"b\" means \"slave hard drive on the primary IDE controller\",

   * \"c\" means \"master hard drive on the secondary IDE controller\",

   * \"d\" means \"slave hard drive on the secondary IDE controller\".


With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means \"secondary hard drive\", etc..."),

takeOverHdChoose => 
 __("Choose the hard drive you want to erase to install your
new Linux-Mandrake partition. Be careful, all data present on it will be lost
and will not be recoverable."),

takeOverHdConfirm => 
 __("Click on \"OK\" if you want to delete all data and
partitions present on this hard drive. Be careful, after clicking on \"OK\", you
will not be able to recover any data and partitions present on this hard drive,
including any Windows data.


Click on \"Cancel\" to cancel this operation without losing any data and
partitions present on this hard drive."),

resizeFATChoose => 
 __("More than one Microsoft Windows partition have been
detected on your hard drive. Please choose the one you want resize to install
your new Linux-Mandrake operating system.


For information, each partition is listed as follow; \"Linux name\", \"Windows
name\" \"Capacity\".

\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive number\",
\"partition number\" (for example, \"hda1\").


\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and \"sd\"
if it is an SCSI hard drive.


\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With IDE hard drives:

   * \"a\" means \"master hard drive on the primary IDE controller\",

   * \"b\" means \"slave hard drive on the primary IDE controller\",

   * \"c\" means \"master hard drive on the secondary IDE controller\",

   * \"d\" means \"slave hard drive on the secondary IDE controller\".

With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means \"secondary hard drive\", etc.


\"Windows name\" is the letter of your hard drive under Windows (the first disk
or partition is called \"C:\")."),

resizeFATWait => 
 __("Please be patient. This operation can take several minutes."),

formatPartitions => 
 __("Any partitions that have been newly defined must be
formatted for use (formatting meaning creating a filesystem).


At this time, you may wish to reformat some already existing partitions to erase
the data they contain. If you wish do that, please also select the partitions
you want to format.


Please note that it is not necessary to reformat all pre-existing partitions.
You must reformat the partitions containing the operating system (such as \"/\",
\"/usr\" or \"/var\") but do you no have to reformat partitions containing data
that you wish to keep (typically /home).


Please be careful selecting partitions, after formatting, all data will be
deleted and you will not be able to recover any of them.


Click on \"OK\" when you are ready to format partitions.


Click on \"Cancel\" if you want to choose other partitions to install your new
Linux-Mandrake operating system."),

choosePackages => 
 __("You may now select the group of packages you wish to
install or upgrade.


DrakX will then check whether you have enough room to install them all. If not,
it will warn you about it. If you want to go on anyway, it will proceed onto the
installation of all selected groups but will drop some packages of lesser
interest. At the bottom of the list you can select the option 
\"Individual package selection\"; in this case you will have to browse through
more than 1000 packages..."),

choosePackagesTree => 
 __("You can now choose individually all the packages you
wish to install.


You can expand or collapse the tree by clicking on options in the left corner of
the packages window.


If you prefer to see packages sorted in alphabetic order, click on the icon
\"Toggle flat and group sorted\".


If you want not to be warned on dependencies, click on \"Automatic
dependencies\". If you do this, note that unselecting one package may silently
unselect several other packages which depend on it."),

chooseCD => 
 __("If you have all the CDs in the list above, click Ok. If you have
none of those CDs, click Cancel. If only some CDs are missing, unselect them,
then click Ok."),

installPackages => 
 __("Your new Linux-Mandrake operating system is currently being
installed. This operation should take a few minutes (it depends on size you
choose to install and the speed of your computer).


Please be patient."),

selectMouse => 
 __( "You can now test your mouse. Use buttons and wheel to verify
if settings are good. If not, you can click on \"Cancel\" to choose another
driver."),

selectSerialPort => 
 __("Please select the correct port. For example, the COM1
port under MS Windows is named ttyS0 under GNU/Linux."),

configureNetwork => 
 __("If you wish to connect your computer to the Internet or
to a local network please choose the correct option. Please turn on your device
before choosing the correct option to let DrakX detect it automatically.


If you do not have any connection to the Internet or a local network, choose
\"Disable networking\".


If you wish to configure the network later after installation or if you have
finished to configure your network connection, choose \"Done\"."),

configureNetworkNoModemFound => 
 __("No modem has been detected. Please select the serial port on which it is plugged.


For information, the first serial port (called \"COM1\" under Microsoft
Windows) is called \"ttyS0\" under Linux."),

configureNetworkDNS => 
 __("You may now enter dialup options. If you don't know
or are not sure what to enter, the correct informations can be obtained from
your Internet Service Provider. If you do not enter the DNS (name server)
information here, this information will be obtained from your Internet Service
Provider at connection time."),

configureNetworkISDN => 
 __("If your modem is an external modem, please turn on it now to let DrakX detect it automatically."),

configureNetworkADSL => 
 __("Please turn on your modem and choose the correct one."),

configureNetworkADSL2 => 
 __("If you are not sure if informations above are
correct or if you don't know or are not sure what to enter, the correct
informations can be obtained from your Internet Service Provider. If you do not
enter the DNS (name server) information here, this information will be obtained
from your Internet Service Provider at connection time."),

configureNetworkCable => 
 __("You may now enter your host name if needed. If you
don't know or are not sure what to enter, the correct informations can be
obtained from your Internet Service Provider."),

configureNetworkIP => 
 __("You may now configure your network device.

   * IP address: if you don't know or are not sure what to enter, ask your network administrator.
     You should not enter an IP address if you select the option \"Automatic IP\" below.

   * Netmask: \"255.255.255.0\" is generally a good choice. If you don't know or are not sure what to enter,
     ask your network administrator.

   * Automatic IP: if your network uses BOOTP or DHCP protocol, select this option. If selected, no value is needed in
    \"IP address\". If you don't know or are not sure if you need to select this option, ask your network administrator."),

configureNetworkHost => 
 __("You may now enter your host name if needed. If you
don't know or are not sure what to enter, ask your network administrator."),

configureNetworkHostDHCP => 
 __("You may now enter your host name if needed. If you
don't know or are not sure what to enter, leave blank."),

configureNetworkISP =>
 __("You may now enter dialup options. If you're not sure what to enter, the
correct information can be obtained from your ISP."),

configureNetworkProxy =>
 __("If you will use proxies, please configure them now. If you don't know if
you should use proxies, ask your network administrator or your ISP."),

installCrypto =>
 __("You can install cryptographic package if your internet connection has been
set up correctly. First choose a mirror where you wish to download packages and
after that select the packages to install.


Note you have to select mirror and cryptographic packages according
to your legislation."),

configureTimezone =>
 __("You can now select your timezone according to where you live."),

configureTimezoneGMT => 
 __("GNU/Linux manages time in GMT (Greenwich Manage
Time) and translates it in local time according to the time zone you have
selected.


If you use Microsoft Windows on this computer, choose \"No\"."),

configureServices =>
 __("You may now choose which services you want to start at boot time.


When your mouse comes over an item, a small balloon help will popup which
describes the role of the service.


Be very careful in this step if you intend to use your machine as a server: you
will probably want not to start any services that you don't need. Please
remember that several services can be dangerous if they are enable on a server.
In general, select only the services that you really need."),

configurePrinter => 
 __("You can configure a local printer (connected to your computer) or remote
printer (accessible via a Unix, Netware or Microsoft Windows network)."),

configurePrinterSystem => 
 __("If you wish to be able to print, please choose one printing system between
CUPS and LPR.


CUPS is a new, powerful and flexible printing system for Unix systems (CUPS
means \"Common Unix Printing System\"). It is the default printing system in
Linux-Mandrake.


LPR is the old printing system used in previous Linux-Mandrake distributions.


If you don't have printer, click on \"None\"."),

configurePrinterConnected => 
 __("GNU/Linux can deal with many types of printer. Each of these types requires
a different setup.


If your printer is physically connected to your computer, select \"Local
printer\".


If you want to access a printer located on a remote Unix machine, select
\"Remote printer\".


If you want to access a printer located on a remote Microsoft Windows machine
(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."),

configurePrinterLocal => 
 __("Please turn on your printer before continuing to let DrakX detect it.

You have to enter some informations here.


   * Name of printer: the print spooler uses \"lp\" as default printer name. So, you must have a printer named \"lp\".
     If you have only one printer, you can use several names for it. You just need to separate them by a pipe
     character (a \"|\"). So, if you prefer a more meaningful name, you have to put it first, eg: \"My printer|lp\".
     The printer having \"lp\" in its name(s) will be the default printer.


   * Description: this is optional but can be useful if several printers are connected to your computer or if you allow
     other computers to access to this printer.


   * Location: if you want to put some information on your
     printer location, put it here (you are free to write what
     you want, for example \"2nd floor\").
"),

configurePrinterLPR => 
__("You need to enter some informations here.


   * Name of queue: the print spooler uses \"lp\" as default printer name. So, you need have a printer named \"lp\".
    If you have only one printer, you can use several names for it. You just need to separate them by a pipe
    character (a \"|\"). So, if you prefer to have a more meaningful name, you have to put it first, eg: \"My printer|lp\".
    The printer having \"lp\" in its name(s) will be the default printer.

  
   * Spool directory: it is in this directory that printing jobs are stored. Keep the default choice
     if you don't know what to use


   * Printer Connection: If your printer is physically connected to your computer, select \"Local printer\".
     If you want to access a printer located on a remote Unix machine, select \"Remote lpd printer\".


     If you want to access a printer located on a remote Microsoft Windows machine (or on Unix machine using SMB
     protocol), select \"SMB/Windows 95/98/NT\".


     If you want to acces a printer located on NetWare network, select \"NetWare\".
"),

configurePrinterDev => 
 __("Your printer has not been detected. Please enter the name of the device on
which it is connected.


For information, most printers are connected on the first parallel port. This
one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft Windows."),

configurePrinterType => 
 __("You must now select your printer in the above list."),

configurePrinterOptions => 
__("Please select the right options according to your printer.
Please see its documentation if you don't know what choose here.


You will be able to test your configuration in next step and you will be able to modify it if it doesn't work as you want."),

setRootPassword => 
 __("You can now enter the root password for your Linux-Mandrake system.
The password must be entered twice to verify that both password entries are identical.


Root is the system's administrator and is the only user allowed to modify the
system configuration. Therefore, choose this password carefully. 
Unauthorized use of the root account can be extemely dangerous to the integrity
of the system, its data and other system connected to it.


The password should be a mixture of alphanumeric characters and at least 8