package partition_table; # $Id$ use diagnostics; use strict; use common; use fs::type; use partition_table::raw; use detect_devices; use log; our @fields2save = qw(primary extended totalsectors isDirty will_tell_kernel); sub hd2minimal_part { my ($hd) = @_; { rootDevice => $hd->{device}, if_($hd->{usb_media_type}, is_removable => 1), }; } #- works for both hard drives and partitions ;p sub description { my ($hd) = @_; my $win = $hd->{device_windobe}; sprintf "%s%s (%s%s%s%s)", $hd->{device}, $win && " [$win:]", formatXiB($hd->{totalsectors} || $hd->{size}, 512), $hd->{info} && ", $hd->{info}", $hd->{mntpoint} && ", " . $hd->{mntpoint}, $hd->{fs_type} && ", $hd->{fs_type}"; } sub isPrimary { my ($part, $hd) = @_; foreach (@{$hd->{primary}{raw}}) { $part eq $_ and return 1 } 0; } sub adjustStartAndEnd { my ($hd, $part) = @_; $hd->adjustStart($part); $hd->adjustEnd($part); } sub verifyNotOverlap { my ($a, $b) = @_; $a->{start} + $a->{size} <= $b->{start} || $b->{start} + $b->{size} <= $a->{start}; } sub verifyInside { my ($a, $b) = @_; $b->{start} <= $a->{start} && $a->{start} + $a->{size} <= $b->{start} + $b->{size}; } sub verifyParts_ { foreach my $i (@_) { foreach (@_) { next if !$i || !$_ || $i == $_ || isWholedisk($i) || isExtended($i); #- avoid testing twice for simplicity :-) if (isWholedisk($_)) { verifyInside($i, $_) or cdie sprintf("partition sector #$i->{start} (%s) is not inside whole disk (%s)!", formatXiB($i->{size}, 512), formatXiB($_->{size}, 512)); } elsif (isExtended($_)) { verifyNotOverlap($i, $_) or log::l(sprintf("warning partition sector #$i->{start} (%s) is overlapping with extended partition!", formatXiB($i->{size}, 512))); #- only warning for this one is acceptable } else { verifyNotOverlap($i, $_) or cdie sprintf("partitions sector #$i->{start} (%s) and sector #$_->{start} (%s) are overlapping!", formatXiB($i->{size}, 512), formatXiB($_->{size}, 512)); } } } } sub verifyParts { my ($hd) = @_; verifyParts_(get_normal_parts($hd)); } sub verifyPrimary { my ($pt) = @_; $_->{start} > 0 || arch() =~ /^sparc/ || die "partition must NOT start at sector 0" foreach @{$pt->{normal}}; verifyParts_(@{$pt->{normal}}, $pt->{extended}); } sub compute_device_name { my ($part, $hd) = @_; $part->{device} = $hd->{prefix} . $part->{part_number}; $part->{devfs_device} = $hd->{devfs_prefix} . '/part' . $part->{part_number}; } sub assign_device_numbers { my ($hd) = @_; my $i = 1; my $start = 1; #- on PPC we need to assign device numbers to the holes too - big FUN! #- not if it's an IBM machine using a DOS partition table though if (arch() =~ /ppc/ && detect_devices::get_mac_model() !~ /^IBM/) { #- first sort the normal parts $hd->{primary}{normal} = [ sort { $a->{start} <=> $b->{start} } @{$hd->{primary}{normal}} ]; #- now loop through them, assigning partition numbers - reserve one for the holes foreach (@{$hd->{primary}{normal}}) { if ($_->{start} > $start) { log::l("PPC: found a hole on $hd->{prefix} before $_->{start}, skipping device..."); $i++; } $_->{part_number} = $i; compute_device_name($_, $hd); $start = $_->{start} + $_->{size}; $i++; } } else { foreach (@{$hd->{primary}{raw}}) { $_->{part_number} = $i; compute_device_name($_, $hd); $i++; } foreach (map { $_->{normal} } @{$hd->{extended} || []}) { my $dev = $hd->{prefix} . $i; my $renumbered = $_->{device} && $dev ne $_->{device}; if ($renumbered) { require fs; eval { fs::umount_part($_) }; #- at least try to umount it will_tell_kernel($hd, del => $_, 'delay_del'); push @{$hd->{partitionsRenumbered}}, [ $_->{device}, $dev ]; } $_->{part_number} = $i; compute_device_name($_, $hd); if ($renumbered) { will_tell_kernel($hd, add => $_, 'delay_add'); } $i++; } } #- try to figure what the windobe drive letter could be! # #- first verify there's at least one primary dos partition, otherwise it #- means it is a secondary disk and all will be false :( #- my ($c, @others) = grep { isFat_or_NTFS($_) } @{$hd->{primary}{normal}}; $i = ord 'C'; $c->{device_windobe} = chr($i++) if $c; $_->{device_windobe} = chr($i++) foreach grep { isFat_or_NTFS($_) } map { $_->{normal} } @{$hd->{extended}}; $_->{device_windobe} = chr($i++) foreach @others; } sub remove_empty_extended { my ($hd) = @_; my $last = $hd->{primary}{extended} or return; @{$hd->{extended}} = grep { if ($_->{normal}) { $last = $_; } else { %{$last->{extended}} = $_->{extended} ? %{$_->{extended}} : (); } $_->{normal}; } @{$hd->{extended}}; adjust_main_extended($hd); } sub adjust_main_extended { my ($hd) = @_; if (!is_empty_array_ref $hd->{extended}) { my ($l, @l) = @{$hd->{extended}}; # the first is a special case, must recompute its real size my $start = round_down($l->{normal}{start} - 1, $hd->{geom}{sectors}); my $end = $l->{normal}{start} + $l->{normal}{size}; my $only_linux = 1; my $has_win_lba = 0; foreach (map { $_->{normal} } $l, @l) { $start = min($start, $_->{start}); $end = max($end, $_->{start} + $_->{size}); $only_linux &&= isTrueLocalFS($_) || isSwap($_); $has_win_lba ||= $_->{pt_type} == 0xc || $_->{pt_type} == 0xe; } $l->{start} = $hd->{primary}{extended}{start} = $start; $l->{size} = $hd->{primary}{extended}{size} = $end - $start; } if (!@{$hd->{extended} || []} && $hd->{primary}{extended}) { will_tell_kernel($hd, del => $hd->{primary}{extended}); %{$hd->{primary}{extended}} = (); #- modify the raw entry delete $hd->{primary}{extended}; } verifyParts($hd); #- verify everything is all right } sub adjust_local_extended { my ($hd, $part) = @_; my $extended = find { $_->{normal} == $part } @{$hd->{extended} || []} or return; $extended->{size} = $part->{size} + $part->{start} - $extended->{start}; #- must write it there too because values are not shared my $prev = find { $_->{extended}{start} == $extended->{start} } @{$hd->{extended} || []} or return; $prev->{extended}{size} = $part->{size} + $part->{start} - $prev->{extended}{start}; } sub get_normal_parts { my ($hd) = @_; @{$hd->{primary}{normal} || []}, map { $_->{normal} } @{$hd->{extended} || []}; } sub get_normal_parts_and_holes { my ($hd) = @_; my ($start, $last) = ($hd->first_usable_sector, $hd->last_usable_sector); ref($hd) or print("get_normal_parts_and_holes: bad hd" . backtrace(), "\n"); my $minimal_hole = put_in_hash({ pt_type => 0 }, hd2minimal_part($hd)); my @l = map { my $current = $start; $start = $_->{start} + $_->{size}; my $hole = { start => $current, size => $_->{start} - $current, %$minimal_hole }; put_in_hash($hole, hd2minimal_part($hd)); $hole, $_; } sort { $a->{start} <=> $b->{start} } grep { !isWholedisk($_) } get_normal_parts($hd); push @l, { start => $start, size => $last - $start, %$minimal_hole }; grep { !isEmpty($_) || $_->{size} >= $hd->cylinder_size } @l; } sub read_one($$) { my ($hd, $sector) = @_; my ($pt, $info); #- it can be safely considered that the first sector is used to probe the partition table #- but other sectors (typically for extended partition ones) have to match this type! if (!$sector) { my @parttype = ( if_(arch() =~ /^ia64/, 'gpt'), arch() =~ /^sparc/ ? ('sun', 'bsd') : ('dos', 'bsd', 'sun', 'mac'), ); foreach ('empty', @parttype, 'unknown') { /unknown/ and die "unknown partition table format on disk " . $hd->{file}; eval { # perl_checker: require partition_table::bsd # perl_checker: require partition_table::dos # perl_checker: require partition_table::empty # perl_checker: require partition_table::gpt # perl_checker: require partition_table::mac # perl_checker: require partition_table::sun require "partition_table/$_.pm"; bless $hd, "partition_table::$_"; ($pt, $info) = $hd->read($sector); log::l("found a $_ partition table on $hd->{file} at sector $sector"); }; $@ or last; } } else { #- keep current blessed object for that, this means it is neccessary to read sector 0 before. ($pt, $info) = $hd->read($sector); } my @extended = $hd->hasExtended ? grep { isExtended($_) } @$pt : (); my @normal = grep { $_->{size} && !isEmpty($_) && !isExtended($_) } @$pt; my $nb_special_empty = int(grep { $_->{size} && isEmpty($_) } @$pt); @extended > 1 and die "more than one extended partition"; put_in_hash($_, hd2minimal_part($hd)) foreach @normal, @extended; { raw => $pt, extended => $extended[0], normal => \@normal, info => $info, nb_special_empty => $nb_special_empty }; } sub read { my ($hd) = @_; my $pt = read_one($hd, 0) or return 0; $hd->{primary} = $pt; undef $hd->{extended}; verifyPrimary($pt); eval { my $need_removing_empty_extended; if ($pt->{extended}) { read_extended($hd, $pt->{extended}, \$need_removing_empty_extended) or return 0; } if ($need_removing_empty_extended) { #- special case when hda5 is empty, it must be skipped #- (windows XP generates such partition tables) remove_empty_extended($hd); #- includes adjust_main_extended } }; die "extended partition: $@" if $@; assign_device_numbers($hd); remove_empty_extended($hd); $hd->set_best_geometry_for_the_partition_table; 1; } sub read_extended { my ($hd, $extended, $need_removing_empty_extended) = @_; my $pt = read_one($hd, $extended->{start}) or return 0; $pt = { %$extended, %$pt }; push @{$hd->{extended}}, $pt; @{$hd->{extended}} > 100 and die "oops, seems like we're looping here :( (or you have more than 100 extended partitions!)"; if (@{$pt->{normal}} == 0) { $$need_removing_empty_extended = 1; delete $pt->{normal}; print "need_removing_empty_extended\n"; } elsif (@{$pt->{normal}} > 1) { die "more than one normal partition in extended partition"; } else { $pt->{normal} = $pt->{normal}[0]; #- in case of extended partitions, the start sector is local to the partition or to the first extended_part! $pt->{normal}{start} += $pt->{start}; #- the following verification can broke an existing partition table that is #- correctly read by fdisk or cfdisk. maybe the extended partition can be #- recomputed to get correct size. if (!verifyInside($pt->{normal}, $extended)) { $extended->{size} = $pt->{normal}{start} + $pt->{normal}{size}; verifyInside($pt->{normal}, $extended) or die "partition $pt->{normal}{device} is not inside its extended partition"; } } if ($pt->{extended}) { $pt->{extended}{start} += $hd->{primary}{extended}{start}; return read_extended($hd, $pt->{extended}, $need_removing_empty_extended); } else { 1; } } sub will_tell_kernel { my ($hd, $action, $o_part, $o_delay) = @_; if ($action eq 'resize') { will_tell_kernel($hd, del => $o_part); will_tell_kernel($hd, add => $o_part); } else { my $part_number; if ($o_part) { ($part_number) = $o_part->{device} =~ /(\d+)$/ or #- don't die, it occurs when we zero_MBR_and_dirty a raw_lvm_PV log::l("ERROR: will_tell_kernel bad device " . description($o_part)), return; } my @para = $action eq 'force_reboot' ? () : $action eq 'add' ? ($part_number, $o_part->{start}, $o_part->{size}) : $action eq 'del' ? $part_number : internal_error("unknown action $action"); push @{$hd->{'will_tell_kernel' . ($o_delay || '')} ||= []}, [ $action, @para ]; } if (!$o_delay) { foreach my $delay ('delay_del', 'delay_add') { my $l = delete $hd->{"will_tell_kernel$delay"} or next; push @{$hd->{will_tell_kernel} ||= []}, @$l; } } $hd->{isDirty} = 1; } sub tell_kernel { my ($hd, $tell_kernel) = @_; my $F = partition_table::raw::openit($hd); my $force_reboot = any { $_->[0] eq 'force_reboot' } @$tell_kernel; if (!$force_reboot) { foreach (@$tell_kernel) { my ($action, $part_number, $o_start, $o_size) = @$_; if ($action eq 'add') { $force_reboot ||= !c::add_partition(fileno $F, $part_number, $o_start, $o_size); } elsif ($action eq 'del') { $force_reboot ||= !c::del_partition(fileno $F, $part_number); } log::l("tell kernel $action ($hd->{device} $part_number $o_start $o_size), rebootNeeded is now " . bool2text($hd->{rebootNeeded})); } } if ($force_reboot) { my @magic_parts = grep { $_->{isMounted} && $_->{real_mntpoint} } get_normal_parts($hd); foreach (@magic_parts) { syscall_('umount', $_->{real_mntpoint}) or log::l(N("error unmounting %s: %s", $_->{real_mntpoint}, $!)); } $hd->{rebootNeeded} = !ioctl($F, c::BLKRRPART(), 0); log::l("tell kernel force_reboot ($hd->{device}), rebootNeeded is now $hd->{rebootNeeded}."); foreach (@magic_parts) { syscall_('mount', $_->{real_mntpoint}, $_->{fs_type}, c::MS_MGC_VAL()) or log::l(N("mount failed: ") . $!); } } } # write the partition table sub write { my ($hd) = @_; $hd->{isDirty} or return; $hd->{readonly} and die "a read-only partition table should not be dirty!"; #- set first primary partition active if no primary partitions are marked as active. if (my @l = @{$hd->{primary}{raw}}) { foreach (@l) { $_->{local_start} = $_->{start}; $_->{active} ||= 0; } $l[0]{active} = 0x80 if !any { $_->{active} } @l; } #- last chance for verification, this make sure if an error is detected, #- it will never be writed back on partition table. verifyParts($hd); $hd->write(0, $hd->{primary}{raw}, $hd->{primary}{info}) or die "writing of partition table failed"; #- should be fixed but a extended exist with no real extended partition, that blanks mbr! if (arch() !~ /^sparc/) { foreach (@{$hd->{extended}}) { # in case of extended partitions, the start sector must be local to the partition $_->{normal}{local_start} = $_->{normal}{start} - $_->{start}; $_->{extended} and $_->{extended}{local_start} = $_->{extended}{start} - $hd->{primary}{extended}{start}; $hd->write($_->{start}, $_->{raw}) or die "writing of partition table failed"; } } $hd->{isDirty} = 0; $hd->{hasBeenDirty} = 1; #- used in undo (to know if undo should believe isDirty or not) if (my $tell_kernel = delete $hd->{will_tell_kernel}) { tell_kernel($hd, $tell_kernel); } } sub active { my ($hd, $part) = @_; $_->{active} = 0 foreach @{$hd->{primary}{normal}}; $part->{active} = 0x80; $hd->{isDirty} = 1; } # remove a normal partition from hard drive hd sub remove { my ($hd, $part) = @_; my $i; #- first search it in the primary partitions $i = 0; foreach (@{$hd->{primary}{normal}}) { if ($_ eq $part) { will_tell_kernel($hd, del => $_); splice(@{$hd->{primary}{normal}}, $i, 1); %$_ = (); #- blank it $hd->raw_removed($hd->{primary}{raw}); return 1; } $i++; } my ($first, $second, $third) = map { $_->{normal} } @{$hd->{extended} || []}; if ($third && $first eq $part) { die "Can't handle removing hda5 when hda6 is not the second partition" if $second->{start} > $third->{start}; } #- otherwise search it in extended partitions foreach (@{$hd->{extended} || []}) { $_->{normal} eq $part or next; delete $_->{normal}; #- remove it remove_empty_extended($hd); assign_device_numbers($hd); will_tell_kernel($hd, del => $part); return 1; } 0; } # create of partition at starting at `start', of size `size' and of type `pt_type' (nice comment, uh?) sub add_primary { my ($hd, $part) = @_; { local $hd->{primary}{normal}; #- save it to fake an addition of $part, that way add_primary do not modify $hd if it fails push @{$hd->{primary}{normal}}, $part; adjust_main_extended($hd); #- verify $hd->raw_add($hd->{primary}{raw}, $part); } push @{$hd->{primary}{normal}}, $part; #- really do it } sub add_extended { arch() =~ /^sparc|ppc/ and die N("Extended partition not supported on this platform"); my ($hd, $part, $extended_type) = @_; $extended_type =~ s/Extended_?//; my $e = $hd->{primary}{extended}; if ($e && !verifyInside($part, $e)) { #-die "sorry, can't add outside the main extended partition" unless $::unsafe; my $end = $e->{start} + $e->{size}; my $start = min($e->{start}, $part->{start}); $end = max($end, $part->{start} + $part->{size}) - $start; { #- faking a resizing of the main extended partition to test for problems local $e->{start} = $start; local $e->{size} = $end - $start; eval { verifyPrimary($hd->{primary}) }; $@ and die N("You have a hole in your partition table but I can't use it. The only solution is to move your primary partitions to have the hole next to the extended partitions."); } } if ($e && $part->{start} < $e->{start}) { my $l = first(@{$hd->{extended}}); #- the first is a special case, must recompute its real size $l->{start} = round_down($l->{normal}{start} - 1, $hd->cylinder_size); $l->{size} = $l->{normal}{start} + $l->{normal}{size} - $l->{start}; my $ext = { %$l }; unshift @{$hd->{extended}}, { pt_type => 5, raw => [ $part, $ext, {}, {} ], normal => $part, extended => $ext }; #- size will be autocalculated :) } else { my ($ext, $ext_size) = is_empty_array_ref($hd->{extended}) ? ($hd->{primary}, -1) : #- -1 size will be computed by adjust_main_extended (top(@{$hd->{extended}}), $part->{size}); my %ext = (pt_type => $extended_type || 5, start => $part->{start}, size => $ext_size); $hd->raw_add($ext->{raw}, \%ext); $ext->{extended} = \%ext; push @{$hd->{extended}}, { %ext, raw => [ $part, {}, {}, {} ], normal => $part }; } $part->{start}++; $part->{size}--; #- let it start after the extended partition sector adjustStartAndEnd($hd, $part); adjust_main_extended($hd); } sub add { my ($hd, $part, $b_primaryOrExtended, $b_forceNoAdjust) = @_; get_normal_parts($hd) >= ($hd->{device} =~ /^rd/ ? 7 : $hd->{device} =~ /^(sd|ida|cciss|ataraid)/ ? 15 : 63) and cdie "maximum number of partitions handled by linux reached"; set_isFormatted($part, 0); put_in_hash($part, hd2minimal_part($hd)); $part->{start} ||= 1 if arch() !~ /^sparc/; #- starting at sector 0 is not allowed adjustStartAndEnd($hd, $part) unless $b_forceNoAdjust; my $nb_primaries = $hd->{device} =~ /^rd/ ? 3 : 1; if (arch() =~ /^sparc|ppc/ || $b_primaryOrExtended eq 'Primary' || $b_primaryOrExtended !~ /Extended/ && @{$hd->{primary}{normal} || []} < $nb_primaries) { eval { add_primary($hd, $part) }; goto success if !$@; } if ($hd->hasExtended) { eval { add_extended($hd, $part, $b_primaryOrExtended) }; goto success if !$@; } { add_primary($hd, $part); } success: assign_device_numbers($hd); will_tell_kernel($hd, add => $part); } # search for the next partition sub next { my ($hd, $part) = @_; first( sort { $a->{start} <=> $b->{start} } grep { $_->{start} >= $part->{start} + $part->{size} } get_normal_parts($hd) ); } sub next_start { my ($hd, $part) = @_; my $next = &next($hd, $part); $next ? $next->{start} : $hd->{totalsectors}; } sub load { my ($hd, $file, $b_force) = @_; open(my $F, $file) or die N("Error reading file %s", $file); my $h; { local $/ = "\0"; eval <$F>; } $@ and die N("Restoring from file %s failed: %s", $file, $@); ref($h) eq 'ARRAY' or die N("Bad backup file"); my %h; @h{@fields2save} = @$h; $h{totalsectors} == $hd->{totalsectors} or $b_force or cdie "bad totalsectors"; #- unsure we don't modify totalsectors local $hd->{totalsectors}; @$hd{@fields2save} = @$h; delete @$_{qw(isMounted isFormatted notFormatted toFormat toFormatUnsure)} foreach get_normal_parts($hd); will_tell_kernel($hd, 'force_reboot'); #- just like undo, do not force write_partitions so that user can see the new partition table but can still discard it } sub save { my ($hd, $file) = @_; my @h = @$hd{@fields2save}; require Data::Dumper; eval { output($file, Data::Dumper->Dump([\@h], ['$h']), "\0") } or die N("Error writing to file %s", $file); } 1; a id='n498' href='#n498'>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 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
# translation of urpmi-hr.po to hebrew
# Copyright (C) 2003 Free Software Foundation, Inc.
# This file is distributed under the GNU GPL license.
# lev polvoi <lev@israsrv.net.il>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: urpmi-he\n"
"POT-Creation-Date: 2003-03-13 00:54+0100\n"
"PO-Revision-Date: 2003-03-12 22:03+0000\n"
"Last-Translator: dovix <dovix2003@yahoo.com>\n"
"Language-Team: Hebrew <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.6\n"
#. This is a list of chars acceptable as a 'yes' answer to a Yes/No question;
#. you can put here the letters for 'yes' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Yy' for compatibility reasons
#.
#: placeholder.h:11
msgid "Yy"
msgstr "כfFטyY"
#. This is a list of chars acceptable as a 'no' answer to a Yes/No question;
#. you can put here the letters for 'no' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Nn' for compatibility reasons
#.
#: placeholder.h:17
msgid "Nn"
msgstr "לkKמnN"
#: placeholder.h:18
#, c-format
msgid "urpmf version %s"
msgstr "גרסת urpmf %s"
#: placeholder.h:19
msgid "Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft."
msgstr "כל הזכויות שמורות (C) 1999, 2000, 2001, 2002 MandrakeSoft."
#: placeholder.h:20
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
msgstr "זוהי תוכנה חופשית וניתן להפיצה בהתאם לתנאי רשיון הGNU GPL."
#: placeholder.h:21 placeholder.h:38
msgid "usage: urpmf [options] <file>"
msgstr "שימוש: urpmf [options] <file>"
#: placeholder.h:22
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
#: placeholder.h:23
msgid " line, incompatible with interactive mode)."
msgstr ""
#: placeholder.h:24
msgid " --all - print all tags."
msgstr ""
#: placeholder.h:25
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
#: placeholder.h:26
msgid " command line but without package name)."
msgstr ""
#: placeholder.h:27
msgid " --group - print tag group: group."
msgstr ""
#: placeholder.h:28
msgid " --size - print tag size: size."
msgstr ""
#: placeholder.h:29
msgid " --serial - print tag serial: serial."
msgstr ""
#: placeholder.h:30
msgid " --summary - print tag summary: summary."
msgstr ""
#: placeholder.h:31
msgid " --description - print tag description: description."
msgstr ""
#: placeholder.h:32
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
#: placeholder.h:33
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
#: placeholder.h:34
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
#: placeholder.h:35
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
#: placeholder.h:36
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
#: placeholder.h:37
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
#: placeholder.h:39
msgid "try urpmf --help for more options"
msgstr ""
#: placeholder.h:40
msgid "no full media list was found"
msgstr "לא נמצאה רשימת מדיה מלאה"
#: ../_irpm:1
#, c-format
msgid "%s: command not found\n"
msgstr "%sפקודה לא נמצאה \n"
#: ../_irpm:1 ../urpme:1 ../urpmi:1
#, c-format
msgid " (Y/n) "
msgstr "אישור/ביטול (כ/ל) "
#: ../_irpm:1 ../urpmi:1
#, c-format
msgid "Cancel"
msgstr "ביטול"
#: ../_irpm:1 ../urpmi:1
#, c-format
msgid "Ok"
msgstr "אישור"
#: ../_irpm:1 ../urpme:1 ../urpmi:1
#, c-format
msgid "Is this OK?"
msgstr "האם זה בסדר?"
#: ../_irpm:1
#, c-format
msgid ""
"Automatic installation of packages...\n"
"You requested installation of package %s\n"
msgstr ""
"התקנה אוטומטית של החבילות ... \n"
"ביקשת התקנה של החבילות %s\n"
#: ../_irpm:1 ../urpmi:1
#, c-format
msgid "installing %s\n"
msgstr "התקנת %s\n"
#: ../urpm.pm:1
#, c-format
msgid "unable to open rpmdb"
msgstr "אין אפשרות לפתוח את בסיס הנתונים של החבילות"
#: ../urpm.pm:1
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "הגישה לחבילה [%s] נכשלה"
#: ../urpm.pm:1
#, c-format
msgid "%s conflicts with %s"
msgstr "%s מתנגש עם %s"
#: ../urpm.pm:1
#, c-format
msgid "%s is needed by %s"
msgstr "%s נדרש ע\"י %s"
#: ../urpm.pm:1
#, c-format
msgid "unable to install package %s"
msgstr "התקנת החבילה %s נכשלה"
#: ../urpm.pm:1
#, c-format
msgid "unable to remove package %s"
msgstr "הסרת החבילה %s נכשלה"
#: ../urpm.pm:1
#, c-format
msgid "Preparing..."
msgstr "הכנה..."
#: ../urpm.pm:1 ../urpmi.addmedia:1
#, c-format
msgid "...retrieving failed: %s"
msgstr "...האיחזור נכשל: %s"
#: ../urpm.pm:1 ../urpmi.addmedia:1
#, c-format
msgid "...retrieving done"
msgstr "...האיחזור הסתיים"
#: ../urpm.pm:1
#, c-format
msgid "retrieving rpm files from medium \"%s\"..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "malformed input: [%s]"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to access medium \"%s\""
msgstr "הגישה למדיה \"%s\" נכשלה"
#: ../urpm.pm:1
#, c-format
msgid "urpmi database locked"
msgstr "בסיס הנתונים של urpmi נעול"
#: ../urpm.pm:1
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "medium \"%s\" is not selected"
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "אי-הצלחה ביצירת מדיה \"%s\"\n"
#: ../urpm.pm:1
#, c-format
msgid "package %s is not found."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "medium \"%s\" does not define any location for rpm files"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid ""
"medium \"%s\" uses an invalid list file (mirror is problably not up-to-date, "
"trying to use alternate method)"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to correctly parse [%s] on value \"%s\""
msgstr "אי-הצלחה ביצירת מדיה \"%s\"\n"
#: ../urpm.pm:1 ../urpme:1
#, c-format
msgid "The following packages contain %s: %s"
msgstr "החבילות הבאות מכילות %s : %s"
#: ../urpm.pm:1
#, c-format
msgid "no package named %s"
msgstr "לא נמצאה חבילה בשם %s"
#: ../urpm.pm:1
#, c-format
msgid "error registering local packages"
msgstr "חלה שגיאה בעת רישום חבילות מקומיות"
#: ../urpm.pm:1
#, c-format
msgid "unable to register rpm file"
msgstr "אין אפשרות לבצע רישום של החבילה"
#: ../urpm.pm:1
#, c-format
msgid "retrieving rpm file [%s] ..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "שם החבילה [%s] אינו תקין"
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "relocated %s entries in depslist"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unmounting %s"
msgstr "מנתק את %s"
#: ../urpm.pm:1
#, c-format
msgid "mounting %s"
msgstr "מחבר את %s"
#: ../urpm.pm:1
#, c-format
msgid "removing %d obsolete headers in cache"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "found %d headers in cache"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "examining hdlist file [%s]"
msgstr "בודק את הקובץ hdlist [%s]"
#: ../urpm.pm:1
#, c-format
msgid "examining synthesis file [%s]"
msgstr "בודק את קובץ הsynthesis [%s]"
#: ../urpm.pm:1
#, c-format
msgid "building hdlist [%s]"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "reading headers from medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "performing second pass to compute dependencies\n"
msgstr "מבצע מעבר שני בכדי לחשב תלויות\n"
#: ../urpm.pm:1
#, c-format
msgid "problem reading synthesis file of medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "writing list file for medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to write list file of \"%s\""
msgstr "אי-הצלחה ביצירת מדיה \"%s\"\n"
#: ../urpm.pm:1
#, c-format
msgid "file [%s] already used in the same medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "אי-הצלחה בעדכון מדיה \"%s\"\n"
#: ../urpm.pm:1
#, c-format
msgid "no hdlist file found for medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "examining MD5SUM file"
msgstr "בודק את קובץ החתימות MD5SUM"
#: ../urpm.pm:1
#, c-format
msgid "found probed hdlist (or synthesis) as %s"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "retrieving description file of \"%s\"..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "no rpm files found from [%s]"
msgstr "לא נמצאו חבילות מ [%s]"
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to read rpm files from [%s]: %s"
msgstr "אי-הצלחה בהעלאת קובץ בינארי [%s]"
#: ../urpm.pm:1
#, c-format
msgid "reading rpm files from [%s]"
msgstr "מייבא חבילות מ [%s]"
#: ../urpm.pm:1
#, c-format
msgid "...copying done"
msgstr "...ההעתקה הסתיימה"
#: ../urpm.pm:1
#, c-format
msgid "...copying failed"
msgstr "...ההעתקה נכשלה"
#: ../urpm.pm:1
#, c-format
msgid "copying source list of \"%s\"..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "copy of [%s] failed"
msgstr "העתקת [%s] נכשלה"
#: ../urpm.pm:1
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "copying description file of \"%s\"..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "removing medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "selecting multiple media: %s"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "\"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "trying to select inexistent medium \"%s\""
msgstr "ניסיון לבחור במאגר שאינו קיים \"%s\""
#: ../urpm.pm:1
#, c-format
msgid ""
"unable to access first installation medium (no Mandrake/base/hdlists file "
"found)"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "retrieving hdlists file..."
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "copying hdlists file..."
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to access first installation medium"
msgstr "אי-הצלחה בהעלאת קובץ בינארי [%s]"
#: ../urpm.pm:1
#, c-format
msgid "added medium %s"
msgstr "הוספת מדיום %s"
#: ../urpm.pm:1
#, c-format
msgid "medium \"%s\" already exists"
msgstr "המאגר \"%s\" כבר קיים"
#: ../urpm.pm:1
#, c-format
msgid "problem reading hdlist file of medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "--synthesis cannot be used with --media, --update or --parallel"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to use parallel option \"%s\""
msgstr "אין אפשרות להשתמש באפשרות המקבילה \"%s\""
#: ../urpm.pm:1
#, c-format
msgid "using associated media for parallel mode: %s"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "found parallel handler for nodes: %s"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "examining parallel handler in file [%s]"
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to parse \"%s\" in file [%s]"
msgstr "אי-הצלחה בהעלאת קובץ בינארי [%s]"
#: ../urpm.pm:1
#, c-format
msgid "write config file [%s]"
msgstr "כתיבת קובץ הגדרות [%s]"
#: ../urpm.pm:1
#, c-format
msgid "unable to write config file [%s]"
msgstr "כתיבת קובץ ההגדרות [%s] נכשלה"
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to retrieve pathname for removable medium \"%s\""
msgstr "אי-הצלחה ביצירת מדיה \"%s\"\n"
#: ../urpm.pm:1
#, c-format
msgid "using different removable device [%s] for \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "taking removable device as \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "too many mount points for removable medium \"%s\""
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to inspect list file for \"%s\", medium ignored"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "incoherent list file for \"%s\", medium ignored"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to find list file for \"%s\", medium ignored"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "אי-הצלחה בהעלאת קובץ בינארי [%s]"
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr "אי-הצלחה בהעלאת קובץ בינארי [%s]"
#: ../urpm.pm:1
#, c-format
msgid "unable to determine medium of this hdlist file [%s]"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid ""
"unable to take care of medium \"%s\" as list file is already used by another "
"medium"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "medium \"%s\" trying to use an already used list, medium ignored"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "medium \"%s\" trying to use an already used hdlist, medium ignored"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "syntax error in config file at line %s"
msgstr "התגלתה שגיאה בשורה %s בקובץ ההגדרות"
#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid " %s%% completed, speed = %s"
msgstr " %s%% הושלם, מהירות = %s"
#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid " %s%% of %s completed, ETA = %s, speed = %s"
msgstr " %s%% of %s הושלם זמן הגעה= %s, מהירות= %s"
#: ../urpm.pm:1
#, c-format
msgid "rsync failed: exited with %d or signal %d\n"
msgstr "rsync failed: exited with %d or signal %d\n"
#: ../urpm.pm:1
#, c-format
msgid "ssh is missing\n"
msgstr "חסר ssh\n"
#: ../urpm.pm:1
#, c-format
msgid "rsync is missing\n"
msgstr "חסר rsync\n"
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "curl failed: exited with %d or signal %d\n"
msgstr "rsync failed: exited with %d or signal %d\n"
#: ../urpm.pm:1
#, c-format
msgid "curl is missing\n"
msgstr "חסר curl\n"
#: ../urpm.pm:1
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "wget is missing\n"
msgstr "חסר wget\n"
#: ../urpm.pm:1
#, c-format
msgid "copy failed: %s"
msgstr "העתקה נכשלה: %s"
#: ../urpm.pm:1
#, c-format
msgid "unable to handle protocol: %s"
msgstr "השימוש בפרוטוקול : %s נכשל"
#: ../urpm.pm:1
#, c-format
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
#: ../urpm.pm:1
#, c-format
msgid "unknown protocol defined for %s"
msgstr "פרוטוקול לא מזוהה הוגדר עבור %s"
#: ../urpm.pm:1
#, c-format
msgid "Unknown webfetch `%s' !!!\n"
msgstr "webfetch לא ידוע `%s' !!!\n"
#: ../urpme:1
#, c-format
msgid "Removing failed"
msgstr "ההסרה נכשלה"
#: ../urpme:1
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be removed (%d "
"MB)"
msgstr "בכדי לענות על התלויות, החבילות הבאות צריכות להמחק (%d MB)"
#: ../urpme:1
#, c-format
msgid "Checking to remove the following packages"
msgstr "בדיקה להסרה של החבילות הבאות"
#: ../urpme:1
#, c-format
msgid "Nothing to remove"
msgstr "שום-דבר למחיקה"
#: ../urpme:1
#, c-format
msgid "removing package %s will break your system"
msgstr "הסרת החבילה %s תגרום נזק למערכת"
#: ../urpme:1
#, c-format
msgid "unknown package"
msgstr "חבילה לא מוכרת"
#: ../urpme:1
#, c-format
msgid "unknown packages"
msgstr "חבילות לא מוכרות"
#: ../urpme:1
#, c-format
msgid "urpme: unknown option \"-%s\", check usage with --help\n"
msgstr ""
#: ../urpme:1
#, c-format
msgid " -a - select all packages matching expression.\n"
msgstr " -a - בחירת כל החבילות עם ביטוי מתאים.\n"
#: ../urpme:1 ../urpmi:1 ../urpmq:1
#, c-format
msgid " --parallel - distributed urpmi accross machines of alias.\n"
msgstr ""
#: ../urpme:1 ../urpmi:1
#, c-format
msgid ""
" --test - verify if the installation can be achieved correctly.\n"
msgstr " --test - וידוי שההתקנת החבילה יכולה להסתיים בהצלחה.\n"
#: ../urpme:1 ../urpmi:1
#, c-format
msgid " --auto - automatically select a package in choices.\n"
msgstr " --auto - בחירה אוטומטית של חבילה מהאפשרויות.\n"
#: ../urpme:1 ../urpmf:1 ../urpmi:1 ../urpmi.addmedia:1 ../urpmi.removemedia:1
#: ../urpmi.update:1 ../urpmq:1
#, c-format
msgid " --help - print this help message.\n"
msgstr ""
#: ../urpme:1
#, c-format
msgid ""
"urpme version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"גרסת urpme %s\n"
"כל הזכויות שמורות (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
"זוהי תוכנה חופשית וניתן להפיצה בהתאם לתנאי הרשיון GNU GPL.\n"
"\n"
"שימוש:\n"
#: ../urpmf:1
#, c-format
msgid ""
"callback is :\n"
"%s\n"
msgstr ""
"הקריאה היא :\n"
"%s\n"
#: ../urpmf:1
#, c-format
msgid " ) - right parenthesis to close group expression.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid " ( - left parenthesis to open group expression.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid " ! - unary NOT, true if expression is false.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid ""
" -o - binary OR operator, true if one expression is true.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid ""
" -a - binary AND operator, true if both expression are true.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid " -e - include perl code directly as perl -e.\n"
msgstr ""
#: ../urpmf:1 ../urpmq:1
#, c-format
msgid " -f - print version, release and arch with name.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid " -i - ignore case distinctions in every pattern.\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines).\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines).\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid " --files - print tag files: all files (multiple lines).\n"
msgstr ""
#: ../urpmf:1
#, c-format
msgid " --requires - print tag requires: all requires (multiple lines).\n"
msgstr ""
#: ../urpmf:1