编程开源技术交流,分享技术与知识

网站首页 > 开源技术 正文

网络工程师必会的Linux命令(linux网络工程师考证)

wxchong 2024-07-06 00:43:34 开源技术 12 ℃ 0 评论

很多学习网络的朋友对于Linux系统的了解很少甚至有些人认为根本没有必要去学习,其实在日常工作中,纯粹的网络运维工作是不常见的,大多都需要或多或少跟系统打交道,下面我就罗列一些常见的Linux命令供大家一起学习交流。

[redhat@localhost ~]$ lspci查看系统PCI设备

00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 01)

00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 01)

00:07.0 ISA bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 08)

00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)

00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08)

00:07.7 System peripheral: VMware Virtual Machine Communication Interface (rev 10)

00:0f.0 VGA compatible controller: VMware SVGA II Adapter

00:10.0 SCSI storage controller: Broadcom / LSI 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 01)

00:11.0 PCI bridge: VMware PCI bridge (rev 02)

00:15.0 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.1 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.2 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.3 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.4 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.5 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.6 PCI bridge: VMware PCI Express Root Port (rev 01)

00:15.7 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.0 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.1 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.2 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.3 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.4 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.5 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.6 PCI bridge: VMware PCI Express Root Port (rev 01)

00:16.7 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.0 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.1 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.2 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.3 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.4 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.5 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.6 PCI bridge: VMware PCI Express Root Port (rev 01)

00:17.7 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.0 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.1 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.2 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.3 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.4 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.5 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.6 PCI bridge: VMware PCI Express Root Port (rev 01)

00:18.7 PCI bridge: VMware PCI Express Root Port (rev 01)

02:00.0 USB controller: VMware USB1.1 UHCI Controller

02:01.0 Ethernet controller: Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) (rev 01)

02:02.0 Multimedia audio controller: Ensoniq ES1371/ES1373 / Creative Labs CT2518 (rev 02)

02:03.0 USB controller: VMware USB2 EHCI Controller

[redhat@localhost ~]$ more /proc/cpuinfo查看系统CPU信息

processor : 0

vendor_id : GenuineIntel

cpu family : 6

model : 140

model name : 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz

stepping : 1

microcode : 0x6e

cpu MHz : 2419.204

cache size : 8192 KB

physical id : 0

siblings : 1

core id : 0

cpu cores : 1

apicid : 0

initial apicid : 0

fpu : yes

fpu_exception : yes

cpuid level : 27

wp : yes

flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov

pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc

arch_perfmon rep_good nopl xtopology tsc_reliable nonstop_tsc eagerfpu pni pclm

ulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer a

es xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssb

d ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms inv

pcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni

avx512bw avx512vl xsaveopt xsavec xgetbv1 arat avx512vbmi umip pku ospke avx512

_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq movdiri m

ovdir64b md_clear spec_ctrl intel_stibp flush_l1d arch_capabilities

bogomips : 4838.40

clflush size : 64

cache_alignment : 64

address sizes : 45 bits physical, 48 bits virtual

power management:

[redhat@localhost ~]$ cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l查看物理CPU个数

1

[redhat@localhost ~]$ cat /proc/cpuinfo | grep "processor" | wc -l查看系统所有逻辑CPU个数

1

[redhat@localhost ~]$ cat /proc/cpuinfo | grep "cpu cores"查看每个物理CPU内核个数

cpu cores : 1

[redhat@localhost ~]$ more /proc/meminfo查看系统内存信息

MemTotal: 1862964 kB

MemFree: 193808 kB

MemAvailable: 950320 kB

Buffers: 88 kB

Cached: 895684 kB

SwapCached: 0 kB

Active: 952704 kB

Inactive: 445280 kB

Active(anon): 485380 kB

Inactive(anon): 47904 kB

Active(file): 467324 kB

Inactive(file): 397376 kB

Unevictable: 0 kB

Mlocked: 0 kB

SwapTotal: 2097148 kB

SwapFree: 2097148 kB

