PATH:
usr
/
sbin
#!/usr/bin/perl # # dpkg-fsys-usrunmess - Undoes the merged-/usr-via-aliased-dirs mess # # Copyright © 2020-2021 Guillem Jover <guillem@debian.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/> use strict; use warnings; use feature qw(state); our ($PROGNAME) = $0 =~ m{(?:.*/)?([^/]*)}; our $PROGVERSION = '1.20.9'; our $ADMINDIR = '/var/lib/dpkg'; use POSIX; use Getopt::Long qw(:config posix_default bundling_values no_ignorecase); eval q{ pop @INC if $INC[-1] eq '.'; use File::FcntlLock; }; if ($@) { fatal('missing File::FcntlLock module; please install libfile-fcntllock-perl'); } my $opt_noact = length $ENV{DPKG_USRUNMESS_NOACT} ? 1 : 0; my $opt_prompt = 0; my @options_spec = ( 'help|?' => sub { usage(); exit 0; }, 'version' => sub { version(); exit 0; }, 'dry-run|no-act|n' => \$opt_noact, 'prompt|p' => \$opt_prompt, ); { local $SIG{__WARN__} = sub { usageerr($_[0]) }; GetOptions(@options_spec); } my @aliased_dirs; # # Scan all dirs under / and check whether any are aliased to /usr. # foreach my $path (glob '/*') { debug("checking symlink? $path"); next unless -l $path; debug("checking merged-usr symlink? $path"); my $symlink = readlink $path; next unless $symlink eq "usr$path" or $symlink eq "/usr$path"; debug("merged-usr breakage, queueing $path"); push @aliased_dirs, $path; } if (@aliased_dirs == 0) { print "System is fine, no aliased directories found, congrats!\n"; exit 0; } # # dpkg consistency checks # debug('checking dpkg database consistency'); system(qw(dpkg --audit)) == 0 or fatal("cannot audit the dpkg database: $!"); debug('checking whether dpkg has been interrupted'); if (glob "$ADMINDIR/updates/*") { fatal('dpkg is in an inconsistent state, please fix that'); } my $aliased_regex = '^(' . join('|', @aliased_dirs) . ')/'; # # Get a list of all paths (including diversion) under the aliased dirs. # my @search_args; my %aliased_pathnames; foreach my $dir (@aliased_dirs) { push @search_args, "$dir/*"; } open my $fh_paths, '-|', 'dpkg-query', '--search', @search_args or fatal("cannot execute dpkg-query --search: $!"); while (<$fh_paths>) { if (m/^diversion by [^ ]+ from: .*$/) { # Ignore. } elsif (m/^diversion by [^ ]+ to: (.*)$/) { if (-e $1) { add_pathname($1, 'diverted pathname'); } } elsif (m/^.*: (.*)$/) { add_pathname($1, 'pathname'); } } close $fh_paths; # # Get a list of all update-alternatives under the aliased dirs. # my @selections = qx(update-alternatives --get-selections); foreach my $selection (@selections) { my $name = (split(' ', $selection))[0]; my $slaves = 0; open my $fh_alts, '-|', 'update-alternatives', '--query', $name or fatal("cannot execute update-alternatives --query: $!"); while (<$fh_alts>) { if (m/^\s*$/) { last; } elsif (m/^Link: (.*)$/) { add_pathname($1, 'alternative link'); } elsif (m/^Slaves:\s*$/) { $slaves = 1; } elsif ($slaves and m/^\s\S+\s(\S+)$/) { add_pathname($1, 'alternative slave'); } else { $slaves = 0; } } close $fh_alts; } my $sroot = '/.usrunmess'; my @relabel; # # Create a shadow hierarchy under / for the new unmessed dir: # debug("creating shadow dir = $sroot"); mkdir $sroot or sysfatal("cannot create directory $sroot"); foreach my $dir (@aliased_dirs) { debug("creating shadow dir = $sroot$dir"); mkdir "$sroot$dir" or sysfatal("cannot create directory $sroot$dir"); push @relabel, "$sroot$dir"; } # # Populate the split dirs with hardlinks or copies of the objects from # their counter-parts in /usr. # foreach my $pathname (sort keys %aliased_pathnames) { my (@meta) = lstat $pathname or sysfatal("cannot lstat object $pathname for shadow hierarchy"); if (-d _) { my $mode = $meta[2]; my ($uid, $gid) = @meta[4, 5]; my ($atime, $mtime, $ctime) = @meta[8, 9, 10]; debug("creating shadow dir = $sroot$pathname"); mkdir "$sroot$pathname" or sysfatal("cannot mkdir $sroot$pathname"); chmod $mode, "$sroot$pathname" or sysfatal("cannot chmod $mode $sroot$pathname"); chown $uid, $gid, "$sroot$pathname" or sysfatal("cannot chown $uid $gid $sroot$pathname"); utime $atime, $mtime, "$sroot$pathname" or sysfatal("cannot utime $atime $mtime $sroot$pathname"); push @relabel, "$sroot$pathname"; } elsif (-f _) { debug("creating shadow file = $sroot$pathname"); copy("/usr$pathname", "$sroot$pathname"); } elsif (-l _) { my $target = readlink "/usr$pathname"; debug("creating shadow symlink = $sroot$pathname"); symlink $target, "$sroot$pathname" or sysfatal("cannot symlink $target to $sroot$pathname"); push @relabel, "$sroot$pathname"; } else { fatal("unhandled object type for '$pathname'"); } } # # Prompt at the point of no return, if the user requested it. # if ($opt_prompt) { print "Shadow hierarchy created at '$sroot', ready to proceed (y/N)? "; my $reply = <STDIN>; chomp $reply; if ($reply ne 'y' and $reply ne 'yes') { print "Aborting migration, shadow hierarchy left in place.\n"; exit 0; } } # # Mark all packages as half-configured so that we can force a mass # reconfiguration, to trigger any code in maintainer scripts that might # create files. # # XXX: We do this manually by editing the status file. # XXX: We do this for packages that might not have maintscripts, or might # not involve affected directories. # debug('marking all dpkg packages as half-configured'); if (not $opt_noact) { open my $fh_lock, '>', "$ADMINDIR/lock" or sysfatal('cannot open dpkg database lock file'); my $fs = File::FcntlLock->new(l_type => F_WRLCK); $fs->lock($fh_lock, F_SETLKW) or sysfatal('cannot get a write lock on dpkg database'); my $file_db = "$ADMINDIR/status"; my $file_dbnew = $file_db . '.new'; open my $fh_dbnew, '>', $file_dbnew or sysfatal('cannot open new dpkg database'); open my $fh_db, '<', $file_db or sysfatal('cannot open dpkg database'); while (<$fh_db>) { if (m/^Status: /) { s/ installed$/ half-configured/; } print { $fh_dbnew } $_; } close $fh_db; $fh_dbnew->flush() or sysfatal('cannot flush new dpkg database'); $fh_dbnew->sync() or sysfatal('cannot fsync new dpkg database'); close $fh_dbnew or sysfatal('cannot close new dpkg database'); rename $file_dbnew, $file_db or sysfatal('cannot rename new dpkg database'); } # # Replace things as quickly as possible: # foreach my $dir (@aliased_dirs) { debug("making dir backup = $dir.aliased"); if (not $opt_noact) { rename $dir, "$dir.aliased" or sysfatal("cannot make backup directory $dir.aliased"); } debug("renaming $sroot$dir to $dir"); if (not $opt_noact) { rename "$sroot$dir", $dir or sysfatal("cannot install fixed directory $dir"); } } mac_relabel(); # # Re-configure all packages, so that postinst maintscripts are executed. # debug('reconfigured all packages'); if (not $opt_noact) { local $ENV{DEBIAN_FRONTEND} = 'noninteractive'; system(qw(dpkg --configure --pending)) == 0 or fatal("cannot reconfigure packages: $!"); } # # Cleanup backup directories. # foreach my $dir (@aliased_dirs) { debug("removing backup = $dir.aliased"); if (not $opt_noact) { unlink "$dir.aliased" or sysfatal("cannot cleanup backup directory $dir.aliased"); } } my %deferred_dirnames; # # Cleanup moved objects. # foreach my $pathname (sort keys %aliased_pathnames) { my (@meta) = lstat $pathname or sysfatal("cannot lstat object $pathname for cleanup"); if (-d _) { # Skip directories as this might be shared by a proper path under the # aliased hierearchy. And so that we can remove them in reverse order. debug("deferring merged dir cleanup = /usr$pathname"); $deferred_dirnames{"/usr$pathname"} = 1; } else { debug("cleaning up pathname = /usr$pathname"); next if $opt_noact; unlink "/usr$pathname" or sysfatal("cannot unlink object /usr$pathname"); } } # # Cleanup deferred directories. # debug("cleaning up shadow deferred dir = $sroot"); my $arg_max = POSIX::sysconf(POSIX::_SC_ARG_MAX) // POSIX::_POSIX_ARG_MAX; my @batch_dirs; my $batch_size = 0; foreach my $dir (keys %deferred_dirnames) { my $dir_size = length($dir) + 1; if ($batch_size + $dir_size < $arg_max) { $batch_size += length($dir) + 1; push @batch_dirs, $dir; } else { next; } next if length $batch_size == 0; open my $fh_dirs, '-|', 'dpkg-query', '--search', @batch_dirs or fatal("cannot execute dpkg-query --search: $!"); while (<$fh_dirs>) { if (m/^.*: (.*)$/) { # If the directory is known by its aliased name, it should not be # cleaned up. if (exists $deferred_dirnames{$1}) { delete $deferred_dirnames{$1}; } } } close $fh_dirs; @batch_dirs = (); $batch_size = 0; } if (not $opt_noact) { foreach my $dirname (reverse sort keys %deferred_dirnames) { rmdir $dirname or sysfatal("cannot remove shadow directory $dirname"); } } if (not $opt_noact) { debug("cleaning up shadow root dir = $sroot"); rmdir $sroot or sysfatal("cannot remove shadow directory $sroot"); } print "Done, hierarchy unmessed, congrats!\n"; print "(Note: you might need to run 'hash -r' in your shell.)\n"; 1; ## ## Functions ## sub debug { my $msg = shift; print { \*STDERR } "D: $msg\n"; } sub fatal { my $msg = shift; die "error: $msg\n"; } sub sysfatal { my $msg = shift; fatal("$msg: $!"); } sub copy { my ($src, $dst) = @_; # Try to hardlink first. return if link $src, $dst; # If we are on different filesystems, try a copy. if ($! == POSIX::EXDEV) { # XXX: This will not preserve hardlinks, these would get restored # after the next package upgrade. system('cp', '-a', $src, $dst) == 0 or fatal("cannot copy file $src to $dst: $?"); } else { sysfatal("cannot link file $src to $dst"); } } sub mac_relabel { my $has_cmd = 0; foreach my $path (split /:/, $ENV{PATH}) { if (-x "$path/restorecon") { $has_cmd = 1; last; } } return unless $has_cmd; foreach my $pathname (@relabel) { system('restorecon', $pathname) == 0 or fatal("cannot restore MAC context for $pathname: $?"); } } sub add_pathname { my ($pathname, $origin) = @_; if ($pathname =~ m/$aliased_regex/) { debug("adding $origin = $pathname"); $aliased_pathnames{$pathname} = 1; } } sub version() { printf "Debian %s version %s.\n", $PROGNAME, $PROGVERSION; } sub usage { printf 'Usage: %s [<option>...]' . "\n\n" . 'Options: -p, --prompt prompt before the point of no return. -n, --no-act just check and create the new structure, no switch. --dry-run ditto. -?, --help show this help message. --version show the version.' . "\n", $PROGNAME; } sub usageerr { my $msg = shift; state $printforhelp = 'Use --help for program usage information.'; $msg = sprintf $msg, @_ if @_; warn "$PROGNAME: error: $msg\n"; warn "$printforhelp\n"; exit 2; }
[+]
..
[-] ipmaddr
[edit]
[-] mksquashfs
[edit]
[-] httpd
[edit]
[-] reboot
[edit]
[-] mkfs.ext3
[edit]
[-] lsmod
[edit]
[-] runq
[edit]
[-] xfs_mkfile
[edit]
[-] dnssec-importkey
[edit]
[-] ldconfig
[edit]
[-] pwunconv
[edit]
[-] httpd.d
[edit]
[-] grub2-switch-to-blscfg
[edit]
[-] xfs_quota
[edit]
[-] xfs_mdrestore
[edit]
[-] genrandom
[edit]
[-] blkzone
[edit]
[-] iprinit
[edit]
[-] selinuxdefcon
[edit]
[-] cfdisk
[edit]
[-] xfs_io
[edit]
[-] quotaon
[edit]
[-] vigr
[edit]
[-] ip6tables-save
[edit]
[-] luseradd
[edit]
[-] insmod
[edit]
[-] isc-hmac-fixup
[edit]
[-] sw-engine-fpm
[edit]
[-] grub2-setpassword
[edit]
[-] unix_chkpwd
[edit]
[-] ping
[edit]
[-] fuser
[edit]
[-] fsck.ext3
[edit]
[-] rpcctl
[edit]
[-] devlink
[edit]
[-] blkmapd
[edit]
[-] pam_console_apply
[edit]
[-] kpartx
[edit]
[-] genhostid
[edit]
[-] pure-ftpwho
[edit]
[-] logsave
[edit]
[-] exicyclog
[edit]
[-] rndc-confgen
[edit]
[-] xfs_bmap
[edit]
[-] grpck
[edit]
[-] sim_server
[edit]
[-] e2freefrag
[edit]
[-] sulogin
[edit]
[-] plymouthd
[edit]
[-] mount.nfs
[edit]
[-] grub2-mkconfig
[edit]
[-] weak-modules
[edit]
[-] fdisk
[edit]
[-] rsyslogd
[edit]
[-] vmcore-dmesg
[edit]
[-] sssd
[edit]
[-] selabel_partial_match
[edit]
[-] zramctl
[edit]
[-] setsebool
[edit]
[-] genhomedircon
[edit]
[-] grub2-set-default
[edit]
[-] applygnupgdefaults
[edit]
[-] grub2-macbless
[edit]
[-] userdel
[edit]
[-] semodule
[edit]
[-] xfs_repair
[edit]
[-] xfs_spaceman
[edit]
[-] swaplabel
[edit]
[-] groupdel
[edit]
[-] lchage
[edit]
[-] rpc.statd
[edit]
[-] tipc
[edit]
[-] grub2-reboot
[edit]
[-] blkid
[edit]
[-] iptables-restore-translate
[edit]
[-] ausearch
[edit]
[-] xfs_ncheck
[edit]
[-] rpcdebug
[edit]
[-] nfsdclnts
[edit]
[-] grub2-bios-setup
[edit]
[-] mii-tool
[edit]
[-] lid
[edit]
[-] irqbalance-ui
[edit]
[-] fuse2fs
[edit]
[-] mkfadumprd
[edit]
[-] xqmstats
[edit]
[-] debugfs
[edit]
[-] exim
[edit]
[-] wipefs
[edit]
[-] unbound-anchor
[edit]
[-] ddns-confgen
[edit]
[-] biosdecode
[edit]
[-] packer
[edit]
[-] nfsdclddb
[edit]
[-] pure-quotacheck
[edit]
[-] parted
[edit]
[-] pidof
[edit]
[-] anacron
[edit]
[-] rtcwake
[edit]
[-] mkfs.minix
[edit]
[-] usermod
[edit]
[-] mkfs.ext4
[edit]
[-] addgnupghome
[edit]
[-] pure-config.pl
[edit]
[-] ctrlaltdel
[edit]
[-] ipset
[edit]
[-] kexec
[edit]
[-] iptables-save
[edit]
[-] addpart
[edit]
[-] kacpimon
[edit]
[-] rotatelogs
[edit]
[-] clock
[edit]
[-] virt-what
[edit]
[-] biosdevname
[edit]
[-] timedatex
[edit]
[-] nscd
[edit]
[-] chcpu
[edit]
[-] fsck.ext2
[edit]
[-] quotacheck
[edit]
[-] ether-wake
[edit]
[-] showmount
[edit]
[-] atopacctd
[edit]
[-] partx
[edit]
[-] dnssec-verify
[edit]
[-] key.dns_resolver
[edit]
[-] pure-mrtginfo
[edit]
[-] modprobe
[edit]
[-] named
[edit]
[-] xfs_fsr
[edit]
[-] dmidecode
[edit]
[-] autrace
[edit]
[-] pwconv
[edit]
[-] capsh
[edit]
[-] ldattach
[edit]
[-] rfkill
[edit]
[-] suphp
[edit]
[-] grub2-ofpathname
[edit]
[-] zdump
[edit]
[-] pwck
[edit]
[-] e2undo
[edit]
[-] hardlink
[edit]
[-] intel_sdsi
[edit]
[-] mkfs.xfs
[edit]
[-] dnssec-dsfromkey
[edit]
[-] ifconfig
[edit]
[-] e4crypt
[edit]
[-] dovecot
[edit]
[-] sfdisk
[edit]
[-] lshw
[edit]
[-] consoletype
[edit]
[-] clockdiff
[edit]
[-] iptables-translate
[edit]
[-] getenforce
[edit]
[-] atd
[edit]
[-] nfsidmap
[edit]
[-] e2image
[edit]
[-] fsck.minix
[edit]
[-] nologin
[edit]
[-] visudo
[edit]
[-] mkfs
[edit]
[-] iprdump
[edit]
[-] rndc
[edit]
[-] init
[edit]
[-] tcpdump
[edit]
[-] mkfs.ext2
[edit]
[-] setenforce
[edit]
[-] umount.nfs4
[edit]
[-] modinfo
[edit]
[-] makedumpfile
[edit]
[-] exim_fixdb
[edit]
[-] g13-syshelp
[edit]
[-] xfs_copy
[edit]
[-] lfd
[edit]
[-] fsfreeze
[edit]
[-] pam_timestamp_check
[edit]
[-] ip6tables-translate
[edit]
[-] lgroupdel
[edit]
[-] nft
[edit]
[-] grub2-rpm-sort
[edit]
[-] ifup
[edit]
[-] tuned-adm
[edit]
[-] sm-notify
[edit]
[-] imunify-notifier
[edit]
[-] named-journalprint
[edit]
[-] zic
[edit]
[-] augenrules
[edit]
[-] selinux_check_access
[edit]
[-] avcstat
[edit]
[-] dnssec-signzone
[edit]
[-] rcmysql
[edit]
[-] iftop
[edit]
[-] convertquota
[edit]
[-] uuserver
[edit]
[-] request-key
[edit]
[-] tsig-keygen
[edit]
[-] edquota
[edit]
[-] sefcontext_compile
[edit]
[-] grpconv
[edit]
[-] logrotate
[edit]
[-] blockdev
[edit]
[-] ownership
[edit]
[-] slattach
[edit]
[-] tuned
[edit]
[-] grpunconv
[edit]
[-] nsec3hash
[edit]
[-] accessdb
[edit]
[-] ip6tables
[edit]
[-] dnssec-checkds
[edit]
[-] getpcaps
[edit]
[-] rpcinfo
[edit]
[-] dpkg-fsys-usrunmess
[edit]
[-] xfs_estimate
[edit]
[-] grub2-install
[edit]
[-] tmpwatch
[edit]
[-] service
[edit]
[-] rtstat
[edit]
[-] ip6tables-restore-translate
[edit]
[-] exinext
[edit]
[-] udevadm
[edit]
[-] nfsstat
[edit]
[-] ping6
[edit]
[-] setfiles
[edit]
[-] ip6tables-apply
[edit]
[-] sysctl
[edit]
[-] NetworkManager
[edit]
[-] xfs_db
[edit]
[-] exiqgrep
[edit]
[-] tracepath
[edit]
[-] switch_root
[edit]
[-] mkfs.cramfs
[edit]
[-] mountstats
[edit]
[-] rdma
[edit]
[-] pwhistory_helper
[edit]
[-] pure-certd
[edit]
[-] hwclock
[edit]
[-] grubby
[edit]
[-] nstat
[edit]
[-] dcb
[edit]
[-] dnssec-revoke
[edit]
[-] exim_dumpdb
[edit]
[-] irqbalance
[edit]
[-] dnssec-settime
[edit]
[-] arpd
[edit]
[-] quotaoff
[edit]
[-] unsquashfs
[edit]
[-] dmsetup
[edit]
[-] xfs_rtcp
[edit]
[-] xfs_metadump
[edit]
[-] rtmon
[edit]
[-] findfs
[edit]
[-] lusermod
[edit]
[-] ctstat
[edit]
[-] unix_update
[edit]
[-] create-cracklib-dict
[edit]
[-] groupmems
[edit]
[-] mysqld
[edit]
[-] mkswap
[edit]
[-] sendmail
[edit]
[-] iptables-apply
[edit]
[-] shutdown
[edit]
[-] ip6tables-restore
[edit]
[-] mklost+found
[edit]
[-] pure-ftpd
[edit]
[-] fsck.xfs
[edit]
[-] chgpasswd
[edit]
[-] lgroupmod
[edit]
[-] mount.fuse
[edit]
[-] rpc.nfsd
[edit]
[-] dnssec-keyfromlabel
[edit]
[-] mkdumprd
[edit]
[-] exportfs
[edit]
[-] fsck
[edit]
[-] iprconfig
[edit]
[-] tcpslice
[edit]
[-] lnstat
[edit]
[-] gssproxy
[edit]
[-] pure-uploadscript
[edit]
[-] mii-diag
[edit]
[-] ifdown
[edit]
[-] auditctl
[edit]
[-] exigrep
[edit]
[-] iconvconfig
[edit]
[-] nfsconf
[edit]
[-] runuser
[edit]
[-] depmod
[edit]
[-] filefrag
[edit]
[-] iprsos
[edit]
[-] selabel_lookup_best_match
[edit]
[-] readprofile
[edit]
[-] named-checkconf
[edit]
[-] cracklib-packer
[edit]
[-] whmapi1
[edit]
[-] adduser
[edit]
[-] smartctl
[edit]
[-] sshd
[edit]
[-] nfsdcld
[edit]
[-] delpart
[edit]
[-] e4defrag
[edit]
[-] grub2-sparc64-setup
[edit]
[-] cracklib-format
[edit]
[-] xfs_logprint
[edit]
[-] restorecon_xattr
[edit]
[-] smartd
[edit]
[-] useradd
[edit]
[-] grub2-probe
[edit]
[-] restorecon
[edit]
[-] quot
[edit]
[-] getcap
[edit]
[-] bridge
[edit]
[-] tune2fs
[edit]
[-] dnssec-keygen
[edit]
[-] aureport
[edit]
[-] sasldblistusers2
[edit]
[-] badblocks
[edit]
[-] nameif
[edit]
[-] newusers
[edit]
[-] suexec
[edit]
[-] lgroupadd
[edit]
[-] vipw
[edit]
[-] nrpe
[edit]
[-] halt
[edit]
[-] rpc.idmapd
[edit]
[-] load_policy
[edit]
[-] plipconfig
[edit]
[-] grub2-set-password
[edit]
[-] whmapi0
[edit]
[-] resolvconf
[edit]
[-] modsec-sdbm-util
[edit]
[-] fsck.ext4
[edit]
[-] ebtables-restore
[edit]
[-] saslpasswd2
[edit]
[-] repquota
[edit]
[-] named-compilezone
[edit]
[-] eximstats
[edit]
[-] getsebool
[edit]
[-] lpasswd
[edit]
[-] firewalld
[edit]
[-] plymouth-set-default-theme
[edit]
[-] rpc.gssd
[edit]
[-] pivot_root
[edit]
[-] xtables-monitor
[edit]
[-] luserdel
[edit]
[-] dnssec-coverage
[edit]
[-] iprupdate
[edit]
[-] tracepath6
[edit]
[-] rpc.mountd
[edit]
[-] selinuxconlist
[edit]
[-] alternatives
[edit]
[-] fsck.cramfs
[edit]
[-] chpasswd
[edit]
[-] xfs_freeze
[edit]
[-] swapon
[edit]
[-] cracklib-unpacker
[edit]
[-] agetty
[edit]
[-] csf
[edit]
[-] umount.nfs
[edit]
[-] e2label
[edit]
[-] rmmod
[edit]
[-] whmlogin
[edit]
[-] vpddecode
[edit]
[-] dmfilemapd
[edit]
[-] chkconfig
[edit]
[-] e2mmpstatus
[edit]
[-] sestatus
[edit]
[-] resize2fs
[edit]
[-] groupmod
[edit]
[-] losetup
[edit]
[-] update-alternatives
[edit]
[-] installkernel
[edit]
[-] xfs_admin
[edit]
[-] nfsiostat
[edit]
[-] exim_tidydb
[edit]
[-] usernetctl
[edit]
[-] nfsdcltrack
[edit]
[-] resizepart
[edit]
[-] partprobe
[edit]
[-] mount.nfs4
[edit]
[-] cracklib-check
[edit]
[-] named-checkzone
[edit]
[-] ss
[edit]
[-] genl
[edit]
[-] update-smart-drivedb
[edit]
[-] exiwhat
[edit]
[-] chroot
[edit]
[-] chronyd
[edit]
[-] build-locale-archive
[edit]
[-] xtables-nft-multi
[edit]
[-] exim_dbmbuild
[edit]
[-] gss-server
[edit]
[-] selinuxexeccon
[edit]
[-] fcgistarter
[edit]
[-] iotop
[edit]
[-] groupadd
[edit]
[-] tcsd
[edit]
[-] xfs_growfs
[edit]
[-] acpid
[edit]
[-] ifstat
[edit]
[-] iptunnel
[edit]
[-] selinuxenabled
[edit]
[-] htcacheclean
[edit]
[-] nginx
[edit]
[-] poweroff
[edit]
[-] dumpe2fs
[edit]
[-] ifenslave
[edit]
[-] iptables-restore
[edit]
[-] ethtool
[edit]
[-] iptables
[edit]
[-] fix-info-dir
[edit]
[-] nfsconvert
[edit]
[-] fdformat
[edit]
[-] paperconfig
[edit]
[-] faillock
[edit]
[-] auditd
[edit]
[-] nginx-debug
[edit]
[-] iprdbg
[edit]
[-] blkdiscard
[edit]
[-] xfs_info
[edit]
[-] sss_cache
[edit]
[-] arp
[edit]
[-] dmstats
[edit]
[-] atrun
[edit]
[-] ebtables
[edit]
[-] fixfiles
[edit]
[-] swapoff
[edit]
[-] selabel_digest
[edit]
[-] mariadbd
[edit]
[-] crond
[edit]
[-] mke2fs
[edit]
[-] hdparm
[edit]
[-] setquota
[edit]
[-] dovecot_cpshutdown
[edit]
[-] grub2-set-bootflag
[edit]
[-] arping
[edit]
[-] apachectl
[edit]
[-] exim_checkaccess
[edit]
[-] runlevel
[edit]
[-] telinit
[edit]
[-] exim_lock
[edit]
[-] nfsref
[edit]
[-] pure-authd
[edit]
[-] mkdict
[edit]
[-] syspurpose
[edit]
[-] install-info
[edit]
[-] exiqsumm
[edit]
[-] dnssec-keymgr
[edit]
[-] ip
[edit]
[-] quotastats
[edit]
[-] rtacct
[edit]
[-] vdpa
[edit]
[-] lnewusers
[edit]
[-] selabel_lookup
[edit]
[-] rpcbind
[edit]
[-] e2fsck
[edit]
[-] rdisc
[edit]
[-] route
[edit]
[-] lwresd
[edit]
[-] grub2-get-kernel-settings
[edit]
[-] matchpathcon
[edit]
[-] start-statd
[edit]
[-] ebtables-save
[edit]
[-] fstrim
[edit]
[-] blkdeactivate
[edit]
[-] start-stop-daemon
[edit]
[-] mkhomedir_helper
[edit]
[-] setcap
[edit]