summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/stage1.c
blob: c5452ce90c8b5894c09388103632806f8d1357c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
/*
 * Guillaume Cottenceau (gc@mandrakesoft.com)
 *
 * Copyright 2000-2001 MandrakeSoft
 *
 * View the homepage: http://people.mandrakesoft.com/~gc/html/stage1.html
 *
 *
 * This software may be freely redistributed under the terms of the GNU
 * public license.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

/*
 * Portions from Erik Troan (ewt@redhat.com)
 *
 * Copyright 1996 Red Hat Software 
 *
 */

#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <stdarg.h>
#include <signal.h>
#include <linux/unistd.h>
_syscall2(int,pivot_root,const char *,new_root,const char *,put_old)

#include "stage1.h"

#include "log.h"
#include "probing.h"
#include "frontend.h"
#include "modules.h"
#include "tools.h"
#include "automatic.h"
#include "mount.h"
#include "lomount.h"
#include "insmod.h"

#ifdef ENABLE_PCMCIA
#include "pcmcia_/pcmcia.h"
#endif

#ifndef DISABLE_CDROM
#include "cdrom.h"
#endif

#ifndef DISABLE_NETWORK
#include "network.h"
#endif

#ifndef DISABLE_DISK
#include "disk.h"
#endif


/************************************************************
 * globals */

char * method_name;
char * stage2_kickstart = NULL;


void fatal_error(char *msg)
{
	printf("FATAL ERROR IN STAGE1: %s\n\nI can't recover from this.\nYou may reboot your system.\n", msg);
	while (1);
}


/************************************************************
 * special frontend functs
 * (the principle is to not pollute frontend code with stage1-specific stuff) */

void stg1_error_message(char *msg, ...)
{
	va_list args;
	va_start(args, msg);
	log_message("unsetting automatic");
	unset_param(MODE_AUTOMATIC);
	verror_message(msg, args);
	va_end(args);
}

void stg1_info_message(char *msg, ...)
{
	va_list args;
	va_start(args, msg);
	if (IS_AUTOMATIC) {
		vlog_message(msg, args);
		return;
	}
	vinfo_message(msg, args);
	va_end(args);
}


#ifdef SPAWN_SHELL
static pid_t shell_pid = 0;

/************************************************************
 * spawns a shell on console #2 */
static void spawn_shell(void)
{
	int fd;
	char * shell_name[] = { "/tmp/sh", NULL };

	log_message("spawning a shell");

	if (!IS_TESTING) {
		fd = open("/dev/tty2", O_RDWR);
		if (fd == -1) {
			log_message("cannot open /dev/tty2 -- no shell will be provided");
			return;
		}
		else if (access(shell_name[0], X_OK)) {
			log_message("cannot open shell - %s doesn't exist", shell_name[0]);
			return;
		}
		
		if (!(shell_pid = fork())) {
			dup2(fd, 0);
			dup2(fd, 1);
			dup2(fd, 2);
			
			close(fd);
			setsid();
			if (ioctl(0, TIOCSCTTY, NULL))
				log_perror("could not set new controlling tty");

			execve(shell_name[0], shell_name, grab_env());
			log_message("execve of %s failed: %s", shell_name[0], strerror(errno));
			exit(-1);
		}
		
		close(fd);
	}
}
#endif


char * interactive_fifo = "/tmp/stage1-fifo";
static pid_t interactive_pid = 0;

/* spawns my small interactive on console #6 */
static void spawn_interactive(void)
{
#ifdef SPAWN_INTERACTIVE
	int fd;
	char * dev = "/dev/tty6";

	printf("spawning my interactive on %s\n", dev);

	if (!IS_TESTING) {
		fd = open(dev, O_RDWR);
		if (fd == -1) {
			printf("cannot open %s -- no interactive\n", dev);
			return;
		}

		if (mkfifo(interactive_fifo, O_RDWR)) {
			printf("cannot create fifo -- no interactive\n");
			return;
		}
		
		if (!(interactive_pid = fork())) {
			int fif_out;

			dup2(fd, 0);
			dup2(fd, 1);
			dup2(fd, 2);
			
			close(fd);
			setsid();
			if (ioctl(0, TIOCSCTTY, NULL))
				perror("could not set new controlling tty");

			fif_out = open(interactive_fifo, O_WRONLY);
			printf("Please enter your command (availables: [+,-] [rescue,expert]).\n");
				
			while (1) {
				char s[50];
				int i = 0;
				printf("? ");
				fflush(stdout);
				read(0, &(s[i++]), 1);
				fcntl(0, F_SETFL, O_NONBLOCK);
				while (read(0, &(s[i++]), 1) > 0 && i < sizeof(s));
				fcntl(0, F_SETFL, 0);
				write(fif_out, s, i-2);
				printf("Ok.\n");
			}
		}
		
		close(fd);
	}
#endif
}


/************************************************************
 */

static void expert_third_party_modules(void)
{
	enum return_type results;
	char * floppy_mount_location = "/tmp/floppy";
	char ** modules;
	char final_name[500];
	char * choice;
	int rc;
	char * questions[] = { "Options", NULL };
	static char ** answers = NULL;

	results = ask_yes_no("If you want to insert third-party kernel modules, insert "
			     "a Linux (ext2fs) formatted floppy containing the modules and confirm. Otherwise, select \"no\".");;
	if (results != RETURN_OK)
		return;

	my_insmod("floppy", ANY_DRIVER_TYPE, NULL, 0);

	if (my_mount(floppy_device(), floppy_mount_location, "ext2", 0) == -1) {
		stg1_error_message("I can't find a Linux ext2 floppy in first floppy drive.");
		return expert_third_party_modules();
	}

	modules = list_directory(floppy_mount_location);

	if (!modules || !*modules) {
		stg1_error_message("No modules found on floppy disk.");
		umount(floppy_mount_location);
		return expert_third_party_modules();
	}

	results = ask_from_list("Which driver would you like to insmod?", modules, &choice);
	if (results != RETURN_OK) {
		umount(floppy_mount_location);
		return;
	}

	sprintf(final_name, "%s/%s", floppy_mount_location, choice);

	results = ask_from_entries("Please enter the options:", questions, &answers, 24, NULL);
	if (results != RETURN_OK) {
		umount(floppy_mount_location);
		return expert_third_party_modules();
	}

	rc = insmod_call(final_name, answers[0]);
	umount(floppy_mount_location);

	if (rc) {
		log_message("\tfailed");
		stg1_error_message("Insmod failed.");
	}

	return expert_third_party_modules();
}