Dirty: 0 kB

Writeback: 0 kB

AnonPages: 502252 kB

Mapped: 164028 kB

Shmem: 31072 kB

Slab: 107664 kB

SReclaimable: 45796 kB

SUnreclaim: 61868 kB

KernelStack: 9488 kB

PageTables: 34768 kB

NFS_Unstable: 0 kB

Bounce: 0 kB

WritebackTmp: 0 kB

CommitLimit: 3028628 kB

Committed_AS: 3947932 kB

VmallocTotal: 34359738367 kB

VmallocUsed: 215332 kB

VmallocChunk: 34359277564 kB

Percpu: 55808 kB

HardwareCorrupted: 0 kB

AnonHugePages: 79872 kB

CmaTotal: 0 kB

CmaFree: 0 kB

HugePages_Total: 0

HugePages_Free: 0

HugePages_Rsvd: 0

HugePages_Surp: 0

Hugepagesize: 2048 kB

DirectMap4k: 106368 kB

DirectMap2M: 1990656 kB

DirectMap1G: 0 kB

[redhat@localhost ~]$ fdisk -l

fdisk: 打不开 /dev/sda: 权限不够

[redhat@localhost ~]$ su root

密码:

[root@localhost redhat]# fdisk -l查看磁盘分区信息


磁盘 /dev/sda:21.5 GB, 21474836480 字节,41943040 个扇区

Units = 扇区 of 1 * 512 = 512 bytes

扇区大小(逻辑/物理):512 字节 / 512 字节

I/O 大小(最小/最佳):512 字节 / 512 字节

磁盘标签类型:dos

磁盘标识符:0x000ef255


设备 Boot Start End Blocks Id System

/dev/sda1 * 2048 616447 307200 83 Linux

/dev/sda2 616448 4810751 2097152 82 Linux swap / Solaris

/dev/sda3 4810752 41943039 18566144 83 Linux

设备挂载

mount -t 文件系统类型 设备名 挂载点

挂载软盘mount -t msdos /dev/fdo /mnt/floppy

挂载U盘mount -t vfat /dev/sda1 /mnt/usb

挂载光盘mount -t iso9660 /dev/hda /mnt/cdrom或者mount /dev/cdrom /mnt/cdrom

卸载设备

Umount 挂载目录

[root@localhost /]# date -s "20221115 23:49:38"修改系统时间

2022年 11月 15日 星期二 23:49:38 PST

[root@localhost /]# date '+%Y-%m-%d'显示时间

2022-11-15

[root@localhost /]# date -d "2 days ago" +%Y-%m-%d显示两天前的时间

2022-11-13

更改密码

[root@localhost /]# passwd

更改用户 root 的密码 。

新的 密码:

无效的密码: 密码少于 8 个字符

重新输入新的 密码:

passwd:所有的身份验证令牌已经成功更新。

[redhat@localhost /]$ su root

密码:

[root@localhost /]# passwd

更改用户 root 的密码 。

新的 密码:

重新输入新的 密码:

passwd:所有的身份验证令牌已经成功更新。

[root@localhost /]# who -r查询系统运行级别

运行级别 5 2022-11-15 06:44

[root@localhost /]# who -buT查询系统最近启动日期以及用户登录详情

系统引导 2022-11-15 06:44

redhat ? :0 2022-11-15 06:44 ? 1821 (:0)

redhat + pts/0 2022-11-15 06:45 . 2641 (:0)

[root@localhost /]# w显示当前用户登录信息

00:07:59 up 1:23, 2 users, load average: 0.00, 0.01, 0.05

USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT

redhat :0 :0 二06 ?xdm? 1:03 0.17s /usr/libexec/gn

redhat pts/0 :0 二06 7.00s 0.15s 4.00s /usr/libexec/gn

[root@localhost /]# uname -a显示操作系统全部信息

Linux localhost.localdomain 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

[root@localhost /]# uptime显示当前系统时间、开机运行时间在线用户和系统平均负载

