सिस्टम-विश्लेषण में देव-sda.device क्या है, क्या मैं इसे अक्षम कर सकता हूं?


11

मेरे पास Ubuntu 16.04 मेरे लैपटॉप पर विंडोज़ के साथ स्थापित है। में systemd-analyze blameएक सेवा 'देव-sda7.device' कहा जाता है बहुत अधिक समय ले रहा है। इस समस्या को कैसे हल करें या क्या मुझे इसे अक्षम करना चाहिए?

के परिणाम systemd-analyze time

Startup finished in 4.207s (firmware) + 4.576s (loader) + 3.466s (kernel) + 33.899s (userspace) = 46.149s

के परिणाम systemd-analyze blame

         16.326s dev-sda7.device
         12.859s ufw.service
         11.263s systemd-tmpfiles-setup-dev.service
          7.935s NetworkManager-wait-online.service
          3.203s keyboard-setup.service
          2.736s vboxdrv.service
          2.467s accounts-daemon.service
          2.349s apache2.service
          2.239s NetworkManager.service
          2.163s ModemManager.service
          1.963s lightdm.service
          1.843s nmbd.service
          1.749s samba-ad-dc.service
          1.599s systemd-fsck@dev-disk-by\x2duuid-B053\x2dA56B.service
          1.367s thermald.service
          1.127s polkitd.service
          1.112s systemd-journald.service
          1.066s teamviewerd.service
          1.007s udisks2.service
           975ms apparmor.service
           926ms plymouth-start.service

के परिणाम cat /etc/fstab

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda7 during installation
UUID=493cc833-193e-435d-840a-b862ca367fba /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda2 during installation
UUID=B053-A56B  /boot/efi       vfat    umask=0077      0       1
# swap was on /dev/sda6 during installation
UUID=a49f56b1-53c3-4eaf-9460-0a221e59957a none            swap    sw              0       0

जवाबों:


4

आप इसे अक्षम नहीं कर सकते, क्योंकि /dev/sda7आपका रूट विभाजन माउंट है। सिस्टमड में, वह सब कुछ जिसे बूट करते समय वह संभाल सकता है एक सिस्टमड यूनिट में। फिर आप इसके साथ काम कर सकते हैं (जैसे इस मामले में ट्रैक समय, या सेवाओं के लिए इस पर निर्भर)। उपकरणों के मामलों में, श्रृंखला इस प्रकार है:

  • कर्नेल डिवाइस को लोड करता है और इसे सक्रिय करता है
  • systemd इसके लिए देखता है और /dev/sdxyइसके लिए नोड बनाता है
  • तब systemd से उत्पन्न विभिन्न माउंट इकाइयों को सक्रिय करता है fstab
  • जो तब विभिन्न अन्य सेवाओं को ट्रिगर करता है जो फाइलसिस्टम के माउंट होने का इंतजार कर रहे थे
  • और इसी तरह

यह आपको यह पहचानने की अनुमति देता है कि डिस्क को सक्रिय करने के लिए धीमी है, लेकिन जब तक आपको एक नई डिस्क नहीं मिल सकती है, तब तक आप इसके बारे में बहुत कुछ नहीं कर सकते।

आप महत्वपूर्ण पथ का विश्लेषण करने की कोशिश कर सकते हैं और देख सकते हैं कि क्या कुछ और है जिसे आप ठीक कर सकते हैं:

systemd-analyze critical-chain [UNIT...]  prints a tree of the
time-critical chain of units (for each of the specified UNITs or for
the default target otherwise). The time after the unit is active or
started is printed after the "@" character. The time the unit takes to
start is printed after the "+" character. Note that the output might be
misleading as the initialization of one service might depend on socket
activation and because of the parallel execution of units.

उदाहरण:

graphical.target @10.868s
└─multi-user.target @10.868s
  └─squid-deb-proxy.service @10.816s +51ms
    └─network-online.target @10.814s
      └─NetworkManager-wait-online.service @2.419s +8.395s
        └─NetworkManager.service @2.243s +155ms
          └─dbus.service @2.192s
            └─basic.target @2.129s
              └─sockets.target @2.129s
                └─snapd.socket @2.127s +1ms
                  └─sysinit.target @2.127s
                    └─swap.target @2.127s
                      └─dev-disk-by\x2duuid-498d24e5\x2d7755\x2d422f\x2dbe45\x2d1b78d50b44e8.swap @2.119s +7ms
                        └─dev-disk-by\x2duuid-498d24e5\x2d7755\x2d422f\x2dbe45\x2d1b78d50b44e8.device @2.119s

उदाहरण के लिए, मेरे मामले में नेटवर्क स्टार्टअप को धीमा कर रहा है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.