#ifdef ENABLE_PCMCIA
static void handle_pcmcia(char ** pcmcia_adapter)
{
	if (kernel_version() == 2) {
		stg1_error_message("We now use kernel pcmcia support and this won't work with a 2.2 kernel.");
		return;
	}

	*pcmcia_adapter = pcmcia_probe();
	if (!*pcmcia_adapter) {
		log_message("no pcmcia adapter found");
		return;
	}
	my_insmod("pcmcia_core", ANY_DRIVER_TYPE, NULL, 0);
	my_insmod(*pcmcia_adapter, ANY_DRIVER_TYPE, NULL, 0);
	my_insmod("ds", ANY_DRIVER_TYPE, NULL, 0);
	
        /* call to cardmgr takes time, let's use the wait message */
	wait_message("Enabling PCMCIA extension cards...");
	log_message("cardmgr rc: %d", cardmgr_call());
	remove_wait_message();

	if (IS_EXPERT)
		expert_third_party_modules();
}
#endif


/************************************************************
 */

static void method_select_and_prepare(void)
{
	enum return_type results;
	char * choice;
	char * means[10], * means_auto[10];
	int i;

#ifndef DISABLE_DISK
	char * disk_install = "Hard disk"; char * disk_install_auto = "disk";
#endif
#ifndef DISABLE_CDROM
	char * cdrom_install = "CDROM drive"; char * cdrom_install_auto = "cdrom";
#endif
#ifndef DISABLE_NETWORK
	char * network_nfs_install = "NFS server"; char * network_nfs_install_auto = "nfs";
	char * network_ftp_install = "FTP server"; char * network_ftp_install_auto = "ftp";
	char * network_http_install = "HTTP server"; char * network_http_install_auto = "http";
#endif

	i = 0;
#ifndef DISABLE_NETWORK
	means[i] = network_nfs_install; means_auto[i++] = network_nfs_install_auto;
	means[i] = network_ftp_install; means_auto[i++] = network_ftp_install_auto;
	means[i] = network_http_install; means_auto[i++] = network_http_install_auto;
#endif
#ifndef DISABLE_CDROM
	means[i] = cdrom_install; means_auto[i++] = cdrom_install_auto;
        allow_additional_modules_floppy = 0;
#endif
#ifndef DISABLE_DISK
	means[i] = disk_install; means_auto[i++] = disk_install_auto;
        allow_additional_modules_floppy = 0;
#endif
	means[i] = NULL;

	results = ask_from_list_auto("Please choose the installation method.", means, &choice, "method", means_auto);

	if (results != RETURN_OK)
		return method_select_and_prepare();

#ifndef DISABLE_CDROM
	if (!strcmp(choice, cdrom_install))
		results = cdrom_prepare();
#endif
        
#ifndef DISABLE_DISK
	if (!strcmp(choice, disk_install))
		results = disk_prepare();
#endif
	
#ifndef DISABLE_NETWORK
	if (!strcmp(choice, network_nfs_install))
		results = nfs_prepare();
	
	if (!strcmp(choice, network_ftp_install))
		results = ftp_prepare();
	
	if (!strcmp(choice, network_http_install))
		results = http_prepare();
#endif

	if (results != RETURN_OK)
		return method_select_and_prepare();
}

#ifdef MANDRAKE_MOVE
int mandrake_move_pre(void)
{
	log_message("move: creating %s directory and mounting as tmpfs", SLASH_LOCATION);

        if (scall(mkdir(SLASH_LOCATION, 0755), "mkdir"))
                return RETURN_ERROR;

	if (scall(mount("none", SLASH_LOCATION, "tmpfs", MS_MGC_VAL, NULL), "mount tmpfs"))
                return RETURN_ERROR;

        return RETURN_OK;
}


static enum return_type handle_clp(char* clp, char* live, char* location_live, char* location_mount, int* is_symlink, char* clp_tmpfs)
{
        static int count = 0;
        if (access(clp, R_OK)) {
                log_message("no %s found (or disabled), trying to fallback on plain tree", clp);
                if (!access(live, R_OK)) {
                        if (scall(symlink(location_live, location_mount), "symlink"))
                                return RETURN_ERROR;
                        *is_symlink = 1;
                        return RETURN_OK;
                } else {
                        log_message("move: can't find %s nor %s, proceeding hoping files will be there", clp, live);
                        return RETURN_OK;
                }
        }

        if (clp_tmpfs) {
                int ret;
                char buf[5000];
                sprintf(buf, "Loading (part %d)...", ++count);
                init_progression(buf, file_size(clp));
                ret = copy_file(clp, clp_tmpfs, update_progression);
                end_progression();
                if (ret != RETURN_OK)
                        return ret;
                clp = clp_tmpfs;
        }

        if (lomount(clp, location_mount, NULL, 1)) {
                stg1_error_message("Could not mount compressed loopback :(.");
                return RETURN_ERROR;
        }

        return RETURN_OK;
}