00:11:47 up 1:27, 2 users, load average: 0.00, 0.01, 0.05

[root@localhost /]# free -m列出当前内存使用情况

total used free shared buff/cache available

Mem: 1819 809 81 35 928 808

Swap: 2047 0 2047

[root@localhost /]# ps查看当前使用者的进程

PID TTY TIME CMD

3138 pts/0 00:00:00 su

3144 pts/0 00:00:00 bash

4363 pts/0 00:00:00 su

4465 pts/0 00:00:00 su

4470 pts/0 00:00:00 bash

4856 pts/0 00:00:00 ps

[root@localhost /]# ps -ef查看系统所有进程

UID PID PPID C STIME TTY TIME CMD

root 1 0 0 11月15 ? 00:00:01 /usr/lib/systemd/systemd --switched-root --system --deserialize 22

root 2 0 0 11月15 ? 00:00:00 [kthreadd]

root 4 2 0 11月15 ? 00:00:00 [kworker/0:0H]

root 6 2 0 11月15 ? 00:00:00 [ksoftirqd/0]

root 7 2 0 11月15 ? 00:00:00 [migration/0]

root 8 2 0 11月15 ? 00:00:00 [rcu_bh]

root 9 2 0 11月15 ? 00:00:00 [rcu_sched]

root 10 2 0 11月15 ? 00:00:00 [lru-add-drain]

root 11 2 0 11月15 ? 00:00:00 [watchdog/0]

root 13 2 0 11月15 ? 00:00:00 [kdevtmpfs]

root 14 2 0 11月15 ? 00:00:00 [netns]

root 15 2 0 11月15 ? 00:00:00 [khungtaskd]

root 16 2 0 11月15 ? 00:00:00 [writeback]

root 17 2 0 11月15 ? 00:00:00 [kintegrityd]

root 18 2 0 11月15 ? 00:00:00 [bioset]

root 19 2 0 11月15 ? 00:00:00 [bioset]

root 20 2 0 11月15 ? 00:00:00 [bioset]

root 21 2 0 11月15 ? 00:00:00 [kblockd]

root 22 2 0 11月15 ? 00:00:00 [md]

root 23 2 0 11月15 ? 00:00:00 [edac-poller]

root 24 2 0 11月15 ? 00:00:00 [watchdogd]

root 30 2 0 11月15 ? 00:00:00 [kswapd0]

root 31 2 0 11月15 ? 00:00:00 [ksmd]

root 32 2 0 11月15 ? 00:00:00 [khugepaged]

root 33 2 0 11月15 ? 00:00:00 [crypto]

root 41 2 0 11月15 ? 00:00:00 [kthrotld]

root 43 2 0 11月15 ? 00:00:00 [kmpath_rdacd]

root 44 2 0 11月15 ? 00:00:00 [kaluad]

root 45 2 0 11月15 ? 00:00:00 [kpsmoused]

root 47 2 0 11月15 ? 00:00:00 [ipv6_addrconf]

root 60 2 0 11月15 ? 00:00:00 [deferwq]

root 96 2 0 11月15 ? 00:00:00 [kauditd]

root 237 2 0 11月15 ? 00:00:00 [mpt_poll_0]

root 238 2 0 11月15 ? 00:00:00 [mpt/0]

root 239 2 0 11月15 ? 00:00:00 [ata_sff]

root 242 2 0 11月15 ? 00:00:00 [nfit]

root 248 2 0 11月15 ? 00:00:00 [scsi_eh_0]

root 249 2 0 11月15 ? 00:00:00 [scsi_tmf_0]

root 250 2 0 11月15 ? 00:00:00 [scsi_eh_1]

root 252 2 0 11月15 ? 00:00:00 [scsi_tmf_1]

root 253 2 0 11月15 ? 00:00:00 [scsi_eh_2]

root 255 2 0 11月15 ? 00:00:00 [scsi_tmf_2]

root 257 2 0 11月15 ? 00:00:00 [irq/16-vmwgfx]

