/binに格納されている中身を知るためにファイルのみ取得してみた。
使ったコマンドはこれ
1 |
ll -d $(find /bin/ -type f) >/home/papanda925/bin.txt |
実行した結果は以下、/binには、どのユーザでも使える通常のコマンドが内包されている。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 |
-rwxr-xr-x 1 root root 51312 9月 5 2019 /bin/ -rwxr-xr-x 1 root root 26920 5月 20 01:59 /bin/aa-enabled -rwxr-xr-x 1 root root 27112 5月 20 01:59 /bin/aa-exec -rwxr-xr-x 1 root root 31208 4月 7 20:42 /bin/aarch64-linux-gnu-addr2line -rwxr-xr-x 1 root root 59600 4月 7 20:42 /bin/aarch64-linux-gnu-ar -rwxr-xr-x 1 root root 415224 4月 7 20:42 /bin/aarch64-linux-gnu-as -rwxr-xr-x 1 root root 26672 4月 7 20:42 /bin/aarch64-linux-gnu-c++filt -rwxr-xr-x 1 root root 2480920 4月 7 20:42 /bin/aarch64-linux-gnu-dwp -rwxr-xr-x 1 root root 35264 4月 7 20:42 /bin/aarch64-linux-gnu-elfedit -rwxr-xr-x 1 root root 102008 4月 7 20:42 /bin/aarch64-linux-gnu-gprof -rwxr-xr-x 1 root root 1603664 4月 7 20:42 /bin/aarch64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 4747136 4月 7 20:42 /bin/aarch64-linux-gnu-ld.gold -rwxr-xr-x 1 root root 44208 4月 7 20:42 /bin/aarch64-linux-gnu-nm -rwxr-xr-x 1 root root 174344 4月 7 20:42 /bin/aarch64-linux-gnu-objcopy -rwxr-xr-x 1 root root 389760 4月 7 20:42 /bin/aarch64-linux-gnu-objdump -rwxr-xr-x 1 root root 59608 4月 7 20:42 /bin/aarch64-linux-gnu-ranlib -rwxr-xr-x 1 root root 645728 4月 7 20:42 /bin/aarch64-linux-gnu-readelf -rwxr-xr-x 1 root root 35040 4月 7 20:42 /bin/aarch64-linux-gnu-size -rwxr-xr-x 1 root root 31072 4月 7 20:42 /bin/aarch64-linux-gnu-strings -rwxr-xr-x 1 root root 174344 4月 7 20:42 /bin/aarch64-linux-gnu-strip -rwxr-xr-x 1 root root 7415 8月 7 22:15 /bin/add-apt-repository -rwxr-xr-x 1 root root 22536 4月 3 00:29 /bin/addpart -rwxr-xr-x 1 root root 2558 12月 5 2019 /bin/apport-bug -rwxr-xr-x 1 root root 13367 8月 9 20:43 /bin/apport-cli -rwxr-xr-x 1 root root 2068 8月 9 20:43 /bin/apport-unpack -rwxr-xr-x 1 root root 14504 5月 13 05:02 /bin/apt -rwxr-xr-x 1 root root 76088 5月 13 05:02 /bin/apt-cache -rwxr-xr-x 1 root root 22848 5月 13 05:02 /bin/apt-cdrom -rwxr-xr-x 1 root root 22696 5月 13 05:02 /bin/apt-config -rwxr-xr-x 1 root root 22784 5月 13 05:02 /bin/apt-extracttemplates -rwxr-xr-x 1 root root 235944 5月 13 05:02 /bin/apt-ftparchive -rwxr-xr-x 1 root root 39160 5月 13 05:02 /bin/apt-get -rwxr-xr-x 1 root root 27931 5月 13 05:02 /bin/apt-key -rwxr-xr-x 1 root root 51448 5月 13 05:02 /bin/apt-mark -rwxr-xr-x 1 root root 34992 5月 13 05:02 /bin/apt-sortpkgs -rwxr-xr-x 1 root root 35048 9月 5 2019 /bin/arch -rwxr-xr-x 1 root root 4718400 3月 12 2020 /bin/aria_chk -rwxr-xr-x 1 root root 4532008 3月 12 2020 /bin/aria_dump_log -rwxr-xr-x 1 root root 4552616 3月 12 2020 /bin/aria_ftdump -rwxr-xr-x 1 root root 4565488 3月 12 2020 /bin/aria_pack -rwxr-xr-x 1 root root 4688928 3月 12 2020 /bin/aria_read_log -rwsr-sr-x 1 daemon daemon 51336 11月 13 2018 /bin/at -rwxr-xr-x 1 root root 402 3月 22 2020 /bin/automat-visualize3 -rwxr-xr-x 1 root root 55544 9月 5 2019 /bin/b2sum -rwxr-xr-x 1 root root 39136 9月 5 2019 /bin/base32 -rwxr-xr-x 1 root root 39136 9月 5 2019 /bin/base64 -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/basename -rwxr-xr-x 1 root root 1215072 6月 19 00:44 /bin/bash -rwxr-xr-x 1 root root 6801 6月 19 00:44 /bin/bashbug -rwxr-xr-x 1 root root 152 11月 13 2018 /bin/batch -rwxr-xr-x 1 root root 92760 1月 15 2019 /bin/bc -rwxr-xr-x 1 root root 142016 9月 21 2019 /bin/boltctl -rwxr-xr-x 1 root root 59520 7月 7 06:38 /bin/bootctl -rwxr-xr-x 1 root root 10168 3月 30 18:26 /bin/bsd-from -rwxr-sr-x 1 root tty 14264 3月 30 18:26 /bin/bsd-write -rwxr-xr-x 1 root root 806656 2月 16 2020 /bin/btrfs -rwxr-xr-x 1 root root 462032 2月 16 2020 /bin/btrfs-convert -rwxr-xr-x 1 root root 437512 2月 16 2020 /bin/btrfs-find-root -rwxr-xr-x 1 root root 457936 2月 16 2020 /bin/btrfs-image -rwxr-xr-x 1 root root 441552 2月 16 2020 /bin/btrfs-map-logical -rwxr-xr-x 1 root root 437456 2月 16 2020 /bin/btrfs-select-super -rwxr-xr-x 1 root root 437456 2月 16 2020 /bin/btrfstune -rwxr-xr-x 3 root root 34808 9月 6 2019 /bin/bunzip2 -rwxr-xr-x 1 root root 84088 7月 7 06:38 /bin/busctl -rwxr-xr-x 1 root root 1728384 5月 20 00:16 /bin/busybox -rwxr-xr-x 1 root root 8363 2月 17 2020 /bin/byobu -rwxr-xr-x 1 root root 996 2月 17 2020 /bin/byobu-config -rwxr-xr-x 1 root root 4774 2月 17 2020 /bin/byobu-ctrl-a -rwxr-xr-x 1 root root 1295 2月 17 2020 /bin/byobu-disable -rwxr-xr-x 1 root root 1341 2月 17 2020 /bin/byobu-disable-prompt -rwxr-xr-x 1 root root 1182 2月 17 2020 /bin/byobu-enable -rwxr-xr-x 1 root root 1453 2月 17 2020 /bin/byobu-enable-prompt -rwxr-xr-x 1 root root 1351 2月 17 2020 /bin/byobu-export -rwxr-xr-x 1 root root 6440 2月 17 2020 /bin/byobu-janitor -rwxr-xr-x 1 root root 1506 2月 17 2020 /bin/byobu-keybindings -rwxr-xr-x 1 root root 3329 2月 17 2020 /bin/byobu-launch -rwxr-xr-x 1 root root 1910 2月 17 2020 /bin/byobu-launcher -rwxr-xr-x 1 root root 2459 2月 17 2020 /bin/byobu-launcher-install -rwxr-xr-x 1 root root 1561 2月 17 2020 /bin/byobu-launcher-uninstall -rwxr-xr-x 1 root root 3348 2月 17 2020 /bin/byobu-layout -rwxr-xr-x 1 root root 1156 2月 17 2020 /bin/byobu-prompt -rwxr-xr-x 1 root root 1410 2月 17 2020 /bin/byobu-quiet -rwxr-xr-x 1 root root 3298 2月 17 2020 /bin/byobu-reconnect-sockets -rwxr-xr-x 1 root root 1452 2月 17 2020 /bin/byobu-select-backend -rwxr-xr-x 1 root root 5123 2月 17 2020 /bin/byobu-select-profile -rwxr-xr-x 1 root root 1012 2月 17 2020 /bin/byobu-select-session -rwxr-xr-x 1 root root 1600 2月 17 2020 /bin/byobu-shell -rwxr-xr-x 1 root root 1306 2月 17 2020 /bin/byobu-silent -rwxr-xr-x 1 root root 6015 2月 17 2020 /bin/byobu-status -rwxr-xr-x 1 root root 1207 2月 17 2020 /bin/byobu-status-detail -rwxr-xr-x 1 root root 4667 2月 17 2020 /bin/byobu-ugraph -rwxr-xr-x 1 root root 11996 2月 17 2020 /bin/byobu-ulevel -rwxr-xr-x 3 root root 34808 9月 6 2019 /bin/bzcat -rwxr-xr-x 1 root root 2227 9月 6 2019 /bin/bzdiff -rwxr-xr-x 1 root root 4877 9月 4 2019 /bin/bzexe -rwxr-xr-x 1 root root 3775 9月 6 2019 /bin/bzgrep -rwxr-xr-x 3 root root 34808 9月 6 2019 /bin/bzip2 -rwxr-xr-x 1 root root 14264 9月 6 2019 /bin/bzip2recover -rwxr-xr-x 1 root root 1297 9月 6 2019 /bin/bzmore -rwxr-xr-x 1 root root 6332 4月 24 01:35 /bin/c_rehash -rwxr-xr-x 1 root root 31096 3月 30 18:26 /bin/calendar -rwxr-xr-x 1 root root 35080 9月 5 2019 /bin/cat -rwxr-xr-x 1 root root 3329 4月 15 04:26 /bin/catchsegv -rwxr-xr-x 1 root root 39272 2月 26 2020 /bin/catman -rwxr-xr-x 1 root root 853 10月 19 2019 /bin/cautious-launcher -rwxr-xr-x 1 root root 385 11月 6 2019 /bin/certbot -rwxr-xr-x 1 root root 380 4月 2 09:34 /bin/cftp3 -rwxr-sr-x 1 root shadow 75944 5月 28 15:37 /bin/chage -rwxr-xr-x 1 root root 389 12月 17 2019 /bin/chardetect3 -rwxr-xr-x 1 root root 14432 2月 14 2020 /bin/chattr -rwxr-xr-x 1 root root 63712 9月 5 2019 /bin/chcon -rwxr-xr-x 1 root root 2771 8月 20 21:10 /bin/check-language-support -rwsr-xr-x 1 root root 80408 5月 28 15:37 /bin/chfn -rwxr-xr-x 1 root root 59616 9月 5 2019 /bin/chgrp -rwxr-xr-x 1 root root 55528 9月 5 2019 /bin/chmod -rwxr-xr-x 1 root root 47112 4月 3 00:29 /bin/choom -rwxr-xr-x 1 root root 63712 9月 5 2019 /bin/chown -rwxr-xr-x 1 root root 34824 4月 3 00:29 /bin/chrt -rwsr-xr-x 1 root root 44552 5月 28 15:37 /bin/chsh -rwxr-xr-x 1 root root 10248 5月 10 2019 /bin/chvt -rwxr-xr-x 1 root root 149904 3月 27 19:10 /bin/ckbcomp -rwxr-xr-x 1 root root 386 4月 2 09:34 /bin/ckeygen3 -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/cksum -rwxr-xr-x 1 root root 10336 2月 26 2020 /bin/clear -rwxr-xr-x 1 root root 10248 6月 19 00:44 /bin/clear_console -rwxr-xr-x 1 root root 390 6月 3 01:12 /bin/cloud-id -rwxr-xr-x 1 root root 394 6月 3 01:12 /bin/cloud-init -rwxr-xr-x 1 root root 2108 6月 3 00:24 /bin/cloud-init-per -rwxr-xr-x 1 root root 43032 4月 8 2019 /bin/cmp -rwxr-xr-x 1 root root 14264 5月 10 2019 /bin/codepage -rwxr-xr-x 1 root root 14264 3月 30 18:26 /bin/col -rwxr-xr-x 1 root root 963 2月 17 2020 /bin/col1 -rwxr-xr-x 1 root root 10168 3月 30 18:26 /bin/colcrt -rwxr-xr-x 1 root root 10168 3月 30 18:26 /bin/colrm -rwxr-xr-x 1 root root 14280 3月 30 18:26 /bin/column -rwxr-xr-x 1 root root 39152 9月 5 2019 /bin/comm -rwxr-xr-x 1 root root 382 4月 2 09:34 /bin/conch3 -rwxr-xr-x 1 root root 30904 9月 14 2019 /bin/convert-dtsv0 -rwxr-xr-x 1 root root 15088 3月 7 2020 /bin/corelist -rwxr-xr-x 1 root root 137464 9月 5 2019 /bin/cp -rwxr-xr-x 1 root root 8155 3月 7 2020 /bin/cpan -rwxr-xr-x 1 root root 8177 3月 7 2020 /bin/cpan5.30-aarch64-linux-gnu -rwxr-xr-x 1 root root 161056 2月 1 2020 /bin/cpio -rwxr-sr-x 1 root crontab 39328 2月 14 2020 /bin/crontab -rwxr-xr-x 1 root root 47336 9月 5 2019 /bin/csplit -rwxr-xr-x 1 root root 960 2月 17 2020 /bin/ctail -rwxr-xr-x 1 root root 227416 8月 14 02:34 /bin/curl -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/cut -rwxr-xr-x 1 root root 260432 7月 15 09:17 /bin/cvtsudoers -rwxr-xr-x 1 root root 137728 7月 19 2019 /bin/dash -rwxr-xr-x 1 root root 96488 9月 5 2019 /bin/date -rwxr-xr-x 1 root root 1380 2月 9 2020 /bin/dbilogstrip -rwxr-xr-x 1 root root 6206 2月 9 2020 /bin/dbiprof -rwxr-xr-x 1 root root 5394 2月 9 2020 /bin/dbiproxy -rwxr-xr-x 1 root root 14256 6月 12 03:22 /bin/dbus-cleanup-sockets -rwxr-xr-x 1 root root 236472 6月 12 03:22 /bin/dbus-daemon -rwxr-xr-x 1 root root 22448 6月 12 03:22 /bin/dbus-monitor -rwxr-xr-x 1 root root 14256 6月 12 03:22 /bin/dbus-run-session -rwxr-xr-x 1 root root 26544 6月 12 03:22 /bin/dbus-send -rwxr-xr-x 1 root root 14256 6月 12 03:22 /bin/dbus-update-activation-environment -rwxr-xr-x 1 root root 10160 6月 12 03:22 /bin/dbus-uuidgen -rwxr-xr-x 1 root root 80136 9月 5 2019 /bin/dd -rwxr-xr-x 1 root root 14344 5月 10 2019 /bin/deallocvt -rwxr-xr-x 1 root root 21328 6月 22 2019 /bin/deb-systemd-helper -rwxr-xr-x 1 root root 4430 6月 22 2019 /bin/deb-systemd-invoke -rwxr-xr-x 1 root root 2859 8月 3 2019 /bin/debconf -rwxr-xr-x 1 root root 11541 8月 3 2019 /bin/debconf-apt-progress -rwxr-xr-x 1 root root 608 8月 3 2019 /bin/debconf-communicate -rwxr-xr-x 1 root root 1719 8月 3 2019 /bin/debconf-copydb -rwxr-xr-x 1 root root 647 8月 3 2019 /bin/debconf-escape -rwxr-xr-x 1 root root 2935 8月 3 2019 /bin/debconf-set-selections -rwxr-xr-x 1 root root 1827 8月 3 2019 /bin/debconf-show -rwxr-xr-x 1 root root 22536 4月 3 00:29 /bin/delpart -rwxr-xr-x 1 root root 41088 8月 18 20:38 /bin/delv -rwxr-xr-x 1 root root 30984 4月 27 2016 /bin/devio -rwxr-xr-x 1 root root 88880 9月 5 2019 /bin/df -rwxr-xr-x 1 root root 112720 6月 19 01:04 /bin/dfu-tool -rwxr-xr-x 1 root root 2446 1月 26 2020 /bin/dh_bash-completion -rwxr-xr-x 1 root root 1065 2月 9 2020 /bin/dh_perl_dbi -rwxr-xr-x 1 root root 203008 4月 8 2019 /bin/diff -rwxr-xr-x 1 root root 59512 4月 8 2019 /bin/diff3 -rwxr-xr-x 1 root root 125496 8月 18 20:38 /bin/dig -rwxr-xr-x 1 root root 137888 9月 5 2019 /bin/dir -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/dircolors -rwxr-xr-x 1 root root 558968 3月 11 2020 /bin/dirmngr -rwxr-xr-x 1 root root 113592 3月 11 2020 /bin/dirmngr-client -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/dirname -rwxr-xr-x 1 root root 75984 4月 3 00:29 /bin/dmesg -rwxr-xr-x 1 root root 9314 8月 27 00:36 /bin/do-release-upgrade -rwxr-sr-x 1 root mail 18360 10月 12 2019 /bin/dotlockfile -rwxr-xr-x 1 root root 309672 3月 23 15:12 /bin/dpkg -rwxr-xr-x 1 root root 170280 3月 23 15:12 /bin/dpkg-deb -rwxr-xr-x 1 root root 153944 3月 23 15:12 /bin/dpkg-divert -rwxr-xr-x 1 root root 20514 3月 23 15:12 /bin/dpkg-maintscript-helper -rwxr-xr-x 1 root root 158016 3月 23 15:12 /bin/dpkg-query -rwxr-xr-x 1 root root 125176 3月 23 15:12 /bin/dpkg-split -rwxr-xr-x 1 root root 59464 3月 23 15:12 /bin/dpkg-statoverride -rwxr-xr-x 1 root root 84232 3月 23 15:12 /bin/dpkg-trigger -rwxr-xr-x 1 root root 141840 9月 14 2019 /bin/dtc -rwxr-xr-x 1 root root 680 9月 14 2019 /bin/dtdiff -rwxr-xr-x 1 root root 104688 9月 5 2019 /bin/du -rwxr-xr-x 1 root root 257904 2月 11 2020 /bin/dumpimage -rwxr-xr-x 1 root root 178632 5月 10 2019 /bin/dumpkeys -rwxr-xr-x 1 root root 2806 10月 29 2018 /bin/eatmydata -rwxr-xr-x 1 root root 7295 2月 26 2020 /bin/ec2metadata -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/echo -rwxr-xr-x 1 root root 55520 2月 22 2020 /bin/ed -rwxr-xr-x 1 root root 28 1月 29 2020 /bin/egrep -rwxr-xr-x 1 root root 31344 7月 8 2019 /bin/eject -rwxr-xr-x 1 root root 42111 3月 7 2020 /bin/enc2xs -rwxr-xr-x 1 root root 3066 3月 7 2020 /bin/encguess -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/env -rwxr-xr-x 1 root root 34824 3月 23 00:42 /bin/envsubst -rwxr-xr-x 1 root root 206032 3月 21 2020 /bin/eqn -rwxr-xr-x 1 root root 35056 9月 5 2019 /bin/expand -rwxr-sr-x 1 root shadow 22880 5月 28 15:37 /bin/expiry -rwxr-xr-x 1 root root 47320 9月 5 2019 /bin/expr -rwxr-xr-x 1 root root 71912 9月 5 2019 /bin/factor -rwxr-xr-x 1 root root 18800 5月 28 15:37 /bin/faillog -rwxr-xr-x 1 root root 26632 4月 3 00:29 /bin/fallocate -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/false -rwxr-xr-x 1 root root 18608 9月 14 2019 /bin/fdtdump -rwxr-xr-x 1 root root 18608 9月 14 2019 /bin/fdtget -rwxr-xr-x 1 root root 18608 9月 14 2019 /bin/fdtoverlay -rwxr-xr-x 1 root root 22704 9月 14 2019 /bin/fdtput -rwxr-xr-x 1 root root 14472 5月 10 2019 /bin/fgconsole -rwxr-xr-x 1 root root 28 1月 29 2020 /bin/fgrep -rwxr-xr-x 1 root root 88640 10月 27 2019 /bin/filan -rwxr-xr-x 1 root root 22768 1月 17 2020 /bin/file -rwxr-xr-x 1 root root 2085 12月 18 2019 /bin/finalrd -rwxr-xr-x 1 root root 30760 4月 3 00:29 /bin/fincore -rwxr-xr-x 1 root root 307600 2月 18 2020 /bin/find -rwxr-xr-x 1 root root 64696 4月 3 00:29 /bin/findmnt -rwxr-xr-x 1 root root 30792 4月 3 00:29 /bin/flock -rwxr-xr-x 1 root root 39136 9月 5 2019 /bin/fmt -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/fold -rwxr-xr-x 1 root root 26640 2月 27 2020 /bin/free -rwxr-xr-x 1 root root 35768 11月 12 2019 /bin/fuser -rwsr-xr-x 1 root root 34824 3月 7 2020 /bin/fusermount -rwxr-xr-x 1 root root 37120 2月 11 2020 /bin/fw_printenv -rwxr-xr-x 1 root root 51280 6月 19 01:04 /bin/fwupdagent -rwxr-xr-x 1 root root 76048 6月 19 01:04 /bin/fwupdate -rwxr-xr-x 1 root root 120912 6月 19 01:04 /bin/fwupdmgr -rwxr-xr-x 1 root root 289256 6月 19 01:04 /bin/fwupdtool -rwxr-xr-x 1 root root 22608 6月 19 01:04 /bin/fwupdtpmevlog -rwxr-xr-x 1 root root 915 3月 12 2020 /bin/galera_new_cluster -rwxr-xr-x 1 root root 3407 3月 12 2020 /bin/galera_recovery -rwxr-xr-x 1 root root 18600 6月 16 20:21 /bin/gapplication -rwxr-xr-x 1 root root 714856 11月 4 2019 /bin/gawk -rwxr-xr-x 1 root root 43176 6月 16 20:21 /bin/gdbus -rwxr-xr-x 1 root root 30792 4月 15 04:26 /bin/getconf -rwxr-xr-x 1 root root 31136 4月 15 04:26 /bin/getent -rwxr-xr-x 1 root root 14344 5月 10 2019 /bin/getkeycodes -rwxr-xr-x 1 root root 18440 4月 3 00:29 /bin/getopt -rwxr-xr-x 1 root root 34824 3月 23 00:42 /bin/gettext -rwxr-xr-x 1 root root 4629 3月 23 00:42 /bin/gettext.sh -rwxr-xr-x 1 root root 84184 6月 16 20:21 /bin/gio -rwxr-xr-x 1 root root 2977848 4月 21 00:50 /bin/git -rwxr-xr-x 1 root root 1727360 4月 21 00:50 /bin/git-shell -rwsr-xr-x 1 root root 79896 5月 28 15:37 /bin/gpasswd -rwxr-xr-x 1 root root 1038216 3月 11 2020 /bin/gpg -rwxr-xr-x 1 root root 406448 3月 11 2020 /bin/gpg-agent -rwxr-xr-x 1 root root 158752 3月 11 2020 /bin/gpg-connect-agent -rwxr-xr-x 1 root root 199768 3月 11 2020 /bin/gpg-wks-server -rwxr-xr-x 1 root root 3516 3月 11 2020 /bin/gpg-zip -rwxr-xr-x 1 root root 866336 3月 11 2020 /bin/gpgcompose -rwxr-xr-x 1 root root 166456 3月 11 2020 /bin/gpgconf -rwxr-xr-x 1 root root 26784 3月 11 2020 /bin/gpgparsemail -rwxr-xr-x 1 root root 498896 3月 11 2020 /bin/gpgsm -rwxr-xr-x 1 root root 80536 3月 11 2020 /bin/gpgsplit -rwxr-xr-x 1 root root 151056 3月 11 2020 /bin/gpgtar -rwxr-xr-x 1 root root 441376 3月 11 2020 /bin/gpgv -rwxr-xr-x 1 root root 174304 1月 29 2020 /bin/grep -rwxr-xr-x 1 root root 18520 6月 16 20:21 /bin/gresource -rwxr-xr-x 1 root root 120120 3月 21 2020 /bin/groff -rwxr-xr-x 1 root root 2776 3月 21 2020 /bin/grog -rwxr-xr-x 1 root root 177848 3月 21 2020 /bin/grops -rwxr-xr-x 1 root root 132432 3月 21 2020 /bin/grotty -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/groups -rwxr-xr-x 1 root root 24522 2月 26 2020 /bin/growpart -rwxr-xr-x 1 root root 26712 6月 16 20:21 /bin/gsettings -rwxr-xr-x 2 root root 2346 12月 14 2019 /bin/gunzip -rwxr-xr-x 1 root root 6376 12月 14 2019 /bin/gzexe -rwxr-xr-x 1 root root 97152 12月 14 2019 /bin/gzip -rwxr-xr-x 1 root root 29224 3月 7 2020 /bin/h2ph -rwxr-xr-x 1 root root 60866 3月 7 2020 /bin/h2xs -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/head -rwxr-xr-x 1 root root 2514 1月 30 2020 /bin/helpztags -rwxr-xr-x 1 root root 26656 3月 30 18:26 /bin/hexdump -rwxr-xr-x 1 root root 105008 8月 18 20:38 /bin/host -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/hostid -rwxr-xr-x 1 root root 18440 11月 7 2019 /bin/hostname -rwxr-xr-x 1 root root 18432 7月 7 06:38 /bin/hostnamectl -rwxr-xr-x 1 root root 184032 12月 4 2019 /bin/htop -rwxr-xr-x 1 root root 10830 6月 4 02:18 /bin/hwe-support-status -rwxr-xr-x 1 root root 59552 4月 15 04:26 /bin/iconv -rwxr-xr-x 1 root root 39144 9月 5 2019 /bin/id -rwxr-xr-x 1 root root 304480 10月 11 2019 /bin/info -rwxr-xr-x 1 root root 59560 2月 26 2020 /bin/infocmp -rwxr-xr-x 1 root root 3552760 3月 12 2020 /bin/innochecksum -rwxr-xr-x 1 root root 456511 1月 6 2020 /bin/innotop -rwxr-xr-x 1 root root 141584 9月 5 2019 /bin/install -rwxr-xr-x 1 root root 105496 10月 11 2019 /bin/install-info -rwxr-xr-x 1 root root 4370 3月 7 2020 /bin/instmodsh -rwxr-xr-x 1 root root 26632 4月 3 00:29 /bin/ionice -rwxr-xr-x 1 root root 614552 2月 14 2020 /bin/ip -rwxr-xr-x 1 root root 26704 4月 3 00:29 /bin/ipcmk -rwxr-xr-x 1 root root 26632 4月 3 00:29 /bin/ipcrm -rwxr-xr-x 1 root root 67592 4月 3 00:29 /bin/ipcs -rwxr-xr-x 1 root root 10200 12月 7 2019 /bin/ischroot -rwxr-xr-x 1 root root 47368 9月 5 2019 /bin/join -rwxr-xr-x 1 root root 67608 7月 7 06:38 /bin/journalctl -rwxr-xr-x 1 root root 4667 3月 7 2020 /bin/json_pp -rwxr-xr-x 1 root root 3662 9月 5 2019 /bin/jsonpatch -rwxr-xr-x 1 root root 1004 9月 5 2019 /bin/jsonpatch-jsondiff -rwxr-xr-x 1 root root 1838 1月 24 2020 /bin/jsonpointer -rwxr-xr-x 1 root root 397 1月 24 2020 /bin/jsonschema -rwxr-xr-x 1 root root 14344 5月 10 2019 /bin/kbd_mode -rwxr-xr-x 1 root root 14344 5月 10 2019 /bin/kbdinfo -rwxr-xr-x 1 root root 174960 3月 11 2020 /bin/kbxutil -rwxr-xr-x 1 root root 5191 4月 2 02:23 /bin/kernel-install -rwxr-xr-x 1 root root 385 3月 14 2020 /bin/keyring -rwxr-xr-x 1 root root 34824 2月 27 2020 /bin/kill -rwxr-xr-x 1 root root 27688 11月 12 2019 /bin/killall -rwxr-xr-x 1 root root 166072 3月 12 2020 /bin/kmod -rwxr-xr-x 1 root root 14176 2月 11 2020 /bin/kwboot -rwxr-xr-x 1 root root 624 4月 28 02:34 /bin/landscape-sysinfo -rwxr-xr-x 1 root root 43016 4月 3 00:29 /bin/last -rwxr-xr-x 1 root root 28040 5月 28 15:37 /bin/lastlog -rwxr-xr-x 1 root root 7786 12月 14 2018 /bin/lcf -rwxr-xr-x 1 root root 5326 4月 15 04:26 /bin/ldd -rwxr-xr-x 1 root root 187784 7月 2 08:25 /bin/less -rwxr-xr-x 1 root root 10344 7月 2 08:25 /bin/lessecho -rwxr-xr-x 1 root root 19944 7月 2 08:25 /bin/lesskey -rwxr-xr-x 1 root root 8564 9月 3 2019 /bin/lesspipe -rwxr-xr-x 1 root root 96952 2月 26 2020 /bin/lexgrog -rwxr-xr-x 1 root root 15775 3月 7 2020 /bin/libnetcfg -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/link -rwxr-xr-x 1 root root 4090 6月 26 02:23 /bin/linux-check-removal -rwxr-xr-x 1 root root 6320 6月 26 02:23 /bin/linux-update-symlinks -rwxr-xr-x 1 root root 2696 6月 26 02:23 /bin/linux-version -rwxr-xr-x 1 root root 67824 9月 5 2019 /bin/ln -rwxr-xr-x 1 root root 22808 2月 14 2020 /bin/lnstat -rwxr-xr-x 1 root root 215784 5月 10 2019 /bin/loadkeys -rwxr-xr-x 1 root root 26680 5月 10 2019 /bin/loadunimap -rwxr-xr-x 1 root root 50512 4月 15 04:26 /bin/locale -rwxr-xr-x 1 root root 10176 8月 17 22:31 /bin/locale-check -rwxr-xr-x 1 root root 22528 7月 7 06:38 /bin/localectl -rwxr-xr-x 1 root root 298008 4月 15 04:26 /bin/localedef -rwxr-xr-x 4 root root 14504 9月 4 2018 /bin/lockfile-check -rwxr-xr-x 4 root root 14504 9月 4 2018 /bin/lockfile-create -rwxr-xr-x 4 root root 14504 9月 4 2018 /bin/lockfile-remove -rwxr-xr-x 4 root root 14504 9月 4 2018 /bin/lockfile-touch -rwxr-xr-x 1 root root 47688 4月 3 00:29 /bin/logger -rwxr-xr-x 1 root root 52720 5月 28 15:37 /bin/login -rwxr-xr-x 1 root root 59544 7月 7 06:38 /bin/loginctl -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/logname -rwxr-xr-x 1 root root 10384 3月 30 18:26 /bin/look -rwxr-xr-x 1 root root 2885 3月 30 18:26 /bin/lorder -rwxr-xr-x 1 root root 109184 5月 3 2019 /bin/lowntfs-3g -rwxr-xr-x 1 root root 137888 9月 5 2019 /bin/ls -rwxr-xr-x 1 root root 14432 2月 14 2020 /bin/lsattr -rwxr-xr-x 1 root root 3638 8月 26 2019 /bin/lsb_release -rwxr-xr-x 1 root root 120840 4月 3 00:29 /bin/lsblk -rwxr-xr-x 1 root root 92168 4月 3 00:29 /bin/lscpu -rwxr-xr-x 1 root root 746424 3月 21 2020 /bin/lshw -rwxr-xr-x 1 root root 706 2月 15 2020 /bin/lsinitramfs -rwxr-xr-x 1 root root 88072 4月 3 00:29 /bin/lsipc -rwxr-xr-x 1 root root 35144 4月 3 00:29 /bin/lslocks -rwxr-xr-x 1 root root 63520 4月 3 00:29 /bin/lslogins -rwxr-xr-x 1 root root 59400 4月 3 00:29 /bin/lsmem -rwxr-xr-x 1 root root 47120 4月 3 00:29 /bin/lsns -rwxr-xr-x 1 root root 191880 9月 3 2019 /bin/lsof -rwxr-xr-x 1 root root 81552 1月 26 2020 /bin/lspci -rwxr-xr-x 1 root root 1081 8月 28 2017 /bin/lspgpot -rwxr-xr-x 1 root root 248160 10月 2 2019 /bin/lsusb -rwxr-xr-x 1 root root 327808 2月 1 2019 /bin/ltrace -rwxr-xr-x 1 root root 174128 11月 12 2019 /bin/lz4 -rwxr-xr-x 1 root root 10248 4月 21 06:43 /bin/lzmainfo -rwxr-sr-x 3 root mail 14504 9月 4 2018 /bin/mail-lock -rwxr-sr-x 3 root mail 14504 9月 4 2018 /bin/mail-touchlock -rwxr-sr-x 3 root mail 14504 9月 4 2018 /bin/mail-unlock -rwxr-xr-x 1 root root 388 4月 2 09:34 /bin/mailmail3 -rwxr-xr-x 1 root root 111176 2月 26 2020 /bin/man -rwxr-xr-x 1 root root 27184 2月 26 2020 /bin/man-recode -rwxr-xr-x 1 root root 138072 2月 26 2020 /bin/mandb -rwxr-xr-x 1 root root 1942 2月 17 2020 /bin/manifest -rwxr-xr-x 1 root root 35224 2月 26 2020 /bin/manpath -rwxr-xr-x 1 root root 22584 5月 10 2019 /bin/mapscrn -rwxr-xr-x 1 root root 2488 3月 12 2020 /bin/mariadb-service-convert -rwxr-xr-x 1 root root 154104 2月 17 2020 /bin/mawk -rwxr-xr-x 1 root root 34896 4月 3 00:29 /bin/mcookie -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/md5sum -rwxr-xr-x 1 root root 43200 8月 18 20:38 /bin/mdig -rwxr-xr-x 1 root root 14344 4月 3 00:29 /bin/mesg -rwxr-xr-x 1 root root 3060 3月 10 2020 /bin/migrate-pubring-from-classic-gpg -rwxr-xr-x 1 root root 35098 2月 4 2020 /bin/miniterm -rwxr-xr-x 1 root root 16163 5月 10 2019 /bin/mk_modmap -rwxr-xr-x 1 root root 76000 9月 5 2019 /bin/mkdir -rwxr-xr-x 1 root root 14136 2月 11 2020 /bin/mkenvimage -rwxr-xr-x 1 root root 59616 9月 5 2019 /bin/mkfifo -rwxr-xr-x 1 root root 257904 2月 11 2020 /bin/mkimage -rwxr-xr-x 1 root root 63712 9月 5 2019 /bin/mknod -rwxr-xr-x 1 root root 214568 8月 30 2019 /bin/mksquashfs -rwxr-xr-x 1 root root 10040 2月 11 2020 /bin/mksunxiboot -rwxr-xr-x 1 root root 43232 9月 5 2019 /bin/mktemp -rwxr-xr-x 1 root root 38840 4月 3 00:29 /bin/more -rwsr-xr-x 1 root root 47112 4月 3 00:29 /bin/mount -rwxr-xr-x 1 root root 14344 4月 3 00:29 /bin/mountpoint -rwxr-xr-x 1 root root 1446 3月 12 2020 /bin/msql2mysql -rwxr-xr-x 1 root root 80296 2月 1 2020 /bin/mt-gnu -rwxr-xr-x 1 root root 73752 8月 21 2019 /bin/mtr -rwxr-xr-x 1 root root 30808 8月 21 2019 /bin/mtr-packet -rwxr-xr-x 1 root root 133368 9月 5 2019 /bin/mv -rwxr-xr-x 1 root root 3515080 3月 12 2020 /bin/my_print_defaults -rwxr-xr-x 1 root root 3802400 3月 12 2020 /bin/myisam_ftdump -rwxr-xr-x 1 root root 3909592 3月 12 2020 /bin/myisamchk -rwxr-xr-x 1 root root 3780920 3月 12 2020 /bin/myisamlog -rwxr-xr-x 1 root root 3827560 3月 12 2020 /bin/myisampack -rwxr-xr-x 1 root root 4078464 3月 12 2020 /bin/mysql -rwxr-xr-x 1 root root 4217 3月 12 2020 /bin/mysql_convert_table_format -rwxr-xr-x 1 root root 19367280 3月 12 2020 /bin/mysql_embedded -rwxr-xr-x 1 root root 3290 3月 12 2020 /bin/mysql_find_rows -rwxr-xr-x 1 root root 1250 3月 12 2020 /bin/mysql_fix_extensions -rwxr-xr-x 1 root root 19835 3月 12 2020 /bin/mysql_install_db -rwxr-xr-x 1 root root 3523184 3月 12 2020 /bin/mysql_plugin -rwxr-xr-x 1 root root 12527 3月 12 2020 /bin/mysql_secure_installation -rwxr-xr-x 1 root root 17482 3月 12 2020 /bin/mysql_setpermission -rwxr-xr-x 1 root root 3518560 3月 12 2020 /bin/mysql_tzinfo_to_sql -rwxr-xr-x 1 root root 3606288 3月 12 2020 /bin/mysql_upgrade -rwxr-xr-x 1 root root 3510112 3月 12 2020 /bin/mysql_waitpid -rwxr-xr-x 1 root root 111922 3月 12 2020 /bin/mysqlaccess -rwxr-xr-x 1 root root 3856160 3月 12 2020 /bin/mysqladmin -rwxr-xr-x 1 root root 4083536 3月 12 2020 /bin/mysqlbinlog -rwxr-xr-x 1 root root 3833144 3月 12 2020 /bin/mysqlcheck -rwxr-xr-x 1 root root 24714 3月 12 2020 /bin/mysqld_multi -rwxr-xr-x 1 root root 30288 3月 12 2020 /bin/mysqld_safe -rwxr-xr-x 1 root root 3480760 3月 12 2020 /bin/mysqld_safe_helper -rwxr-xr-x 1 root root 3915448 3月 12 2020 /bin/mysqldump -rwxr-xr-x 1 root root 8242 3月 12 2020 /bin/mysqldumpslow -rwxr-xr-x 1 root root 34942 3月 12 2020 /bin/mysqlhotcopy -rwxr-xr-x 1 root root 3832032 3月 12 2020 /bin/mysqlimport -rwxr-xr-x 1 root root 51235 1月 6 2020 /bin/mysqlreport -rwxr-xr-x 1 root root 3822376 3月 12 2020 /bin/mysqlshow -rwxr-xr-x 1 root root 3845696 3月 12 2020 /bin/mysqlslap -rwxr-xr-x 1 root root 64821 3月 12 2020 /bin/mytop -rwxr-xr-x 1 root root 30728 4月 3 00:29 /bin/namei -rwxr-xr-x 1 root root 319976 4月 10 23:12 /bin/nano -rwxr-xr-x 1 root root 39328 3月 10 2020 /bin/nc.openbsd -rwxr-xr-x 1 root root 29328 3月 30 18:26 /bin/ncal -rwxr-xr-x 1 root root 913 3月 21 2020 /bin/neqn -rwxr-xr-x 1 root root 104920 2月 24 2019 /bin/netkit-ftp -rwxr-xr-x 1 root root 67640 7月 7 06:38 /bin/networkctl -rwxr-xr-x 1 root root 18167 8月 19 2019 /bin/networkd-dispatcher -rwsr-xr-x 1 root root 40400 5月 28 15:37 /bin/newgrp -rwxr-xr-x 1 root root 34824 3月 23 00:42 /bin/ngettext -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/nice -rwxr-xr-x 1 root root 39224 9月 5 2019 /bin/nl -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/nohup -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/nproc -rwxr-xr-x 1 root root 3293 3月 21 2020 /bin/nroff -rwxr-xr-x 1 root root 30928 4月 3 00:29 /bin/nsenter -rwxr-xr-x 1 root root 104984 8月 18 20:38 /bin/nslookup -rwxr-xr-x 1 root root 75792 2月 14 2020 /bin/nstat -rwxr-xr-x 1 root root 63760 8月 18 20:38 /bin/nsupdate -rwxr-xr-x 1 root root 150176 5月 3 2019 /bin/ntfs-3g -rwxr-xr-x 1 root root 10248 5月 3 2019 /bin/ntfs-3g.probe -rwxr-xr-x 1 root root 30760 5月 3 2019 /bin/ntfscat -rwxr-xr-x 1 root root 34856 5月 3 2019 /bin/ntfscluster -rwxr-xr-x 1 root root 34856 5月 3 2019 /bin/ntfscmp -rwxr-xr-x 1 root root 47160 5月 3 2019 /bin/ntfsdecrypt -rwxr-xr-x 1 root root 34864 5月 3 2019 /bin/ntfsfallocate -rwxr-xr-x 1 root root 43152 5月 3 2019 /bin/ntfsfix -rwxr-xr-x 1 root root 55352 5月 3 2019 /bin/ntfsinfo -rwxr-xr-x 1 root root 31840 5月 3 2019 /bin/ntfsls -rwxr-xr-x 1 root root 30760 5月 3 2019 /bin/ntfsmove -rwxr-xr-x 1 root root 120968 5月 3 2019 /bin/ntfsrecover -rwxr-xr-x 1 root root 88592 5月 3 2019 /bin/ntfssecaudit -rwxr-xr-x 1 root root 38880 5月 3 2019 /bin/ntfstruncate -rwxr-xr-x 1 root root 30680 5月 3 2019 /bin/ntfsusermap -rwxr-xr-x 1 root root 47672 5月 3 2019 /bin/ntfswipe -rwxr-xr-x 1 root root 76056 9月 5 2019 /bin/numfmt -rwxr-xr-x 1 root root 67824 9月 5 2019 /bin/od -rwxr-xr-x 1 root root 8623 8月 9 20:43 /bin/oem-getlogs -rwxr-xr-x 1 root root 609416 4月 24 01:35 /bin/openssl -rwxr-xr-x 1 root root 18792 5月 10 2019 /bin/openvt -rwxr-xr-x 1 root root 112656 4月 3 00:29 /bin/partx -rwsr-xr-x 1 root root 63744 5月 28 15:37 /bin/passwd -rwxr-xr-x 1 root root 35048 9月 5 2019 /bin/paste -rwxr-xr-x 1 root root 16515 8月 3 2019 /bin/pastebinit -rwxr-xr-x 1 root root 186664 7月 27 2019 /bin/patch -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/pathchk -rwxr-xr-x 1 root root 2569 8月 3 2019 /bin/pbput -rwxr-xr-x 1 root root 14488 11月 12 2019 /bin/peekfd -rwxr-xr-x 2 root root 3326608 3月 7 2020 /bin/perl -rwxr-xr-x 1 root root 10328 3月 7 2020 /bin/perl5.30-aarch64-linux-gnu -rwxr-xr-x 2 root root 3326608 3月 7 2020 /bin/perl5.30.0 -rwxr-xr-x 2 root root 46366 3月 7 2020 /bin/perlbug -rwxr-xr-x 1 root root 125 10月 28 2019 /bin/perldoc -rwxr-xr-x 1 root root 10864 3月 7 2020 /bin/perlivp -rwxr-xr-x 2 root root 46366 3月 7 2020 /bin/perlthanks -rwxr-xr-x 1 root root 3711184 3月 12 2020 /bin/perror -rwxr-xr-x 1 root root 26648 2月 27 2020 /bin/pgrep -rwxr-xr-x 1 root root 14885 9月 9 15:36 /bin/phar7.4.phar -rwxr-xr-x 1 root root 4624344 9月 9 15:36 /bin/php7.4 -rwxr-xr-x 1 root root 196712 3月 21 2020 /bin/pic -rwxr-xr-x 1 root root 8357 3月 7 2020 /bin/piconv -rwxr-xr-x 1 root root 59848 3月 23 00:54 /bin/pinentry-curses -rwxr-xr-x 1 root root 76552 1月 31 2020 /bin/ping -rwxr-xr-x 1 root root 39152 9月 5 2019 /bin/pinky -rwxr-xr-x 1 root root 14424 8月 16 2019 /bin/pkaction -rwxr-xr-x 1 root root 18520 8月 16 2019 /bin/pkcheck -rwxr-xr-x 1 root root 67680 3月 12 2020 /bin/pkcon -rwsr-xr-x 1 root root 26840 8月 16 2019 /bin/pkexec -rwxr-xr-x 1 root root 18528 3月 12 2020 /bin/pkmon -rwxr-xr-x 1 root root 14424 8月 16 2019 /bin/pkttyagent -rwxr-xr-x 1 root root 4533 3月 7 2020 /bin/pl2pm -rwxr-xr-x 1 root root 14392 4月 15 04:26 /bin/pldd -rwxr-xr-x 1 root root 42936 4月 1 18:49 /bin/plymouth -rwxr-xr-x 1 root root 30744 2月 27 2020 /bin/pmap -rwsr-xr-- 1 root plugdev 44424 4月 3 2018 /bin/pmount -rwxr-xr-x 1 root root 4134 3月 7 2020 /bin/pod2html -rwxr-xr-x 1 root root 15034 3月 7 2020 /bin/pod2man -rwxr-xr-x 1 root root 10803 3月 7 2020 /bin/pod2text -rwxr-xr-x 1 root root 3948 3月 7 2020 /bin/pod2usage -rwxr-xr-x 1 root root 3658 3月 7 2020 /bin/podchecker -rwxr-xr-x 1 root root 2527 3月 7 2020 /bin/podselect -rwxr-xr-x 1 root root 8744 5月 30 2018 /bin/pollinate -rwxr-xr-x 1 root root 71968 9月 5 2019 /bin/pr -rwxr-xr-x 1 root root 59688 3月 21 2020 /bin/preconv -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/printenv -rwxr-xr-x 1 root root 22456 3月 30 18:26 /bin/printerbanner -rwxr-xr-x 1 root root 47328 9月 5 2019 /bin/printf -rwxr-xr-x 1 root root 35336 4月 3 00:29 /bin/prlimit -rwxr-xr-x 1 root root 76264 10月 27 2019 /bin/procan -rwxr-xr-x 1 root root 13655 3月 7 2020 /bin/prove -rwxr-xr-x 1 root root 14440 11月 12 2019 /bin/prtstat -rwxr-xr-x 1 root root 137456 2月 27 2020 /bin/ps -rwxr-xr-x 1 root root 18360 5月 10 2019 /bin/psfxtable -rwxr-xr-x 1 root root 10168 11月 12 2019 /bin/pslog -rwxr-xr-x 1 root root 31616 11月 12 2019 /bin/pstree -rwxr-xr-x 1 root root 3549 3月 7 2020 /bin/ptar -rwxr-xr-x 1 root root 2628 3月 7 2020 /bin/ptardiff -rwxr-xr-x 1 root root 4392 3月 7 2020 /bin/ptargrep -rwxr-xr-x 1 root root 67856 9月 5 2019 /bin/ptx -rwsr-xr-- 1 root plugdev 34960 4月 3 2018 /bin/pumount -rwxr-xr-x 1 root root 1149 2月 17 2020 /bin/purge-old-kernels -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/pwd -rwxr-xr-x 1 root root 10248 2月 27 2020 /bin/pwdx -rwxr-xr-x 1 root root 7813 3月 13 2020 /bin/py3clean -rwxr-xr-x 1 root root 12120 3月 13 2020 /bin/py3compile -rwxr-xr-x 1 root root 79 7月 16 23:00 /bin/pydoc3.8 -rwxr-xr-x 1 root root 21535 7月 16 23:00 /bin/pygettext3.8 -rwxr-xr-x 1 root root 392 4月 2 09:34 /bin/pyhtmlizer3 -rwxr-xr-x 1 root root 372 4月 6 08:07 /bin/pyjwt3 -rwxr-xr-x 1 root root 384 3月 28 11:39 /bin/python3-futurize -rwxr-xr-x 1 root root 388 3月 28 11:39 /bin/python3-pasteurize -rwxr-xr-x 1 root root 152 4月 10 04:32 /bin/python3-pbr -rwxr-xr-x 1 root root 5234664 7月 16 23:00 /bin/python3.8 -rwxr-xr-x 1 root root 133136 2月 14 2020 /bin/rdma -rwxr-xr-x 1 root root 43232 9月 5 2019 /bin/readlink -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/realpath -rwxr-xr-x 1 root root 89 2月 22 2020 /bin/red -rwxr-xr-x 1 root root 18440 4月 3 00:29 /bin/rename.ul -rwxr-xr-x 1 root root 14344 4月 3 00:29 /bin/renice -rwxr-xr-x 1 root root 3493048 3月 12 2020 /bin/replace -rwxr-xr-x 1 root root 39064 2月 25 2020 /bin/rescan-scsi-bus.sh -rwxr-xr-x 1 root root 59400 4月 3 00:29 /bin/resizepart -rwxr-xr-x 1 root root 3514208 3月 12 2020 /bin/resolve_stack_dump -rwxr-xr-x 1 root root 121048 7月 7 06:38 /bin/resolvectl -rwxr-xr-x 1 root root 3514208 3月 12 2020 /bin/resolveip -rwxr-xr-x 1 root root 10248 4月 3 00:29 /bin/rev -rwxr-xr-x 1 root root 30 1月 17 2020 /bin/rgrep -rwxr-xr-x 1 root root 63720 9月 5 2019 /bin/rm -rwxr-xr-x 1 root root 39136 9月 5 2019 /bin/rmdir -rwxr-xr-x 1 root root 208 2月 14 2020 /bin/routef -rwxr-xr-x 1 root root 1656 2月 14 2020 /bin/routel -rwxr-xr-x 1 root root 516312 10月 15 2019 /bin/rsync -rwxr-xr-x 1 root root 18487 10月 19 2019 /bin/run-mailcap -rwxr-xr-x 1 root root 3592 1月 16 2014 /bin/run-one -rwxr-xr-x 1 root root 22816 12月 7 2019 /bin/run-parts -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/runcon -rwxr-xr-x 1 root root 10481 12月 7 2019 /bin/savelog -rwxr-xr-x 1 root root 108720 5月 29 16:37 /bin/scp -rwxr-xr-x 1 root root 477864 2月 8 2020 /bin/screen -rwxr-xr-x 1 root root 14264 5月 10 2019 /bin/screendump -rwxr-xr-x 1 root root 47112 4月 3 00:29 /bin/script -rwxr-xr-x 1 root root 26632 4月 3 00:29 /bin/scriptreplay -rwxr-xr-x 1 root root 8585 2月 25 2020 /bin/scsi_logging_level -rwxr-xr-x 1 root root 3602 2月 25 2020 /bin/scsi_mandat -rwxr-xr-x 1 root root 1327 2月 25 2020 /bin/scsi_readcap -rwxr-xr-x 1 root root 1121 2月 25 2020 /bin/scsi_ready -rwxr-xr-x 1 root root 3857 2月 25 2020 /bin/scsi_satl -rwxr-xr-x 1 root root 1285 2月 25 2020 /bin/scsi_start -rwxr-xr-x 1 root root 1474 2月 25 2020 /bin/scsi_stop -rwxr-xr-x 1 root root 936 2月 25 2020 /bin/scsi_temperature -rwxr-xr-x 1 root root 47128 4月 8 2019 /bin/sdiff -rwxr-xr-x 1 root root 112976 12月 22 2018 /bin/sed -rwxr-xr-x 1 root root 2442 11月 17 2019 /bin/select-editor -rwxr-xr-x 1 root root 1230 11月 17 2019 /bin/sensible-browser -rwxr-xr-x 1 root root 1169 11月 17 2019 /bin/sensible-editor -rwxr-xr-x 1 root root 452 11月 17 2019 /bin/sensible-pager -rwxr-xr-x 1 root root 51424 9月 5 2019 /bin/seq -rwxr-xr-x 1 root root 18560 4月 3 00:29 /bin/setarch -rwxr-xr-x 1 root root 43064 5月 10 2019 /bin/setfont -rwxr-xr-x 1 root root 14344 5月 10 2019 /bin/setkeycodes -rwxr-xr-x 1 root root 14312 5月 10 2019 /bin/setleds -rwxr-xr-x 1 root root 14344 5月 10 2019 /bin/setlogcons -rwxr-xr-x 1 root root 10264 5月 10 2019 /bin/setmetamode -rwxr-xr-x 1 root root 26720 1月 26 2020 /bin/setpci -rwxr-xr-x 1 root root 43024 4月 3 00:29 /bin/setpriv -rwxr-xr-x 1 root root 14344 4月 3 00:29 /bin/setsid -rwxr-xr-x 1 root root 43016 4月 3 00:29 /bin/setterm -rwxr-xr-x 1 root root 39233 3月 27 19:10 /bin/setupcon -rwxr-xr-x 1 root root 166264 5月 29 16:37 /bin/sftp -rwxr-xr-x 1 root root 10360 2月 25 2020 /bin/sg_bg_ctl -rwxr-xr-x 1 root root 18968 2月 25 2020 /bin/sg_compare_and_write -rwxr-xr-x 1 root root 19368 2月 25 2020 /bin/sg_copy_results -rwxr-xr-x 1 root root 42952 2月 25 2020 /bin/sg_dd -rwxr-xr-x 1 root root 18808 2月 25 2020 /bin/sg_decode_sense -rwxr-xr-x 1 root root 10168 2月 25 2020 /bin/sg_emc_trespass -rwxr-xr-x 1 root root 31640 2月 25 2020 /bin/sg_format -rwxr-xr-x 1 root root 27640 2月 25 2020 /bin/sg_get_config -rwxr-xr-x 1 root root 18936 2月 25 2020 /bin/sg_get_lba_status -rwxr-xr-x 1 root root 14552 2月 25 2020 /bin/sg_ident -rwxr-xr-x 1 root root 118008 2月 25 2020 /bin/sg_inq -rwxr-xr-x 1 root root 146016 2月 25 2020 /bin/sg_logs -rwxr-xr-x 1 root root 22936 2月 25 2020 /bin/sg_luns -rwxr-xr-x 1 root root 14264 2月 25 2020 /bin/sg_map -rwxr-xr-x 1 root root 22856 2月 25 2020 /bin/sg_map26 -rwxr-xr-x 1 root root 42200 2月 25 2020 /bin/sg_modes -rwxr-xr-x 1 root root 27264 2月 25 2020 /bin/sg_opcodes -rwxr-xr-x 1 root root 32456 2月 25 2020 /bin/sg_persist -rwxr-xr-x 1 root root 10360 2月 25 2020 /bin/sg_prevent -rwxr-xr-x 1 root root 22968 2月 25 2020 /bin/sg_raw -rwxr-xr-x 1 root root 18776 2月 25 2020 /bin/sg_rbuf -rwxr-xr-x 1 root root 14288 2月 25 2020 /bin/sg_rdac -rwxr-xr-x 1 root root 22464 2月 25 2020 /bin/sg_read -rwxr-xr-x 1 root root 32992 2月 25 2020 /bin/sg_read_attr -rwxr-xr-x 1 root root 10392 2月 25 2020 /bin/sg_read_block_limits -rwxr-xr-x 1 root root 19024 2月 25 2020 /bin/sg_read_buffer -rwxr-xr-x 1 root root 14648 2月 25 2020 /bin/sg_read_long -rwxr-xr-x 1 root root 18840 2月 25 2020 /bin/sg_readcap -rwxr-xr-x 1 root root 14616 2月 25 2020 /bin/sg_reassign -rwxr-xr-x 1 root root 14616 2月 25 2020 /bin/sg_referrals -rwxr-xr-x 1 root root 18792 2月 25 2020 /bin/sg_rep_zones -rwxr-xr-x 1 root root 14680 2月 25 2020 /bin/sg_requests -rwxr-xr-x 1 root root 14616 2月 25 2020 /bin/sg_reset -rwxr-xr-x 1 root root 10456 2月 25 2020 /bin/sg_reset_wp -rwxr-xr-x 1 root root 10360 2月 25 2020 /bin/sg_rmsn -rwxr-xr-x 1 root root 14552 2月 25 2020 /bin/sg_rtpg -rwxr-xr-x 1 root root 18744 2月 25 2020 /bin/sg_safte -rwxr-xr-x 1 root root 23160 2月 25 2020 /bin/sg_sanitize -rwxr-xr-x 1 root root 14680 2月 25 2020 /bin/sg_sat_identify -rwxr-xr-x 1 root root 14968 2月 25 2020 /bin/sg_sat_phy_event -rwxr-xr-x 1 root root 14680 2月 25 2020 /bin/sg_sat_read_gplog -rwxr-xr-x 1 root root 14648 2月 25 2020 /bin/sg_sat_set_features -rwxr-xr-x 1 root root 14272 2月 25 2020 /bin/sg_scan -rwxr-xr-x 1 root root 14840 2月 25 2020 /bin/sg_seek -rwxr-xr-x 1 root root 23352 2月 25 2020 /bin/sg_senddiag -rwxr-xr-x 1 root root 114136 2月 25 2020 /bin/sg_ses -rwxr-xr-x 1 root root 23480 2月 25 2020 /bin/sg_ses_microcode -rwxr-xr-x 1 root root 18904 2月 25 2020 /bin/sg_start -rwxr-xr-x 1 root root 18776 2月 25 2020 /bin/sg_stpg -rwxr-xr-x 1 root root 14648 2月 25 2020 /bin/sg_stream_ctl -rwxr-xr-x 1 root root 14616 2月 25 2020 /bin/sg_sync -rwxr-xr-x 1 root root 14560 2月 25 2020 /bin/sg_test_rwbuf -rwxr-xr-x 1 root root 18888 2月 25 2020 /bin/sg_timestamp -rwxr-xr-x 1 root root 14616 2月 25 2020 /bin/sg_turs -rwxr-xr-x 1 root root 18808 2月 25 2020 /bin/sg_unmap -rwxr-xr-x 1 root root 14840 2月 25 2020 /bin/sg_verify -rwxr-xr-x 1 root root 104376 2月 25 2020 /bin/sg_vpd -rwxr-xr-x 1 root root 18776 2月 25 2020 /bin/sg_wr_mode -rwxr-xr-x 1 root root 19296 2月 25 2020 /bin/sg_write_buffer -rwxr-xr-x 1 root root 14712 2月 25 2020 /bin/sg_write_long -rwxr-xr-x 1 root root 18968 2月 25 2020 /bin/sg_write_same -rwxr-xr-x 1 root root 18840 2月 25 2020 /bin/sg_write_verify -rwxr-xr-x 1 root root 48344 2月 25 2020 /bin/sg_write_x -rwxr-xr-x 1 root root 34760 2月 25 2020 /bin/sg_xcopy -rwxr-xr-x 1 root root 14760 2月 25 2020 /bin/sg_zone -rwxr-xr-x 1 root root 73344 2月 25 2020 /bin/sginfo -rwxr-xr-x 1 root root 30656 2月 25 2020 /bin/sgm_dd -rwxr-xr-x 1 root root 34752 2月 25 2020 /bin/sgp_dd -rwxr-xr-x 1 root root 47336 9月 5 2019 /bin/sha1sum -rwxr-xr-x 1 root root 51432 9月 5 2019 /bin/sha224sum -rwxr-xr-x 1 root root 51432 9月 5 2019 /bin/sha256sum -rwxr-xr-x 1 root root 55528 9月 5 2019 /bin/sha384sum -rwxr-xr-x 1 root root 55528 9月 5 2019 /bin/sha512sum -rwxr-xr-x 1 root root 9976 3月 7 2020 /bin/shasum -rwxr-xr-x 1 root root 18440 5月 10 2019 /bin/showconsolefont -rwxr-xr-x 1 root root 14536 5月 10 2019 /bin/showkey -rwxr-xr-x 1 root root 63720 9月 5 2019 /bin/shred -rwxr-xr-x 1 root root 55520 9月 5 2019 /bin/shuf -rwxr-xr-x 1 root root 34824 2月 27 2020 /bin/skill -rwxr-xr-x 1 root root 26640 2月 27 2020 /bin/slabtop -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/sleep -rwxr-xr-x 1 root root 20033424 7月 10 22:59 /bin/snap -rwxr-xr-x 1 root root 39016 7月 10 22:59 /bin/snapfuse -rwxr-xr-x 1 root root 376208 10月 27 2019 /bin/socat -rwxr-xr-x 1 root root 39208 3月 21 2020 /bin/soelim -rwxr-xr-x 1 root root 109032 9月 5 2019 /bin/sort -rwxr-xr-x 1 root root 19150 3月 7 2020 /bin/splain -rwxr-xr-x 1 root root 55960 9月 5 2019 /bin/split -rwxr-xr-x 1 root root 10168 5月 10 2019 /bin/splitfont -rwxr-xr-x 1 root root 164392 2月 14 2020 /bin/ss -rwxr-xr-x 1 root root 764792 5月 29 16:37 /bin/ssh -rwxr-xr-x 1 root root 354432 5月 29 16:37 /bin/ssh-add -rwxr-sr-x 1 root ssh 333960 5月 29 16:37 /bin/ssh-agent -rwxr-xr-x 1 root root 1455 5月 29 16:33 /bin/ssh-argv0 -rwxr-xr-x 1 root root 10658 2月 14 2020 /bin/ssh-copy-id -rwxr-xr-x 1 root root 409 2月 29 2020 /bin/ssh-import-id -rwxr-xr-x 1 root root 785 2月 29 2020 /bin/ssh-import-id-gh -rwxr-xr-x 1 root root 785 2月 29 2020 /bin/ssh-import-id-lp -rwxr-xr-x 1 root root 457024 5月 29 16:37 /bin/ssh-keygen -rwxr-xr-x 1 root root 448824 5月 29 16:37 /bin/ssh-keyscan -rwxr-xr-x 1 root root 80112 9月 5 2019 /bin/stat -rwxr-xr-x 1 root root 47328 9月 5 2019 /bin/stdbuf -rwxr-xr-x 1 root root 1267936 4月 17 07:23 /bin/strace -rwxr-xr-x 1 root root 1821 3月 19 2019 /bin/strace-log-merge -rwxr-xr-x 1 root root 71912 9月 5 2019 /bin/stty -rwsr-xr-x 1 root root 59424 4月 3 00:29 /bin/su -rwsr-xr-x 1 root root 157632 7月 15 09:17 /bin/sudo -rwxr-xr-x 1 root root 60168 7月 15 09:17 /bin/sudoreplay -rwxr-xr-x 1 root root 51432 9月 5 2019 /bin/sum -rwxr-xr-x 1 root root 117680 3月 11 2020 /bin/symcryptrun -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/sync -rwxr-xr-x 1 root root 963416 7月 7 06:38 /bin/systemctl -rwxr-xr-x 1 root root 1514896 7月 7 06:38 /bin/systemd-analyze -rwxr-xr-x 1 root root 14456 7月 7 06:38 /bin/systemd-ask-password -rwxr-xr-x 1 root root 14344 7月 7 06:38 /bin/systemd-cat -rwxr-xr-x 1 root root 14448 7月 7 06:38 /bin/systemd-cgls -rwxr-xr-x 1 root root 30768 7月 7 06:38 /bin/systemd-cgtop -rwxr-xr-x 1 root root 22528 7月 7 06:38 /bin/systemd-delta -rwxr-xr-x 1 root root 14336 7月 7 06:38 /bin/systemd-detect-virt -rwxr-xr-x 1 root root 14336 7月 7 06:38 /bin/systemd-escape -rwxr-xr-x 1 root root 100792 7月 7 06:38 /bin/systemd-hwdb -rwxr-xr-x 1 root root 18432 7月 7 06:38 /bin/systemd-id128 -rwxr-xr-x 1 root root 18456 7月 7 06:38 /bin/systemd-inhibit -rwxr-xr-x 1 root root 22632 7月 7 06:38 /bin/systemd-machine-id-setup -rwxr-xr-x 1 root root 47336 7月 7 06:38 /bin/systemd-mount -rwxr-xr-x 1 root root 14344 7月 7 06:38 /bin/systemd-notify -rwxr-xr-x 1 root root 14336 7月 7 06:38 /bin/systemd-path -rwxr-xr-x 1 root root 55584 7月 7 06:38 /bin/systemd-run -rwxr-xr-x 1 root root 22528 7月 7 06:38 /bin/systemd-socket-activate -rwxr-xr-x 1 root root 14344 7月 7 06:38 /bin/systemd-stdio-bridge -rwxr-xr-x 1 root root 47456 7月 7 06:38 /bin/systemd-sysusers -rwxr-xr-x 1 root root 76000 7月 7 06:38 /bin/systemd-tmpfiles -rwxr-xr-x 1 root root 26624 7月 7 06:38 /bin/systemd-tty-ask-password-agent -rwxr-xr-x 1 root root 14424 2月 26 2020 /bin/tabs -rwxr-xr-x 1 root root 39136 9月 5 2019 /bin/tac -rwxr-xr-x 1 root root 67840 9月 5 2019 /bin/tail -rwxr-xr-x 1 root root 447704 3月 15 2020 /bin/tar -rwxr-xr-x 1 root root 30728 4月 3 00:29 /bin/taskset -rwxr-xr-x 1 root root 133416 3月 21 2020 /bin/tbl -rwxr-xr-x 1 root root 35048 9月 5 2019 /bin/tee -rwxr-xr-x 1 root root 114872 3月 23 15:20 /bin/telnet.netkit -rwxr-xr-x 1 root root 10296 12月 7 2019 /bin/tempfile -rwxr-xr-x 1 root root 47320 9月 5 2019 /bin/test -rwxr-xr-x 1 root root 84168 2月 26 2020 /bin/tic -rwxr-xr-x 1 root root 14928 4月 22 2017 /bin/time -rwxr-xr-x 1 root root 38912 7月 7 06:38 /bin/timedatectl -rwxr-xr-x 1 root root 43656 9月 5 2019 /bin/timeout -rwxr-xr-x 1 root root 386 4月 2 09:34 /bin/tkconch3 -rwxr-xr-x 1 root root 22552 2月 27 2020 /bin/tload -rwxr-xr-x 1 root root 667736 5月 20 20:53 /bin/tmux -rwxr-xr-x 1 root root 18520 2月 26 2020 /bin/toe -rwxr-xr-x 1 root root 116472 2月 27 2020 /bin/top -rwxr-xr-x 1 root root 88296 9月 5 2019 /bin/touch -rwxr-xr-x 1 root root 22648 2月 26 2020 /bin/tput -rwxr-xr-x 1 root root 47328 9月 5 2019 /bin/tr -rwxr-xr-x 1 root root 18360 1月 31 2020 /bin/tracepath -rwxr-xr-x 1 root root 26552 1月 31 2020 /bin/traceroute6.iputils -rwxr-xr-x 1 root root 382 4月 2 09:34 /bin/trial3 -rwxr-xr-x 1 root root 753352 3月 21 2020 /bin/troff -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/true -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/truncate -rwxr-xr-x 1 root root 22624 2月 26 2020 /bin/tset -rwxr-xr-x 1 root root 35040 9月 5 2019 /bin/tsort -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/tty -rwxr-xr-x 1 root root 382 4月 2 09:34 /bin/twist3 -rwxr-xr-x 1 root root 384 4月 2 09:34 /bin/twistd3 -rwxr-xr-x 1 root root 15376 4月 15 04:26 /bin/tzselect -rwxr-xr-x 1 root root 442 3月 31 05:49 /bin/ubuntu-advantage -rwxr-xr-x 1 root root 23249 6月 4 02:18 /bin/ubuntu-security-status -rwxr-xr-x 1 root root 40685 12月 14 2018 /bin/ucf -rwxr-xr-x 1 root root 19367 12月 14 2018 /bin/ucfq -rwxr-xr-x 1 root root 10722 12月 14 2018 /bin/ucfr -rwxr-xr-x 1 root root 917336 7月 7 06:38 /bin/udevadm -rwxr-xr-x 1 root root 14280 3月 30 18:26 /bin/ul -rwxr-xr-x 1 root root 14264 3月 7 2020 /bin/ulockmgr_server -rwsr-xr-x 1 root root 30728 4月 3 00:29 /bin/umount -rwxr-xr-x 1 root root 35048 9月 5 2019 /bin/uname -rwxr-xr-x 1 root root 99313 7月 22 00:20 /bin/unattended-upgrade -rwxr-xr-x 2 root root 2346 12月 14 2019 /bin/uncompress -rwxr-xr-x 1 root root 35056 9月 5 2019 /bin/unexpand -rwxr-xr-x 1 root root 2762 5月 10 2019 /bin/unicode_start -rwxr-xr-x 1 root root 530 5月 10 2019 /bin/unicode_stop -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/uniq -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/unlink -rwxr-xr-x 1 root root 3595 2月 18 2020 /bin/unmkinitramfs -rwxr-xr-x 1 root root 35016 4月 3 00:29 /bin/unshare -rwxr-xr-x 1 root root 114384 8月 30 2019 /bin/unsquashfs -rwxr-xr-x 1 root root 47256 3月 23 15:12 /bin/update-alternatives -rwxr-xr-x 1 root root 55360 3月 25 00:58 /bin/update-mime-database -rwxr-xr-x 1 root root 10248 2月 27 2020 /bin/uptime -rwxr-xr-x 1 root root 4100 10月 2 2019 /bin/usb-devices -rwxr-xr-x 1 root root 26792 10月 2 2019 /bin/usbhid-dump -rwxr-xr-x 1 root root 10328 10月 2 2019 /bin/usbreset -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/users -rwxr-xr-x 1 root root 26632 4月 3 00:29 /bin/utmpdump -rwxr-xr-x 1 root root 14344 4月 3 00:29 /bin/uuidgen -rwxr-xr-x 1 root root 34824 4月 3 00:29 /bin/uuidparse -rwxr-xr-x 1 root root 6912 2月 26 2020 /bin/vcs-run -rwxr-xr-x 1 root root 137888 9月 5 2019 /bin/vdir -rwxr-xr-x 1 root root 2640 2月 17 2020 /bin/vigpg -rwxr-xr-x 1 root root 2928672 4月 15 15:40 /bin/vim.basic -rwxr-xr-x 1 root root 1393376 4月 15 15:40 /bin/vim.tiny -rwxr-xr-x 1 root root 2121 4月 15 15:40 /bin/vimtutor -rwxr-xr-x 1 root root 38944 2月 27 2020 /bin/vmstat -rwxr-xr-x 1 root root 10168 7月 8 2019 /bin/volname -rwxr-xr-x 1 root root 18440 2月 27 2020 /bin/w.procps -rwxr-sr-x 1 root tty 30728 4月 3 00:29 /bin/wall -rwxr-xr-x 1 root root 39248 2月 27 2020 /bin/watch -rwxr-xr-x 1 root root 14424 3月 11 2020 /bin/watchgnupg -rwxr-xr-x 1 root root 43240 9月 5 2019 /bin/wc -rwxr-xr-x 1 root root 34824 4月 3 00:29 /bin/wdctl -rwxr-xr-x 1 root root 519576 7月 25 2019 /bin/wget -rwxr-xr-x 1 root root 48000 2月 26 2020 /bin/whatis -rwxr-xr-x 1 root root 27056 4月 3 00:29 /bin/whereis -rwxr-xr-x 1 root root 946 12月 7 2019 /bin/which -rwxr-xr-x 1 root root 26568 2月 18 2020 /bin/whiptail -rwxr-xr-x 1 root root 47344 9月 5 2019 /bin/who -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/whoami -rwxr-xr-x 1 root root 2107 2月 17 2020 /bin/wifi-status -rwxr-xr-x 1 root root 71784 5月 20 20:01 /bin/wpa_passphrase -rwxr-xr-x 1 root root 10688 3月 12 2020 /bin/wsrep_sst_common -rwxr-xr-x 1 root root 37509 3月 12 2020 /bin/wsrep_sst_mariabackup -rwxr-xr-x 1 root root 7878 3月 12 2020 /bin/wsrep_sst_mysqldump -rwxr-xr-x 1 root root 16783 3月 12 2020 /bin/wsrep_sst_rsync -rwxr-xr-x 1 root root 67704 2月 18 2020 /bin/xargs -rwxr-xr-x 1 root root 51928 8月 25 2019 /bin/xauth -rwxr-xr-x 1 root root 234 1月 24 2019 /bin/xdg-user-dir -rwxr-xr-x 1 root root 22536 1月 24 2019 /bin/xdg-user-dirs-update -rwxr-xr-x 1 root root 5164 3月 7 2020 /bin/xsubpp -rwxr-xr-x 1 root root 18448 4月 15 15:40 /bin/xxd -rwxr-xr-x 1 root root 80136 4月 21 06:43 /bin/xz -rwxr-xr-x 1 root root 6632 4月 21 06:43 /bin/xzdiff -rwxr-xr-x 1 root root 5628 4月 21 06:43 /bin/xzgrep -rwxr-xr-x 1 root root 1802 4月 21 06:43 /bin/xzless -rwxr-xr-x 1 root root 2161 4月 21 06:43 /bin/xzmore -rwxr-xr-x 1 root root 30944 9月 5 2019 /bin/yes -rwxr-xr-x 1 root root 1984 12月 14 2019 /bin/zcat -rwxr-xr-x 1 root root 1678 12月 14 2019 /bin/zcmp -rwxr-xr-x 1 root root 5880 12月 14 2019 /bin/zdiff -rwxr-xr-x 1 root root 18424 4月 15 04:26 /bin/zdump -rwxr-xr-x 1 root root 29 12月 14 2019 /bin/zegrep -rwxr-xr-x 1 root root 29 12月 14 2019 /bin/zfgrep -rwxr-xr-x 1 root root 2081 12月 14 2019 /bin/zforce -rwxr-xr-x 1 root root 7585 12月 14 2019 /bin/zgrep -rwxr-xr-x 1 root root 50718 3月 7 2020 /bin/zipdetails -rwxr-xr-x 1 root root 2206 12月 14 2019 /bin/zless -rwxr-xr-x 1 root root 1842 12月 14 2019 /bin/zmore -rwxr-xr-x 1 root root 4553 12月 14 2019 /bin/znew |
コメント