int mandrake_move_post(void)
{
        FILE *f;
        char buf[5000];
        int fd;
        char rootdev[] = "0x0100"; 
        int boot__real_is_symlink_to_raw = 0;
        int always__real_is_symlink_to_raw = 0;
        int totem__real_is_symlink_to_raw = 0;
        int main__real_is_symlink_to_raw = 0;

        if (handle_clp(IMAGE_LOCATION "/live_tree_boot.clp", IMAGE_LOCATION "/live_tree_boot/usr/bin/runstage2.pl",
                       IMAGE_LOCATION "/live_tree_boot", BOOT_LOCATION,
                       &boot__real_is_symlink_to_raw, SLASH_LOCATION "/live_tree_boot.clp") != RETURN_OK)
                return RETURN_ERROR;

        if (handle_clp(IMAGE_LOCATION "/live_tree_always.clp", IMAGE_LOCATION "/live_tree_always/bin/bash",
                       IMAGE_LOCATION "/live_tree_always", ALWAYS_LOCATION,
                       &always__real_is_symlink_to_raw, SLASH_LOCATION "/live_tree_always.clp") != RETURN_OK)
                return RETURN_ERROR;

        if (handle_clp(IMAGE_LOCATION "/live_tree_totem.clp", IMAGE_LOCATION "/live_tree_totem/usr/bin/totem",
                       IMAGE_LOCATION "/live_tree_totem", TOTEM_LOCATION,
                       &totem__real_is_symlink_to_raw, SLASH_LOCATION "/live_tree_totem.clp") != RETURN_OK)
                return RETURN_ERROR;

        if (handle_clp(IMAGE_LOCATION "/live_tree.clp", IMAGE_LOCATION "/live_tree/etc/fstab",
                       IMAGE_LOCATION "/live_tree", IMAGE_LOCATION_REAL,
                       &main__real_is_symlink_to_raw, NULL) != RETURN_OK)
                return RETURN_ERROR;
       
        if (scall(!(f = fopen(IMAGE_LOCATION_REAL "/move/symlinks", "rb")), "fopen[" IMAGE_LOCATION_REAL "/move/symlinks]"))
                return RETURN_ERROR;
        while (fgets(buf, sizeof(buf), f)) {
                char oldpath[500], newpath[500];
                buf[strlen(buf)-1] = '\0';  // trim \n
                sprintf(oldpath, "%s%s", LIVE_LOCATION_REL, buf);
                sprintf(newpath, "%s%s", SLASH_LOCATION, buf);
                log_message("move: creating symlink %s -> %s", oldpath, newpath);
                if (scall(symlink(oldpath, newpath), "symlink"))
                        return RETURN_ERROR;
        }
        fclose(f);
        
        // in case we didn't mount any clp, because gzloop.o is not available later in /lib/modules
	my_insmod("gzloop", ANY_DRIVER_TYPE, NULL, 0);
        
        // hardcoded :(
        if (!access(TOTEM_LOCATION, R_OK)) {
                if (scall(symlink("/image_totem/usr", SLASH_LOCATION "/usr"), "symlink"))
                        return RETURN_ERROR;
        } else
                // need a fallback in case we don't use image_totem.clp nor live_tree_totem, but we're in -u mode
                if (scall(symlink(LIVE_LOCATION_REL "/usr", SLASH_LOCATION "/usr"), "symlink"))
                        return RETURN_ERROR;

        // need to create the few devices needed to start up stage2 in a decent manner, we can't symlink or they will keep CD busy
        // we need only the ones before mounting /dev as devfs
        if (scall(mkdir(SLASH_LOCATION "/dev", 0755), "mkdir"))
                return RETURN_ERROR;
        if (scall(!(f = fopen(IMAGE_LOCATION_REAL "/move/devices", "rb")), "fopen"))
                return RETURN_ERROR;
        while (fgets(buf, sizeof(buf), f)) {
                char name[500], path[500], type;
                int major, minor;
                sscanf(buf, "%s %c %d %d", name, &type, &major, &minor);
                sprintf(path, "%s%s", SLASH_LOCATION, name);
                log_message("move: creating device %s %c %d %d", path, type, major, minor);
                if (scall(mknod(path, type == 'c' ? S_IFCHR : S_IFBLK, makedev(major, minor)), "mknod"))
                        return RETURN_ERROR;
        }
        fclose(f);

        if (boot__real_is_symlink_to_raw) {
                if (scall(unlink(BOOT_LOCATION), "unlink"))
                        return RETURN_ERROR;
                if (scall(symlink(RAW_LOCATION_REL "/live_tree_boot", BOOT_LOCATION), "symlink"))
                        return RETURN_ERROR;
        }

        if (always__real_is_symlink_to_raw) {
                if (scall(unlink(ALWAYS_LOCATION), "unlink"))
                        return RETURN_ERROR;
                if (scall(symlink(RAW_LOCATION_REL "/live_tree_always", ALWAYS_LOCATION), "symlink"))
                        return RETURN_ERROR;
        }

        if (totem__real_is_symlink_to_raw) {
                if (scall(unlink(TOTEM_LOCATION), "unlink"))
                        return RETURN_ERROR;
                if (scall(symlink(RAW_LOCATION_REL "/live_tree_totem", TOTEM_LOCATION), "symlink"))
                        return RETURN_ERROR;
        }

        if (main__real_is_symlink_to_raw) {
                if (scall(unlink(IMAGE_LOCATION_REAL), "unlink"))
                        return RETURN_ERROR;
                if (scall(symlink(RAW_LOCATION_REL "/live_tree", IMAGE_LOCATION_REAL), "symlink"))
                        return RETURN_ERROR;
        }

        mkdir(SLASH_LOCATION "/etc", 0755);
        copy_file("/etc/resolv.conf", SLASH_LOCATION "/etc/resolv.conf", NULL);

        if (IS_DEBUGSTAGE1)
                while (1);

        log_message("move: pivot_rooting");
        // trick so that kernel won't try to mount the root device when initrd exits
        if (scall((fd = open("/proc/sys/kernel/real-root-dev", O_WRONLY)) < 0, "open"))
                return RETURN_ERROR;
        if (scall(write(fd, rootdev, strlen(rootdev)) != (signed)strlen(rootdev), "write")) {
                close(fd);
                return RETURN_ERROR;
        }
        close(fd);

        if (scall(mkdir(SLASH_LOCATION "/stage1", 0755), "mkdir"))
                return RETURN_ERROR;

        if (scall(pivot_root(SLASH_LOCATION, SLASH_LOCATION "/stage1"), "pivot_root"))
                return RETURN_ERROR;

        return RETURN_OK;
}
#endif