root 259 2 0 11月15 ? 00:00:00 [ttm_swap]

root 279 2 0 11月15 ? 00:00:00 [bioset]

root 280 2 0 11月15 ? 00:00:00 [xfsalloc]

root 281 2 0 11月15 ? 00:00:00 [xfs_mru_cache]

root 282 2 0 11月15 ? 00:00:00 [xfs-buf/sda3]

root 283 2 0 11月15 ? 00:00:00 [xfs-data/sda3]

root 284 2 0 11月15 ? 00:00:00 [xfs-conv/sda3]

root 285 2 0 11月15 ? 00:00:00 [xfs-cil/sda3]

root 286 2 0 11月15 ? 00:00:00 [xfs-reclaim/sda]

root 287 2 0 11月15 ? 00:00:00 [xfs-log/sda3]

root 288 2 0 11月15 ? 00:00:00 [xfs-eofblocks/s]

root 289 2 0 11月15 ? 00:00:00 [xfsaild/sda3]

root 290 2 0 11月15 ? 00:00:00 [kworker/0:1H]

root 371 1 0 11月15 ? 00:00:00 /usr/lib/systemd/systemd-journald

root 397 1 0 11月15 ? 00:00:00 /usr/sbin/lvmetad -f

root 409 1 0 11月15 ? 00:00:00 /usr/lib/systemd/systemd-udevd

root 456 2 0 11月15 ? 00:00:00 [kworker/u257:0]

root 458 2 0 11月15 ? 00:00:00 [hci0]

root 462 2 0 11月15 ? 00:00:00 [hci0]

root 464 2 0 11月15 ? 00:00:00 [xfs-buf/sda1]

root 466 2 0 11月15 ? 00:00:00 [kworker/u257:2]

root 467 2 0 11月15 ? 00:00:00 [xfs-data/sda1]

root 470 2 0 11月15 ? 00:00:00 [xfs-conv/sda1]

root 471 2 0 11月15 ? 00:00:00 [xfs-cil/sda1]

root 475 2 0 11月15 ? 00:00:00 [xfs-reclaim/sda]

root 476 2 0 11月15 ? 00:00:00 [xfs-log/sda1]

root 479 2 0 11月15 ? 00:00:00 [xfs-eofblocks/s]

root 482 2 0 11月15 ? 00:00:00 [xfsaild/sda1]

root 544 1 0 11月15 ? 00:00:00 /sbin/auditd

root 546 544 0 11月15 ? 00:00:00 /sbin/audispd

root 548 546 0 11月15 ? 00:00:00 /usr/sbin/sedispatch

root 550 2 0 11月15 ? 00:00:00 [rpciod]

root 551 2 0 11月15 ? 00:00:00 [xprtiod]

root 570 1 0 11月15 ? 00:00:00 /usr/libexec/accounts-daemon

rtkit 571 1 0 11月15 ? 00:00:00 /usr/libexec/rtkit-daemon

root 572 1 0 11月15 ? 00:00:00 /usr/sbin/alsactl -s -n 19 -c -E ALSA_CONFIG_PATH=/etc/alsa/alsactl.conf --initfile=/lib/alsa/init/00main rdaemon

polkitd 573 1 0 11月15 ? 00:00:02 /usr/lib/polkit-1/polkitd --no-debug

root 575 1 0 11月15 ? 00:00:00 /usr/sbin/smartd -n -q never

root 576 1 0 11月15 ? 00:00:00 /usr/sbin/abrtd -d -s

root 577 1 0 11月15 ? 00:00:00 /usr/bin/abrt-watch-log -F Backtrace /var/log/Xorg.0.log -- /usr/bin/abrt-dump-xorg -xD

root 586 1 0 11月15 ? 00:00:00 /usr/bin/abrt-watch-log -F BUG: WARNING: at WARNING: CPU: INFO: possible recursive locking detected ernel BUG at list_del corrupt

avahi 587 1 0 11月15 ? 00:00:00 avahi-daemon: running [linux.local]

