RHEL7 / CentOS 7 এ বর্তমান সক্রিয় লক্ষ্য কিভাবে পরীক্ষা করবেন


1

RHEL 6 আমরা চালাতে পারেন runlevel আমার সিস্টেমের বর্তমান রানলেভেল চেক করতে।

আরএইচএইচ 7 এ আমাদের কমান্ড আছে systemctl get-default ডিফল্ট টার্গেট চেক করতে কিন্তু বর্তমান সক্রিয় টার্গেট কিভাবে চেক করতে?

উত্তর:


1
systemctl list-units --type target

এখানে ডকুমেন্টেশন অনুযায়ী: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/sect-Managing_Services_with_systemd-Targets.html

এখানে নমুনা আউটপুট (এটি একটি লাইন উত্তর দেয় না):

[root@ ~]# systemctl list-units --type target
UNIT                   LOAD   ACTIVE SUB    DESCRIPTION
basic.target           loaded active active Basic System
cryptsetup.target      loaded active active Encrypted Volumes
getty.target           loaded active active Login Prompts
graphical.target       loaded active active Graphical Interface
local-fs-pre.target    loaded active active Local File Systems (Pre)
local-fs.target        loaded active active Local File Systems
multi-user.target      loaded active active Multi-User System
network-online.target  loaded active active Network is Online
network.target         loaded active active Network
nfs-client.target      loaded active active NFS client services
nss-user-lookup.target loaded active active User and Group Name Lookups
paths.target           loaded active active Paths
remote-fs-pre.target   loaded active active Remote File Systems (Pre)
remote-fs.target       loaded active active Remote File Systems
slices.target          loaded active active Slices
sockets.target         loaded active active Sockets
sound.target           loaded active active Sound Card
swap.target            loaded active active Swap
sysinit.target         loaded active active System Initialization
timers.target          loaded active active Timers

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.

20 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
[root@ ~]# systemctl isolate multi-user.target
[root@ ~]# systemctl list-units --type target
UNIT                  LOAD   ACTIVE SUB    DESCRIPTION
basic.target          loaded active active Basic System
cryptsetup.target     loaded active active Encrypted Volumes
getty.target          loaded active active Login Prompts
local-fs-pre.target   loaded active active Local File Systems (Pre)
local-fs.target       loaded active active Local File Systems
multi-user.target     loaded active active Multi-User System
network-online.target loaded active active Network is Online
network.target        loaded active active Network
nfs-client.target     loaded active active NFS client services
paths.target          loaded active active Paths
remote-fs-pre.target  loaded active active Remote File Systems (Pre)
remote-fs.target      loaded active active Remote File Systems
slices.target         loaded active active Slices
sockets.target        loaded active active Sockets
swap.target           loaded active active Swap
sysinit.target        loaded active active System Initialization
timers.target         loaded active active Timers

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.

17 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
[root@ ~]# cat /etc/redhat-release 
CentOS Linux release 7.3.1611 (Core) 
[root@ ~]# 

আমরা graphical.target দিয়ে শুরু করি এবং প্রথমবার কমান্ডটি কার্যকর হয়, আমরা উভয়টি multi -user.target এবং graphical.target উভয়ই দেখতে পারি। এই কারণ graphical.target মাল্টি- userer.target প্রয়োজন।

পরবর্তী আমরা multi -user.target পরিবর্তন। যদি আপনি multi -user.target দেখেন তবে আপনি graphical.target দেখেন না, তাহলে আমরা বহু-ব্যবহারকারীর লক্ষ্যে রয়েছি।

অন্যান্য দুটি সাধারণ লক্ষ্যগুলি rescue.target এবং emergency.target।

  • আপনি rescue.target দেখুন, তাহলে আপনি উদ্ধার লক্ষ্য।
  • আপনি জরুরি। লক্ষ্য দেখুন, তারপর আপনি জরুরী লক্ষ্য।
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.