int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused)), char **env)
{
	char ** argptr;
	char * stage2_args[30];
#ifdef ENABLE_PCMCIA
	char * pcmcia_adapter = NULL;
#endif

	if (getpid() > 50)
		set_param(MODE_TESTING);

	spawn_interactive();

	open_log();
	log_message("welcome to the " DISTRIB_NAME " install (mdk-stage1, version " VERSION " built " __DATE__ " " __TIME__")");
	process_cmdline();
	handle_env(env);
#ifdef SPAWN_SHELL
	spawn_shell();
#endif
	init_modules_insmoding();
	init_frontend("Welcome to " DISTRIB_NAME
#ifdef MANDRAKE_MOVE
                      ", "
#else
                      " (" VERSION ") "
#endif
                      __DATE__ " " __TIME__);

	if (IS_EXPERT)
		expert_third_party_modules();

	if (IS_UPDATEMODULES)
		update_modules();

#ifdef ENABLE_PCMCIA
	if (!IS_NOAUTO)
		handle_pcmcia(&pcmcia_adapter);
#endif

	if (IS_CHANGEDISK)
		stg1_info_message("You are starting the installation with an alternate booting method. "
				  "Please change your disk, and insert the Installation disk.");

	if (IS_RESCUE && total_memory() < MEM_LIMIT_RESCUE) {
		stg1_error_message("You are starting the rescue with a low memory configuration. "
				   "Our experience shows that your system may crash at any point "
				   "or lock up for no apparent reason. Continue at "
				   "your own risk. Alternatively, you may reboot your system now.");
	}

#ifdef MANDRAKE_MOVE
	if (total_memory() < MEM_LIMIT_MOVE)
		stg1_error_message(DISTRIB_NAME " typically needs more than %d Mbytes of memory (detected %d Mbytes). You may proceed, but the machine may crash or lock up for no apparent reason. Continue at your own risk. Alternatively, you may reboot your system now.",
				   MEM_LIMIT_MOVE, total_memory());
        if (mandrake_move_pre() != RETURN_OK)
                stg1_error_message("Fatal error when preparing MandrakeMove.");
#endif

#ifndef DISABLE_DISK
        if (IS_RECOVERY && streq(get_auto_value("method"), "cdrom")) {
                if (!process_recovery())
                        method_select_and_prepare();
        } else
#endif
                method_select_and_prepare();

	if (!IS_RAMDISK)
		if (symlink(IMAGE_LOCATION_REAL LIVE_LOCATION, STAGE2_LOCATION) != 0)
			log_perror("symlink from " IMAGE_LOCATION_REAL LIVE_LOCATION " to " STAGE2_LOCATION " failed");

	if (interactive_pid != 0)
		kill(interactive_pid, 9);

#ifdef MANDRAKE_MOVE
        if (mandrake_move_post() != RETURN_OK)
                stg1_error_message("Fatal error when launching MandrakeMove.");
#endif

	if (shell_pid != 0) {
                int fd;
		kill(shell_pid, 9);
		fd = open("/dev/tty2", O_RDWR);
                write(fd, "Killed\n", 7);
                close(fd);
        }

        umount("/tmp/tmpfs");
	finish_frontend();
	close_log();

#ifndef MANDRAKE_MOVE
	if (IS_RESCUE)
#endif
		return 66;
	if (IS_TESTING)
		return 0;

	argptr = stage2_args;
	*argptr++ = "/usr/bin/runinstall2";
	*argptr++ = "--method";
	*argptr++ = method_name;
#ifdef ENABLE_PCMCIA
	if (pcmcia_adapter) {
		*argptr++ = "--pcmcia";
		*argptr++ = pcmcia_adapter;
	}
#endif
	if (disable_modules)
		*argptr++ = "--blank";
	if (stage2_kickstart) {
		*argptr++ = "--kickstart";
		*argptr++ = stage2_kickstart;
	}
	*argptr++ = NULL;

	execve(stage2_args[0], stage2_args, grab_env());

	printf("error in exec of stage2 :-(\n");
	printf("trying to execute '/usr/bin/runinstall2' from the installation volume,\nthe following fatal error occurred\n");
	fatal_error(strerror(errno));
	
	return 0; /* shut up compiler (we can't get here anyway!) */
}
'n2842' href='#n2842'>2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199
# translation of pt_BR.po to Brazilian portuguese
# translation of pt_BR.po to
# tradução de DrakX-pt_BR.po para Português do Brasil
# DRAKX PT_BR PO FILE
# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
# Lisiane Sztoltz Teixeira <lisiane@mandriva.com>
#
# Andrei Bosco Bezerra Torres <andrei_bosco@yahoo.com.br>, 2000, 2003.
# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002.
# Tiago da Cruz Bezerra <tiagocruz18@uol.com.br>,2002 2003, 2004.
# Ricardo de Castilho <cast_brasil@ig.com.br>, 2003.
# Carlinhos Cecconi <carlinux@terra.com.br>, 2003, 2004.
# Deivi Lopes Kuhn <deivikuhn@yahoo.com.br>, 2003, 2004.
# Cristiano Otto Von Trompczynski <cris@mandriva.com>, 2005.
# Arthur Renato Mello <renato@conectiva.com.br>, 2005.
# Wanderlei Antonio Cavassin <cavassin@mandriva.com>, 2006.
# Felipe Arruda <felipemiguel@gmail.com>, 2006, 2007, 2008.
# Sergio Rafael Lemke <sergio@mandriva.com.br>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: pt_BR\n"
"POT-Creation-Date: 2009-04-14 17:26+0200\n"
"PO-Revision-Date: 2009-02-06 14:39-0200\n"
"Last-Translator: Sergio Rafael Lemke <sergio@mandriva.com.br>\n"
"Language-Team: Brazilian Portuguese <cooker-i18n@mandrivalinux.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 0.3\n"
"Plural-Forms:  nplurals=2; plural=(n > 1);\n"

#: any.pm:252 any.pm:864 diskdrake/interactive.pm:590
#: diskdrake/interactive.pm:790 diskdrake/interactive.pm:834
#: diskdrake/interactive.pm:920 diskdrake/interactive.pm:1174
#: diskdrake/interactive.pm:1226 do_pkgs.pm:241 do_pkgs.pm:287
#: harddrake/sound.pm:300 interactive.pm:587 pkgs.pm:265
#, c-format
msgid "Please wait"
msgstr "Aguarde"

#: any.pm:252
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalação do gerenciador de inicialização em progresso"

#: any.pm:263
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"O LILO precisa designar um novo Nome de Volume (ID) para o drive %s.  No\n"
"entanto, modificar o ID de um disco de boot do Windows NT, 2000 ou XP é um "
"erro fatal do Windows.\n"
"Este problema não ocorre em Windows 95 ou 98, ou em discos de dados NT.\n"
"\n"
"Especificar um novo Nome de Volume (ID)?"

#: any.pm:274
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "A instalação do gerenciador de inicialização falhou, ocorreram"
"os seguintes erros:"

#: any.pm:280
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Você pode precisar mudar seu dispositivo de boot Open Firmware\n"
" para ativar o gerenciador de inicialização. Se você não ver o\n"
" prompt do gerenciador durante o boot,  mantenha pressionada a combinação "
"Command-Option-O-F ao reiniciar e digite:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Então, digite: shut-down\n"
"No próximo boot, você verá o prompt do gerenciador de inicialização."

#: any.pm:320
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Você decidiu instalar o gerenciador de inicialização do sistema em uma "
"partição.\n"
"Isto implica em já ter um gerenciador de inicialização do sistema no disco "
"que você iniciar (ex: System Commander).\n"
"\n"
"Qual é o drive que você está inicializando?"

#: any.pm:346
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primeiro setor (MBR) do drive %s"

#: any.pm:348
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primeiro setor do drive (MBR)"

#: any.pm:350
#, c-format
msgid "First sector of the root partition"
msgstr "Primeiro setor da partição raiz"

#: any.pm:352
#, c-format
msgid "On Floppy"
msgstr "Pelo Disquete"

