Ubuntu 22.04
Sponsored Link

प्रारंभिक सेटिंग्स : सेवाएँ कॉन्फ़िगर करें2023/08/24

 
सेवाओं की स्थिति देखने या सेवाओं को सक्षम/अक्षम करने के लिए, निम्नानुसार कॉन्फ़िगर करें।
[1] प्रदर्शन सेवाएँ.
# प्रदर्शन सेवाएँ जो चल रही हैं
# [--all] जोड़ने के लिए, सभी शामिल निष्क्रिय सेवाओं को प्रदर्शित करें
# [--no-pager] जोड़ने के लिए, [less/more] जैसे पेजर का उपयोग नहीं किया जाता है

root@localhost:~#
systemctl -t service

  UNIT
  accounts-daemon.service
  apparmor.service
  apport.service
  blk-availability.service
  cloud-config.service
  cloud-final.service
  
.....
.....

  unattended-upgrades.service
  user-runtime-dir@1000.service
  user@1000.service

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.
55 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.

# सभी सेवाओं की सेटिंग की सूची प्रदर्शित करें

root@localhost:~#
systemctl list-unit-files -t service

UNIT FILE                              STATE           VENDOR PRESET
apparmor.service                       enabled         enabled
apport-autoreport.service              static          -
apport-forward@.service                static          -
apport.service                         generated       -
apt-daily-upgrade.service              static          -
apt-daily.service                      static          -
autovt@.service                        alias           -
blk-availability.service               enabled         enabled
bolt.service                           static          -

.....
.....

vmtoolsd.service                       alias           -
x11-common.service                     masked          enabled
xfs_scrub@.service                     static          -
xfs_scrub_all.service                  static          -
xfs_scrub_fail@.service                static          -

207 unit files listed.
[2] यदि कुछ अनावश्यक सेवाएँ हैं, तो निम्नानुसार ऑटो-स्टार्ट सेटिंग को रोकना और बंद करना संभव है।
([.service] शब्दों को छोड़ना संभव है)
root@localhost:~#
systemctl stop apparmor

root@localhost:~#
systemctl disable apparmor

मिलान सामग्री