libstor+ 592 1 0 11月15 ? 00:00:00 /usr/bin/lsmd -d

chrony 596 1 0 11月15 ? 00:00:00 /usr/sbin/chronyd

root 597 1 0 11月15 ? 00:00:00 /usr/bin/VGAuthService -s

root 600 1 0 11月15 ? 00:00:04 /usr/bin/vmtoolsd

root 602 1 0 11月15 ? 00:00:00 /usr/lib/systemd/systemd-logind

avahi 604 587 0 11月15 ? 00:00:00 avahi-daemon: chroot helper

root 609 1 0 11月15 ? 00:00:01 /sbin/rngd -f

dbus 612 1 0 11月15 ? 00:00:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation

root 637 1 0 11月15 ? 00:00:00 /usr/sbin/ModemManager

root 638 1 0 11月15 ? 00:00:00 /usr/libexec/bluetooth/bluetoothd

root 646 1 0 11月15 ? 00:00:00 /usr/sbin/gssproxy -D

root 666 1 0 11月15 ? 00:00:00 /usr/bin/python2 -Es /usr/sbin/firewalld --nofork --nopid

root 678 1 0 11月15 ? 00:00:00 /bin/bash /usr/sbin/ksmtuned

root 702 1 0 11月15 ? 00:00:00 /usr/sbin/NetworkManager --no-daemon

root 837 702 0 11月15 ? 00:00:00 /sbin/dhclient -d -q -sf /usr/libexec/nm-dhcp-helper -pf /var/run/dhclient-eno16777736.pid -lf /var/lib/NetworkManager/dhclient-3

root 1030 1 0 11月15 ? 00:00:00 /usr/sbin/cupsd -f

root 1032 1 0 11月15 ? 00:00:00 /usr/sbin/sshd -D

root 1033 1 0 11月15 ? 00:00:00 /usr/bin/python2 -Es /usr/sbin/tuned -l -P

root 1035 1 0 11月15 ? 00:00:00 /usr/sbin/rsyslogd -n

root 1039 1 0 11月15 ? 00:00:00 /usr/sbin/libvirtd

root 1047 1 0 11月15 ? 00:00:00 /usr/sbin/gdm

root 1050 1 0 11月15 ? 00:00:00 /usr/sbin/atd -f

root 1052 1 0 11月15 ? 00:00:00 /usr/sbin/crond -n

nobody 1301 1 0 11月15 ? 00:00:00 /usr/sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro --dhcp-script=/usr/libexec/libvirt_leaseshelpe

root 1306 1301 0 11月15 ? 00:00:00 /usr/sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro --dhcp-script=/usr/libexec/libvirt_leaseshelpe

root 1349 1 0 11月15 ? 00:00:00 /usr/libexec/postfix/master -w

postfix 1356 1349 0 11月15 ? 00:00:00 qmgr -l -t unix -u

root 1511 1047 0 11月15 tty1 00:00:16 /usr/bin/X :0 -background none -noreset -audit 4 -verbose -auth /run/gdm/auth-for-gdm-59x7D2/database -seat seat0 -nolisten tcp v

root 1572 1 0 11月15 ? 00:00:00 /usr/libexec/upowerd

root 1633 1 0 11月15 ? 00:00:00 /usr/libexec/boltd

root 1640 1 0 11月15 ? 00:00:00 /usr/libexec/packagekitd

root 1645 1 0 11月15 ? 00:00:00 /usr/sbin/wpa_supplicant -u -f /var/log/wpa_supplicant.log -c /etc/wpa_supplicant/wpa_supplicant.conf -P /var/run/wpa_supplicant.

colord 1732 1 0 11月15 ? 00:00:00 /usr/libexec/colord

root 1795 1047 0 11月15 ? 00:00:00 gdm-session-worker [pam/gdm-password]

redhat 1807 1 0 11月15 ? 00:00:00 /usr/bin/gnome-keyring-daemon --daemonize --login

redhat 1821 1795 0 11月15 ? 00:00:00 /usr/libexec/gnome-session-binary --session gnome-classic

redhat 1831 1 0 11月15 ? 00:00:00 dbus-launch --sh-syntax --exit-with-session

redhat 1832 1 0 11月15 ? 00:00:00 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session

redhat 1854 1 0 11月15 ? 00:00:00 /usr/libexec/imsettings-daemon

redhat 1858 1 0 11月15 ? 00:00:00 /usr/libexec/gvfsd

redhat 1863 1 0 11月15 ? 00:00:00 /usr/libexec/gvfsd-fuse /run/user/1000/gvfs -f -o big_writes

redhat 1945 1821 0 11月15 ? 00:00:00 /usr/bin/ssh-agent /bin/sh -c exec -l /bin/bash -c "env GNOME_SHELL_SESSION_MODE=classic gnome-session --session gnome-classic"

redhat 1963 1 0 11月15 ? 00:00:00 /usr/libexec/at-spi-bus-launcher

redhat 1968 1963 0 11月15 ? 00:00:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 3

redhat 1973 1 0 11月15 ? 00:00:00 /usr/libexec/at-spi2-registryd --use-gnome-session

redhat 2000 1821 0 11月15 ? 00:00:38 /usr/bin/gnome-shell

redhat 2010 1 0 11月15 ? 00:00:02 /usr/bin/pulseaudio --start --log-target=syslog

root 2027 2 0 11月15 ? 00:00:00 [krfcommd]

redhat 2028 2000 0 11月15 ? 00:00:00 ibus-daemon --xim --panel disable

redhat 2032 2028 0 11月15 ? 00:00:00 /usr/libexec/ibus-dconf

redhat 2037 1 0 11月15 ? 00:00:00 /usr/libexec/ibus-x11 --kill-daemon

redhat 2040 1 0 11月15 ? 00:00:00 /usr/libexec/ibus-portal

redhat 2050 1 0 11月15 ? 00:00:00 /usr/libexec/xdg-permission-store

redhat 2051 1 0 11月15 ? 00:00:00 /usr/libexec/gnome-shell-calendar-server

redhat 2066 1 0 11月15 ? 00:00:00 /usr/libexec/dconf-service

redhat 2072 1 0 11月15 ? 00:00:00 /usr/libexec/evolution-source-registry

redhat 2080 1 0 11月15 ? 00:00:00 /usr/libexec/mission-control-5

redhat 2082 1 0 11月15 ? 00:00:00 /usr/libexec/gvfs-udisks2-volume-monitor

redhat 2087 1 0 11月15 ? 00:00:00 /usr/libexec/goa-daemon

root 2091 1 0 11月15 ? 00:00:00 /usr/libexec/udisks2/udisksd

redhat 2112 1 0 11月15 ? 00:00:00 /usr/libexec/goa-identity-service

redhat 2180 1 0 11月15 ? 00:00:00 /usr/libexec/gvfs-mtp-volume-monitor

redhat 2185 1 0 11月15 ? 00:00:00 /usr/libexec/gvfs-afc-volume-monitor

redhat 2191 1 0 11月15 ? 00:00:00 /usr/libexec/gvfs-goa-volume-monitor

redhat 2196 1 0 11月15 ? 00:00:00 /usr/libexec/gvfs-gphoto2-volume-monitor

redhat 2203 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-power

redhat 2206 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-print-notifications

redhat 2208 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-rfkill

redhat 2219 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-screensaver-proxy

redhat 2224 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-sharing

redhat 2226 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-sound

redhat 2230 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-xsettings

redhat 2233 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-wacom

redhat 2234 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-smartcard

redhat 2238 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-account

redhat 2245 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-a11y-settings

redhat 2247 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-clipboard

redhat 2250 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-color

redhat 2251 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-datetime

redhat 2255 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-housekeeping

redhat 2262 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-keyboard

redhat 2265 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-media-keys

redhat 2266 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-mouse

redhat 2305 1 0 11月15 ? 00:00:00 /usr/libexec/gsd-printer

redhat 2308 1 0 11月15 ? 00:00:00 /usr/libexec/evolution-calendar-factory

redhat 2329 1821 0 11月15 ? 00:00:01 nautilus-desktop --force

redhat 2339 1858 0 11月15 ? 00:00:00 /usr/libexec/gvfsd-trash --spawner :1.4 /org/gtk/gvfs/exec_spaw/0

redhat 2340 2308 0 11月15 ? 00:00:00 /usr/libexec/evolution-calendar-factory-subprocess --factory all --bus-name org.gnome.evolution.dataserver.Subprocess.Backend.Cal

redhat 2354 1821 0 11月15 ? 00:00:00 /usr/bin/seapplet

redhat 2367 1821 0 11月15 ? 00:00:00 /usr/libexec/gsd-disk-utility-notify

redhat 2373 1 0 11月15 ? 00:00:00 /usr/libexec/evolution-addressbook-factory

redhat 2376 1 0 11月15 ? 00:00:04 /usr/bin/vmtoolsd -n vmusr

redhat 2377 1821 0 11月15 ? 00:00:00 /usr/libexec/tracker-miner-fs

redhat 2379 2028 0 11月15 ? 00:00:00 /usr/libexec/ibus-engine-simple

redhat 2380 1821 0 11月15 ? 00:00:00 /usr/libexec/tracker-miner-user-guides

redhat 2386 1821 0 11月15 ? 00:00:01 /usr/bin/gnome-software --gapplication-service

redhat 2407 1821 0 11月15 ? 00:00:00 abrt-applet

redhat 2408 1 0 11月15 ? 00:00:00 /usr/libexec/tracker-store

redhat 2412 2373 0 11月15 ? 00:00:00 /usr/libexec/evolution-addressbook-factory-subprocess --factory all --bus-name org.gnome.evolution.dataserver.Subprocess.Backend.

redhat 2414 1821 0 11月15 ? 00:00:00 /usr/libexec/tracker-extract

redhat 2420 1821 0 11月15 ? 00:00:00 /usr/libexec/tracker-miner-apps

redhat 2530 1858 0 11月15 ? 00:00:00 /usr/libexec/gvfsd-burn --spawner :1.4 /org/gtk/gvfs/exec_spaw/1

root 2564 1 0 11月15 ? 00:00:00 /usr/libexec/fwupd/fwupd

redhat 2641 1 0 11月15 ? 00:00:05 /usr/libexec/gnome-terminal-server

redhat 2651 2641 0 11月15 ? 00:00:00 gnome-pty-helper

redhat 2652 2641 0 11月15 pts/0 00:00:00 bash

redhat 3079 1 0 11月15 ? 00:00:00 /usr/libexec/gvfsd-metadata

root 3138 2652 0 11月15 pts/0 00:00:00 su root

root 3144 3138 0 11月15 pts/0 00:00:00 bash

root 3304 2 0 11月15 ? 00:00:00 [kworker/u256:0]

redhat 3704 1 0 11月15 ? 00:00:01 /usr/bin/nautilus --gapplication-service

postfix 4201 1349 0 11月15 ? 00:00:00 pickup -l -t unix -u

root 4336 2 0 11月15 ? 00:00:00 [kworker/0:2]

root 4363 3144 0 11月15 pts/0 00:00:00 su redhat

redhat 4364 4363 0 11月15 pts/0 00:00:00 bash

root 4465 4364 0 00:00 pts/0 00:00:00 su root

root 4470 4465 0 00:00 pts/0 00:00:00 bash

root 4681 2 0 00:10 ? 00:00:00 [kworker/u256:2]

root 4694 2 0 00:10 ? 00:00:00 [kworker/0:0]

root 4795 2 0 00:18 ? 00:00:00 [kworker/0:1]

root 4870 678 0 00:21 ? 00:00:00 sleep 60

root 4871 4470 0 00:21 pts/0 00:00:00 ps -ef

Tags:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表