#: any.pm:354 pkgs.pm:261 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Ignorar"

#: any.pm:358
#, c-format
msgid "Bootloader Installation"
msgstr "Instalação do Gerenciador de Inicialização"

#: any.pm:362
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Onde você quer instalar o gerenciador de inicialização?"

#: any.pm:389
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuração do estilo de inicialização"

#: any.pm:399 any.pm:429 any.pm:430
#, c-format
msgid "Bootloader main options"
msgstr "Principais opções do gerenciador de inicialização"

#: any.pm:403
#, c-format
msgid "Bootloader"
msgstr "Inicialização"

#: any.pm:404 any.pm:433
#, c-format
msgid "Bootloader to use"
msgstr "Gerenciador de inicialização a ser usado"

#: any.pm:406 any.pm:435
#, c-format
msgid "Boot device"
msgstr "Dispositivo de boot"

#: any.pm:408
#, c-format
msgid "Main options"
msgstr "Opções principais"

#: any.pm:409
#, c-format
msgid "Delay before booting default image"
msgstr "Tempo antes de iniciar a imagem padrão"

#: any.pm:410
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"

#: any.pm:411
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"

#: any.pm:412
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"

#: any.pm:413
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC Local"

#: any.pm:415 any.pm:809 any.pm:825 authentication.pm:247
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Senha"

#: any.pm:417 authentication.pm:258
#, c-format
msgid "The passwords do not match"
msgstr "As senhas não conferem"

#: any.pm:417 authentication.pm:258 diskdrake/interactive.pm:1398
#, c-format
msgid "Please try again"
msgstr "Por Favor, Tente Novamente"

#: any.pm:418
#, c-format
msgid "You can not use a password with %s"
msgstr "Você não pode usar uma senha com %s"

#: any.pm:421 any.pm:811 any.pm:827 authentication.pm:248
#, c-format
msgid "Password (again)"
msgstr "Senha (de novo)"

#: any.pm:422
#, c-format
msgid "Restrict command line options"
msgstr "Restringir opções da linha de comando"

#: any.pm:422
#, c-format
msgid "restrict"
msgstr "restrito"

#: any.pm:423
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"A opção \"Restringi opções da linha de comando\" não tem uso sem uma senha"

#: any.pm:425
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Limpar /tmp a cada inicialização"

#: any.pm:434
#, c-format
msgid "Init Message"
msgstr "Mensagem do Init"

#: any.pm:436
#, c-format
msgid "Open Firmware Delay"
msgstr "Atraso do Open Firmware"

#: any.pm:437
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tempo limite de boot do kernel"

#: any.pm:438
#, c-format
msgid "Enable CD Boot?"
msgstr "Habilitar Boot pelo CD?"

#: any.pm:439
#, c-format
msgid "Enable OF Boot?"
msgstr "Permitir OF Boot?"

#: any.pm:440
#, c-format
msgid "Default OS?"
msgstr "Sistema Operacional Padrão?"

#: any.pm:513
#, c-format
msgid "Image"
msgstr "Imagem"

#: any.pm:514 any.pm:527
#, c-format
msgid "Root"
msgstr "Raiz"

#: any.pm:515 any.pm:540
#, c-format
msgid "Append"
msgstr "Acrescentar"

#: any.pm:517
#, c-format
msgid "Xen append"
msgstr "Xen append"

#: any.pm:520
#, c-format
msgid "Video mode"
msgstr "Modo de Vídeo"

#: any.pm:522
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:523
#, c-format
msgid "Network profile"
msgstr "Perfil de Rede"

#: any.pm:532 any.pm:537 any.pm:539 diskdrake/interactive.pm:404
#, c-format
msgid "Label"
msgstr "Nome"

#: any.pm:534 any.pm:542 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Padrão"

#: any.pm:541
#, c-format
msgid "NoVideo"
msgstr "Sem vídeo"

#: any.pm:552
#, c-format
msgid "Empty label not allowed"
msgstr "Não é permitido o campo de nome vazio"

#: any.pm:553
#, c-format
msgid "You must specify a kernel image"
msgstr "Você precisa especificar uma imagem do kernel"

#: any.pm:553
#, c-format
msgid "You must specify a root partition"
msgstr "Você precisa especificar uma partição raiz"

#: any.pm:554
#, c-format
msgid "This label is already used"
msgstr "Este nome já está sendo utilizado"

#: any.pm:572
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Qual tipo de entrada você quer adicionar?"

#: any.pm:573
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:573
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Outro S.O. (SunOS...)"

#: any.pm:574
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Outro S.O. (MacOS...)"

#: any.pm:574
#, c-format
msgid "Other OS (Windows...)"
msgstr "Outro S.O. (Windows...)"

#: any.pm:601
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuração do Gerenciador de Inicialização"

#: any.pm:602
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Aqui estão as entradas contidas no menu de boot.\n"
"Você pode adicionar mais ou modificar as existentes."

#: any.pm:770
#, c-format
msgid "access to X programs"
msgstr "Acesso a programas X"

#: any.pm:771
#, c-format
msgid "access to rpm tools"
msgstr "Acesso a ferramentas rpm"

#: any.pm:772
#, c-format
msgid "allow \"su\""
msgstr "Permitir \"su\""

#: any.pm:773
#, c-format
msgid "access to administrative files"
msgstr "Acesso a arquivos administrativos"

#: any.pm:774
#, c-format
msgid "access to network tools"
msgstr "Acesso as ferramentas da rede"

#: any.pm:775
#, c-format
msgid "access to compilation tools"
msgstr "Acesso a ferramentas da compilação"

#: any.pm:781
#, c-format
msgid "(already added %s)"
msgstr "(%s já adicionado)"

#: any.pm:787
#, c-format
msgid "Please give a user name"
msgstr "Por Favor, Informe um Nome de Usuário"

#: any.pm:788
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"O nome do usuário deve conter apenas letras minúsculas, números e os "
"caracteres `-' e `_'"

#: any.pm:789
#, c-format
msgid "The user name is too long"
msgstr "Nome de usuário muito grande"

#: any.pm:790
#, c-format
msgid "This user name has already been added"
msgstr "Este nome de usuário já foi adicionado"

#: any.pm:796 any.pm:829
#, c-format
msgid "User ID"
msgstr "ID do Usuário"

#: any.pm:796 any.pm:830
#, c-format
msgid "Group ID"
msgstr "ID do Grupo"

#: any.pm:797
#, c-format
msgid "%s must be a number"
msgstr "A opção %s tem que ser um número"

#: any.pm:798
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s deve ser acima de 500. Aceitar mesmo assim?"

#: any.pm:802
#, c-format
msgid "User management"
msgstr "Gerenciamento de usuário"

#: any.pm:808 authentication.pm:234
#, c-format
msgid "Set administrator (root) password"
msgstr "Especifique a senha do administrador (root)"

#: any.pm:813
#, c-format
msgid "Enter a user"
msgstr "Informe um usuário"

#: any.pm:815
#, c-format
msgid "Icon"
msgstr "Ícone"

#: any.pm:818
#, c-format
msgid "Real name"
msgstr "Nome real"

#: any.pm:823
#, c-format
msgid "Login name"
msgstr "Nome de login"

#: any.pm:828
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:864
#, c-format
msgid "Please wait, adding media..."
msgstr "Aguarde, adicionando fontes..."

#: any.pm:894 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login automático"

#: any.pm:895
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Eu posso configurar seu computador para acessar o sistema automaticamente "
"através de um usuário."

#: any.pm:896
#, c-format
msgid "Use this feature"
msgstr "Usar este recurso"

#: any.pm:897
#, c-format
msgid "Choose the default user:"
msgstr "Escolha o usuário padrão:"

#: any.pm:898
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolha o gerenciador de janelas a ser executado:"

#: any.pm:909 any.pm:929 any.pm:990
#, c-format
msgid "Release Notes"
msgstr "Notas de Lançamento"

#: any.pm:936 any.pm:1282 interactive/gtk.pm:794
#, c-format
msgid "Close"
msgstr "Fechar"

#: any.pm:976
#, c-format
msgid "License agreement"
msgstr "Contrato de licença"

#: any.pm:978 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Sair"

#: any.pm:985
#, c-format
msgid "Do you accept this license ?"
msgstr "Você aceita esta licença?"

#: any.pm:986
#, c-format
msgid "Accept"
msgstr "Aceitar"

#: any.pm:986
#, c-format
msgid "Refuse"
msgstr "Recusar"

#: any.pm:1012 any.pm:1078
#, c-format
msgid "Please choose a language to use"
msgstr "Selecione o idioma a ser utilizado"

#: any.pm:1041
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"O Mandriva Linux suporta múltiplos idiomas. Selecione\n"
"os que você deseja instalar. Eles estarão disponíveis após você\n"
"completar a instalação e reiniciar o seu sistema."

#: any.pm:1044
#, c-format
msgid "Multi languages"
msgstr "Múltiplos idiomas"

#: any.pm:1055 any.pm:1087
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificação antiga de compatibilidade (não UTF-8)"

#: any.pm:1057
#, c-format
msgid "All languages"
msgstr "Todos os idiomas"

#: any.pm:1079
#, c-format
msgid "Language choice"
msgstr "Escolha do idioma"

#: any.pm:1133
#, c-format
msgid "Country / Region"
msgstr "País / Região"

#: any.pm:1134
#, c-format
msgid "Please choose your country"
msgstr "Por Favor, Escolha seu País"

#: any.pm:1136
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aqui está a lista completa dos países disponíveis"

#: any.pm:1137
#, c-format
msgid "Other Countries"
msgstr "Outros Países"

#: any.pm:1137 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avançado"

#: any.pm:1143
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"

#: any.pm:1146
#, c-format
msgid "None"
msgstr "Nenhum"

#: any.pm:1227
#, c-format
msgid "No sharing"
msgstr "Sem compartilhamento"

#: any.pm:1227
#, c-format
msgid "Allow all users"
msgstr "Permitir todos os usuários"

#: any.pm:1227
#, c-format
msgid "Custom"
msgstr "Personalizar"

#: any.pm:1231
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Você deseja permitir aos usuários que compartilhem alguns de seus "
"diretórios?\n"
"Ao habilitar isto, bastará aos usuários simplesmente clicar em "
"\"Compartilhamento\" no Konqueror e no Nautilus.\n"
"\n"
"\"Personalizar\" permite especificar para cada usuário individualmente.\n"

#: any.pm:1243
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS:o tradicional sistema de compartilhamento de arquivos Unix, com pouco "
"suporte em Mac e Windows."

#: any.pm:1246
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB:um sistema de compartilhamento de arquivos usado em Windows, Mac OS X e "
"muitos sistemas Linux modernos."

#: any.pm:1254
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Você pode exportar usando SMB ou NFS. Por favor, seleciona qual você "
"gostaria de usar."

#: any.pm:1282
#, c-format
msgid "Launch userdrake"
msgstr "Abrir o Userdrake"

#: any.pm:1284
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"O compartilhamento por usuário usa o grupo \"fileshare\".\n"
"Você pode usar o userdrake para adicionar um usuário neste grupo."

#: any.pm:1385
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
"Você precisa reiniciar o ambiente gráfico para as mudanças entrarem em "
"vigor. Aperte OK para sair agora."

#: any.pm:1389
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Você precisa acessar novamente o ambiente para que as mudanças entrem em "
"vigor "

#: any.pm:1424
#, c-format
msgid "Timezone"
msgstr "Fuso horário"

#: any.pm:1424
#, c-format
msgid "Which is your timezone?"
msgstr "Qual é o seu fuso horário?"

#: any.pm:1447 any.pm:1449
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configurações de Data, Hora e Fuso Horário"

#: any.pm:1450
#, c-format
msgid "What is the best time?"
msgstr "Qual é a hora certa?"

#: any.pm:1454
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (relógio do hardware configurado para UTC)"

#: any.pm:1455
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (relógio do hardware configurado para o horário local)"

#: any.pm:1457
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"

#: any.pm:1458
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronização automática da hora (usando NTP)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Arquivo local"

#: authentication.pm:25
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:26
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:27
#, c-format
msgid "Smart Card"
msgstr "Smart Card"

#: authentication.pm:28 authentication.pm:213
#, c-format
msgid "Windows Domain"
msgstr "Domínio Windows"

#: authentication.pm:29
#, c-format
msgid "Kerberos 5"
msgstr "Kerberos 5"

#: authentication.pm:63
#, c-format
msgid "Local file:"
msgstr "Arquivo local:"

#: authentication.pm:63
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
"Use local para todas as autenticações e informações de usuário descritas em "
"um arquivo local"

#: authentication.pm:64
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:64
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Diga ao seu computador para usar LDAP para algum serviço de autenticação, ou "
"para todos. O LDAP consolida e centraliza certos tipos de informação dentro "
"de sua organização."

