Linux Security: Managing Unused Services

Поделиться
HTML-код
  • Опубликовано: 15 дек 2024

Комментарии • 7

  • @MrRhysstevens
    @MrRhysstevens 6 лет назад

    Great video as always, i particularly like this security serries.

  • @Rickety3263
    @Rickety3263 3 года назад

    How feasible is systemd for creating an airgap by enabling and disabling network services adhoc? Or is that just not secure unless you block the actual kernel modules from loading during boot?

  • @Vagelis_Prokopiou
    @Vagelis_Prokopiou 6 лет назад

    I didn't really get how to disable auto start of a service in systemd. Was it the mask command?

  • @OctavianFox
    @OctavianFox 6 лет назад

    a helpful command, if you want to stop a service and also disable it from autostart you then could just type: systemctl stop --now atd

    • @OctavianFox
      @OctavianFox 6 лет назад

      oops.. typo here.. command should be: systemctl disable --now atd

    • @theurbanpenguin
      @theurbanpenguin  6 лет назад

      Great tip but --now only works with enable , disable and mask but also starts and stops the service sudo systemctl disable --atd would both disable the service and stop it. If used with enable it would both enable and start the service