/snap/core18/2999/sbin
NameSizeModeActions
agetty565520755editdlrm
apparmor_parser14804320755editdlrm
badblocks266320755editdlrm
blkdeactivate148400755editdlrm
blkdiscard267040755editdlrm
blkid881760755editdlrm
blockdev389840755editdlrm
bridge882240755editdlrm
cfdisk967040755editdlrm
chcpu226000755editdlrm
ctrlaltdel185040755editdlrm
debugfs2226880755editdlrm
depmod1744240755editdlrm
devlink800400755editdlrm
dhclient5001440755editdlrm
dhclient-script156170755editdlrm
dmsetup1626160755editdlrm
dmstats1626160755editdlrm
dosfsck594720755editdlrm
dosfslabel553760755editdlrm
dumpe2fs267040755editdlrm
e2fsck3140800755editdlrm
e2image348960755editdlrm
e2label1047040755editdlrm
e2undo185040755editdlrm
fatlabel553760755editdlrm
fdisk1250560755editdlrm
findfs103120755editdlrm
fsck472320755editdlrm
fsck.cramfs349280755editdlrm
fsck.ext23140800755editdlrm
fsck.ext33140800755editdlrm
fsck.ext43140800755editdlrm
fsck.fat594720755editdlrm
fsck.minix922640755editdlrm
fsck.msdos594720755editdlrm
fsck.vfat594720755editdlrm
fsfreeze103120755editdlrm
fstab-decode61360755editdlrm
fstrim430880755editdlrm
getty565520755editdlrm
halt9965840755editdlrm
hwclock595840755editdlrm
init16202240755editdlrm
insmod1744240755editdlrm
installkernel26380755editdlrm
ip6119600755editdlrm
ip6tables949680755editdlrm
ip6tables-restore949680755editdlrm
ip6tables-save949680755editdlrm
iptables949680755editdlrm
iptables-restore949680755editdlrm
iptables-save949680755editdlrm
isosize226080755editdlrm
killall5226080755editdlrm
ldconfig3870755editdlrm
ldconfig.real10257120755editdlrm
logsave102400755editdlrm
losetup841600755editdlrm
lsmod1744240755editdlrm
mkdosfs353280755editdlrm
mke2fs1293440755editdlrm
mkfs103120755editdlrm
mkfs.bfs308000755editdlrm
mkfs.cramfs348240755editdlrm
mkfs.ext21293440755editdlrm
mkfs.ext31293440755editdlrm
mkfs.ext41293440755editdlrm
mkfs.fat353280755editdlrm
mkfs.minix799600755editdlrm
mkfs.msdos353280755editdlrm
mkfs.vfat353280755editdlrm
mkhomedir_helper184480755editdlrm
mkswap799520755editdlrm
modinfo1744240755editdlrm
modprobe1744240755editdlrm
pam_extrausers_chkpwd348162755editdlrm
pam_extrausers_update348160755editdlrm
pam_tally102480755editdlrm
pam_tally2143440755editdlrm
pivot_root103120755editdlrm
poweroff9965840755editdlrm
raw144080755editdlrm
reboot9965840755editdlrm
resize2fs594640755editdlrm
rmmod1744240755editdlrm
rtacct410960755editdlrm
rtmon512000755editdlrm
runlevel9965840755editdlrm
runuser430800755editdlrm
sfdisk1086240755editdlrm
shadowconfig8850755editdlrm
shutdown9965840755editdlrm
start-stop-daemon359440755editdlrm
sulogin471840755editdlrm
swaplabel144080755editdlrm
swapoff185040755editdlrm
swapon471840755editdlrm
switch_root144080755editdlrm
sysctl226000755editdlrm
tc4646800755editdlrm
telinit9965840755editdlrm
tipc552880755editdlrm
tune2fs1047040755editdlrm
udevadm9535520755editdlrm
unix_chkpwd348162755editdlrm
unix_update348160755editdlrm
wipefs389920755editdlrm
wpa_action17350755editdlrm
wpa_cli1390000755editdlrm
wpa_supplicant22651040755editdlrm
xtables-multi949680755editdlrm
zramctl923520755editdlrm
Edit: /snap/core18/2999/sbin/installkernel (2638B)
#!/bin/sh # # Copyright (C) 1995 - 1998, Ian A. Murdock # Copyright (C) 1998, 1999, Guy Maor # Copyright (C) 2002, Matthew Wilcox # Copyright (C) 2002, 2004, 2005, 2007, 2009 Clint Adams # Copyright (C) 2009 Manoj Srivasta # # Install the kernel on a Debian Linux system. # # This script is called from /usr/src/linux/arch/i386/boot/install.sh. # If you install it as /sbin/installkernel, you can do a "make install" # from a generic kernel source tree, and the image will be installed to # the proper place for Debian GNU/Linux. set -e # Parse the command line options. Of course, powerpc has to be all # different, and passes in a fifth argument, just because it is # "special". We ignore the fifth argument, and do not flag is as an # error, which it would be for any arch apart from powerpc if [ $# -eq 3 ] || [ $# -eq 4 ] || [ $# -eq 5 ] ; then img="$2" map="$3" ver="$1" if [ $# -ge 4 ] && [ -n "$4" ] ; then dir="$4" else dir="/boot" fi else echo "Usage: installkernel " exit 1 fi # Create backups of older versions before installing updatever () { if [ -f "$dir/$1-$ver" ] ; then mv "$dir/$1-$ver" "$dir/$1-$ver.old" fi cat "$2" > "$dir/$1-$ver" # This section is for backwards compatibility only if test -f "$dir/$1" ; then # The presence of "$dir/$1" is unusual in modern intallations, and # the results are mostly unused. So only recreate them if they # already existed. if test -L "$dir/$1" ; then # If we were using links, continue to use links, updating if # we need to. if [ "$(readlink -f ${dir}/${1})" = "${dir}/${1}-${ver}" ]; then # Yup, we need to change ln -sf "$1-$ver.old" "$dir/$1.old" else mv "$dir/$1" "$dir/$1.old" fi ln -sf "$1-$ver" "$dir/$1" else # No links mv "$dir/$1" "$dir/$1.old" cat "$2" > "$dir/$1" fi fi } if [ "$(basename $img)" = "vmlinux" ] ; then img_dest=vmlinux else img_dest=vmlinuz fi updatever $img_dest "$img" updatever System.map "$map" config=$(dirname "$map") config="${config}/.config" if [ -f "$config" ] ; then updatever config "$config" fi # If installing in the usual directory, run the same scripts that hook # into kernel package installation. Also make sure the PATH includes # /usr/sbin and /sbin, just as dpkg would. if [ "$dir" = "/boot" ]; then PATH="$PATH:/usr/sbin:/sbin" \ run-parts --verbose --exit-on-error --arg="$ver" --arg="$dir/$img_dest-$ver" \ /etc/kernel/postinst.d fi exit 0