Advertisement
Guest User

Bedrock Report

a guest
Feb 1st, 2023
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 93.85 KB | None | 0 0
  1. Bedrock Linux system report
  2.  
  3. $ cat /bedrock/etc/bedrock-release
  4. Bedrock Linux 0.7.28 Poki
  5.  
  6. $ cat /bedrock/etc/bedrock.conf
  7. #
  8. # Bedrock Linux main configuration file
  9. #
  10. # After making changes here, run `brl apply` (as root) to apply them.
  11. #
  12.  
  13. [locale]
  14. #
  15. # The Olson timezone. For example:
  16. #
  17. # timezone = America/New_York
  18. #
  19. # At least one stratum should provide an Olson database file at
  20. #
  21. # /usr/share/zoneinfo/<timezone>
  22. #
  23. # For example, for America/New_York there should be a file at
  24. #
  25. # /usr/share/zoneinfo/America/New_York
  26. #
  27. timezone = America/New_York
  28.  
  29. #
  30. # The /etc/locale.gen language lines. For example:
  31. #
  32. # localegen = en_US.UTF-8 UTF-8
  33. #
  34. localegen = en_US.UTF-8 UTF-8
  35.  
  36. #
  37. # The POSIX $LANG variable
  38. #
  39. LANG = en_US.UTF-8
  40.  
  41. [init]
  42. #
  43. # Bedrock Linux provides its own init which sets up Bedrock subsystems then
  44. # hands control over to a user-selected init provided by some stratum.
  45. #
  46.  
  47. #
  48. # Number of seconds to wait for an init to be input before automatically
  49. # selecting the default value (if a valid default value is set).
  50. #
  51. timeout = 30
  52.  
  53. #
  54. # Init to utilize by default if timeout expires. Format is
  55. #
  56. # default = <stratum>:<path>
  57. #
  58. # For example, to use void's /sbin/init, use:
  59. #
  60. # default = void:/sbin/init
  61. #
  62. default = void:/sbin/init
  63.  
  64. #
  65. # A comma separated list of local file paths which may provide an init. The
  66. # Bedrock init menu will list every available one from every (unignored)
  67. # stratum.
  68. #
  69. paths = /sbin/init, /sbin/fallback-init, /sbin/myinit, /sbin/ninit, /sbin/openrc-init, /sbin/runit-init, /sbin/simpleinit, /sbin/upstart, /lib/sysvinit/init, /lib/systemd/systemd, /usr/lib/systemd/systemd, /usr/bin/intra-desktop
  70.  
  71. #
  72. # Kernel modules to load before assuming keyboard is available.
  73. #
  74. modules = usbhid, hid, hid_generic, hid_microsoft
  75.  
  76. [global]
  77. #
  78. # Bedrock Linux categorizes every file path on the system as either:
  79. #
  80. # - Local to a given stratum. Multiple instances of such files are needed to
  81. # avoid conflicts between the strata.
  82. # - Global across all strata. There is only one instance of such a file
  83. # irrelevant of the number of strata.
  84. #
  85. # For example: both Debian and Ubuntu have package managers that read
  86. # /etc/apt/sources.list, and each needs to see something different there.
  87. # Thus, the /etc/apt/sources.list file path should be local to each stratum.
  88. # However, all processes should see the same contents in /home, and thus /home
  89. # is global.
  90. #
  91. # By default, all files are local. The following settings are used to indicate
  92. # which files should be global. Different contexts require different systems
  93. # for marking a file path as global.
  94. #
  95.  
  96. #
  97. # A list of directories which should be global. If something is
  98. # mounted into one of these directories, that new mount point
  99. # is also global.
  100. #
  101. share = /boot, /dev, /home, /lib/modules, /media, /mnt, /proc, /root, /run, /sys, /tmp
  102.  
  103. #
  104. # Another list of directories which should be global. Anything mounted in them
  105. # is local by default. These are primarily used to avoid recursion in nested
  106. # cases. Given that nesting is expected, be careful with order.
  107. #
  108. bind = /bedrock, /bedrock/cross, /bedrock/run, /bedrock/strata/bedrock
  109.  
  110. #
  111. # A list of files and directories within /etc which should be global. /etc
  112. # must be treated specially, as the techniques used for share and bind do not
  113. # work for files in it.
  114. #
  115. etc = adjtime, crypttab, default/grub, fstab, group, group+, group-, group.OLD, group.org, gshadow, gshadow+, gshadow-, gshadow.OLD, gshadow.org, hostname, hosts, login.defs, machine-id, modprobe.d/blacklist.conf, passwd, passwd+, passwd-, passwd.OLD, passwd.org, rc.local, resolv.conf, resolvconf/run, shadow, shadow+, shadow-, shadow.OLD, shadow.org, sudoers
  116.  
  117. [symlinks]
  118. #
  119. # Enforce various symlinks are in place at local paths. This is applied at
  120. # stratum enable/repair time.
  121. #
  122. # Keys are local paths, values are symlink contents.
  123. #
  124. # The symlink contents must be absolute paths.
  125. #
  126.  
  127. #
  128. # Some package managers attempt to update this. They become upset if it is
  129. # created between an unlink() and symlink(), making it unsuitable for
  130. # [etc-symlinks] below.
  131. #
  132. # Different distros use slightly different values here that are all effectively
  133. # the same. Rather than attempt to fight distros in this regard, Bedrock has
  134. # hard-coded internal support for multiple valid values here and may not
  135. # respect changes to this field.
  136. /etc/mtab = /proc/self/mounts
  137.  
  138. #
  139. # Some distros may expect a file at one path while others expect it at another.
  140. # Standardize the location of global files.
  141. #
  142. /var/lib/dbus/machine-id = /etc/machine-id
  143. /var/run = /run
  144.  
  145. #
  146. # Various programs need to be configured to properly interact with Bedrock
  147. # subsystems. Point them to Bedrock configuration.
  148. #
  149. /etc/systemd/system/bedrock-fix-mounts.service = /bedrock/share/systemd/bedrock-fix-mounts.service
  150. /etc/systemd/system/bedrock-fix-resolv.service = /bedrock/share/systemd/bedrock-fix-resolv.service
  151. /etc/systemd/system/bedrock-stop-fuse-filesystems.service = /bedrock/share/systemd/bedrock-stop-fuse-filesystems.service
  152. /etc/systemd/system/multi-user.target.wants/bedrock-fix-mounts.service = /bedrock/share/systemd/bedrock-fix-mounts.service
  153. /etc/systemd/system/multi-user.target.wants/bedrock-stop-fuse-filesystems.service = /bedrock/share/systemd/bedrock-stop-fuse-filesystems.service
  154. /etc/systemd/system/network-online.target.wants/bedrock-fix-resolv.service = /bedrock/share/systemd/bedrock-fix-resolv.service
  155.  
  156. /etc/X11/xorg.conf.d/99-bedrock-fonts.conf = /bedrock/run/xorg-fonts
  157. /etc/fonts/conf.d/99-bedrock-fonts.conf = /bedrock/share/fonts/fontconf.conf
  158.  
  159. /etc/X11/Xsession.d/99bedrock_env = /bedrock/run/profile
  160. /etc/X11/xinit/xinitrc.d/99bedrock_env = /bedrock/run/profile
  161.  
  162. /etc/bash_completion.d/brl = /bedrock/share/bash/completion/brl
  163. /etc/bash_completion.d/strat = /bedrock/share/bash/completion/strat
  164.  
  165. /etc/fish/conf.d/99bedrock.fish = /bedrock/run/fprofile
  166. /etc/fish/completions/brl.fish = /bedrock/share/fish/completion/brl.fish
  167. /etc/fish/completions/strat.fish = /bedrock/share/fish/completion/strat.fish
  168.  
  169. /etc/resolvconf/update.d/00bedrock = /bedrock/share/resolvconf/00bedrock
  170.  
  171. #
  172. # In general, system software such as Bedrock should not manipulate /usr/local.
  173. # Bedrock should favor configuring /etc files instead.
  174. #
  175. # However, dbus's dbus-daemon-launch-helper seems to ignore /etc/dbus-1/
  176. # configuration extending the search path. See
  177. # https://bugs.freedesktop.org/show_bug.cgi?id=92458 for a discussion on the
  178. # matter. For example:
  179. #
  180. # > Note that d-d-l-h only reads .service files from standard hard-coded paths,
  181. # > not from any additional paths that you might have configured
  182. #
  183. # Since /usr/local/share/dbus is included in the hard-coded paths, is not used
  184. # by most package managers, and is rarely used by end-users, it's the cleanest
  185. # option available to teach dbus about /bedrock/cross.
  186. #
  187. /usr/local/share/dbus-1/system-services = /bedrock/cross/dbus-system
  188. /usr/local/share/dbus-1/services = /bedrock/cross/dbus-session
  189.  
  190. #
  191. # Some distros use a swap file and include reference to it in their fstab.
  192. # This must be global so that it is valid when using an init from another
  193. # stratum. However, it is not clear if it would work well with any of the
  194. # established techniques in [global]. Instead, symlink it into a known global
  195. # directory.
  196. #
  197. /swapfile = /var/swap/swapfile
  198.  
  199. [etc-symlinks]
  200. #
  201. # Dynamically enforce various symlinks are in place at local paths. Any change
  202. # away from specified configuration is immediately undone.
  203. #
  204. # Keys are local paths relative to /etc, values are symlink contents.
  205. #
  206. # The symlink contents must be absolute paths.
  207. #
  208.  
  209. #
  210. # Some init systems attempt to change these values at boot time, just after
  211. # being enabled. Thus, symlinks-general will not suffice.
  212. #
  213. localtime = /bedrock/run/localtime
  214. environment = /bedrock/run/environment
  215.  
  216. [etc-inject]
  217. #
  218. # Not all programs can be adequately/reliably configured by creating new,
  219. # cleanly isolated configuration files. Instead, a configuration file must be
  220. # extended to include desired configuration without clobbering its stratum
  221. # local configuration. Typically these configuration files are in /etc.
  222. #
  223. # Bedrock ensures that, should certain files exist in /etc, they will include
  224. # content specified at another file path. If the desired content is not found
  225. # in the file it is automatically appended to the end.
  226. #
  227. # The keys are file paths relative to /etc, and the values are paths to files
  228. # whose content must be included if the key's file exists in /etc.
  229. #
  230. # If you alter either the key/values in this section, or the actual content of
  231. # the values, run `brl apply` to apply the change. Do this before rebooting
  232. # to ensure any old content is removed.
  233. #
  234.  
  235. sudoers = /bedrock/share/sudo/include-bedrock
  236. profile = /bedrock/share/shells/include-bedrock
  237.  
  238. # Received mix fixed back on cross-stratum dkms. It's disabled by default.
  239. #
  240. # To enable it, uncomment dkms/framework.conf line below and run `brl apply`.
  241. #
  242. # To re-disable it, comment out dkms/framework.conf line, `brl apply`, then
  243. # remove corresponding line from /bedrock/strata/*/etc/dkms/framework.conf
  244. #
  245. #dkms/framework.conf = /bedrock/share/dkms/include-bedrock
  246.  
  247. #
  248. # etc-inject only injects existing files and does create make files in order to
  249. # avoid creating a file a package manager does not expect. Different distro
  250. # zsh packages provide different files, requiring multiple zsh file injections.
  251. #
  252. zprofile = /bedrock/share/zsh/include-bedrock
  253. zshenv = /bedrock/share/zsh/include-bedrock
  254. zsh/zprofile = /bedrock/share/zsh/include-bedrock
  255. zsh/zshenv = /bedrock/share/zsh/include-bedrock
  256.  
  257. [env-vars]
  258. #
  259. # Many programs search environment variables consisting of a (usually colon
  260. # separated) list of directories. We can use these to teach these programs
  261. # about cross-stratum content.
  262. #
  263. # These variables are typically searched in listed order. To manage this
  264. # order, the configuration below is broken up into three sections for each
  265. # variable:
  266. #
  267. # - PREFIX:<envvar> entries. Bedrock ensures these are at the front of the
  268. # environment variable. These are used to ensure a given resource is provided
  269. # by a specific stratum. For example, this ensures `reboot` is provided by the
  270. # init stratum.
  271. #
  272. # - INFIX:<envvar> entries. These are used to ensure a given entry comes from
  273. # the local stratum. For example, some software may request to be launched by
  274. # sh via `#!/usr/bin/env sh` but utilize bash-isms which are valid on some
  275. # distros which symlink `sh` to `bash`, but not others which don't. Such
  276. # software must use the local stratum's `sh` to ensure the `bash` shell they
  277. # expect is utilized.
  278. #
  279. # - SUFFIX:<envvar> entries. Bedrock ensures these are at the end of the
  280. # environment variable. Given the PREFIX:<envvar> (specific stratum) and
  281. # INFIX:<envvar> (local stratum) do not contain the item, it likely does not
  282. # matter which stratum provides it, and so this contains resources from any
  283. # strata which provide the resource.
  284. #
  285.  
  286. #
  287. # A list of directories searched by various programs to find executables.
  288. #
  289. PREFIX:PATH = /bedrock/cross/pin/bin:/bedrock/bin
  290. INFIX:PATH = /usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/games:/usr/games
  291. SUFFIX:PATH = /bedrock/cross/bin
  292.  
  293. #
  294. # A list of directories searched by the man executable to find documentation.
  295. #
  296. PREFIX:MANPATH = /bedrock/cross/pin/man:/bedrock/share/man
  297. INFIX:MANPATH = /usr/local/share/man:/usr/share/man:/bedrock/cross/man
  298. SUFFIX:MANPATH = /bedrock/cross/man
  299.  
  300. #
  301. # A list of directories searched by the info executable to find documentation.
  302. #
  303. PREFIX:INFOPATH = /bedrock/cross/pin/info:/bedrock/share/info
  304. INFIX:INFOPATH = /usr/local/share/info:/usr/share/info
  305. SUFFIX:INFOPATH = /bedrock/cross/info
  306.  
  307. #
  308. # A list of directories used by the freedesktop.org standard containing things
  309. # such as icons and application descriptions.
  310. #
  311. PREFIX:XDG_DATA_DIRS = /bedrock/cross/pin
  312. INFIX:XDG_DATA_DIRS = /usr/local/share:/usr/share
  313. SUFFIX:XDG_DATA_DIRS = /bedrock/cross
  314.  
  315. #
  316. # Terminfo file locations
  317. #
  318. PREFIX:TERMINFO_DIRS = /bedrock/cross/pin/terminfo
  319. INFIX:TERMINFO_DIRS = /usr/local/share/terminfo:/usr/share/terminfo
  320. SUFFIX:TERMINFO_DIRS = /bedrock/cross/terminfo
  321.  
  322. #
  323. # zsh tab completion information
  324. #
  325. # No INFIX here; just pick up from zsh initialization.
  326. #
  327. PREFIX:fpath = /bedrock/share/zsh/completion
  328. SUFFIX:fpath = /bedrock/cross/zsh-completion
  329.  
  330. [restriction]
  331. #
  332. # Some programs become confused upon discovering software from other distros.
  333. # To avoid this, Bedrock can restrict such software to its own stratum (and
  334. # global paths) by removing cross paths from various environment variables.
  335. #
  336. # This is primarily needed for software which discovers dependencies in
  337. # preparation for compiling, such as Arch Linux's makepkg. However, it may be
  338. # useful for other programs as well.
  339. #
  340. # This only affects processes which are run through `strat` or /bedrock/cross.
  341. # To ensure unwrapped calls are run through cross, configure pin entries under
  342. # [cross-bin].
  343. #
  344. # List any commands you would like restricted here.
  345. #
  346. restrict = apt-key, cave, cmake, debuild, dkms, dpkg-buildpackage, firecfg, firejail, firetools, gdb, git, kiss, makepkg, pkgmk, prt-get, rpmbuild
  347.  
  348. [cross]
  349. #
  350. # Bedrock Linux mounts a virtual filesystem at
  351. #
  352. # /bedrock/cross
  353. #
  354. # which provides an alternative view of various files from the enabled strata.
  355. # This view is used for cross-stratum coordination.
  356. #
  357. # For the [cross-*] sections below, the keys represent file paths appended to
  358. # /bedrock/cross, and the values are a list of files or directories to be
  359. # searched for contents for the given file path. For example,
  360. #
  361. # man = /usr/local/share/man, /usr/share/man
  362. #
  363. # indicates that /bedrock/cross/man should be populated with the contents of
  364. # the /usr/local/share/man and /usr/share/man directories of all of the enabled
  365. # strata.
  366. #
  367. # The paths used for values may be prefixed by "<stratum>:" indicating the
  368. # given file/directory should only be considered from a specific stratum. For
  369. # example,
  370. #
  371. # pin/bin/firefox = arch:/usr/bin/firefox, void:/usr/bin/firefox
  372. #
  373. # Indicates a file at /bedrock/cross/pin/bin/firefox should be provided by
  374. # arch if available, or if not then void; otherwise, the file should not exist.
  375. #
  376. # The following environment variables are also valid values:
  377. #
  378. # $PATH, $MANPATH, $INFOPATH, $XDG_DATA_DIRS, $TERMINFO_DIRS, $fpath
  379. #
  380. # These are parsed from per-stratum /etc/profile.d and expanded appropriately.
  381. # For example,
  382. #
  383. # man = $MANPATH
  384. #
  385. # acts similarly to the above man example, but will detect new $MANPATH entries
  386. # described by /etc/profile.d drop-in configuration.
  387. #
  388. # Environment variable entries may optionally have a "<stratum>:" prefix and/or
  389. # a "/additional/path" suffix. For example:
  390. #
  391. # pin/bin/reboot = init:$PATH/reboot
  392. #
  393. # will expand to "init:<path>/reboot" for all $PATH entries.
  394. #
  395.  
  396. #
  397. # If a value does not have a stratum prefixed, it may be provided by any
  398. # stratum that has the file. If multiple do, the values in "priority" below
  399. # indicate which should be given priority. Any enabled strata left unspecified
  400. # are implicitly appended at the end in an unspecified order. For example,
  401. #
  402. # priority = gentoo, debian
  403. #
  404. # indicates that for the `man` example above, if gentoo provides the given man
  405. # page, gentoo's version should be provided. Otherwise, if debian does, then
  406. # debian's should be provided. Otherwise, any stratum that provides the man
  407. # page may provide it.
  408. #
  409. priority =
  410.  
  411. [cross-pass]
  412. #
  413. # Files accessed here are passed through from the stratum's version unaltered.
  414. #
  415. man = $MANPATH
  416. info = $INFOPATH
  417. icons = $XDG_DATA_DIRS/icons
  418. pixmaps = $XDG_DATA_DIRS/pixmaps
  419. themes = $XDG_DATA_DIRS/themes
  420. backgrounds = $XDG_DATA_DIRS/backgrounds
  421. zoneinfo = /usr/share/zoneinfo
  422. terminfo = $TERMINFO_DIRS
  423. src = /usr/local/src, /usr/src
  424. bash-completion = /usr/share/bash-completion
  425. zsh-completion = $fpath
  426. firmware = /lib/firmware/updates/UTS_RELEASE, /lib/firmware/updates, /lib/firmware/UTS_RELEASE, /lib/firmware
  427.  
  428. [cross-bin]
  429. #
  430. # Files are executables. Executing these files should implicitly redirect
  431. # through `strat <stratum>`.
  432. #
  433. bin = $PATH
  434.  
  435. #
  436. # These programs are strongly related to the init system. If the stratum
  437. # providing init provides these commands, that version should take priority.
  438. # Typical Bedrock systems have /bedrock/pin/bin/ at the front of the $PATH.
  439. #
  440. pin/bin/service = init:$PATH/service
  441. pin/bin/systemctl = init:$PATH/systemctl
  442. pin/bin/rc-service = init:$PATH/rc-service
  443. pin/bin/rc-status = init:$PATH/rc-status
  444. pin/bin/rc-update = init:$PATH/rc-update
  445. pin/bin/rc-udevadm = init:$PATH/rc-udevadm
  446. pin/bin/sv = init:$PATH/sv
  447. pin/bin/poweroff = init:$PATH/poweroff
  448. pin/bin/reboot = init:$PATH/reboot
  449. pin/bin/shutdown = init:$PATH/shutdown
  450. pin/bin/halt = init:$PATH/halt
  451.  
  452. # [restriction]/restrict items are only restricted if run through strat or
  453. # cross. List any such items here to ensure they are run through cross to be
  454. # restricted.
  455. #
  456. # If a local instance is available, that is preferred over crossing strata
  457. # boundaries, just in case there is some dependency on its specific quirks.
  458. # Ensure all items here use the local alias. If the item is not available
  459. # locally, the call will fall through to un-pinned `bin` above.
  460. pin/bin/apt-key = local:$PATH/apt-key
  461. pin/bin/cave = local:$PATH/cave
  462. pin/bin/cmake = local:$PATH/cmake
  463. pin/bin/debuild = local:$PATH/debuild
  464. pin/bin/dkms = local:$PATH/dkms
  465. pin/bin/dpkg-buildpackage = local:$PATH/dpkg-buildpackage
  466. pin/bin/firecfg = local:$PATH/firecfg
  467. pin/bin/firejail = local:$PATH/firejail
  468. pin/bin/firetools = local:$PATH/firetools
  469. pin/bin/gdb = local:$PATH/gdb
  470. pin/bin/git = local:$PATH/git
  471. pin/bin/kiss = local:$PATH/kiss
  472. pin/bin/makepkg = local:$PATH/makepkg
  473. pin/bin/pkgmk = local:$PATH/pkgmk
  474. pin/bin/prt-get = local:$PATH/prt-get
  475. pin/bin/rpmbuild = local:$PATH/rpmbuild
  476.  
  477. [cross-ini]
  478. #
  479. # Files are in ini format. These files are modified so that their contents
  480. # should work across stratum boundaries. For example, `Exec` keys may have
  481. # their values prefixed with `strat <stratum>` to ensure they work across
  482. # stratum boundaries.
  483. #
  484. applications = $XDG_DATA_DIRS/applications
  485. xsessions = init:$XDG_DATA_DIRS/xsessions, $XDG_DATA_DIRS/xsessions
  486. wayland-sessions = init:$XDG_DATA_DIRS/wayland-sessions, $XDG_DATA_DIRS/wayland-sessions
  487.  
  488. dbus-system = /usr/share/dbus-1/system-services
  489. dbus-session = /usr/share/dbus-1/services
  490.  
  491. [cross-font]
  492. #
  493. # Values are font directories. Fonts are passed through, and font databases
  494. # are merged to list all fonts.
  495. #
  496. fonts = /usr/share/fonts
  497.  
  498. [pmm]
  499. #
  500. # Package Manager Manager
  501. #
  502. # A typical Bedrock Linux system has multiple package managers. Bedrock's
  503. # Package Manager Manager, or pmm, acts as a front-end for these and provides
  504. # multi-package-manager and cross-package-manager operations.
  505. #
  506.  
  507. #
  508. # The command line user interface pmm should utilize.
  509. #
  510. # See file names in /bedrock/share/pmm/package_managers/ for available options.
  511. #
  512. # For example, to mimic Debian/Ubuntu/etc's apt user interface, set:
  513. #
  514. # user-interface = apt
  515. #
  516. # Or to mimic Arch's pacman user interface, set:
  517. #
  518. # user-interface = pacman
  519. #
  520. user-interface = xbps
  521.  
  522. #
  523. # List indicating the order package managers should be considered by pmm. Any
  524. # available package manager not included will be considered after this list in
  525. # an undefined order.
  526. #
  527. # List entries may have any of the following patterns:
  528. #
  529. # - `<stratum>:<package-manager>`, indicating a specific stratum's specific
  530. # package manager.
  531. # - `<stratum>:`, indicating any/all package managers in the
  532. # given stratum.
  533. # - `:<package-manager>`, indicating a specific package manager from any
  534. # stratum.
  535. #
  536. # For example:
  537. #
  538. # priority = alpine:, debian:apt, arch:pacman, centos:, :pip
  539. #
  540. priority =
  541.  
  542. #
  543. # If true, only system package managers such as `apt` or `pacman` will be
  544. # considered by pmm.
  545. #
  546. # If false, non-system-package managers such as `pip` or `yay` will be
  547. # considered as well.
  548. #
  549. # `priority` overrides this setting and may be used to white list specific
  550. # non-system package managers while others remain ignored.
  551. #
  552. ignore-non-system-package-managers = true
  553.  
  554. #
  555. # To black list specific strata from pmm, `brl hide --pmm <stratum>` the
  556. # stratum. See `brl hide --help` and `brl show --help`.
  557. #
  558.  
  559. #
  560. # Some package managers such as yay recommend against running as root. If pmm
  561. # is called as root, pmm will call such package managers with this user via
  562. # `sudo`.
  563. #
  564. # sudo sets $SUDO_USER accordingly and is thus a good general default if pmm is
  565. # called via sudo. If you do not use this, consider setting it either your
  566. # primary user or a dedicated unprivileged user.
  567. #
  568. unprivileged-user = $SUDO_USER
  569.  
  570. #
  571. # Most package managers support only a subset of available operations. If a
  572. # given package manager is unable to fulfill an operation, it is skipped.
  573. #
  574. # If true, print a warning when skipping package manager because it does not
  575. # support the requested operation.
  576. #
  577. # If false, skip package managers silently.
  578. #
  579. warn-about-skipping-package-managers = true
  580.  
  581. #
  582. # pmm cache settings
  583. #
  584. # Many pmm operations query multiple package managers, the sum of which may be
  585. # undesirably slow. When run as root, pmm can cache pre-calculate and cache
  586. # data to speed up future queries. However, this caching operation takes time
  587. # and its utilization risks missing cache invalidation cues.
  588. #
  589. # See `[miscellaneous]` `cache-life` to control how long cached values remain
  590. # on disk.
  591. #
  592.  
  593. #
  594. # If true, pmm will cache the list of package managers to consider.
  595. #
  596. # If false, pmm will build list of available package managers every operation.
  597. #
  598. # This cache is updated on changes to bedrock.conf or the list of
  599. # non-pmm-hidden, enabled strata. It will miss the addition of new package
  600. # managers within a preexisting stratum, such as would occur if one ran `apt
  601. # install python-pip`.
  602. #
  603. # This cache size varies depending on the number of package managers available
  604. # on the system. It may use tens of kilobytes of disk space in total.
  605. #
  606. cache-package-manager-list = true
  607.  
  608. #
  609. # If true, pmm will cache the list of available packages and some of their
  610. # metadata. This speeds up internal look-ups about available packages.
  611. #
  612. # If false, pmm will query underlying package managers every time it needs to
  613. # learn about possible available packages.
  614. #
  615. # This cache is updated after pmm is instructed to update package manager
  616. # databases (e.g. `pmm update`, `pmm -Syu`, etc). It may become outdated if
  617. # package managers update their databases outside of pmm.
  618. #
  619. # This cache size and caching time varies heavily depending on the number of
  620. # packages a given package manager has available. It may use tens of megabytes
  621. # of disk space per package manager.
  622. #
  623. cache-package-database = true
  624.  
  625. [brl-fetch-mirrors]
  626. #
  627. # `brl fetch` fetches files from distros for use as Bedrock Linux strata.
  628. #
  629. # If a mirror is provided to the `brl fetch` command, it is used to fetch the
  630. # given distro. Otherwise, this configuration is checked to see if it
  631. # specifies a given mirror should be tried. If no working mirror is found
  632. # here, `brl fetch` will attempt to select a mirror from those it finds for the
  633. # given distribution.
  634. #
  635.  
  636. #
  637. # Some mirrors support multiple Linux distributions and use the same prefix
  638. # path for all of them. For example, at the time of writing, there is an Arch
  639. # mirror at
  640. #
  641. # http://mirrors.edge.kernel.org/archlinux
  642. #
  643. # and a CentOS mirror at
  644. #
  645. # http://mirrors.edge.kernel.org/centos
  646. #
  647. # and a Debian mirror at:
  648. #
  649. # http://mirrors.edge.kernel.org/debian
  650. #
  651. # and a Fedora mirror at
  652. #
  653. # http://mirrors.edge.kernel.org/fedora
  654. #
  655. # Rather than configuring each of these separately, the base URL can be added
  656. # to mirror-prefix to tell `brl fetch` to check it as a possible mirror. For
  657. # the above kernel.org example, one may set:
  658. #
  659. # mirror-prefix = http://mirrors.edge.kernel.org
  660. #
  661. # This is a comma separated list which is checked in order.
  662. #
  663. mirror-prefix =
  664.  
  665. #
  666. # You may set mirrors per distro by setting the distro name as spelled by
  667. #
  668. # brl fetch --list
  669. #
  670. # as the key and the mirror as the value. For example, to indicate that Ubuntu
  671. # should be fetched with the mirror
  672. #
  673. # http://us.archive.ubuntu.com/ubuntu
  674. #
  675. # One may set
  676. #
  677. # ubuntu = http://us.archive.ubuntu.com/ubuntu
  678. #
  679.  
  680. [brl-update]
  681. #
  682. # Set mirrors to one or more Bedrock Linux releases file URLs.
  683. #
  684. # Most users are recommend to stick with the stable release channel here:
  685. #
  686. # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases
  687. #
  688. # However, if you would like to help test upcoming Bedrock updates and are
  689. # willing to take the associated risks, a beta channel is available as well.
  690. # It should be added in addition to the stable channel so that you're always on
  691. # whichever is newer between the two:
  692. #
  693. # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases, https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7beta/releases
  694. #
  695.  
  696. mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases
  697.  
  698. [miscellaneous]
  699.  
  700. #
  701. # Time to retain Bedrock cached data (such as from brl-fetch) in days.
  702. #
  703. cache-life = 30
  704.  
  705. #
  706. # Set to false to disable color in brl output
  707. #
  708. color = true
  709.  
  710. #
  711. # Enable debugging for specified subsystems.
  712. #
  713. # Possible values include:
  714. # - etcfs
  715. # - brl-fetch
  716. #
  717. debug =
  718.  
  719. $ /bedrock/bin/brl list -v
  720. bedrock
  721. fedora
  722. gentoo
  723. hijacked -> void
  724. init -> void
  725. local -> void
  726. void
  727.  
  728. $ /bedrock/bin/brl status $(/bedrock/bin/brl list -aA)
  729. bedrock: enabled
  730. fedora: broken
  731. /tmp is bound
  732. gentoo: broken
  733. /tmp is bound
  734. hijacked: broken
  735. /tmp is bound
  736. init: broken
  737. /tmp is bound
  738. local: broken
  739. /tmp is bound
  740. void: broken
  741. /tmp is bound
  742.  
  743. $ echo $PATH
  744. /bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/games:/usr/games:/opt/bin:/bedrock/cross/bin
  745.  
  746. $ echo $MANPATH
  747. /bedrock/cross/pin/man:/bedrock/share/man:/usr/local/share/man:/usr/share/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/11/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.39/man:/bedrock/cross/man
  748.  
  749. $ echo $INFOPATH
  750. /bedrock/cross/pin/info:/bedrock/share/info:/usr/local/share/info:/usr/share/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/11/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.39/info:/bedrock/cross/info
  751.  
  752. $ echo $XDG_DATA_DIRS
  753. /bedrock/cross/pin:/usr/local/share:/usr/share:/bedrock/cross:/usr/share
  754.  
  755. $ echo $SHELL
  756. /bedrock/cross/bin/zsh
  757.  
  758. $ ls -la /bedrock/strata/
  759. total 12
  760. drwxr-xr-x 1 root root 80 Jan 28 10:18 .
  761. drwxr-xr-x 1 root root 98 Jan 21 15:12 ..
  762. drwxr-xr-x 1 root root 160 Jan 28 10:44 bedrock
  763. dr-xr-xr-x 1 root root 168 Jan 28 10:44 fedora
  764. drwxr-xr-x 1 root root 156 Jan 28 10:44 gentoo
  765. lrwxrwxrwx 1 root root 4 Jan 21 15:11 hijacked -> void
  766. lrwxrwxrwx 1 root root 23 Aug 11 16:00 init -> /bedrock/run/init-alias
  767. lrwxrwxrwx 1 root root 21 Aug 11 16:00 local -> ../cross/.local-alias
  768. drwxr-xr-x 1 root root 244 Jan 28 10:44 void
  769.  
  770. $ ls -Rl /bedrock/run/
  771. /bedrock/run/:
  772. total 24
  773. drwxr-xr-x 2 root root 120 Feb 1 09:09 enabled_strata
  774. -rw-r--r-- 1 root root 589 Feb 1 09:09 environment
  775. -rw-r--r-- 1 root root 1293 Feb 1 09:09 fprofile
  776. lrwxrwxrwx 1 root root 20 Feb 1 09:09 init-alias -> /bedrock/strata/void
  777. lrwxrwxrwx 1 root root 40 Feb 1 09:09 localtime -> /bedrock/cross/zoneinfo/America/New_York
  778. -rw-r--r-- 1 root root 2013 Feb 1 09:09 profile
  779. drwxr-xr-x 2 root root 360 Feb 1 09:09 restricted_cmds
  780. -rw-r--r-- 1 root root 205 Feb 1 09:09 sudoers
  781. -rw-r--r-- 1 root root 335 Feb 1 09:09 xorg-fonts
  782. -rw-r--r-- 1 root root 671 Feb 1 09:09 zprofile
  783.  
  784. /bedrock/run/enabled_strata:
  785. total 0
  786. -rw-r--r-- 1 root root 0 Feb 1 09:09 bedrock
  787. -rw-r--r-- 1 root root 0 Feb 1 09:09 fedora
  788. -rw-r--r-- 1 root root 0 Feb 1 09:09 gentoo
  789. -rw-r--r-- 1 root root 0 Feb 1 09:09 void
  790.  
  791. /bedrock/run/restricted_cmds:
  792. total 0
  793. -rw-r--r-- 1 root root 0 Feb 1 09:09 apt-key
  794. -rw-r--r-- 1 root root 0 Feb 1 09:09 cave
  795. -rw-r--r-- 1 root root 0 Feb 1 09:09 cmake
  796. -rw-r--r-- 1 root root 0 Feb 1 09:09 debuild
  797. -rw-r--r-- 1 root root 0 Feb 1 09:09 dkms
  798. -rw-r--r-- 1 root root 0 Feb 1 09:09 dpkg-buildpackage
  799. -rw-r--r-- 1 root root 0 Feb 1 09:09 firecfg
  800. -rw-r--r-- 1 root root 0 Feb 1 09:09 firejail
  801. -rw-r--r-- 1 root root 0 Feb 1 09:09 firetools
  802. -rw-r--r-- 1 root root 0 Feb 1 09:09 gdb
  803. -rw-r--r-- 1 root root 0 Feb 1 09:09 git
  804. -rw-r--r-- 1 root root 0 Feb 1 09:09 kiss
  805. -rw-r--r-- 1 root root 0 Feb 1 09:09 makepkg
  806. -rw-r--r-- 1 root root 0 Feb 1 09:09 pkgmk
  807. -rw-r--r-- 1 root root 0 Feb 1 09:09 prt-get
  808. -rw-r--r-- 1 root root 0 Feb 1 09:09 rpmbuild
  809.  
  810. $ grep secure_path /etc/sudoers
  811. grep: /etc/sudoers: Permission denied
  812.  
  813. $ grep "^$(whoami):" /etc/passwd
  814. foreman:x:1000:1000::/home/foreman:/bedrock/cross/bin/zsh
  815.  
  816. $ grep "^root:" /etc/passwd
  817. root:x:0:0:root:/root:/bedrock/cross/bin/zsh
  818.  
  819. $ cat /etc/hostname
  820. toolbox
  821.  
  822. $ cat /etc/os-release
  823. NAME="Void"
  824. ID="void"
  825. PRETTY_NAME="Void Linux"
  826. HOME_URL="https://voidlinux.org/"
  827. DOCUMENTATION_URL="https://docs.voidlinux.org/"
  828. LOGO="void-logo"
  829. ANSI_COLOR="0;38;2;71;128;97"
  830.  
  831. DISTRIB_ID="void"
  832.  
  833. $ cat /etc/lsb-release
  834. cat: can't open '/etc/lsb-release': No such file or directory
  835.  
  836. $ cat /etc/fstab
  837. #
  838. # See fstab(5).
  839. #
  840. # <file system> <dir> <type> <options> <dump> <pass>
  841. tmpfs /tmp tmpfs rw,nosuid,nodev 0 0
  842. efivarfs /sys/firmware/efi/efivars efivarfs defaults 0 0
  843. UUID=d3c0cf1a-1c42-4f67-abb8-e29659e4b0a9 / btrfs rw,noatime,ssd,compress=zstd,commit=120,subvol=BTR_root 0 0
  844. UUID=d3c0cf1a-1c42-4f67-abb8-e29659e4b0a9 /var btrfs rw,relatime,ssd,compress=none,commit=120,subvol=BTR_var 0 0
  845. UUID=d3c0cf1a-1c42-4f67-abb8-e29659e4b0a9 /.snapshots btrfs rw,noatime,ssd,compress=zstd,commit=120,subvol=BTR_.snapshots 0 0
  846. UUID=d3c0cf1a-1c42-4f67-abb8-e29659e4b0a9 /home btrfs rw,noatime,ssd,compress=zstd,commit=120,subvol=BTR_home 0 0
  847. UUID=d3c0cf1a-1c42-4f67-abb8-e29659e4b0a9 /usr/local btrfs rw,noatime,ssd,compress=zstd,commit=120,subvol=BTR_usrlcl 0 0
  848. UUID=0093-12F2 /boot vfat defaults,noatime 0 0
  849. /var/swap/swapfile none swap sw 0 0
  850.  
  851. $ cat /proc/1/mountinfo
  852. 20 29 0:19 / /bedrock/strata/bedrock/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  853. 21 29 0:20 / /bedrock/strata/bedrock/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  854. 22 29 0:5 / /bedrock/strata/bedrock/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=16363052k,nr_inodes=4090763,mode=755,inode64
  855. 23 22 0:21 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  856. 24 22 0:22 / /bedrock/strata/bedrock/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw,inode64
  857. 25 29 0:23 / /bedrock/strata/bedrock/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755,inode64
  858. 29 38 0:26 /BTR_root /bedrock/strata/bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  859. 28 29 0:29 / /bedrock/strata/bedrock/tmp rw,nosuid,nodev,relatime - tmpfs tmpfs rw,inode64
  860. 30 21 0:30 / /bedrock/strata/bedrock/sys/firmware/efi/efivars rw,relatime shared:13 - efivarfs efivarfs rw
  861. 32 29 0:26 /BTR_var /bedrock/strata/bedrock/var rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=257,subvol=/BTR_var
  862. 33 29 0:26 /BTR_.snapshots /bedrock/strata/bedrock/.snapshots rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=260,subvol=/BTR_.snapshots
  863. 34 29 0:26 /BTR_home /bedrock/strata/bedrock/home rw,noatime shared:7 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=259,subvol=/BTR_home
  864. 35 29 0:26 /BTR_usrlcl /bedrock/strata/bedrock/usr/local rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=258,subvol=/BTR_usrlcl
  865. 31 29 259:1 / /bedrock/strata/bedrock/boot rw,noatime shared:4 - vfat /dev/nvme0n1p1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro
  866. 36 28 0:35 / /bedrock/strata/bedrock/tmp rw,nosuid,nodev,relatime shared:14 - tmpfs tmpfs rw,inode64
  867. 37 1 0:26 /BTR_root/bedrock/strata/void / rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  868. 38 37 0:26 /BTR_root/bedrock /bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  869. 39 37 0:19 / /proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  870. 40 37 0:5 / /dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=16363052k,nr_inodes=4090763,mode=755,inode64
  871. 41 40 0:21 / /dev/pts rw,nosuid,noexec,relatime - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  872. 42 40 0:22 / /dev/shm rw,nosuid,nodev,noexec - tmpfs tmpfs rw,inode64
  873. 43 37 0:20 / /sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  874. 44 43 0:30 / /sys/firmware/efi/efivars rw,relatime - efivarfs efivarfs rw
  875. 45 29 0:36 / /bedrock/strata/bedrock/bedrock/run rw,relatime - tmpfs bedrock_run rw,inode64
  876. 46 38 0:36 / /bedrock/run rw,relatime - tmpfs bedrock_run rw,inode64
  877. 48 29 0:38 / /bedrock/strata/bedrock/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  878. 49 29 0:26 /BTR_root /bedrock/strata/bedrock/bedrock/strata/bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  879. 50 29 0:39 / /bedrock/strata/bedrock/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  880. 51 37 259:1 / /boot rw,noatime shared:4 - vfat /dev/nvme0n1p1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro
  881. 52 37 0:26 /BTR_home /home rw,noatime shared:7 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=259,subvol=/BTR_home
  882. 53 29 0:26 /BTR_root/lib/modules /bedrock/strata/bedrock/lib/modules rw,noatime shared:8 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  883. 54 37 0:26 /BTR_root/lib/modules /usr/lib/modules rw,noatime shared:8 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  884. 55 29 0:26 /BTR_root/media /bedrock/strata/bedrock/media rw,noatime shared:9 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  885. 56 37 0:26 /BTR_root/media /media rw,noatime shared:9 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  886. 57 29 0:26 /BTR_root/mnt /bedrock/strata/bedrock/mnt rw,noatime shared:10 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  887. 58 37 0:26 /BTR_root/mnt /mnt rw,noatime shared:10 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  888. 59 29 0:26 /BTR_root/root /bedrock/strata/bedrock/root rw,noatime shared:11 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  889. 60 37 0:26 /BTR_root/root /root rw,noatime shared:11 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  890. 47 37 0:23 / /run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755,inode64
  891. 61 37 0:35 / /tmp rw,nosuid,nodev,relatime shared:14 - tmpfs tmpfs rw,inode64
  892. 62 38 0:39 / /bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  893. 63 37 0:37 / /etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  894. 64 38 0:26 /BTR_root/bedrock/strata/gentoo /bedrock/strata/gentoo rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  895. 65 64 259:1 / /bedrock/strata/gentoo/boot rw,noatime shared:4 - vfat /dev/nvme0n1p1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro
  896. 66 64 0:5 / /bedrock/strata/gentoo/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=16363052k,nr_inodes=4090763,mode=755,inode64
  897. 67 66 0:21 / /bedrock/strata/gentoo/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  898. 68 66 0:22 / /bedrock/strata/gentoo/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw,inode64
  899. 69 64 0:26 /BTR_home /bedrock/strata/gentoo/home rw,noatime shared:7 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=259,subvol=/BTR_home
  900. 70 64 0:26 /BTR_root/lib/modules /bedrock/strata/gentoo/lib/modules rw,noatime shared:8 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  901. 71 64 0:26 /BTR_root/media /bedrock/strata/gentoo/media rw,noatime shared:9 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  902. 72 64 0:26 /BTR_root/mnt /bedrock/strata/gentoo/mnt rw,noatime shared:10 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  903. 73 64 0:19 / /bedrock/strata/gentoo/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  904. 74 64 0:26 /BTR_root/root /bedrock/strata/gentoo/root rw,noatime shared:11 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  905. 75 64 0:23 / /bedrock/strata/gentoo/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755,inode64
  906. 76 64 0:20 / /bedrock/strata/gentoo/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  907. 77 76 0:30 / /bedrock/strata/gentoo/sys/firmware/efi/efivars rw,relatime shared:13 - efivarfs efivarfs rw
  908. 78 64 0:35 / /bedrock/strata/gentoo/tmp rw,nosuid,nodev,relatime shared:14 - tmpfs tmpfs rw,inode64
  909. 79 64 0:26 /BTR_root/bedrock /bedrock/strata/gentoo/bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  910. 80 79 0:39 / /bedrock/strata/gentoo/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  911. 81 79 0:36 / /bedrock/strata/gentoo/bedrock/run rw,relatime - tmpfs bedrock_run rw,inode64
  912. 82 79 0:26 /BTR_root /bedrock/strata/gentoo/bedrock/strata/bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  913. 83 64 0:40 / /bedrock/strata/gentoo/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  914. 84 38 0:26 /BTR_root/bedrock/strata/fedora /bedrock/strata/fedora rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  915. 85 84 259:1 / /bedrock/strata/fedora/boot rw,noatime shared:4 - vfat /dev/nvme0n1p1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro
  916. 86 84 0:5 / /bedrock/strata/fedora/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=16363052k,nr_inodes=4090763,mode=755,inode64
  917. 87 86 0:21 / /bedrock/strata/fedora/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  918. 88 86 0:22 / /bedrock/strata/fedora/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw,inode64
  919. 89 84 0:26 /BTR_home /bedrock/strata/fedora/home rw,noatime shared:7 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=259,subvol=/BTR_home
  920. 90 84 0:26 /BTR_root/lib/modules /bedrock/strata/fedora/usr/lib/modules rw,noatime shared:8 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  921. 91 84 0:26 /BTR_root/media /bedrock/strata/fedora/media rw,noatime shared:9 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  922. 92 84 0:26 /BTR_root/mnt /bedrock/strata/fedora/mnt rw,noatime shared:10 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  923. 93 84 0:19 / /bedrock/strata/fedora/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  924. 94 84 0:26 /BTR_root/root /bedrock/strata/fedora/root rw,noatime shared:11 - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  925. 95 84 0:23 / /bedrock/strata/fedora/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755,inode64
  926. 96 84 0:20 / /bedrock/strata/fedora/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  927. 97 96 0:30 / /bedrock/strata/fedora/sys/firmware/efi/efivars rw,relatime shared:13 - efivarfs efivarfs rw
  928. 98 84 0:35 / /bedrock/strata/fedora/tmp rw,nosuid,nodev,relatime shared:14 - tmpfs tmpfs rw,inode64
  929. 99 84 0:26 /BTR_root/bedrock /bedrock/strata/fedora/bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  930. 100 99 0:39 / /bedrock/strata/fedora/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  931. 101 99 0:36 / /bedrock/strata/fedora/bedrock/run rw,relatime - tmpfs bedrock_run rw,inode64
  932. 102 99 0:26 /BTR_root /bedrock/strata/fedora/bedrock/strata/bedrock rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=256,subvol=/BTR_root
  933. 103 84 0:41 / /bedrock/strata/fedora/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  934. 104 43 0:6 / /sys/kernel/security rw,relatime shared:15 - securityfs securityfs rw
  935. 107 76 0:6 / /bedrock/strata/gentoo/sys/kernel/security rw,relatime shared:15 - securityfs securityfs rw
  936. 106 96 0:6 / /bedrock/strata/fedora/sys/kernel/security rw,relatime shared:15 - securityfs securityfs rw
  937. 105 21 0:6 / /bedrock/strata/bedrock/sys/kernel/security rw,relatime shared:15 - securityfs securityfs rw
  938. 108 43 0:42 / /sys/fs/cgroup rw,relatime shared:16 - tmpfs cgroup rw,mode=755,inode64
  939. 111 76 0:42 / /bedrock/strata/gentoo/sys/fs/cgroup rw,relatime shared:16 - tmpfs cgroup rw,mode=755,inode64
  940. 110 96 0:42 / /bedrock/strata/fedora/sys/fs/cgroup rw,relatime shared:16 - tmpfs cgroup rw,mode=755,inode64
  941. 109 21 0:42 / /bedrock/strata/bedrock/sys/fs/cgroup rw,relatime shared:16 - tmpfs cgroup rw,mode=755,inode64
  942. 112 108 0:43 / /sys/fs/cgroup/cpuset rw,relatime shared:17 - cgroup cgroup rw,cpuset
  943. 115 111 0:43 / /bedrock/strata/gentoo/sys/fs/cgroup/cpuset rw,relatime shared:17 - cgroup cgroup rw,cpuset
  944. 114 110 0:43 / /bedrock/strata/fedora/sys/fs/cgroup/cpuset rw,relatime shared:17 - cgroup cgroup rw,cpuset
  945. 113 109 0:43 / /bedrock/strata/bedrock/sys/fs/cgroup/cpuset rw,relatime shared:17 - cgroup cgroup rw,cpuset
  946. 116 108 0:44 / /sys/fs/cgroup/cpu rw,relatime shared:18 - cgroup cgroup rw,cpu
  947. 119 111 0:44 / /bedrock/strata/gentoo/sys/fs/cgroup/cpu rw,relatime shared:18 - cgroup cgroup rw,cpu
  948. 118 110 0:44 / /bedrock/strata/fedora/sys/fs/cgroup/cpu rw,relatime shared:18 - cgroup cgroup rw,cpu
  949. 117 109 0:44 / /bedrock/strata/bedrock/sys/fs/cgroup/cpu rw,relatime shared:18 - cgroup cgroup rw,cpu
  950. 120 108 0:45 / /sys/fs/cgroup/cpuacct rw,relatime shared:19 - cgroup cgroup rw,cpuacct
  951. 123 111 0:45 / /bedrock/strata/gentoo/sys/fs/cgroup/cpuacct rw,relatime shared:19 - cgroup cgroup rw,cpuacct
  952. 122 110 0:45 / /bedrock/strata/fedora/sys/fs/cgroup/cpuacct rw,relatime shared:19 - cgroup cgroup rw,cpuacct
  953. 121 109 0:45 / /bedrock/strata/bedrock/sys/fs/cgroup/cpuacct rw,relatime shared:19 - cgroup cgroup rw,cpuacct
  954. 124 108 0:46 / /sys/fs/cgroup/blkio rw,relatime shared:20 - cgroup cgroup rw,blkio
  955. 127 111 0:46 / /bedrock/strata/gentoo/sys/fs/cgroup/blkio rw,relatime shared:20 - cgroup cgroup rw,blkio
  956. 126 110 0:46 / /bedrock/strata/fedora/sys/fs/cgroup/blkio rw,relatime shared:20 - cgroup cgroup rw,blkio
  957. 125 109 0:46 / /bedrock/strata/bedrock/sys/fs/cgroup/blkio rw,relatime shared:20 - cgroup cgroup rw,blkio
  958. 128 108 0:47 / /sys/fs/cgroup/memory rw,relatime shared:21 - cgroup cgroup rw,memory
  959. 131 111 0:47 / /bedrock/strata/gentoo/sys/fs/cgroup/memory rw,relatime shared:21 - cgroup cgroup rw,memory
  960. 130 110 0:47 / /bedrock/strata/fedora/sys/fs/cgroup/memory rw,relatime shared:21 - cgroup cgroup rw,memory
  961. 129 109 0:47 / /bedrock/strata/bedrock/sys/fs/cgroup/memory rw,relatime shared:21 - cgroup cgroup rw,memory
  962. 132 108 0:48 / /sys/fs/cgroup/devices rw,relatime shared:22 - cgroup cgroup rw,devices
  963. 135 111 0:48 / /bedrock/strata/gentoo/sys/fs/cgroup/devices rw,relatime shared:22 - cgroup cgroup rw,devices
  964. 134 110 0:48 / /bedrock/strata/fedora/sys/fs/cgroup/devices rw,relatime shared:22 - cgroup cgroup rw,devices
  965. 133 109 0:48 / /bedrock/strata/bedrock/sys/fs/cgroup/devices rw,relatime shared:22 - cgroup cgroup rw,devices
  966. 136 108 0:49 / /sys/fs/cgroup/freezer rw,relatime shared:23 - cgroup cgroup rw,freezer
  967. 139 111 0:49 / /bedrock/strata/gentoo/sys/fs/cgroup/freezer rw,relatime shared:23 - cgroup cgroup rw,freezer
  968. 138 110 0:49 / /bedrock/strata/fedora/sys/fs/cgroup/freezer rw,relatime shared:23 - cgroup cgroup rw,freezer
  969. 137 109 0:49 / /bedrock/strata/bedrock/sys/fs/cgroup/freezer rw,relatime shared:23 - cgroup cgroup rw,freezer
  970. 140 108 0:50 / /sys/fs/cgroup/net_cls rw,relatime shared:24 - cgroup cgroup rw,net_cls
  971. 143 111 0:50 / /bedrock/strata/gentoo/sys/fs/cgroup/net_cls rw,relatime shared:24 - cgroup cgroup rw,net_cls
  972. 142 110 0:50 / /bedrock/strata/fedora/sys/fs/cgroup/net_cls rw,relatime shared:24 - cgroup cgroup rw,net_cls
  973. 141 109 0:50 / /bedrock/strata/bedrock/sys/fs/cgroup/net_cls rw,relatime shared:24 - cgroup cgroup rw,net_cls
  974. 144 108 0:51 / /sys/fs/cgroup/perf_event rw,relatime shared:25 - cgroup cgroup rw,perf_event
  975. 147 111 0:51 / /bedrock/strata/gentoo/sys/fs/cgroup/perf_event rw,relatime shared:25 - cgroup cgroup rw,perf_event
  976. 146 110 0:51 / /bedrock/strata/fedora/sys/fs/cgroup/perf_event rw,relatime shared:25 - cgroup cgroup rw,perf_event
  977. 145 109 0:51 / /bedrock/strata/bedrock/sys/fs/cgroup/perf_event rw,relatime shared:25 - cgroup cgroup rw,perf_event
  978. 148 108 0:52 / /sys/fs/cgroup/net_prio rw,relatime shared:26 - cgroup cgroup rw,net_prio
  979. 151 111 0:52 / /bedrock/strata/gentoo/sys/fs/cgroup/net_prio rw,relatime shared:26 - cgroup cgroup rw,net_prio
  980. 150 110 0:52 / /bedrock/strata/fedora/sys/fs/cgroup/net_prio rw,relatime shared:26 - cgroup cgroup rw,net_prio
  981. 149 109 0:52 / /bedrock/strata/bedrock/sys/fs/cgroup/net_prio rw,relatime shared:26 - cgroup cgroup rw,net_prio
  982. 152 108 0:53 / /sys/fs/cgroup/hugetlb rw,relatime shared:27 - cgroup cgroup rw,hugetlb
  983. 155 111 0:53 / /bedrock/strata/gentoo/sys/fs/cgroup/hugetlb rw,relatime shared:27 - cgroup cgroup rw,hugetlb
  984. 154 110 0:53 / /bedrock/strata/fedora/sys/fs/cgroup/hugetlb rw,relatime shared:27 - cgroup cgroup rw,hugetlb
  985. 153 109 0:53 / /bedrock/strata/bedrock/sys/fs/cgroup/hugetlb rw,relatime shared:27 - cgroup cgroup rw,hugetlb
  986. 156 108 0:54 / /sys/fs/cgroup/pids rw,relatime shared:28 - cgroup cgroup rw,pids
  987. 159 111 0:54 / /bedrock/strata/gentoo/sys/fs/cgroup/pids rw,relatime shared:28 - cgroup cgroup rw,pids
  988. 158 110 0:54 / /bedrock/strata/fedora/sys/fs/cgroup/pids rw,relatime shared:28 - cgroup cgroup rw,pids
  989. 157 109 0:54 / /bedrock/strata/bedrock/sys/fs/cgroup/pids rw,relatime shared:28 - cgroup cgroup rw,pids
  990. 160 108 0:55 / /sys/fs/cgroup/misc rw,relatime shared:29 - cgroup cgroup rw,misc
  991. 163 111 0:55 / /bedrock/strata/gentoo/sys/fs/cgroup/misc rw,relatime shared:29 - cgroup cgroup rw,misc
  992. 162 110 0:55 / /bedrock/strata/fedora/sys/fs/cgroup/misc rw,relatime shared:29 - cgroup cgroup rw,misc
  993. 161 109 0:55 / /bedrock/strata/bedrock/sys/fs/cgroup/misc rw,relatime shared:29 - cgroup cgroup rw,misc
  994. 164 108 0:56 / /sys/fs/cgroup/unified rw,relatime shared:30 - cgroup2 cgroup2 rw,nsdelegate
  995. 167 111 0:56 / /bedrock/strata/gentoo/sys/fs/cgroup/unified rw,relatime shared:30 - cgroup2 cgroup2 rw,nsdelegate
  996. 166 110 0:56 / /bedrock/strata/fedora/sys/fs/cgroup/unified rw,relatime shared:30 - cgroup2 cgroup2 rw,nsdelegate
  997. 165 109 0:56 / /bedrock/strata/bedrock/sys/fs/cgroup/unified rw,relatime shared:30 - cgroup2 cgroup2 rw,nsdelegate
  998. 169 37 0:26 /BTR_var /var rw,relatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=257,subvol=/BTR_var
  999. 170 37 0:26 /BTR_.snapshots /.snapshots rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=260,subvol=/BTR_.snapshots
  1000. 171 37 0:26 /BTR_usrlcl /usr/local rw,noatime - btrfs /dev/nvme0n1p2 rw,compress=zstd:3,ssd,space_cache=v2,commit=120,subvolid=258,subvol=/BTR_usrlcl
  1001.  
  1002. $ lsmod
  1003. Module Size Used by
  1004. algif_hash 16384 0
  1005. af_alg 32768 1 algif_hash
  1006. ctr 16384 2
  1007. ccm 20480 6
  1008. 8021q 36864 0
  1009. garp 16384 1 8021q
  1010. mrp 20480 1 8021q
  1011. stp 16384 1 garp
  1012. llc 16384 2 stp,garp
  1013. joydev 28672 0
  1014. rmi_smbus 16384 0
  1015. rmi_core 77824 1 rmi_smbus
  1016. snd_sof_pci_intel_skl 16384 0
  1017. snd_sof_intel_hda_common 163840 1 snd_sof_pci_intel_skl
  1018. soundwire_intel 45056 1 snd_sof_intel_hda_common
  1019. soundwire_generic_allocation 16384 1 soundwire_intel
  1020. soundwire_cadence 32768 1 soundwire_intel
  1021. snd_sof_intel_hda 20480 1 snd_sof_intel_hda_common
  1022. snd_sof_pci 24576 2 snd_sof_intel_hda_common,snd_sof_pci_intel_skl
  1023. snd_sof_xtensa_dsp 16384 1 snd_sof_intel_hda_common
  1024. snd_sof 233472 2 snd_sof_pci,snd_sof_intel_hda_common
  1025. snd_sof_utils 20480 1 snd_sof
  1026. soundwire_bus 86016 3 soundwire_intel,soundwire_generic_allocation,soundwire_cadence
  1027. snd_hda_codec_hdmi 77824 1
  1028. snd_soc_avs 135168 0
  1029. snd_soc_hda_codec 24576 1 snd_soc_avs
  1030. snd_soc_skl 163840 0
  1031. snd_soc_hdac_hda 24576 2 snd_sof_intel_hda_common,snd_soc_skl
  1032. snd_hda_ext_core 28672 5 snd_soc_avs,snd_soc_hda_codec,snd_sof_intel_hda_common,snd_soc_hdac_hda,snd_soc_skl
  1033. snd_soc_sst_ipc 20480 1 snd_soc_skl
  1034. snd_soc_sst_dsp 28672 1 snd_soc_skl
  1035. snd_ctl_led 24576 0
  1036. snd_soc_acpi_intel_match 61440 3 snd_sof_intel_hda_common,snd_soc_skl,snd_sof_pci_intel_skl
  1037. snd_soc_acpi 16384 3 snd_soc_acpi_intel_match,snd_sof_intel_hda_common,snd_soc_skl
  1038. iwlmvm 376832 0
  1039. snd_soc_core 290816 7 snd_soc_avs,snd_soc_hda_codec,soundwire_intel,snd_sof,snd_sof_intel_hda_common,snd_soc_hdac_hda,snd_soc_skl
  1040. snd_hda_codec_realtek 147456 1
  1041. snd_compress 28672 1 snd_soc_core
  1042. snd_pcm_dmaengine 16384 1 snd_soc_core
  1043. snd_hda_codec_generic 90112 1 snd_hda_codec_realtek
  1044. ac97_bus 16384 1 snd_soc_core
  1045. intel_tcc_cooling 16384 0
  1046. snd_hda_intel 49152 0
  1047. x86_pkg_temp_thermal 20480 0
  1048. iTCO_wdt 16384 0
  1049. intel_powerclamp 20480 0
  1050. intel_pmc_bxt 16384 1 iTCO_wdt
  1051. coretemp 20480 0
  1052. i2c_designware_platform 20480 0
  1053. snd_intel_dspcfg 32768 5 snd_soc_avs,snd_hda_intel,snd_sof,snd_sof_intel_hda_common,snd_soc_skl
  1054. ee1004 20480 0
  1055. iTCO_vendor_support 16384 1 iTCO_wdt
  1056. mei_wdt 16384 0
  1057. mei_hdcp 24576 0
  1058. mei_pxp 20480 0
  1059. mac80211 1048576 1 iwlmvm
  1060. snd_intel_sdw_acpi 20480 2 snd_sof_intel_hda_common,snd_intel_dspcfg
  1061. i2c_designware_core 32768 1 i2c_designware_platform
  1062. intel_rapl_msr 20480 0
  1063. libarc4 16384 1 mac80211
  1064. snd_hda_codec 143360 9 snd_hda_codec_generic,snd_soc_avs,snd_hda_codec_hdmi,snd_soc_hda_codec,snd_hda_intel,snd_hda_codec_realtek,snd_soc_hdac_hda,snd_soc_skl,snd_sof_intel_hda
  1065. kvm_intel 364544 0
  1066. iwlwifi 323584 1 iwlmvm
  1067. uvcvideo 126976 0
  1068. snd_hda_core 94208 12 snd_hda_codec_generic,snd_soc_avs,snd_hda_codec_hdmi,snd_soc_hda_codec,snd_hda_intel,snd_hda_ext_core,snd_hda_codec,snd_hda_codec_realtek,snd_sof_intel_hda_common,snd_soc_hdac_hda,snd_soc_skl,snd_sof_intel_hda
  1069. kvm 942080 1 kvm_intel
  1070. irqbypass 16384 1 kvm
  1071. rapl 16384 0
  1072. videobuf2_vmalloc 20480 1 uvcvideo
  1073. intel_cstate 20480 0
  1074. input_leds 16384 0
  1075. psmouse 172032 0
  1076. pcspkr 16384 0
  1077. i2c_i801 36864 0
  1078. snd_hwdep 16384 1 snd_hda_codec
  1079. videobuf2_memops 20480 1 videobuf2_vmalloc
  1080. think_lmi 36864 0
  1081. videobuf2_v4l2 28672 1 uvcvideo
  1082. intel_wmi_thunderbolt 20480 0
  1083. wmi_bmof 16384 0
  1084. i2c_smbus 20480 1 i2c_i801
  1085. firmware_attributes_class 16384 1 think_lmi
  1086. snd_pcm 135168 13 snd_soc_avs,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,soundwire_intel,snd_sof,snd_sof_intel_hda_common,snd_compress,snd_soc_core,snd_sof_utils,snd_soc_skl,snd_hda_core,snd_pcm_dmaengine
  1087. thunderbolt 344064 0
  1088. cfg80211 962560 3 iwlmvm,iwlwifi,mac80211
  1089. mei_me 49152 3
  1090. videobuf2_common 61440 4 videobuf2_vmalloc,videobuf2_v4l2,uvcvideo,videobuf2_memops
  1091. intel_lpss_pci 28672 0
  1092. intel_lpss 16384 1 intel_lpss_pci
  1093. btusb 61440 0
  1094. processor_thermal_device_pci_legacy 16384 0
  1095. mei 131072 7 mei_wdt,mei_hdcp,mei_pxp,mei_me
  1096. idma64 20480 0
  1097. btrtl 28672 1 btusb
  1098. intel_soc_dts_iosf 20480 1 processor_thermal_device_pci_legacy
  1099. virt_dma 20480 1 idma64
  1100. btbcm 24576 1 btusb
  1101. sd_mod 57344 0
  1102. videodev 245760 3 videobuf2_v4l2,uvcvideo,videobuf2_common
  1103. intel_pch_thermal 20480 0
  1104. processor_thermal_device 20480 1 processor_thermal_device_pci_legacy
  1105. btintel 40960 1 btusb
  1106. processor_thermal_rfim 16384 1 processor_thermal_device
  1107. mc 61440 4 videodev,videobuf2_v4l2,uvcvideo,videobuf2_common
  1108. processor_thermal_mbox 16384 2 processor_thermal_rfim,processor_thermal_device
  1109. btmtk 16384 1 btusb
  1110. intel_xhci_usb_role_switch 16384 0
  1111. processor_thermal_rapl 20480 1 processor_thermal_device
  1112. roles 16384 1 intel_xhci_usb_role_switch
  1113. intel_rapl_common 28672 2 intel_rapl_msr,processor_thermal_rapl
  1114. thermal 28672 0
  1115. thinkpad_acpi 126976 0
  1116. ledtrig_audio 16384 3 snd_ctl_led,snd_hda_codec_generic,thinkpad_acpi
  1117. platform_profile 16384 1 thinkpad_acpi
  1118. int3403_thermal 20480 0
  1119. int340x_thermal_zone 20480 2 int3403_thermal,processor_thermal_device
  1120. ac 20480 0
  1121. evdev 24576 19
  1122. mac_hid 16384 0
  1123. tiny_power_button 16384 0
  1124. int3400_thermal 20480 0
  1125. acpi_thermal_rel 16384 1 int3400_thermal
  1126. button 24576 0
  1127. acpi_pad 24576 0
  1128. snd_seq 90112 0
  1129. snd_seq_device 16384 1 snd_seq
  1130. snd_timer 45056 2 snd_seq,snd_pcm
  1131. snd 102400 15 snd_ctl_led,snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek,snd_sof,snd_timer,snd_compress,thinkpad_acpi,snd_soc_core,snd_pcm
  1132. soundcore 16384 2 snd_ctl_led,snd
  1133. vhost_vsock 24576 0
  1134. vmw_vsock_virtio_transport_common 36864 1 vhost_vsock
  1135. vsock 45056 2 vmw_vsock_virtio_transport_common,vhost_vsock
  1136. vhost_net 36864 0
  1137. vhost 45056 2 vhost_vsock,vhost_net
  1138. vhost_iotlb 16384 1 vhost
  1139. tap 28672 1 vhost_net
  1140. uhid 20480 0
  1141. hci_vhci 16384 0
  1142. bluetooth 856064 7 btrtl,btmtk,btintel,btbcm,btusb,hci_vhci
  1143. ecdh_generic 16384 1 bluetooth
  1144. rfkill 28672 6 iwlmvm,bluetooth,thinkpad_acpi,cfg80211
  1145. ecc 36864 1 ecdh_generic
  1146. crc16 16384 1 bluetooth
  1147. vfio_iommu_type1 45056 0
  1148. vfio 40960 1 vfio_iommu_type1
  1149. uinput 20480 0
  1150. userio 16384 0
  1151. ppp_generic 49152 0
  1152. slhc 20480 1 ppp_generic
  1153. tun 61440 1 vhost_net
  1154. loop 32768 0
  1155. nvram 16384 1 thinkpad_acpi
  1156. cuse 16384 0
  1157. dm_mod 155648 0
  1158. hid_microsoft 16384 0
  1159. ff_memless 20480 1 hid_microsoft
  1160. hid_generic 16384 0
  1161. usbhid 57344 0
  1162. hid 139264 4 usbhid,hid_microsoft,hid_generic,uhid
  1163. binfmt_misc 24576 0
  1164. fuse 163840 11 cuse
  1165. nls_iso8859_1 16384 1
  1166. nls_cp437 20480 1
  1167. vfat 24576 1
  1168. fat 81920 1 vfat
  1169. uas 32768 0
  1170. usb_storage 73728 1 uas
  1171. scsi_mod 200704 3 sd_mod,usb_storage,uas
  1172. scsi_common 16384 3 scsi_mod,usb_storage,uas
  1173. i915 3092480 7
  1174. i2c_algo_bit 16384 1 i915
  1175. drm_buddy 20480 1 i915
  1176. intel_gtt 24576 1 i915
  1177. drm_display_helper 159744 1 i915
  1178. drm_kms_helper 163840 2 drm_display_helper,i915
  1179. syscopyarea 16384 1 drm_kms_helper
  1180. sysfillrect 16384 1 drm_kms_helper
  1181. sysimgblt 16384 1 drm_kms_helper
  1182. fb_sys_fops 16384 1 drm_kms_helper
  1183. cec 69632 2 drm_display_helper,i915
  1184. rc_core 57344 1 cec
  1185. crct10dif_pclmul 16384 1
  1186. crc32_pclmul 16384 0
  1187. ttm 77824 1 i915
  1188. polyval_clmulni 16384 0
  1189. polyval_generic 16384 1 polyval_clmulni
  1190. xhci_pci 20480 0
  1191. gf128mul 16384 1 polyval_generic
  1192. xhci_pci_renesas 20480 1 xhci_pci
  1193. ghash_clmulni_intel 16384 0
  1194. sha512_ssse3 49152 0
  1195. drm 577536 10 drm_kms_helper,drm_display_helper,drm_buddy,thinkpad_acpi,i915,ttm
  1196. xhci_hcd 274432 1 xhci_pci
  1197. aesni_intel 393216 4
  1198. crypto_simd 16384 1 aesni_intel
  1199. cryptd 24576 2 crypto_simd,ghash_clmulni_intel
  1200. serio_raw 20480 0
  1201. usbcore 286720 7 xhci_hcd,usbhid,usb_storage,uvcvideo,btusb,xhci_pci,uas
  1202. usb_common 16384 3 xhci_hcd,usbcore,uvcvideo
  1203. agpgart 45056 3 intel_gtt,ttm,drm
  1204. video 61440 2 thinkpad_acpi,i915
  1205. battery 28672 1 thinkpad_acpi
  1206. wmi 32768 4 video,intel_wmi_thunderbolt,wmi_bmof,think_lmi
  1207. btrfs 1654784 1
  1208. blake2b_generic 20480 0
  1209. libcrc32c 16384 1 btrfs
  1210. crc32c_generic 16384 0
  1211. crc32c_intel 24576 2
  1212. xor 24576 1 btrfs
  1213. raid6_pq 118784 1 btrfs
  1214.  
  1215. $ ps
  1216. PID USER TIME COMMAND
  1217. 1 root 0:00 runit
  1218. 2 root 0:00 [kthreadd]
  1219. 3 root 0:00 [rcu_gp]
  1220. 4 root 0:00 [rcu_par_gp]
  1221. 5 root 0:00 [slub_flushwq]
  1222. 6 root 0:00 [netns]
  1223. 8 root 0:00 [kworker/0:0H-ev]
  1224. 10 root 0:00 [mm_percpu_wq]
  1225. 11 root 0:00 [rcu_tasks_kthre]
  1226. 12 root 0:00 [rcu_tasks_rude_]
  1227. 13 root 0:00 [rcu_tasks_trace]
  1228. 14 root 0:00 [ksoftirqd/0]
  1229. 15 root 0:00 [rcu_preempt]
  1230. 16 root 0:00 [migration/0]
  1231. 17 root 0:00 [idle_inject/0]
  1232. 19 root 0:00 [cpuhp/0]
  1233. 20 root 0:00 [cpuhp/1]
  1234. 21 root 0:00 [idle_inject/1]
  1235. 22 root 0:00 [migration/1]
  1236. 23 root 0:00 [ksoftirqd/1]
  1237. 25 root 0:00 [kworker/1:0H-ev]
  1238. 26 root 0:00 [cpuhp/2]
  1239. 27 root 0:00 [idle_inject/2]
  1240. 28 root 0:00 [migration/2]
  1241. 29 root 0:00 [ksoftirqd/2]
  1242. 31 root 0:00 [kworker/2:0H-ev]
  1243. 32 root 0:00 [cpuhp/3]
  1244. 33 root 0:00 [idle_inject/3]
  1245. 34 root 0:00 [migration/3]
  1246. 35 root 0:00 [ksoftirqd/3]
  1247. 37 root 0:00 [kworker/3:0H-ev]
  1248. 38 root 0:00 [cpuhp/4]
  1249. 39 root 0:00 [idle_inject/4]
  1250. 40 root 0:00 [migration/4]
  1251. 41 root 0:00 [ksoftirqd/4]
  1252. 43 root 0:00 [kworker/4:0H-ev]
  1253. 44 root 0:00 [cpuhp/5]
  1254. 45 root 0:00 [idle_inject/5]
  1255. 46 root 0:00 [migration/5]
  1256. 47 root 0:00 [ksoftirqd/5]
  1257. 49 root 0:00 [kworker/5:0H-ev]
  1258. 50 root 0:00 [cpuhp/6]
  1259. 51 root 0:00 [idle_inject/6]
  1260. 52 root 0:00 [migration/6]
  1261. 53 root 0:00 [ksoftirqd/6]
  1262. 55 root 0:00 [kworker/6:0H-ev]
  1263. 56 root 0:00 [cpuhp/7]
  1264. 57 root 0:00 [idle_inject/7]
  1265. 58 root 0:00 [migration/7]
  1266. 59 root 0:00 [ksoftirqd/7]
  1267. 61 root 0:00 [kworker/7:0H-ev]
  1268. 62 root 0:00 [kdevtmpfs]
  1269. 63 root 0:00 [inet_frag_wq]
  1270. 64 root 0:00 [kauditd]
  1271. 65 root 0:00 [khungtaskd]
  1272. 66 root 0:00 [oom_reaper]
  1273. 68 root 0:00 [writeback]
  1274. 70 root 0:00 [kcompactd0]
  1275. 71 root 0:00 [ksmd]
  1276. 72 root 0:00 [khugepaged]
  1277. 73 root 0:00 [kintegrityd]
  1278. 74 root 0:00 [kblockd]
  1279. 75 root 0:00 [blkcg_punt_bio]
  1280. 76 root 0:00 [kworker/1:1-eve]
  1281. 78 root 0:00 [edac-poller]
  1282. 79 root 0:00 [devfreq_wq]
  1283. 80 root 0:00 [watchdogd]
  1284. 82 root 0:00 [kworker/2:1-ine]
  1285. 83 root 0:00 [kworker/2:1H-ev]
  1286. 84 root 0:00 [kworker/6:1-rcu]
  1287. 85 root 0:00 [kswapd0]
  1288. 91 root 0:00 [kthrotld]
  1289. 96 root 0:00 [irq/122-pciehp]
  1290. 97 root 0:00 [irq/124-pciehp]
  1291. 98 root 0:00 [irq/127-pciehp]
  1292. 101 root 0:00 [xenbus_probe]
  1293. 102 root 0:00 [nvme-wq]
  1294. 103 root 0:00 [nvme-reset-wq]
  1295. 104 root 0:00 [nvme-delete-wq]
  1296. 105 root 0:00 [mld]
  1297. 106 root 0:00 [kworker/3:1H-ev]
  1298. 107 root 0:00 [ipv6_addrconf]
  1299. 113 root 0:00 [kstrp]
  1300. 115 root 0:00 [zswap-shrink]
  1301. 145 root 0:00 [charger_manager]
  1302. 303 root 0:00 [kworker/1:1H-ev]
  1303. 311 root 0:00 [kworker/4:1H-ev]
  1304. 312 root 0:00 [kworker/6:1H-ev]
  1305. 313 root 0:00 [kworker/0:1H-ev]
  1306. 314 root 0:00 [kworker/5:1H-ev]
  1307. 315 root 0:00 [kworker/7:1H-kb]
  1308. 338 root 0:00 [cryptd]
  1309. 391 root 0:00 [card0-crtc0]
  1310. 392 root 0:00 [card0-crtc1]
  1311. 393 root 0:00 [card0-crtc2]
  1312. 413 root 0:00 [btrfs-worker]
  1313. 414 root 0:00 [btrfs-worker-hi]
  1314. 415 root 0:00 [btrfs-delalloc]
  1315. 416 root 0:00 [btrfs-flush_del]
  1316. 417 root 0:00 [btrfs-cache]
  1317. 418 root 0:00 [btrfs-fixup]
  1318. 419 root 0:00 [btrfs-endio]
  1319. 420 root 0:00 [btrfs-endio-met]
  1320. 421 root 0:00 [btrfs-endio-rai]
  1321. 422 root 0:00 [btrfs-rmw]
  1322. 423 root 0:00 [btrfs-endio-wri]
  1323. 424 root 0:00 [btrfs-compresse]
  1324. 425 root 0:00 [btrfs-freespace]
  1325. 426 root 0:00 [btrfs-delayed-m]
  1326. 427 root 0:00 [btrfs-qgroup-re]
  1327. 428 root 0:00 [btrfs-cleaner]
  1328. 429 root 0:00 [btrfs-transacti]
  1329. 520 root 0:00 [scsi_eh_0]
  1330. 521 root 0:00 [scsi_tmf_0]
  1331. 522 root 0:00 [usb-storage]
  1332. 524 root 0:00 [uas]
  1333. 1582 root 0:05 /bedrock/libexec/etcfs -o allow_other /etc
  1334. 1848 root 0:02 /bedrock/libexec/crossfs -o allow_other /bedrock/cross
  1335. 2178 foreman 0:00 {brl-report} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report --overwrite report.txt
  1336. 2180 foreman 0:00 {brl-report} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report --overwrite report.txt
  1337. 2181 foreman 0:00 sed s/^/ /
  1338. 2182 foreman 0:00 {ps} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report --overwrite report.txt
  1339. 3505 root 0:16 /bedrock/libexec/etcfs -o allow_other /etc
  1340. 5915 root 0:00 /bedrock/libexec/etcfs -o allow_other /etc
  1341. 8405 root 0:00 /bedrock/libexec/etcfs -o allow_other /etc
  1342. 11244 root 0:00 [kworker/7:2-eve]
  1343. 11246 root 0:00 [ktpacpid]
  1344. 11251 root 0:00 [acpi_thermal_pm]
  1345. 11260 root 0:00 [cfg80211]
  1346. 11261 root 0:01 [irq/159-iwlwifi]
  1347. 11269 root 0:32 [irq/161-rmi4_sm]
  1348. 11299 root 0:00 runsvdir -P /run/runit/runsvdir/current log: ent "button/left LEFT 00000080 00000000 K" rule from 21338[0:0] matched notifying client 21338[0:0] rule from 21338[0:0] matched notifying client 21338[0:0] rule from /etc/acpi/events/anything matched executing action "/etc/acpi/handler.sh button/left LEFT 00000080 00000000 K" action exited with status 0 3 total rules matched completed input layer event "button/left LEFT 00000080 00000000 K"
  1349. 11305 root 0:00 runsv wpa_supplicant
  1350. 11306 root 0:00 runsv dhcpcd
  1351. 11307 root 0:00 runsv agetty-tty1
  1352. 11308 root 0:00 runsv agetty-tty2
  1353. 11310 root 0:00 runsv agetty-tty3
  1354. 11311 root 0:00 runsv agetty-tty4
  1355. 11315 root 0:00 runsv agetty-tty5
  1356. 11316 root 0:00 wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant-wlp3s0.conf -i wlp3s0 -M -c /etc/wpa_supplicant/wpa_supplicant.conf -s
  1357. 11317 root 0:00 runsv agetty-tty6
  1358. 11319 root 0:00 dhcpcd: [manager] [ip4] [ip6]
  1359. 11320 root 0:00 runsv udevd
  1360. 11325 root 0:00 runsv ntpd
  1361. 11330 root 0:00 runsv acpid
  1362. 11331 root 0:00 login -- foreman
  1363. 11332 root 0:00 agetty tty3 38400 linux
  1364. 11333 root 0:00 agetty tty4 38400 linux
  1365. 11334 root 0:00 agetty tty6 38400 linux
  1366. 11335 root 0:00 udevd
  1367. 11337 root 0:00 agetty tty5 38400 linux
  1368. 11339 root 0:00 acpid -f -l
  1369. 11345 root 0:00 logger -t openntpd -p daemon notice
  1370. 11346 root 0:00 openntpd -d
  1371. 11347 openntpd 0:00 openntpd: ntp engine
  1372. 11348 openntpd 0:00 openntpd: dns engine
  1373. 11393 root 0:00 login -- foreman
  1374. 11471 foreman 0:10 -zsh
  1375. 16057 root 0:00 [irq/129-mei_me]
  1376. 19620 root 0:00 [kworker/u16:6-b]
  1377. 20165 foreman 0:00 -zsh
  1378. 20344 root 0:00 doas htop
  1379. 20345 root 0:42 htop
  1380. 20639 root 0:00 [kworker/u17:1-r]
  1381. 20966 root 0:00 [kworker/u16:0-b]
  1382. 21176 root 0:01 [kworker/0:2-eve]
  1383. 21316 root 0:00 [kworker/u16:1-b]
  1384. 21318 root 0:00 [kworker/u16:3-b]
  1385. 21319 root 0:00 [kworker/u16:4-b]
  1386. 21334 root 0:00 doas lxdm
  1387. 21335 root 0:00 /usr/bin/lxdm-binary
  1388. 21338 root 1:02 /usr/libexec/Xorg -background none :0 vt07 -nolisten tcp -novtswitch -auth /var/run/lxdm/lxdm-:0.auth
  1389. 21358 root 0:00 dbus-launch --autolaunch 3d672145de024243962874725cc39232 --binary-syntax --close-stderr
  1390. 21359 root 0:00 /usr/bin/dbus-daemon --syslog-only --fork --print-pid 5 --print-address 7 --session
  1391. 21361 root 0:00 /usr/libexec/at-spi-bus-launcher
  1392. 21365 root 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/root/.cache/at-spi/bus_0
  1393. 21386 root 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session
  1394. 21389 root 0:00 /usr/libexec/lxdm-session
  1395. 21390 root 0:00 [kworker/u16:5-b]
  1396. 21392 root 0:00 [kworker/u16:8-b]
  1397. 21393 root 0:00 [kworker/u16:9-b]
  1398. 21414 foreman 0:00 xfce4-session
  1399. 21493 foreman 0:00 dbus-launch --sh-syntax --exit-with-session
  1400. 21494 foreman 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
  1401. 21578 foreman 0:00 /usr/lib64/xfce4/xfconf/xfconfd
  1402. 21590 foreman 0:00 /usr/bin/ssh-agent -s
  1403. 21595 foreman 0:00 /usr/bin/gpg-agent --sh --daemon
  1404. 21596 foreman 0:13 xfwm4
  1405. 21612 foreman 0:00 xfsettingsd
  1406. 21615 foreman 0:06 xfce4-panel
  1407. 21619 foreman 0:00 Thunar --daemon
  1408. 21624 foreman 0:00 {panel-6-systray} /usr/lib64/xfce4/panel/wrapper-2.0 /usr/lib64/xfce4/panel/plugins/libsystray.so 6 25165836 systray Status Tray Plugin Provides status notifier items (application indicators) and legacy systray items
  1409. 21625 foreman 0:00 {panel-10-notifi} /usr/lib64/xfce4/panel/wrapper-2.0 /usr/lib64/xfce4/panel/plugins/libnotification-plugin.so 10 25165837 notification-plugin Notification Plugin Notification plugin for the Xfce panel
  1410. 21630 foreman 0:00 {panel-14-action} /usr/lib64/xfce4/panel/wrapper-2.0 /usr/lib64/xfce4/panel/plugins/libactions.so 14 25165838 actions Action Buttons Log out, lock or other system actions
  1411. 21661 foreman 0:00 xfdesktop
  1412. 21693 foreman 7:36 /usr/bin/firefox
  1413. 21699 foreman 0:00 xfce4-power-manager
  1414. 21754 foreman 0:00 /usr/lib64/xfce4/notifyd/xfce4-notifyd
  1415. 21762 root 0:00 [kworker/u17:0-r]
  1416. 21823 foreman 0:00 /usr/libexec/at-spi-bus-launcher
  1417. 21830 foreman 0:00 {Socket Process} /usr/lib/firefox/firefox -contentproc -parentBuildID 20230131151141 -prefsLen 25501 -prefMapSize 227544 -appDir /usr/lib/firefox/browser {ef9dbe1c-7d3d-445c-b820-dbd046aa9dba} 21693 socket
  1418. 21855 foreman 0:01 {WebExtensions} /usr/lib/firefox/firefox -contentproc -childID 1 -isForBrowser -prefsLen 25501 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {d93adfd8-9576-446d-874c-09b57d04bd6a} 21693 tab
  1419. 21870 foreman 0:15 {Privileged Cont} /usr/lib/firefox/firefox -contentproc -childID 2 -isForBrowser -prefsLen 26422 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {a9eced52-269e-44aa-9c75-c78646d11b0e} 21693 tab
  1420. 21986 foreman 1:18 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 5 -isForBrowser -prefsLen 31494 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {c612173c-62e1-4877-aaca-20ac960a4afd} 21693 tab
  1421. 22180 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 8 -isForBrowser -prefsLen 32389 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {98aab7d1-520d-49dd-86dd-c9622cade34f} 21693 tab
  1422. 22234 foreman 0:43 {RDD Process} /usr/lib/firefox/firefox -contentproc -parentBuildID 20230131151141 -prefsLen 32389 -prefMapSize 227544 -appDir /usr/lib/firefox/browser {92212717-184f-4726-81d7-3485f6b07051} 21693 rdd
  1423. 22236 foreman 0:04 {Utility Process} /usr/lib/firefox/firefox -contentproc -parentBuildID 20230131151141 -sandboxingKind 0 -prefsLen 32389 -prefMapSize 227544 -appDir /usr/lib/firefox/browser {67c1ff18-c71e-4fa7-9642-ebf90de90931} 21693 utility
  1424. 22305 root 0:00 [kworker/4:0-eve]
  1425. 22306 root 0:00 [kworker/5:0-eve]
  1426. 22421 foreman 0:05 /usr/bin/xfce4-terminal
  1427. 22446 foreman 0:04 zsh
  1428. 22479 foreman 0:34 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 12 -isForBrowser -prefsLen 32389 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {261c2dbd-66da-4d35-a064-b4555bc6cf7c} 21693 tab
  1429. 22546 root 0:00 [kworker/6:2-eve]
  1430. 22660 root 0:00 [kworker/3:1-eve]
  1431. 22689 foreman 0:41 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 15 -isForBrowser -prefsLen 32403 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {1534c009-8cfa-4cec-a6c9-8a5c80209e60} 21693 tab
  1432. 23386 foreman 0:03 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 38 -isForBrowser -prefsLen 32403 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {824d154b-8ccf-4ff7-8246-14831ae1e6f3} 21693 tab
  1433. 23540 foreman 0:03 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 40 -isForBrowser -prefsLen 32417 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {0c3d6366-4f17-49ca-904e-e818bad405ed} 21693 tab
  1434. 23559 root 0:00 [kworker/7:1-ine]
  1435. 23657 root 0:00 [kworker/1:0-eve]
  1436. 24189 root 0:00 [kworker/2:2-eve]
  1437. 24261 root 0:00 [kworker/u17:2+i]
  1438. 24263 root 0:00 [kworker/5:2-eve]
  1439. 24264 root 0:00 [kworker/3:2-eve]
  1440. 24265 root 0:00 [kworker/4:2-eve]
  1441. 24813 foreman 0:03 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 62 -isForBrowser -prefsLen 32431 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {92452f5a-7928-49f8-a472-783957e55047} 21693 tab
  1442. 24832 foreman 0:11 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 63 -isForBrowser -prefsLen 32431 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {24b8aaec-97f3-4bb4-bb66-5dfbda1c36d5} 21693 tab
  1443. 24911 root 0:00 [kworker/u16:2-e]
  1444. 24912 root 0:00 [kworker/u16:7-b]
  1445. 24950 root 0:00 [kworker/0:0-eve]
  1446. 25019 foreman 0:23 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 64 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {5986cf68-ccb1-4dcb-90f5-436a8e1e8e39} 21693 tab
  1447. 25046 root 0:00 [kworker/6:0-ine]
  1448. 25080 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 66 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {15fab621-0f01-499d-bc99-cd18ae51ce40} 21693 tab
  1449. 25145 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 67 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {979ae24a-3def-40df-8900-4036a12810e0} 21693 tab
  1450. 25183 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 68 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {42228dd3-3d03-43c8-9278-422c342a22af} 21693 tab
  1451. 25339 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 69 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {6b01ec2d-eefa-446b-95a4-92bf5cd58d6b} 21693 tab
  1452. 25373 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 70 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {482fbfef-ec9d-447d-a30b-0fec4dd58396} 21693 tab
  1453. 25429 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 71 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {f881f0bd-e321-45d3-af7f-657783cc7f93} 21693 tab
  1454. 25452 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 72 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {25ebfa8d-eefb-4af8-9cc0-1dbe9017faa0} 21693 tab
  1455. 25815 root 0:00 [kworker/7:0-eve]
  1456. 25820 foreman 0:35 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 78 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {c2bfe9c9-13c7-4ec5-a80a-1292d35402c0} 21693 tab
  1457. 25928 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 79 -isForBrowser -prefsLen 32502 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {00bb4686-8f32-435c-b63d-8bc2a79d74a0} 21693 tab
  1458. 25992 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 80 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {82628aa3-04c8-4fc8-8eeb-ce8e0b2430f1} 21693 tab
  1459. 26026 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 81 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {84e311b5-a3ec-4434-9632-ca39a17bbe53} 21693 tab
  1460. 26059 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 82 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {70cbabff-a1f5-4456-91be-26d5fbcf037b} 21693 tab
  1461. 26146 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 84 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {61e56cc1-ce65-49e1-90c7-aba1b6e7c0c1} 21693 tab
  1462. 26150 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 85 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {9c5d6c90-c4e0-4657-893b-e3cf769c9ec8} 21693 tab
  1463. 26228 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 86 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {a2b874f2-36cd-4bf9-855a-325165655c4d} 21693 tab
  1464. 26231 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 87 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {43595591-2bd8-4406-bac9-ecc03e9fb684} 21693 tab
  1465. 26295 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 88 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {ab218975-bb38-4a1e-b4af-13cbf3fa4cd0} 21693 tab
  1466. 26325 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 89 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {9f1d163e-210d-4f68-a2f7-ccad445b05ff} 21693 tab
  1467. 26390 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 90 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {1a24f737-5578-4d85-8449-dfd322806713} 21693 tab
  1468. 26413 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 91 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {e5401ae0-2b12-4ab4-af90-9413623f5845} 21693 tab
  1469. 26415 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 92 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {be9c24c6-470e-46e0-bff5-e5fa57a20cbc} 21693 tab
  1470. 26421 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 93 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {c6242048-e601-4339-87e6-c404207c3d19} 21693 tab
  1471. 26572 foreman 0:00 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 95 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {1ff1ca0f-c32a-4b4f-8058-71114e0d330d} 21693 tab
  1472. 26578 foreman 0:01 {Isolated Web Co} /usr/lib/firefox/firefox -contentproc -childID 97 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {55534256-30ce-48ff-afc8-2249edaca279} 21693 tab
  1473. 26703 foreman 0:00 {Web Content} /usr/lib/firefox/firefox -contentproc -childID 98 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {e6356c31-3253-4e1a-92b4-955b94a2e5cf} 21693 tab
  1474. 26760 foreman 0:00 {Web Content} /usr/lib/firefox/firefox -contentproc -childID 99 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {5b52b3a2-d3a3-4ded-a5fc-ddb4fd97b272} 21693 tab
  1475. 26811 foreman 0:00 /usr/bin/xfce4-screensaver
  1476. 26812 root 0:00 [kworker/2:0-eve]
  1477. 26833 foreman 0:00 {Web Content} /usr/lib/firefox/firefox -contentproc -childID 100 -isForBrowser -prefsLen 32516 -prefMapSize 227544 -jsInitLen 247032 -parentBuildID 20230131151141 -appDir /usr/lib/firefox/browser {e01cbc43-5835-4fe8-a666-ffaef52084f2} 21693 tab
  1478. 26878 foreman 0:02 mousepad
  1479. 26895 root 0:00 [kworker/u16:10-]
  1480. 26897 root 0:00 [kworker/u16:11-]
  1481. 26898 root 0:00 [kworker/u16:12-]
  1482. 26967 foreman 0:00 {brl-report} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report --overwrite report.txt
  1483.  
  1484. $ cd /proc && for x in *; do echo "$x" | grep -q "^[0-9]*$" && echo "$x: $(/bedrock/bin/brl which -p "$x" 2>/dev/null)"; done | sort -n
  1485. 1: void
  1486. 2: void
  1487. 3: void
  1488. 4: void
  1489. 5: void
  1490. 6: void
  1491. 8: void
  1492. 10: void
  1493. 11: void
  1494. 12: void
  1495. 13: void
  1496. 14: void
  1497. 15: void
  1498. 16: void
  1499. 17: void
  1500. 19: void
  1501. 20: void
  1502. 21: void
  1503. 22: void
  1504. 23: void
  1505. 25: void
  1506. 26: void
  1507. 27: void
  1508. 28: void
  1509. 29: void
  1510. 31: void
  1511. 32: void
  1512. 33: void
  1513. 34: void
  1514. 35: void
  1515. 37: void
  1516. 38: void
  1517. 39: void
  1518. 40: void
  1519. 41: void
  1520. 43: void
  1521. 44: void
  1522. 45: void
  1523. 46: void
  1524. 47: void
  1525. 49: void
  1526. 50: void
  1527. 51: void
  1528. 52: void
  1529. 53: void
  1530. 55: void
  1531. 56: void
  1532. 57: void
  1533. 58: void
  1534. 59: void
  1535. 61: void
  1536. 62:
  1537. 63: void
  1538. 64: void
  1539. 65: void
  1540. 66: void
  1541. 68: void
  1542. 70: void
  1543. 71: void
  1544. 72: void
  1545. 73: void
  1546. 74: void
  1547. 75: void
  1548. 76: void
  1549. 78: void
  1550. 79: void
  1551. 80: void
  1552. 82: void
  1553. 83: void
  1554. 84: void
  1555. 85: void
  1556. 91: void
  1557. 96: void
  1558. 97: void
  1559. 98: void
  1560. 101: void
  1561. 102: void
  1562. 103: void
  1563. 104: void
  1564. 105: void
  1565. 106: void
  1566. 107: void
  1567. 113: void
  1568. 115: void
  1569. 145: void
  1570. 303: void
  1571. 311: void
  1572. 312: void
  1573. 313: void
  1574. 314: void
  1575. 315: void
  1576. 338: void
  1577. 391: void
  1578. 392: void
  1579. 393: void
  1580. 413: void
  1581. 414: void
  1582. 415: void
  1583. 416: void
  1584. 417: void
  1585. 418: void
  1586. 419: void
  1587. 420: void
  1588. 421: void
  1589. 422: void
  1590. 423: void
  1591. 424: void
  1592. 425: void
  1593. 426: void
  1594. 427: void
  1595. 428: void
  1596. 429: void
  1597. 520: void
  1598. 521: void
  1599. 522: void
  1600. 524: void
  1601. 1582: bedrock
  1602. 1848: bedrock
  1603. 2184: void
  1604. 2186: void
  1605. 2187: void
  1606. 2188: void
  1607. 2189: void
  1608. 3505: void
  1609. 5915: gentoo
  1610. 8405: fedora
  1611. 11244: void
  1612. 11246: void
  1613. 11251: void
  1614. 11260: void
  1615. 11261: void
  1616. 11269: void
  1617. 11299: void
  1618. 11305: void
  1619. 11306: void
  1620. 11307: void
  1621. 11308: void
  1622. 11310: void
  1623. 11311: void
  1624. 11315: void
  1625. 11316: void
  1626. 11317: void
  1627. 11319: void
  1628. 11320: void
  1629. 11325: void
  1630. 11330: void
  1631. 11331: void
  1632. 11332: void
  1633. 11333: void
  1634. 11334: void
  1635. 11335: void
  1636. 11337: void
  1637. 11339: void
  1638. 11345: void
  1639. 11346: void
  1640. 11347:
  1641. 11348: void
  1642. 11393: void
  1643. 11471: void
  1644. 16057: void
  1645. 19620: void
  1646. 20165: void
  1647. 20344: void
  1648. 20345: void
  1649. 20639: void
  1650. 20966: void
  1651. 21176: void
  1652. 21316: void
  1653. 21318: void
  1654. 21319: void
  1655. 21334: void
  1656. 21335: void
  1657. 21338: void
  1658. 21358: void
  1659. 21359: void
  1660. 21361: void
  1661. 21365: void
  1662. 21386: void
  1663. 21389: void
  1664. 21390: void
  1665. 21392: void
  1666. 21393: void
  1667. 21414: void
  1668. 21493: void
  1669. 21494: void
  1670. 21578: void
  1671. 21590: void
  1672. 21595: void
  1673. 21596: void
  1674. 21612: void
  1675. 21615: void
  1676. 21619: void
  1677. 21624: void
  1678. 21625: void
  1679. 21630: void
  1680. 21661: void
  1681. 21693: void
  1682. 21699: void
  1683. 21754: void
  1684. 21762: void
  1685. 21823: void
  1686. 21830:
  1687. 21855:
  1688. 21870:
  1689. 21986:
  1690. 22180:
  1691. 22234:
  1692. 22236: void
  1693. 22305: void
  1694. 22306: void
  1695. 22421: void
  1696. 22446: void
  1697. 22479:
  1698. 22546: void
  1699. 22660: void
  1700. 22689:
  1701. 23386:
  1702. 23540:
  1703. 23559: void
  1704. 23657: void
  1705. 24189: void
  1706. 24261: void
  1707. 24263: void
  1708. 24264: void
  1709. 24265: void
  1710. 24813:
  1711. 24832:
  1712. 24911: void
  1713. 24912: void
  1714. 24950: void
  1715. 25019:
  1716. 25046: void
  1717. 25080:
  1718. 25145:
  1719. 25183:
  1720. 25339:
  1721. 25373:
  1722. 25429:
  1723. 25452:
  1724. 25815: void
  1725. 25820:
  1726. 25928:
  1727. 25992:
  1728. 26026:
  1729. 26059:
  1730. 26146:
  1731. 26150:
  1732. 26228:
  1733. 26231:
  1734. 26295:
  1735. 26325:
  1736. 26390:
  1737. 26413:
  1738. 26415:
  1739. 26421:
  1740. 26572:
  1741. 26578:
  1742. 26703:
  1743. 26760:
  1744. 26811: void
  1745. 26812: void
  1746. 26833:
  1747. 26878: void
  1748. 26895: void
  1749. 26897: void
  1750. 26898: void
  1751. 26967: void
  1752.  
  1753. $ cat /bedrock/cross/.bedrock-config-filesystem
  1754. cat: can't open '/bedrock/cross/.bedrock-config-filesystem': Permission denied
  1755.  
  1756. $ cat /proc/1/root/etc/.bedrock-config-filesystem
  1757. cat: can't open '/proc/1/root/etc/.bedrock-config-filesystem': Permission denied
  1758.  
  1759. $ uname -m
  1760. x86_64
  1761.  
  1762. $ uname -a
  1763. Linux toolbox 6.1.7_1 #1 SMP PREEMPT_DYNAMIC Sun Jan 22 23:52:14 UTC 2023 x86_64 GNU/Linux
  1764.  
  1765. $ env
  1766. color_priority=\033[1;37m\033[101m
  1767. color_link=\033[0;94m
  1768. USER=foreman
  1769. MAIL=/var/mail/foreman
  1770. DOAS_USER=foreman
  1771. color_logo=\033[1;37m
  1772. SSH_AGENT_PID=21590
  1773. ZCON_DIR=/home/foreman/.config/zsh
  1774. SHLVL=4
  1775. OLDPWD=/home/foreman
  1776. HOME=/home/foreman
  1777. MOTD_SHOWN=pam
  1778. color_okay=\033[0;32m
  1779. DESKTOP_SESSION=Xfce Session
  1780. PANEL_GDK_CORE_DEVICE_EVENTS=0
  1781. color_warn=\033[0;93m
  1782. color_term=\033[0;35m
  1783. DBUS_SESSION_BUS_ADDRESS=unix:path=/tmp/dbus-iyKFLeeZ2C,guid=40322948f1a012bea9ca349463da7c8d
  1784. color_strat=\033[0;36m
  1785. COLORTERM=truecolor
  1786. INFOPATH=/bedrock/cross/pin/info:/bedrock/share/info:/usr/local/share/info:/usr/share/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/11/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.39/info:/bedrock/cross/info
  1787. MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins
  1788. color_alias=\033[0;93m
  1789. color_norm=\033[0m
  1790. LOGNAME=foreman
  1791. ZPLUG_DIR=/usr/share/zsh/plugins
  1792. _=/bedrock/bin/brl
  1793. WINDOWID=44040195
  1794. TERMINFO_DIRS=/bedrock/cross/pin/terminfo:/usr/local/share/terminfo:/usr/share/terminfo:/bedrock/cross/terminfo
  1795. color_sub=\033[0;93m
  1796. TERM=xterm-256color
  1797. LC_COLLATE=C
  1798. PATH=/bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/games:/usr/games:/opt/bin:/bedrock/cross/bin
  1799. SESSION_MANAGER=local/toolbox:@/tmp/.ICE-unix/21414,unix/toolbox:/tmp/.ICE-unix/21414
  1800. XDG_MENU_PREFIX=xfce-
  1801. DISPLAY=:0.0
  1802. LANG=en_US.UTF-8
  1803. XDG_CURRENT_DESKTOP=XFCE
  1804. LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.svgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.svg=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=
  1805. XAUTHORITY=/home/foreman/.Xauthority
  1806. color_file=\033[0;32m
  1807. SSH_AUTH_SOCK=/tmp/ssh-XXXXXXpIkKoa/agent.21589
  1808. SHELL=/bedrock/cross/bin/zsh
  1809. color_bedrock=\033[0;93m
  1810. color_alert=\033[0;91m
  1811. color_rcmd=\033[0;31m
  1812. PWD=/home/foreman
  1813. color_disabled_strat=\033[0;34m
  1814. XDG_CONFIG_DIRS=/etc/xdg
  1815. XDG_DATA_DIRS=/bedrock/cross/pin:/usr/local/share:/usr/share:/bedrock/cross:/usr/share
  1816. color_cmd=\033[0;32m
  1817. color_distro=\033[0;93m
  1818. MANPATH=/bedrock/cross/pin/man:/bedrock/share/man:/usr/local/share/man:/usr/share/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/11/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.39/man:/bedrock/cross/man
  1819. VTE_VERSION=7001
  1820. color_misc=\033[0;32m
  1821. color_glue=\033[1;37m
  1822.  
  1823. $ /bedrock/libexec/getfattr -d /bedrock/strata/bedrock
  1824. getfattr: Removing leading '/' from absolute path names
  1825. # file: bedrock/strata/bedrock
  1826. user.bedrock.arch="x86_64"
  1827. user.bedrock.show_boot=""
  1828. user.bedrock.show_cross=""
  1829. user.bedrock.show_init=""
  1830. user.bedrock.show_list=""
  1831. user.bedrock.show_pmm=""
  1832. user.bedrock.stratum="bedrock"
  1833.  
  1834.  
  1835.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement