Fuchsia操作系统workstation系统

2023-12-19 10:32

本文主要是介绍Fuchsia操作系统workstation系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 

在fuchsia编译完成之后,使用fx run可在qemu上运行。以下大致看一下它的目录结构。首先是顶层目录,如下,fuchsia没有传统的linux系统的usr、home、proc之类的目录。

$ ls -l /
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bin
dr--------    1 0        0                 0 Jan 01  1970 blob
dr--------    7 0        0                 0 Jan 01  1970 boot
drw-r--r--    7 0        0              8192 Jun 11 06:27 data
drw-------    1 0        0                 0 Jan 01  1970 dev
dr--------    1 0        0                 0 Jan 01  1970 hub
dr--------    2 0        0                 0 Jan 01  1970 install
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 pkgfs
dr--------    1 0        0                 0 Jan 01  1970 svc
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 system
dr--------    3 0        0                 0 Jun 11 06:27 tmp
dr--------    2 0        0                 0 Jan 01  1970 volume

由以下export命令可知,其可执行目录由两个/bin和/boot/bin目录。

$ export
export PATH='/bin:/boot/bin'
export PWD='/'
export TERM='xterm'

 

如下为/bin目录内容(内容有省略):

$ ls -l /bin
-r--------    1 0        0                62 Jan 01  1970 amber_ctl
-r--------    1 0        0                61 Jan 01  1970 amberctl
-r--------    1 0        0                74 Jan 01  1970 basemgr_launcher
-r--------    1 0        0                58 Jan 01  1970 basename
-r--------    1 0        0                48 Jan 01  1970 cat
-r--------    1 0        0                46 Jan 01  1970 cp
-r--------    1 0        0                50 Jan 01  1970 curl
-r--------    1 0        0                48 Jan 01  1970 cut
-r--------    1 0        0                50 Jan 01  1970 date
-r--------    1 0        0                64 Jan 01  1970 debugserver
-r--------    1 0        0                56 Jan 01  1970 dirname
-r--------    1 0        0                46 Jan 01  1970 du

 

fuchsia的boot目录如下:

$ ls -l boot
dr--------    2 0        0                 0 Jan 01  1970 bin
dr--------    2 0        0                 0 Jan 01  1970 config
dr--------    3 0        0                 0 Jan 01  1970 data
dr--------    3 0        0                 0 Jan 01  1970 driver
dr--------    4 0        0                 0 Jan 01  1970 kernel
dr--------    2 0        0                 0 Jan 01  1970 lib

可执行目录/boot/bin内容如下(内容有省略):

$ ls -l boot/bin
-r--------    1 0        0              9640 Jan 01  1970 channel-perf
-r--------    1 0        0             38376 Jan 01  1970 clkctl
-r--------    1 0        0             38392 Jan 01  1970 clock
-r--------    1 0        0          10552992 Jan 01  1970 component_manager
-r--------    1 0        0            311976 Jan 01  1970 devcoordinator
-r--------    1 0        0              5472 Jan 01  1970 devhost
-r--------    1 0        0             30304 Jan 01  1970 df
-r--------    1 0        0            132904 Jan 01  1970 disk-inspect
-r--------    1 0        0             63032 Jan 01  1970 iochk
-r--------    1 0        0             42464 Jan 01  1970 iotime
-r--------    1 0        0             30264 Jan 01  1970 kstats
-r--------    1 0        0             54904 Jan 01  1970 lsblk

 

目录/boot/driver存放有设备驱动程序的.so共享库文件(内容有省略):

$ ls -l /boot/driver
-r--------    1 0        0             34728 Jan 01  1970 ahci.so
-r--------    1 0        0             87888 Jan 01  1970 block.core.so
-r--------    1 0        0             30744 Jan 01  1970 bt-hci-broadcom.so
-r--------    1 0        0             43072 Jan 01  1970 console.so
-r--------    1 0        0             38784 Jan 01  1970 dmctl.so
-r--------    1 0        0            268368 Jan 01  1970 e1000.so
-r--------    1 0        0             75752 Jan 01  1970 ethernet.so
-r--------    1 0        0            215000 Jan 01  1970 ftdi.so
-r--------    1 0        0             88048 Jan 01  1970 goldfish.so
-r--------    1 0        0             46992 Jan 01  1970 gpio-light.so
-r--------    1 0        0             43264 Jan 01  1970 i2c-hid.so
-r--------    1 0        0             10032 Jan 01  1970 intel-serialio.so
-r--------    1 0        0             38912 Jan 01  1970 ktrace.so
-r--------    1 0        0             10240 Jan 01  1970 qemu.so
-r--------    1 0        0             51120 Jan 01  1970 ram-nand.so
-r--------    1 0        0             63352 Jan 01  1970 ramdisk.so
-r--------    1 0        0             22392 Jan 01  1970 tpm.so
-r--------    1 0        0            174000 Jan 01  1970 uart16550.so
-r--------    1 0        0            186784 Jan 01  1970 virtio.so
-r--------    1 0        0            133032 Jan 01  1970 xhci.so

 

目录/boot/lib存放通用的共享库文件:

$ ls -l /boot/lib
-r--------    1 0        0            686568 Jan 01  1970 ld.so.1
-r--------    1 0        0              5464 Jan 01  1970 libasync-default.so
-r--------    1 0        0             34208 Jan 01  1970 libbacktrace.so
-r--------    1 0        0             87872 Jan 01  1970 libblktest.so
-r--------    1 0        0            881360 Jan 01  1970 libc++.so.2
-r--------    1 0        0            247840 Jan 01  1970 libc++abi.so.1
-r--------    1 0        0             13808 Jan 01  1970 libdevmgr-launcher.so
-r--------    1 0        0            239728 Jan 01  1970 libdriver.so
-r--------    1 0        0             18216 Jan 01  1970 libfake-bti.so
-r--------    1 0        0            285984 Jan 01  1970 libfdio.so
-r--------    1 0        0             91944 Jan 01  1970 libfs-management.so

 

fuchsia的设备文件与linux系统类似,存放在/dev目录下,但是组织方式不同。其顶层目录如下:

$ ls -l dev/
drw-------    1 0        0                 0 Jan 01  1970 class
drw-------    1 0        0                 0 Jan 01  1970 misc
crw-------    1 0        0           0,    0 Jan 01  1970 null
drw-------    1 0        0                 0 Jan 01  1970 sys
drw-------    1 0        0                 0 Jan 01  1970 test
crw-------    1 0        0           0,    0 Jan 01  1970 zero

目录/dev/class保存安装类别的设备节点文件:

$ ls -l dev/class/
drw-------    1 0        0                 0 Jan 01  1970 acpi
drw-------    1 0        0                 0 Jan 01  1970 block
drw-------    1 0        0                 0 Jan 01  1970 block-impl
drw-------    1 0        0                 0 Jan 01  1970 display-controller
drw-------    1 0        0                 0 Jan 01  1970 hidbus
drw-------    1 0        0                 0 Jan 01  1970 input
drw-------    1 0        0                 0 Jan 01  1970 pci
drw-------    1 0        0                 0 Jan 01  1970 platform-bus
drw-------    1 0        0                 0 Jan 01  1970 platform-dev
drw-------    1 0        0                 0 Jan 01  1970 rtc
drw-------    1 0        0                 0 Jan 01  1970 serial
drw-------    1 0        0                 0 Jan 01  1970 sysmem

目录/dev/misc目录下的文件与linux系统的/proc/misc文件的内容相似,为特殊的字符型设备节点。

$ ls -l dev/misc/
crw-------    1 0        0           0,    0 Jan 01  1970 console
crw-------    1 0        0           0,    0 Jan 01  1970 demo-fifo
crw-------    1 0        0           0,    0 Jan 01  1970 dmctl
crw-------    1 0        0           0,    0 Jan 01  1970 ktrace
crw-------    1 0        0           0,    0 Jan 01  1970 nand-ctl
crw-------    1 0        0           0,    0 Jan 01  1970 ptmx
crw-------    1 0        0           0,    0 Jan 01  1970 ramctl
crw-------    1 0        0           0,    0 Jan 01  1970 sysinfo
crw-------    1 0        0           0,    0 Jan 01  1970 tapctl

 

hub/svc目录:

$ ls -l hub/svc
----------    1 0        0                 0 Jan 01  1970 fuchsia.device.manager.Administrator
----------    1 0        0                 0 Jan 01  1970 fuchsia.device.manager.DebugDumper
----------    1 0        0                 0 Jan 01  1970 fuchsia.kernel.DebugBroker
----------    1 0        0                 0 Jan 01  1970 fuchsia.process.Launcher
----------    1 0        0                 0 Jan 01  1970 fuchsia.process.Resolver
----------    1 0        0                 0 Jan 01  1970 fuchsia.scheduler.ProfileProvider
----------    1 0        0                 0 Jan 01  1970 fuchsia.sys.Environment
----------    1 0        0                 0 Jan 01  1970 fuchsia.sys.Launcher
----------    1 0        0                 0 Jan 01  1970 fuchsia.sys.Loader
----------    1 0        0                 0 Jan 01  1970 fuchsia.sys.test.CacheControl
----------    1 0        0                 0 Jan 01  1970 fuchsia.virtualconsole.SessionManager

 

pkgfs/packages目录,内容有删减:

$ ls -l  pkgfs/packages/
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 account_handler
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 account_manager
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 amber
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 amber_tools
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 auto_login_base_shell
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 basemgr
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bluetooth_settings
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bt-a2dp-sink
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bt-gap
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bt-init
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bt-snoop
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 build-info
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 chromium
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 cobalt

 


目录svc下为fuchsia的服务:

$ ls -l svc
----------    1 0        0                 0 Jan 01  1970 fuchsia.amber.Control
----------    1 0        0                 0 Jan 01  1970 fuchsia.boot.Items
----------    1 0        0                 0 Jan 01  1970 fuchsia.cobalt.LoggerFactory
----------    1 0        0                 0 Jan 01  1970 fuchsia.device.manager.Administrator
----------    1 0        0                 0 Jan 01  1970 fuchsia.device.manager.DebugDumper
----------    1 0        0                 0 Jan 01  1970 fuchsia.devicesettings.DeviceSettingsManager
----------    1 0        0                 0 Jan 01  1970 fuchsia.fshost.Filesystems
----------    1 0        0                 0 Jan 01  1970 fuchsia.fshost.Registry
----------    1 0        0                 0 Jan 01  1970 fuchsia.kernel.DebugBroker
----------    1 0        0                 0 Jan 01  1970 fuchsia.kernel.MexecBroker
----------    1 0        0                 0 Jan 01  1970 fuchsia.logger.Log
----------    1 0        0                 0 Jan 01  1970 fuchsia.logger.LogSink
----------    1 0        0                 0 Jan 01  1970 fuchsia.net.SocketProvider
----------    1 0        0                 0 Jan 01  1970 fuchsia.net.stack.Stack
----------    1 0        0                 0 Jan 01  1970 fuchsia.netstack.Netstack
----------    1 0        0                 0 Jan 01  1970 fuchsia.paver.Paver
----------    1 0        0                 0 Jan 01  1970 fuchsia.pkg.PackageResolver
----------    1 0        0                 0 Jan 01  1970 fuchsia.pkg.RepositoryManager
----------    1 0        0                 0 Jan 01  1970 fuchsia.pkg.rewrite.Engine
----------    1 0        0                 0 Jan 01  1970 fuchsia.process.Launcher
----------    1 0        0                 0 Jan 01  1970 fuchsia.process.Resolver
----------    1 0        0                 0 Jan 01  1970 fuchsia.scheduler.ProfileProvider
----------    1 0        0                 0 Jan 01  1970 fuchsia.sys.Environment
----------    1 0        0                 0 Jan 01  1970 fuchsia.sys.Launcher
----------    1 0        0                 0 Jan 01  1970 fuchsia.sysmem.Allocator
----------    1 0        0                 0 Jan 01  1970 fuchsia.tracelink.Registry
----------    1 0        0                 0 Jan 01  1970 fuchsia.tracing.controller.Controller
----------    1 0        0                 0 Jan 01  1970 fuchsia.tracing.provider.Registry
----------    1 0        0                 0 Jan 01  1970 fuchsia.virtualconsole.SessionManager
----------    1 0        0                 0 Jan 01  1970 fuchsia.wlan.service.Wlan

 

目录system的子目录如下:

$ ls -l system/
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 bin
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 data
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 driver
drwxr-xr-x    1 0        0                 0 Jul 21 23:33 lib
drwxr-xr-x    1 0        0                 4 Jul 21 23:33 meta

其中/system/driver子目录,是除去/boot/driver目录之后,又一个保存驱动程序共享库文件的地方。如以下保存的WIFI、蓝牙和usb等的驱动。

$ ls -l system/driver
-r--------    1 0        0            506624 Jan 01  1970 ath10k.so
-r--------    1 0        0           1006312 Jan 01  1970 brcmfmac.so
-r--------    1 0        0           3926744 Jan 01  1970 bt-hci-atheros.so
-r--------    1 0        0           1877240 Jan 01  1970 bt-hci-fake.so
-r--------    1 0        0           3934728 Jan 01  1970 bt-hci-intel.so
-r--------    1 0        0            170008 Jan 01  1970 bt-hci-passthrough.so
-r--------    1 0        0            170216 Jan 01  1970 bt-hog.so
-r--------    1 0        0           4700840 Jan 01  1970 bt-host.so
-r--------    1 0        0            227512 Jan 01  1970 iwlwifi.so
-r--------    1 0        0           1285640 Jan 01  1970 libmsd_intel.so
-r--------    1 0        0           1396952 Jan 01  1970 qmi-transport.so
-r--------    1 0        0           8931648 Jan 01  1970 ralink.so
-r--------    1 0        0           1187624 Jan 01  1970 rtl88xx.so
-r--------    1 0        0           1617856 Jan 01  1970 usb_video.so
-r--------    1 0        0           1170680 Jan 01  1970 virtual_audio_driver.so
-r--------    1 0        0           2166976 Jan 01  1970 virtual_camera_driver.so
-r--------    1 0        0           9074816 Jan 01  1970 wlan.so
-r--------    1 0        0           1306640 Jan 01  1970 wlanif.so
-r--------    1 0        0           1790168 Jan 01  1970 wlanphy.so

 

进程相关命令

TOP命令:

$ topPID      TID      TIME% STATE NAME6643     6843       1.01 block netstack.cmx:pthread_t:0x41b935fa9b384234    22994       0.89 block pkgfs:pthread_t:0x7ae077b0ab386643    10455       0.80 block netstack.cmx:pthread_t:0x675d0877eb388348     8366       0.56 block mdns.cmx:initial-thread4234     4433       0.43 block pkgfs:pthread_t:0x3d5329c70b383376     4648       0.41 block devhost:pci#2:8086:2922:thrd_t:0x3bb5e4fcb38/TLS=0x56821046    21058       0.37 block http.cmx:initial-thread8809     8822       0.35 block cobalt_system_metrics.cmx:initial-thread10212    10364       0.25 block device_settings_manager.cmx:pthread_t:0x6c87051bab384234     4256       0.25 block pkgfs:initial-thread3376     3393       0.19 block devhost:pci#2:8086:2922:initial-thread6643     6858       0.13 block netstack.cmx:pthread_t:0x144c6b025b384234     4443       0.10 block pkgfs:pthread_t:0x3a0494368b386643     6897       0.07 block netstack.cmx:pthread_t:0x42db8ef5ab386643     9826       0.03 block netstack.cmx:pthread_t:0x3bccab40db383376     4099       0.03 block devhost:pci#2:8086:2922:thrd_t:0x4715293db38/TLS=0x5683376     3798       0.02 block devhost:pci#2:8086:2922:ahci-irq1122     1137       0.02 block bin/devcoordinator:initial-thread1048     1051       0.02 block bin/bootsvc:bin/bootsvc3376     3817       0.02 block devhost:pci#2:8086:2922:ahci-watchdog2694     3076       0.01   run devhost:misc:debug-reader10212    10369       0.00 block device_settings_manager.cmx:pthread_t:0x1fc051f61b38

 

PS进程查看:

$ ps
TASK                  PSS PRIVATE  SHARED   STATE NAME
j:1031             371.7M  371.7M                 rootp:1048           372.6k    372k     32k         bin/bootsvcp:1122           492.6k    492k     32k         bin/devcoordinatorj:1197          6348.1k   6344k                 zircon-driversp:2498         772.6k    772k     32k         devhost:sysp:2542         408.6k    408k     32k         devhost:testp:2604         264.6k    264k     32k         devhost:rootp:2685         428.6k    428k     32k         devhost:miscp:3331         396.6k    396k     32k         devhost:pci#1:1234:1111p:3395        2136.6k   2136k     32k         devhost:pci#2:8086:2922p:3488        1940.6k   1940k     32k         devhost:pci#4:8086:2922j:1202           300.8M  300.8M                 zircon-servicesp:1223         420.6k    420k     32k         svchostp:1342         448.6k    448k     32k         fshostp:1539         224.6k    224k     32k         pwrbtn-monitorp:1560         304.6k    304k     32k         miscsvcp:1634         268.6k    268k     32k         netsvcp:1725        1236.6k   1236k     32k         virtual-consolep:3154         176.6k    176k     32k         sh:consolep:4007         239.2M  239.2M     32k         blobfs:/blobp:4234        9224.6k   9224k     32k         pkgfsp:4558          49.5M   49.5M     32k         minfs:/dataj:25792        164.6k    164k                 p:25835      164.6k    164k     32k         psj:1203            63.9M   63.9M                 fuchsiap:4724        1180.6k   1180k     32k         appmgrj:4889          62.7M   62.7M                 appj:5278       612.6k    612k                 p:5283     612.6k    612k     32k         sysmgr.cmxj:5535        61.6M   61.6M                 sysj:6248    9916.6k   9916k                 p:6255  9916.6k   9916k     32k         netstack.cmxj:6617    5788.6k   5788k                 p:6622  5788.6k   5788k     32k         amber.cmxj:6959     392.6k    392k                 p:6964   392.6k    392k     32k         pkg_resolver.cmxj:7145     648.6k    648k                 p:7150   648.6k    648k     32k         logger.cmx

 

网络相关

ifconfig命令,目前只有一个回环接口。

$ ifconfig
lo      HWaddr  Id:1inet addr:127.0.0.1  Bcast:127.0.0.1  Mask:255.255.255.255inet6 addr: ::1/128 Scope:Linkmetric:100UPRX packets:0TX packets:0RX bytes:0  TX bytes:0

 

ping命令:

$ ping 127.0.0.1
Count: 3, Payload size: 25 bytes, Interval: 1000 ms, Timeout: 1000 ms, Destination: 127.0.0.1
PING 127.0.0.1 (127.0.0.1)
33 bytes from 127.0.0.1 : icmp_seq=1 rtt=17.113 ms
33 bytes from 127.0.0.1 : icmp_seq=2 rtt=1.308 ms
33 bytes from 127.0.0.1 : icmp_seq=3 rtt=1.632 ms
RTT Min/Max/Avg = [ 1.308 / 17.113 / 6.684 ] ms

 


存储相关

$ df -i -h
Filesystem     Inodes      IUsed      IFree IUse%  Path        Device    
?                   0          0          0   0%  /           Unknown; cannot query filesystem
$ $ 
$ lsblk
ID  SIZE TYPE             LABEL                FLAGS  DEVICE
000 720M                                              /dev/sys/pci/00:02.0/ahci/sata0/block
001 304M fuchsia-blob     blobfs                      /dev/sys/pci/00:02.0/ahci/sata0/block/fvm/blobfs-p-1/block
002  56M fuchsia-data     minfs                       /dev/sys/pci/00:02.0/ahci/sata0/block/fvm/minfs-p-2/block

 

memgraph命令:

$ memgraph
[{"id": "kernel/physmem", "type": "kernel", "parent": "", "name": "physmem", "size_bytes": 2146299904},{"id": "kernel/free", "type": "kernel", "parent": "kernel/physmem", "name": "free", "size_bytes": 1637924864},{"id": "kernel/vmo", "type": "kernel", "parent": "kernel/physmem", "name": "vmo", "size_bytes": 458313728},{"id": "kernel/heap", "type": "kernel", "parent": "kernel/physmem", "name": "heap", "size_bytes": 6311936},{"id": "kernel/heap/allocated", "type": "kernel", "parent": "kernel/heap", "name": "heap/allocated", "size_bytes": 5303136},{"id": "kernel/heap/free", "type": "kernel", "parent": "kernel/heap", "name": "heap/free", "size_bytes": 1008800},{"id": "kernel/wired", "type": "kernel", "parent": "kernel/physmem", "name": "wired", "size_bytes": 18890752},{"id": "kernel/mmu", "type": "kernel", "parent": "kernel/physmem", "name": "mmu", "size_bytes": 24838144},{"id": "kernel/other", "type": "kernel", "parent": "kernel/physmem", "name": "other", "size_bytes": 12288},{"id": "j/1031", "type": "j", "koid": 1031, "parent": "kernel/vmo", "name": "root"},{"id": "p/1048", "type": "p", "koid": 1048, "parent": "j/1031", "name": "bin/bootsvc", "private_bytes": 380928, "shared_bytes": ,{"id": "p/1122", "type": "p", "koid": 1122, "parent": "j/1031", "name": "bin/devcoordinator", "private_bytes": 503808, "shared_b,{"id": "j/1197", "type": "j", "koid": 1197, "parent": "j/1031", "name": "zircon-drivers"},{"id": "p/2498", "type": "p", "koid": 2498, "parent": "j/1197", "name": "devhost:sys", "private_bytes": 790528, "shared_bytes": ,{"id": "p/2542", "type": "p", "koid": 2542, "parent": "j/1197", "name": "devhost:test", "private_bytes": 417792, "shared_bytes":,

 

设备管理

$ dm dump
[root]<root> pid=2610 [null] pid=2610 /boot/driver/builtin.so[zero] pid=2610 /boot/driver/builtin.so[misc]<misc> pid=2687 [console] pid=2687 /boot/driver/console.so[demo-fifo] pid=2687 /boot/driver/demo-fifo.so[dmctl] pid=2687 /boot/driver/dmctl.so[tapctl] pid=2687 /boot/driver/ethertap.so[ktrace] pid=2687 /boot/driver/ktrace.so[ptmx] pid=2687 /boot/driver/pty.so[nand-ctl] pid=2687 /boot/driver/ram-nand.so[ramctl] pid=2687 /boot/driver/ramdisk.so[sysinfo] pid=2687 /boot/driver/sysinfo.so[sys]<sys> pid=2498 /boot/driver/platform-bus.so[platform] pid=2498 /boot/driver/platform-bus.so[acpi] pid=2498 /boot/driver/platform-bus-x86.so[acpi-pwrbtn] pid=2498 /boot/driver/platform-bus-x86.so[hid-device-000] pid=2498 /boot/driver/hid.so[rtc] pid=2498 /boot/driver/platform-bus-x86.so

 

统计信息

$ kstats -cm
cpu    load sched (cs ylds pmpts irq_pmpts) excep pagef  sysc ints (hw  tmr tmr_cb) ipi (rs  gen)0   0.00%    139979    0     0      6583      0 78146 291469        0 50641  32261    33931  2031   0.00%    142042    1     0      6274      0 63053 293106        0 54710  37624    34419  2012   0.00%    147912    0     0      5716      0 60059 306568        0 54676  37209    37688  1983   0.00%    143061    0     0      7477      0 68838 306080        0 54697  36202    36352  225
mem total      free      VMOs     kheap     kfree     wired       mmu       ipc     other2046.9M   1562.0M    437.1M      5.1M      1.0M     18.0M     23.7M      0.0M      0.0M 
$ 
$ channel-perf
write/read 10 bytes, 0 handles (0 pre-queued): 197176 iterations/second

 

namespace命令

$ namespace --dump
{ .handle = 0xfa870c2b, type = 0x00000020, .path = '/svc' },
{ .handle = 0xf4970467, type = 0x00010020, .path = '/hub' },
{ .handle = 0xf747772f, type = 0x00020020, .path = '/bin' },
{ .handle = 0xf57700fb, type = 0x00030020, .path = '/dev' },
{ .handle = 0xf50703b3, type = 0x00040020, .path = '/boot' },
{ .handle = 0xf4a7081b, type = 0x00050020, .path = '/data' },
{ .handle = 0xf547773f, type = 0x00060020, .path = '/system' },
{ .handle = 0xf0a71d33, type = 0x00070020, .path = '/install' },
{ .handle = 0xf4971cfb, type = 0x00080020, .path = '/volume' },
{ .handle = 0xfc97089b, type = 0x00090020, .path = '/blob' },
{ .handle = 0xf3977723, type = 0x000a0020, .path = '/pkgfs' },
{ .handle = 0xf5d7772b, type = 0x000b0020, .path = '/tmp' },

 

END

 

这篇关于Fuchsia操作系统workstation系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/511852

相关文章

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

【区块链 + 人才服务】可信教育区块链治理系统 | FISCO BCOS应用案例

伴随着区块链技术的不断完善,其在教育信息化中的应用也在持续发展。利用区块链数据共识、不可篡改的特性, 将与教育相关的数据要素在区块链上进行存证确权,在确保数据可信的前提下,促进教育的公平、透明、开放,为教育教学质量提升赋能,实现教育数据的安全共享、高等教育体系的智慧治理。 可信教育区块链治理系统的顶层治理架构由教育部、高校、企业、学生等多方角色共同参与建设、维护,支撑教育资源共享、教学质量评估、

软考系统规划与管理师考试证书含金量高吗?

2024年软考系统规划与管理师考试报名时间节点: 报名时间:2024年上半年软考将于3月中旬陆续开始报名 考试时间:上半年5月25日到28日,下半年11月9日到12日 分数线:所有科目成绩均须达到45分以上(包括45分)方可通过考试 成绩查询:可在“中国计算机技术职业资格网”上查询软考成绩 出成绩时间:预计在11月左右 证书领取时间:一般在考试成绩公布后3~4个月,各地领取时间有所不同

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

基于 YOLOv5 的积水检测系统:打造高效智能的智慧城市应用

在城市发展中,积水问题日益严重,特别是在大雨过后,积水往往会影响交通甚至威胁人们的安全。通过现代计算机视觉技术,我们能够智能化地检测和识别积水区域,减少潜在危险。本文将介绍如何使用 YOLOv5 和 PyQt5 搭建一个积水检测系统,结合深度学习和直观的图形界面,为用户提供高效的解决方案。 源码地址: PyQt5+YoloV5 实现积水检测系统 预览: 项目背景