#: authentication.pm:65
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:65
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
"Permite que você possa executar um grupo de computadores em um mesmo domínio "
"NIS (Network Information Service ou Serviço de Informações de Rede), com uma "
"senha e arquivo de grupo comuns."

#: authentication.pm:66
#, c-format
msgid "Windows Domain:"
msgstr "Domínio Windows:"

#: authentication.pm:66
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind permite que o sistema recupere informações e autentique usuários em "
"um domínio Windows."

#: authentication.pm:67
#, c-format
msgid "Kerberos 5 :"
msgstr "Kerberos 5 :"

#: authentication.pm:67
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr "Com Kerberos e Ldap para autenticação em um Active Directory Server "

#: authentication.pm:104 authentication.pm:138 authentication.pm:157
#: authentication.pm:158 authentication.pm:184 authentication.pm:208
#: authentication.pm:889
#, c-format
msgid " "
msgstr " "

#: authentication.pm:105 authentication.pm:139 authentication.pm:185
#: authentication.pm:209
#, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Bem-vindo ao Assistente de Autenticação"

#: authentication.pm:107
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""
"Você selecionou autenticação LDAP. Por favor revise as opções de "
"configuração abaixo "

#: authentication.pm:109 authentication.pm:164
#, c-format
msgid "LDAP Server"
msgstr "Servidor LDAP"

#: authentication.pm:110 authentication.pm:165
#, c-format
msgid "Base dn"
msgstr "Base dn"

#: authentication.pm:111
#, c-format
msgid "Fetch base Dn "
msgstr "Buscar base Dn "

#: authentication.pm:113 authentication.pm:168
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Usar conexão criptografada com TLS "

#: authentication.pm:114 authentication.pm:169
#, c-format
msgid "Download CA Certificate "
msgstr "Baixar Certificado CA "

#: authentication.pm:116 authentication.pm:149
#, c-format
msgid "Use Disconnect mode "
msgstr "Usar modo desconectado "

#: authentication.pm:117 authentication.pm:170
#, c-format
msgid "Use anonymous BIND "
msgstr "Usar BIND anônimo "

#: authentication.pm:118 authentication.pm:121 authentication.pm:123
#: authentication.pm:127
#, c-format
msgid "  "
msgstr "  "

#: authentication.pm:119 authentication.pm:171
#, c-format
msgid "Bind DN "
msgstr "Bind DN "

#: authentication.pm:120 authentication.pm:172
#, c-format
msgid "Bind Password "
msgstr "Senha Bind "

#: authentication.pm:122
#, c-format
msgid "Advanced path for group "
msgstr "Path avançado para group "

#: authentication.pm:124
#, c-format
msgid "Password base"
msgstr "Password base"

#: authentication.pm:125
#, c-format
msgid "Group base"
msgstr "Group base"

#: authentication.pm:126
#, c-format
msgid "Shadow base"
msgstr "Shadow base"

#: authentication.pm:141
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""
"Você selecionou autenticação Kerberos 5. Por favor revise as opções de "
"configuração abaixo "

#: authentication.pm:143
#, c-format
msgid "Realm "
msgstr "Realm "

#: authentication.pm:145
#, c-format
msgid "KDCs Servers"
msgstr "Servidores KDCs"

#: authentication.pm:147
#, c-format
msgid "Use DNS to locate KDC for the realm"
msgstr "Usar DNS para localizar KDC para o realm"

#: authentication.pm:148
#, c-format
msgid "Use DNS to locate realms"
msgstr "Usar DNS para localizar realms"

#: authentication.pm:153
#, c-format
msgid "Use local file for users information"
msgstr "Usar arquivo local para informações de usuários"

#: authentication.pm:154
#, c-format
msgid "Use Ldap for users information"
msgstr "Usar Ldap para informações de usuários"

#: authentication.pm:160
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""
"Você selecionou Kerberos 5 para autenticação, agora você deve escolher o "
"tipo de informação de usuários "

#: authentication.pm:166
#, c-format
msgid "Fecth base Dn "
msgstr "Obter base Dn "

#: authentication.pm:187
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""
"Você selecionou autenticação NIS. Por favor revise as opções de configuração "
"abaixo "

#: authentication.pm:189
#, c-format
msgid "NIS Domain"
msgstr "Domínio NIS"

#: authentication.pm:190
#, c-format
msgid "NIS Server"
msgstr "Servidor NIS"

#: authentication.pm:211
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""
"Você selecionou autenticação por Domínio Windows. Por favor revise as opções "
"de configuração abaixo "

#: authentication.pm:215
#, c-format
msgid "Domain Model "
msgstr "Domínio Modelo "

#: authentication.pm:217
#, c-format
msgid "Active Directory Realm "
msgstr "Domínio Active Directory"

#: authentication.pm:218
#, c-format
msgid "DNS Domain"
msgstr "Domínio DNS"

#: authentication.pm:219
#, c-format
msgid "DC Server"
msgstr "Servidor DC"

#: authentication.pm:233 authentication.pm:249
#, c-format
msgid "Authentication"
msgstr "Autenticação"

#: authentication.pm:235
#, c-format
msgid "Authentication method"
msgstr "Método de autenticação"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:240
#, c-format
msgid "No password"
msgstr "Nenhuma senha"

#: authentication.pm:261
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Essa senha é muito simples (deve ter ao menos %d caracteres)"

#: authentication.pm:368
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Não pode usar broadcast sem domínio NIS"

#: authentication.pm:884
#, c-format
msgid "Select file"
msgstr "Selecione o arquivo"

#: authentication.pm:890
#, c-format
msgid "Domain Windows for authentication : "
msgstr "Domínio Windows para autenticação: "

#: authentication.pm:892
#, c-format
msgid "Domain Admin User Name"
msgstr "Nome de usuário administrador do domínio"

#: authentication.pm:893
#, c-format
msgid "Domain Admin Password"
msgstr "Senha de administrador do domínio"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:953
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Bem-vindo ao seletor do sistema operacional!\n"
"\n"
"Escolha um sistema operacional na lista acima ou\n"
"aguarde para entrar no sistema padrão.\n"
"\n"

#: bootloader.pm:1131
#, c-format
msgid "LILO with text menu"
msgstr "LILO com menu de texto"

#: bootloader.pm:1132
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB com menu gráfico"

#: bootloader.pm:1133
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB com menu de texto"

#: bootloader.pm:1134
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1135
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1217
#, c-format
msgid "not enough room in /boot"
msgstr "sem espaço suficiente em /boot"

#: bootloader.pm:1873
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Você não pode instalar o gerenciador de inicialização"
"em uma partição %s \n"

#: bootloader.pm:1994
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Seu gerenciador de inicialização precisa ser atualizado porque as partições "
"foram renumeradas"

#: bootloader.pm:2007
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"O gerenciador de boot não pode ser instalado corretamente. Você deve iniciar "
"com o modo de recuperação e escolher \"%s\""

#: bootloader.pm:2008
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalar gerenciador de inicialização"

#: common.pm:142
#, c-format
msgid "B"
msgstr "B"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d minutos"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 minuto"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d segundos"

#: common.pm:383
#, c-format
msgid "command %s missing"
msgstr "comando %s não encontrado"

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV é um protocolo que permite montar a pasta de um servidor web\n"
"localmente, e de tratá-la como um sistema de arquivos local (desde\n"
"que o servidor web esteja configurado como servidor WebDAV). Se desejar\n"
"adicionar pontos de montagem WebDAV, selecione a opção \"Novo\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Novo"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:411 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmontar"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:407 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montar"

#: diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Servidor"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:401
#: diskdrake/interactive.pm:662 diskdrake/interactive.pm:680
#: diskdrake/interactive.pm:684 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Ponto de Montagem"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:403
#: diskdrake/interactive.pm:1068 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opções"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:183 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Pronto"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:123 diskdrake/hd_gtk.pm:290
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:521
#: diskdrake/interactive.pm:652 diskdrake/interactive.pm:938
#: diskdrake/interactive.pm:1114 diskdrake/interactive.pm:1127
#: diskdrake/interactive.pm:1130 diskdrake/interactive.pm:1398
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 fsedit.pm:246
#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
#: scanner.pm:95 scanner.pm:106 scanner.pm:113 scanner.pm:120 wizards.pm:95
#: wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Erro"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Por favor, digite a URL do servidor WebDAV"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "O início da URL deve começar com http:// ou https://"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Servidor: "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:489
#: diskdrake/interactive.pm:1273 diskdrake/interactive.pm:1358
#, c-format
msgid "Mount point: "
msgstr "Ponto de montagem: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1365
#, c-format
msgid "Options: %s"
msgstr "Opções: %s"

#: diskdrake/hd_gtk.pm:54 diskdrake/interactive.pm:298
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206
#: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250
#: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274
#, c-format
msgid "Partitioning"
msgstr "Particionamento"

#: diskdrake/hd_gtk.pm:68
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr "Clique em uma partição, escolha um sistema de arquivos e depois escolha uma"
"ação"

#: diskdrake/hd_gtk.pm:105 diskdrake/interactive.pm:1089
#: diskdrake/interactive.pm:1099 diskdrake/interactive.pm:1152
#, c-format
msgid "Read carefully"
msgstr "Leia com atenção"

#: diskdrake/hd_gtk.pm:105
#, c-format
msgid "Please make a backup of your data first"
msgstr "Sugerimos que faça um backup dos seus dados"

#: diskdrake/hd_gtk.pm:106 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Sair"

#: diskdrake/hd_gtk.pm:106
#, c-format
msgid "Continue"
msgstr "Continuar"

#: diskdrake/hd_gtk.pm:178 interactive.pm:653 interactive/gtk.pm:786
#: interactive/gtk.pm:804 interactive/gtk.pm:825 ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Ajuda"

#: diskdrake/hd_gtk.pm:224
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Você tem uma partição do Windows muito grande.\n"
"Sugiro que você diminua o tamanho dessa partição\n"
"(clique nela, depois clique em \"Redimensionar\")"

#: diskdrake/hd_gtk.pm:226
#, c-format
msgid "Please click on a partition"
msgstr "Clique em uma partição"

#: diskdrake/hd_gtk.pm:240 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalhes"

#: diskdrake/hd_gtk.pm:290
#, c-format
msgid "No hard drives found"
msgstr "Nenhum disco rígido foi encontrado"

#: diskdrake/hd_gtk.pm:317
#, c-format
msgid "Unknown"
msgstr "Desconhecido"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "Ext3"
msgstr "Ext3"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "Swap"
msgstr "Swap"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:380 services.pm:158
#, c-format
msgid "Other"
msgstr "Outra"

#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:1288
#, c-format
msgid "Empty"
msgstr "Vazia"

#: diskdrake/hd_gtk.pm:387
#, c-format
msgid "Filesystem types:"
msgstr "Tipos de sistema de arquivos:"

#: diskdrake/hd_gtk.pm:408 diskdrake/interactive.pm:303
#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:546
#: diskdrake/interactive.pm:743 diskdrake/interactive.pm:801
#: diskdrake/interactive.pm:918 diskdrake/interactive.pm:960
#: diskdrake/interactive.pm:961 diskdrake/interactive.pm:1211
#: diskdrake/interactive.pm:1249 diskdrake/interactive.pm:1397 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:439
#, c-format
msgid "Warning"
msgstr "Aviso"

#: diskdrake/hd_gtk.pm:408
#, c-format
msgid "This partition is already empty"
msgstr "Esta partição já está vazia"

#: diskdrake/hd_gtk.pm:417
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Usar \"Desmontar\" primeiro"

#: diskdrake/hd_gtk.pm:417
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Usar ``%s'' (no modo expert)"

#: diskdrake/hd_gtk.pm:417 diskdrake/interactive.pm:402
#: diskdrake/interactive.pm:584 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Tipo"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Escolha outra partição"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Escolha uma partição"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:379
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Mais"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:291
#: diskdrake/interactive.pm:1196
#, c-format
msgid "Confirmation"
msgstr "Confirmação"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Sair sem salvar"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Sair sem gravar a tabela de partições?"

#: diskdrake/interactive.pm:291
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Você quer salvar as modificações em /etc/fstab"

#: diskdrake/interactive.pm:298 fs/partitioning_wizard.pm:250
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Você precisa reiniciar o computador para que as modificações na tabela de"
"partições tenham efeito"

#: diskdrake/interactive.pm:303
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
"Você deveria formatar a partição %s.\n"
"Caso contrário, nenhuma entrada para o ponto de montagem %s será escrita no "
"fstab.\n"
"Sair assim mesmo?"

#: diskdrake/interactive.pm:316
#, c-format
msgid "Clear all"
msgstr "Limpar tudo"

#: diskdrake/interactive.pm:317
#, c-format
msgid "Auto allocate"
msgstr "Alocar automaticamente"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to normal mode"
msgstr "Mudar para modo normal"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to expert mode"
msgstr "Mudar para modo expert"

#: diskdrake/interactive.pm:335
#, c-format
msgid "Hard drive information"
msgstr "Informações do disco rígido"