Advertisement
Guest User

Untitled

a guest
Oct 9th, 2021
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 85.22 KB | None | 0 0
  1. Bedrock Linux system report
  2.  
  3. $ cat /bedrock/etc/bedrock-release
  4. Bedrock Linux 0.7.23 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 = Universal
  28.  
  29. #
  30. # The /etc/locale.gen language lines. For example:
  31. #
  32. # localegen = en_US.UTF-8 UTF-8
  33. #
  34. localegen = pt_BR.UTF-8 UTF-8
  35.  
  36. #
  37. # The POSIX $LANG variable
  38. #
  39. LANG = pt_BR.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 = arch:/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 = /bedrock/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/systemctl = init:$PATH/systemctl
  441. pin/bin/rc-service = init:$PATH/rc-service
  442. pin/bin/rc-status = init:$PATH/rc-status
  443. pin/bin/rc-update = init:$PATH/rc-update
  444. pin/bin/rc-udevadm = init:$PATH/rc-udevadm
  445. pin/bin/sv = init:$PATH/sv
  446. pin/bin/poweroff = init:$PATH/poweroff
  447. pin/bin/reboot = init:$PATH/reboot
  448. pin/bin/shutdown = init:$PATH/shutdown
  449. pin/bin/halt = init:$PATH/halt
  450.  
  451. # [restriction]/restrict items are only restricted if run through strat or
  452. # cross. List any such items here to ensure they are run through cross to be
  453. # restricted.
  454. #
  455. # If a local instance is available, that is preferred over crossing strata
  456. # boundaries, just in case there is some dependency on its specific quirks.
  457. # Ensure all items here use the local alias. If the item is not available
  458. # locally, the call will fall through to un-pinned `bin` above.
  459. pin/bin/apt-key = local:$PATH/apt-key
  460. pin/bin/cave = local:$PATH/cave
  461. pin/bin/cmake = local:$PATH/cmake
  462. pin/bin/debuild = local:$PATH/debuild
  463. pin/bin/dkms = local:$PATH/dkms
  464. pin/bin/dpkg-buildpackage = local:$PATH/dpkg-buildpackage
  465. pin/bin/firecfg = local:$PATH/firecfg
  466. pin/bin/firejail = local:$PATH/firejail
  467. pin/bin/firetools = local:$PATH/firetools
  468. pin/bin/gdb = local:$PATH/gdb
  469. pin/bin/git = local:$PATH/git
  470. pin/bin/kiss = local:$PATH/kiss
  471. pin/bin/makepkg = local:$PATH/makepkg
  472. pin/bin/pkgmk = local:$PATH/pkgmk
  473. pin/bin/prt-get = local:$PATH/prt-get
  474. pin/bin/rpmbuild = local:$PATH/rpmbuild
  475.  
  476. [cross-ini]
  477. #
  478. # Files are in ini format. These files are modified so that their contents
  479. # should work across stratum boundaries. For example, `Exec` keys may have
  480. # their values prefixed with `strat <stratum>` to ensure they work across
  481. # stratum boundaries.
  482. #
  483. applications = $XDG_DATA_DIRS/applications
  484. xsessions = init:$XDG_DATA_DIRS/xsessions, $XDG_DATA_DIRS/xsessions
  485. wayland-sessions = init:$XDG_DATA_DIRS/wayland-sessions, $XDG_DATA_DIRS/wayland-sessions
  486.  
  487. dbus-system = /usr/share/dbus-1/system-services
  488. dbus-session = /usr/share/dbus-1/services
  489.  
  490. [cross-font]
  491. #
  492. # Values are font directories. Fonts are passed through, and font databases
  493. # are merged to list all fonts.
  494. #
  495. fonts = /usr/share/fonts
  496.  
  497. [pmm]
  498. #
  499. # Package Manager Manager
  500. #
  501. # A typical Bedrock Linux system has multiple package managers. Bedrock's
  502. # Package Manager Manager, or pmm, acts as a front-end for these and provides
  503. # multi-package-manager and cross-package-manager operations.
  504. #
  505.  
  506. #
  507. # The command line user interface pmm should utilize.
  508. #
  509. # See file names in /bedrock/share/pmm/package_managers/ for available options.
  510. #
  511. # For example, to mimic Debian/Ubuntu/etc's apt user interface, set:
  512. #
  513. # user-interface = apt
  514. #
  515. # Or to mimic Arch's pacman user interface, set:
  516. #
  517. # user-interface = pacman
  518. #
  519. user-interface = yay
  520.  
  521. #
  522. # List indicating the order package managers should be considered by pmm. Any
  523. # available package manager not included will be considered after this list in
  524. # an undefined order.
  525. #
  526. # List entries may have any of the following patterns:
  527. #
  528. # - `<stratum>:<package-manager>`, indicating a specific stratum's specific
  529. # package manager.
  530. # - `<stratum>:`, indicating any/all package managers in the
  531. # given stratum.
  532. # - `:<package-manager>`, indicating a specific package manager from any
  533. # stratum.
  534. #
  535. # For example:
  536. #
  537. # priority = alpine:, debian:apt, arch:pacman, centos:, :pip
  538. #
  539. priority =
  540.  
  541. #
  542. # If true, only system package managers such as `apt` or `pacman` will be
  543. # considered by pmm.
  544. #
  545. # If false, non-system-package managers such as `pip` or `yay` will be
  546. # considered as well.
  547. #
  548. # `priority` overrides this setting and may be used to white list specific
  549. # non-system package managers while others remain ignored.
  550. #
  551. ignore-non-system-package-managers = true
  552.  
  553. #
  554. # To black list specific strata from pmm, `brl hide --pmm <stratum>` the
  555. # stratum. See `brl hide --help` and `brl show --help`.
  556. #
  557.  
  558. #
  559. # Some package managers such as yay recommend against running as root. If pmm
  560. # is called as root, pmm will call such package managers with this user via
  561. # `sudo`.
  562. #
  563. # sudo sets $SUDO_USER accordingly and is thus a good general default if pmm is
  564. # called via sudo. If you do not use this, consider setting it either your
  565. # primary user or a dedicated unprivileged user.
  566. #
  567. unprivileged-user = $SUDO_USER
  568.  
  569. #
  570. # Most package managers support only a subset of available operations. If a
  571. # given package manager is unable to fulfill an operation, it is skipped.
  572. #
  573. # If true, print a warning when skipping package manager because it does not
  574. # support the requested operation.
  575. #
  576. # If false, skip package managers silently.
  577. #
  578. warn-about-skipping-package-managers = true
  579.  
  580. #
  581. # pmm cache settings
  582. #
  583. # Many pmm operations query multiple package managers, the sum of which may be
  584. # undesirably slow. When run as root, pmm can cache pre-calculate and cache
  585. # data to speed up future queries. However, this caching operation takes time
  586. # and its utilization risks missing cache invalidation cues.
  587. #
  588. # See `[miscellaneous]` `cache-life` to control how long cached values remain
  589. # on disk.
  590. #
  591.  
  592. #
  593. # If true, pmm will cache the list of package managers to consider.
  594. #
  595. # If false, pmm will build list of available package managers every operation.
  596. #
  597. # This cache is updated on changes to bedrock.conf or the list of
  598. # non-pmm-hidden, enabled strata. It will miss the addition of new package
  599. # managers within a preexisting stratum, such as would occur if one ran `apt
  600. # install python-pip`.
  601. #
  602. # This cache size varies depending on the number of package managers available
  603. # on the system. It may use tens of kilobytes of disk space in total.
  604. #
  605. cache-package-manager-list = true
  606.  
  607. #
  608. # If true, pmm will cache the list of available packages and some of their
  609. # metadata. This speeds up internal look-ups about available packages.
  610. #
  611. # If false, pmm will query underlying package managers every time it needs to
  612. # learn about possible available packages.
  613. #
  614. # This cache is updated after pmm is instructed to update package manager
  615. # databases (e.g. `pmm update`, `pmm -Syu`, etc). It may become outdated if
  616. # package managers update their databases outside of pmm.
  617. #
  618. # This cache size and caching time varies heavily depending on the number of
  619. # packages a given package manager has available. It may use tens of megabytes
  620. # of disk space per package manager.
  621. #
  622. cache-package-database = true
  623.  
  624. [brl-fetch-mirrors]
  625. #
  626. # `brl fetch` fetches files from distros for use as Bedrock Linux strata.
  627. #
  628. # If a mirror is provided to the `brl fetch` command, it is used to fetch the
  629. # given distro. Otherwise, this configuration is checked to see if it
  630. # specifies a given mirror should be tried. If no working mirror is found
  631. # here, `brl fetch` will attempt to select a mirror from those it finds for the
  632. # given distribution.
  633. #
  634.  
  635. #
  636. # Some mirrors support multiple Linux distributions and use the same prefix
  637. # path for all of them. For example, at the time of writing, there is an Arch
  638. # mirror at
  639. #
  640. # http://mirrors.edge.kernel.org/archlinux
  641. #
  642. # and a CentOS mirror at
  643. #
  644. # http://mirrors.edge.kernel.org/centos
  645. #
  646. # and a Debian mirror at:
  647. #
  648. # http://mirrors.edge.kernel.org/debian
  649. #
  650. # and a Fedora mirror at
  651. #
  652. # http://mirrors.edge.kernel.org/fedora
  653. #
  654. # Rather than configuring each of these separately, the base URL can be added
  655. # to mirror-prefix to tell `brl fetch` to check it as a possible mirror. For
  656. # the above kernel.org example, one may set:
  657. #
  658. # mirror-prefix = http://mirrors.edge.kernel.org
  659. #
  660. # This is a comma separated list which is checked in order.
  661. #
  662. mirror-prefix =
  663.  
  664. #
  665. # You may set mirrors per distro by setting the distro name as spelled by
  666. #
  667. # brl fetch --list
  668. #
  669. # as the key and the mirror as the value. For example, to indicate that Ubuntu
  670. # should be fetched with the mirror
  671. #
  672. # http://us.archive.ubuntu.com/ubuntu
  673. #
  674. # One may set
  675. #
  676. # ubuntu = http://us.archive.ubuntu.com/ubuntu
  677. #
  678.  
  679. [brl-update]
  680. #
  681. # Set mirrors to one or more Bedrock Linux releases file URLs.
  682. #
  683. # Most users are recommend to stick with the stable release channel here:
  684. #
  685. # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases
  686. #
  687. # However, if you would like to help test upcoming Bedrock updates and are
  688. # willing to take the associated risks, a beta channel is available as well.
  689. # It should be added in addition to the stable channel so that you're always on
  690. # whichever is newer between the two:
  691. #
  692. # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases, https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7beta/releases
  693. #
  694.  
  695. mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases
  696.  
  697. [miscellaneous]
  698.  
  699. #
  700. # Time to retain Bedrock cached data (such as from brl-fetch) in days.
  701. #
  702. cache-life = 30
  703.  
  704. #
  705. # Set to false to disable color in brl output
  706. #
  707. color = true
  708.  
  709. #
  710. # Enable debugging for specified subsystems.
  711. #
  712. # Possible values include:
  713. # - etcfs
  714. # - brl-fetch
  715. #
  716. debug =
  717.  
  718. $ /bedrock/bin/brl list -v
  719. arch
  720. bedrock
  721. hijacked -> arch
  722. init -> arch
  723. local -> arch
  724.  
  725. $ /bedrock/bin/brl status $(/bedrock/bin/brl list -aA)
  726. arch: enabled
  727. bedrock: broken
  728. /etc is shared
  729. /bedrock/run is shared
  730. /bedrock/strata/bedrock is shared
  731. /bedrock/cross is shared
  732. hijacked: enabled
  733. init: enabled
  734. local: enabled
  735.  
  736. $ echo $PATH
  737. /bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/games:/usr/games:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/bedrock/cross/bin
  738.  
  739. $ echo $MANPATH
  740. /bedrock/cross/pin/man:/bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man
  741.  
  742. $ echo $INFOPATH
  743. /bedrock/cross/pin/info:/bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info
  744.  
  745. $ echo $XDG_DATA_DIRS
  746. /bedrock/cross/pin:/usr/local/share:/usr/share:/bedrock/cross:/usr/share
  747.  
  748. $ echo $SHELL
  749. /bedrock/cross/bin/bash
  750.  
  751. $ ls -la /bedrock/strata/
  752. total 24
  753. drwxr-xr-x 4 root root 4096 Oct 8 15:58 .
  754. drwxr-xr-x 12 root root 4096 Oct 8 15:59 ..
  755. drwxr-xr-x 19 root root 4096 Oct 8 15:59 arch
  756. drwxr-xr-x 19 root root 4096 Oct 8 15:59 bedrock
  757. lrwxrwxrwx 1 root root 4 Oct 8 15:58 hijacked -> arch
  758. lrwxrwxrwx 1 root root 23 Aug 26 20:31 init -> /bedrock/run/init-alias
  759. lrwxrwxrwx 1 root root 21 Aug 26 20:31 local -> ../cross/.local-alias
  760.  
  761. $ ls -Rl /bedrock/run/
  762. /bedrock/run/:
  763. total 24
  764. drwxr-xr-x 2 root root 80 Oct 8 17:46 enabled_strata
  765. -rw-r--r-- 1 root root 589 Oct 8 17:46 environment
  766. -rw-r--r-- 1 root root 1293 Oct 8 17:46 fprofile
  767. lrwxrwxrwx 1 root root 20 Oct 8 17:46 init-alias -> /bedrock/strata/arch
  768. lrwxrwxrwx 1 root root 33 Oct 8 17:46 localtime -> /bedrock/cross/zoneinfo/Universal
  769. -rw-r--r-- 1 root root 2013 Oct 8 17:46 profile
  770. drwxr-xr-x 2 root root 360 Oct 8 17:46 restricted_cmds
  771. -rw-r--r-- 1 root root 205 Oct 8 17:46 sudoers
  772. -rw-r--r-- 1 root root 670 Oct 8 17:46 xorg-fonts
  773. -rw-r--r-- 1 root root 671 Oct 8 17:46 zprofile
  774.  
  775. /bedrock/run/enabled_strata:
  776. total 0
  777. -rw-r--r-- 1 root root 0 Oct 8 17:46 arch
  778. -rw-r--r-- 1 root root 0 Oct 8 17:46 bedrock
  779.  
  780. /bedrock/run/restricted_cmds:
  781. total 0
  782. -rw-r--r-- 1 root root 0 Oct 8 17:46 apt-key
  783. -rw-r--r-- 1 root root 0 Oct 8 17:46 cave
  784. -rw-r--r-- 1 root root 0 Oct 8 17:46 cmake
  785. -rw-r--r-- 1 root root 0 Oct 8 17:46 debuild
  786. -rw-r--r-- 1 root root 0 Oct 8 17:46 dkms
  787. -rw-r--r-- 1 root root 0 Oct 8 17:46 dpkg-buildpackage
  788. -rw-r--r-- 1 root root 0 Oct 8 17:46 firecfg
  789. -rw-r--r-- 1 root root 0 Oct 8 17:46 firejail
  790. -rw-r--r-- 1 root root 0 Oct 8 17:46 firetools
  791. -rw-r--r-- 1 root root 0 Oct 8 17:46 gdb
  792. -rw-r--r-- 1 root root 0 Oct 8 17:46 git
  793. -rw-r--r-- 1 root root 0 Oct 8 17:46 kiss
  794. -rw-r--r-- 1 root root 0 Oct 8 17:46 makepkg
  795. -rw-r--r-- 1 root root 0 Oct 8 17:46 pkgmk
  796. -rw-r--r-- 1 root root 0 Oct 8 17:46 prt-get
  797. -rw-r--r-- 1 root root 0 Oct 8 17:46 rpmbuild
  798.  
  799. $ grep secure_path /etc/sudoers
  800. grep: /etc/sudoers: Permission denied
  801.  
  802. $ grep "^$(whoami):" /etc/passwd
  803. asmitir:x:1000:984::/home/asmitir:/bedrock/cross/bin/bash
  804.  
  805. $ grep "^root:" /etc/passwd
  806. root:x:0:0::/root:/bedrock/cross/bin/bash
  807.  
  808. $ cat /etc/hostname
  809. cat: can't open '/etc/hostname': No such file or directory
  810.  
  811. $ cat /etc/os-release
  812. NAME="Arch Linux"
  813. PRETTY_NAME="Arch Linux"
  814. ID=arch
  815. BUILD_ID=rolling
  816. ANSI_COLOR="38;2;23;147;209"
  817. HOME_URL="https://archlinux.org/"
  818. DOCUMENTATION_URL="https://wiki.archlinux.org/"
  819. SUPPORT_URL="https://bbs.archlinux.org/"
  820. BUG_REPORT_URL="https://bugs.archlinux.org/"
  821. LOGO=archlinux
  822.  
  823. $ cat /etc/lsb-release
  824. LSB_VERSION=1.4
  825. DISTRIB_ID=Arch
  826. DISTRIB_RELEASE=rolling
  827. DISTRIB_DESCRIPTION="Arch Linux"
  828.  
  829. $ cat /etc/fstab
  830. # Static information about the filesystems.
  831. # See fstab(5) for details.
  832.  
  833. # <file system> <dir> <type> <options> <dump> <pass>
  834. # /dev/sda2
  835. UUID=9a23c809-730b-4689-8e10-c95385c58751 / ext4 rw,relatime 0 0
  836.  
  837. # /dev/sda4
  838. UUID=9e4d3645-bc09-4661-8cce-d60050b6c9ea /home ext4 rw,relatime 0 0
  839.  
  840. # /dev/sda1
  841. UUID=BDB0-FB36 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
  842.  
  843. # /dev/sda3
  844. UUID=30381023-0ffd-46f8-9f94-4125b32b9ccb none swap defaults 0 0
  845.  
  846.  
  847. $ cat /proc/1/mountinfo
  848. 21 26 0:20 / /bedrock/strata/bedrock/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  849. 22 26 0:21 / /bedrock/strata/bedrock/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sys rw
  850. 23 26 0:5 / /bedrock/strata/bedrock/dev rw,nosuid,relatime shared:2 - devtmpfs dev rw,size=1942552k,nr_inodes=485638,mode=755,inode64
  851. 24 26 0:22 / /bedrock/strata/bedrock/run rw,nosuid,nodev,relatime shared:11 - tmpfs run rw,mode=755,inode64
  852. 25 22 0:23 / /bedrock/strata/bedrock/sys/firmware/efi/efivars rw,nosuid,nodev,noexec,relatime shared:12 - efivarfs efivarfs rw
  853. 26 31 8:2 / /bedrock/strata/bedrock rw,relatime shared:21 - ext4 /dev/sda2 rw
  854. 27 23 0:24 / /bedrock/strata/bedrock/dev/pts rw,relatime shared:5 - devpts devpts rw,mode=600,ptmxmode=000
  855. 28 26 8:4 / /bedrock/strata/bedrock/home rw,relatime shared:6 - ext4 /dev/sda4 rw
  856. 29 26 8:1 / /bedrock/strata/bedrock/boot/efi rw,relatime shared:22 - vfat /dev/sda1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
  857. 30 1 8:2 /bedrock/strata/arch / rw,relatime shared:19 - ext4 /dev/sda2 rw
  858. 31 30 8:2 /bedrock /bedrock rw,relatime shared:20 - ext4 /dev/sda2 rw
  859. 32 30 0:20 / /proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  860. 33 30 0:5 / /dev rw,nosuid,relatime shared:2 - devtmpfs dev rw,size=1942552k,nr_inodes=485638,mode=755,inode64
  861. 34 33 0:24 / /dev/pts rw,relatime shared:29 - devpts devpts rw,mode=600,ptmxmode=000
  862. 35 30 0:21 / /sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sys rw
  863. 36 35 0:23 / /sys/firmware/efi/efivars rw,nosuid,nodev,noexec,relatime shared:30 - efivarfs efivarfs rw
  864. 37 26 0:25 / /bedrock/strata/bedrock/bedrock/run rw,relatime shared:23 - tmpfs bedrock_run rw,inode64
  865. 38 31 0:25 / /bedrock/run rw,relatime shared:27 - tmpfs bedrock_run rw,inode64
  866. 40 26 0:27 / /bedrock/strata/bedrock/etc rw,nosuid,nodev,relatime shared:24 - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  867. 41 26 8:2 / /bedrock/strata/bedrock/bedrock/strata/bedrock rw,relatime shared:25 - ext4 /dev/sda2 rw
  868. 42 26 0:28 / /bedrock/strata/bedrock/bedrock/cross rw,nosuid,nodev,relatime shared:26 - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  869. 43 26 8:2 /boot /bedrock/strata/bedrock/boot rw,relatime shared:4 - ext4 /dev/sda2 rw
  870. 44 30 8:2 /boot /boot rw,relatime shared:4 - ext4 /dev/sda2 rw
  871. 45 30 8:4 / /home rw,relatime shared:6 - ext4 /dev/sda4 rw
  872. 46 26 8:2 /lib/modules /bedrock/strata/bedrock/lib/modules rw,relatime shared:7 - ext4 /dev/sda2 rw
  873. 47 30 8:2 /lib/modules /usr/lib/modules rw,relatime shared:7 - ext4 /dev/sda2 rw
  874. 48 26 8:2 /media /bedrock/strata/bedrock/media rw,relatime shared:8 - ext4 /dev/sda2 rw
  875. 49 30 8:2 /media /media rw,relatime shared:8 - ext4 /dev/sda2 rw
  876. 50 26 8:2 /mnt /bedrock/strata/bedrock/mnt rw,relatime shared:9 - ext4 /dev/sda2 rw
  877. 51 30 8:2 /mnt /mnt rw,relatime shared:9 - ext4 /dev/sda2 rw
  878. 52 26 8:2 /root /bedrock/strata/bedrock/root rw,relatime shared:10 - ext4 /dev/sda2 rw
  879. 53 30 8:2 /root /root rw,relatime shared:10 - ext4 /dev/sda2 rw
  880. 39 30 0:22 / /run rw,nosuid,nodev,relatime shared:11 - tmpfs run rw,mode=755,inode64
  881. 54 26 8:2 /tmp /bedrock/strata/bedrock/tmp rw,relatime shared:13 - ext4 /dev/sda2 rw
  882. 55 30 8:2 /tmp /tmp rw,relatime shared:13 - ext4 /dev/sda2 rw
  883. 56 31 0:28 / /bedrock/cross rw,nosuid,nodev,relatime shared:28 - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  884. 57 30 0:26 / /etc rw,nosuid,nodev,relatime shared:31 - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  885. 58 35 0:6 / /sys/kernel/security rw,nosuid,nodev,noexec,relatime shared:14 - securityfs securityfs rw
  886. 59 22 0:6 / /bedrock/strata/bedrock/sys/kernel/security rw,nosuid,nodev,noexec,relatime shared:14 - securityfs securityfs rw
  887. 60 33 0:29 / /dev/shm rw,nosuid,nodev shared:15 - tmpfs tmpfs rw,inode64
  888. 61 23 0:29 / /bedrock/strata/bedrock/dev/shm rw,nosuid,nodev shared:15 - tmpfs tmpfs rw,inode64
  889. 62 35 0:30 / /sys/fs/cgroup rw,nosuid,nodev,noexec,relatime shared:16 - cgroup2 cgroup2 rw,nsdelegate,memory_recursiveprot
  890. 63 22 0:30 / /bedrock/strata/bedrock/sys/fs/cgroup rw,nosuid,nodev,noexec,relatime shared:16 - cgroup2 cgroup2 rw,nsdelegate,memory_recursiveprot
  891. 64 35 0:31 / /sys/fs/pstore rw,nosuid,nodev,noexec,relatime shared:17 - pstore pstore rw
  892. 65 22 0:31 / /bedrock/strata/bedrock/sys/fs/pstore rw,nosuid,nodev,noexec,relatime shared:17 - pstore pstore rw
  893. 67 35 0:32 / /sys/fs/bpf rw,nosuid,nodev,noexec,relatime shared:18 - bpf none rw,mode=700
  894. 68 22 0:32 / /bedrock/strata/bedrock/sys/fs/bpf rw,nosuid,nodev,noexec,relatime shared:18 - bpf none rw,mode=700
  895. 69 32 0:34 / /proc/sys/fs/binfmt_misc rw,relatime shared:32 - autofs systemd-1 rw,fd=30,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=17439
  896. 70 21 0:34 / /bedrock/strata/bedrock/proc/sys/fs/binfmt_misc rw,relatime shared:32 - autofs systemd-1 rw,fd=30,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=17439
  897. 71 33 0:19 / /dev/mqueue rw,nosuid,nodev,noexec,relatime shared:33 - mqueue mqueue rw
  898. 72 23 0:19 / /bedrock/strata/bedrock/dev/mqueue rw,nosuid,nodev,noexec,relatime shared:33 - mqueue mqueue rw
  899. 73 35 0:7 / /sys/kernel/debug rw,nosuid,nodev,noexec,relatime shared:34 - debugfs debugfs rw
  900. 74 22 0:7 / /bedrock/strata/bedrock/sys/kernel/debug rw,nosuid,nodev,noexec,relatime shared:34 - debugfs debugfs rw
  901. 75 33 0:35 / /dev/hugepages rw,relatime shared:35 - hugetlbfs hugetlbfs rw,pagesize=2M
  902. 76 23 0:35 / /bedrock/strata/bedrock/dev/hugepages rw,relatime shared:35 - hugetlbfs hugetlbfs rw,pagesize=2M
  903. 77 35 0:12 / /sys/kernel/tracing rw,nosuid,nodev,noexec,relatime shared:36 - tracefs tracefs rw
  904. 78 22 0:12 / /bedrock/strata/bedrock/sys/kernel/tracing rw,nosuid,nodev,noexec,relatime shared:36 - tracefs tracefs rw
  905. 79 35 0:36 / /sys/fs/fuse/connections rw,nosuid,nodev,noexec,relatime shared:37 - fusectl fusectl rw
  906. 80 22 0:36 / /bedrock/strata/bedrock/sys/fs/fuse/connections rw,nosuid,nodev,noexec,relatime shared:37 - fusectl fusectl rw
  907. 81 35 0:37 / /sys/kernel/config rw,nosuid,nodev,noexec,relatime shared:38 - configfs configfs rw
  908. 82 22 0:37 / /bedrock/strata/bedrock/sys/kernel/config rw,nosuid,nodev,noexec,relatime shared:38 - configfs configfs rw
  909. 83 69 0:38 / /proc/sys/fs/binfmt_misc rw,nosuid,nodev,noexec,relatime shared:39 - binfmt_misc binfmt_misc rw
  910. 84 70 0:38 / /bedrock/strata/bedrock/proc/sys/fs/binfmt_misc rw,nosuid,nodev,noexec,relatime shared:39 - binfmt_misc binfmt_misc rw
  911. 153 39 0:39 / /run/credentials/systemd-sysusers.service ro,nosuid,nodev,noexec,relatime shared:40 - ramfs none rw,mode=700
  912. 151 24 0:39 / /bedrock/strata/bedrock/run/credentials/systemd-sysusers.service ro,nosuid,nodev,noexec,relatime shared:40 - ramfs none rw,mode=700
  913. 224 44 8:1 / /boot/efi rw,relatime shared:106 - vfat /dev/sda1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
  914. 225 43 8:1 / /bedrock/strata/bedrock/boot/efi rw,relatime shared:106 - vfat /dev/sda1 rw,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
  915. 655 39 0:43 / /run/user/1000 rw,nosuid,nodev,relatime shared:311 - tmpfs tmpfs rw,size=390000k,nr_inodes=97500,mode=700,uid=1000,gid=984,inode64
  916. 656 24 0:43 / /bedrock/strata/bedrock/run/user/1000 rw,nosuid,nodev,relatime shared:311 - tmpfs tmpfs rw,size=390000k,nr_inodes=97500,mode=700,uid=1000,gid=984,inode64
  917.  
  918. $ lsmod
  919. Module Size Used by
  920. rfcomm 90112 4
  921. ccm 20480 6
  922. cmac 16384 2
  923. algif_hash 16384 1
  924. algif_skcipher 16384 1
  925. af_alg 32768 6 algif_hash,algif_skcipher
  926. bnep 28672 2
  927. uvcvideo 118784 0
  928. videobuf2_vmalloc 20480 1 uvcvideo
  929. videobuf2_memops 20480 1 videobuf2_vmalloc
  930. videobuf2_v4l2 36864 1 uvcvideo
  931. videobuf2_common 69632 4 videobuf2_vmalloc,videobuf2_v4l2,uvcvideo,videobuf2_memops
  932. videodev 270336 3 videobuf2_v4l2,uvcvideo,videobuf2_common
  933. mc 65536 4 videodev,videobuf2_v4l2,uvcvideo,videobuf2_common
  934. snd_hda_codec_hdmi 73728 1
  935. snd_ctl_led 24576 0
  936. snd_hda_codec_conexant 28672 1
  937. snd_hda_codec_generic 98304 1 snd_hda_codec_conexant
  938. iwldvm 278528 0
  939. intel_rapl_msr 20480 0
  940. intel_rapl_common 28672 1 intel_rapl_msr
  941. mac80211 1183744 1 iwldvm
  942. x86_pkg_temp_thermal 20480 0
  943. joydev 28672 0
  944. i915 2969600 34
  945. libarc4 16384 1 mac80211
  946. intel_powerclamp 20480 0
  947. mousedev 24576 0
  948. coretemp 20480 0
  949. btusb 69632 0
  950. btrtl 28672 1 btusb
  951. crct10dif_pclmul 16384 1
  952. btbcm 20480 1 btusb
  953. btintel 32768 1 btusb
  954. crc32_pclmul 16384 0
  955. bluetooth 729088 27 btrtl,btintel,btbcm,bnep,btusb,rfcomm
  956. ghash_clmulni_intel 16384 0
  957. snd_hda_intel 57344 3
  958. mei_wdt 16384 0
  959. snd_intel_dspcfg 28672 1 snd_hda_intel
  960. aesni_intel 380928 7
  961. iwlwifi 442368 1 iwldvm
  962. mei_hdcp 24576 0
  963. at24 24576 0
  964. snd_intel_sdw_acpi 20480 1 snd_intel_dspcfg
  965. i2c_algo_bit 16384 1 i915
  966. ttm 86016 1 i915
  967. snd_hda_codec 176128 4 snd_hda_codec_generic,snd_hda_codec_conexant,snd_hda_codec_hdmi,snd_hda_intel
  968. drm_kms_helper 303104 1 i915
  969. crypto_simd 16384 1 aesni_intel
  970. cryptd 28672 3 crypto_simd,ghash_clmulni_intel
  971. ecdh_generic 16384 1 bluetooth
  972. ecc 40960 1 ecdh_generic
  973. tpm_tis 16384 0
  974. cec 73728 2 drm_kms_helper,i915
  975. thinkpad_acpi 131072 0
  976. rapl 16384 0
  977. intel_gtt 24576 1 i915
  978. snd_hda_core 110592 5 snd_hda_codec_generic,snd_hda_codec_conexant,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
  979. iTCO_wdt 16384 0
  980. tpm_tis_core 28672 1 tpm_tis
  981. intel_pmc_bxt 16384 1 iTCO_wdt
  982. tpm 90112 2 tpm_tis,tpm_tis_core
  983. agpgart 45056 2 intel_gtt,ttm
  984. rng_core 16384 1 tpm
  985. intel_cstate 20480 0
  986. intel_uncore 196608 0
  987. syscopyarea 16384 1 drm_kms_helper
  988. snd_hwdep 16384 1 snd_hda_codec
  989. snd_pcm 151552 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
  990. sysfillrect 16384 1 drm_kms_helper
  991. sysimgblt 16384 1 drm_kms_helper
  992. fb_sys_fops 16384 1 drm_kms_helper
  993. platform_profile 16384 1 thinkpad_acpi
  994. snd_timer 45056 1 snd_pcm
  995. ledtrig_audio 16384 3 snd_ctl_led,snd_hda_codec_generic,thinkpad_acpi
  996. cfg80211 1044480 3 iwldvm,iwlwifi,mac80211
  997. iTCO_vendor_support 16384 1 iTCO_wdt
  998. snd 114688 16 snd_ctl_led,snd_hda_codec_generic,snd_hda_codec_conexant,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_timer,thinkpad_acpi,snd_pcm
  999. think_lmi 24576 0
  1000. firmware_attributes_class 16384 1 think_lmi
  1001. wmi_bmof 16384 0
  1002. soundcore 16384 2 snd_ctl_led,snd
  1003. psmouse 184320 0
  1004. rfkill 32768 7 bluetooth,thinkpad_acpi,cfg80211
  1005. video 57344 2 thinkpad_acpi,i915
  1006. e1000e 311296 0
  1007. mei_me 45056 2
  1008. i2c_i801 36864 0
  1009. mei 155648 5 mei_wdt,mei_hdcp,mei_me
  1010. lpc_ich 28672 0
  1011. i2c_smbus 20480 1 i2c_i801
  1012. mac_hid 16384 0
  1013. wmi 36864 2 wmi_bmof,think_lmi
  1014. crypto_user 20480 0
  1015. drm 589824 19 drm_kms_helper,i915,ttm
  1016. bpf_preload 16384 0
  1017. ip_tables 32768 0
  1018. x_tables 53248 1 ip_tables
  1019. vfat 24576 1
  1020. fat 86016 1 vfat
  1021. dm_mod 167936 0
  1022. hid_microsoft 16384 0
  1023. ff_memless 20480 1 hid_microsoft
  1024. usbhid 65536 0
  1025. fuse 167936 7
  1026. ext4 933888 2
  1027. crc32c_generic 16384 0
  1028. crc16 16384 2 bluetooth,ext4
  1029. mbcache 16384 1 ext4
  1030. jbd2 163840 1 ext4
  1031. serio_raw 20480 0
  1032. atkbd 36864 0
  1033. libps2 20480 2 atkbd,psmouse
  1034. sdhci_pci 69632 0
  1035. crc32c_intel 24576 4
  1036. cqhci 36864 1 sdhci_pci
  1037. sdhci 81920 1 sdhci_pci
  1038. mmc_core 200704 3 sdhci,cqhci,sdhci_pci
  1039. sr_mod 28672 0
  1040. firewire_ohci 45056 0
  1041. cdrom 81920 1 sr_mod
  1042. firewire_core 81920 1 firewire_ohci
  1043. i8042 32768 0
  1044. crc_itu_t 16384 1 firewire_core
  1045. serio 28672 7 serio_raw,atkbd,psmouse,i8042
  1046.  
  1047. $ ps
  1048. PID USER TIME COMMAND
  1049. 1 root 0:14 {systemd} /sbin/init
  1050. 2 root 0:00 [kthreadd]
  1051. 3 root 0:00 [rcu_gp]
  1052. 4 root 0:00 [rcu_par_gp]
  1053. 6 root 0:00 [kworker/0:0H-ev]
  1054. 8 root 0:00 [mm_percpu_wq]
  1055. 10 root 0:00 [rcu_tasks_kthre]
  1056. 11 root 0:00 [rcu_tasks_rude_]
  1057. 12 root 0:00 [rcu_tasks_trace]
  1058. 13 root 0:12 [ksoftirqd/0]
  1059. 14 root 0:33 [rcu_preempt]
  1060. 15 root 0:00 [rcub/0]
  1061. 16 root 0:00 [rcuc/0]
  1062. 17 root 0:00 [migration/0]
  1063. 18 root 0:00 [idle_inject/0]
  1064. 20 root 0:00 [cpuhp/0]
  1065. 21 root 0:00 [cpuhp/1]
  1066. 22 root 0:00 [idle_inject/1]
  1067. 23 root 0:00 [migration/1]
  1068. 24 root 0:00 [rcuc/1]
  1069. 25 root 0:11 [ksoftirqd/1]
  1070. 27 root 0:00 [kworker/1:0H-ev]
  1071. 28 root 0:00 [cpuhp/2]
  1072. 29 root 0:00 [idle_inject/2]
  1073. 30 root 0:00 [migration/2]
  1074. 31 root 0:00 [rcuc/2]
  1075. 32 root 0:11 [ksoftirqd/2]
  1076. 34 root 0:00 [kworker/2:0H-ev]
  1077. 35 root 0:00 [cpuhp/3]
  1078. 36 root 0:00 [idle_inject/3]
  1079. 37 root 0:00 [migration/3]
  1080. 38 root 0:00 [rcuc/3]
  1081. 39 root 0:10 [ksoftirqd/3]
  1082. 41 root 0:00 [kworker/3:0H-kb]
  1083. 42 root 0:00 [kdevtmpfs]
  1084. 43 root 0:00 [netns]
  1085. 44 root 0:00 [inet_frag_wq]
  1086. 45 root 0:00 [kauditd]
  1087. 46 root 0:00 [khungtaskd]
  1088. 47 root 0:00 [oom_reaper]
  1089. 48 root 0:00 [writeback]
  1090. 49 root 0:47 [kcompactd0]
  1091. 50 root 0:00 [ksmd]
  1092. 51 root 0:00 [khugepaged]
  1093. 71 root 0:00 [kintegrityd]
  1094. 72 root 0:00 [kblockd]
  1095. 73 root 0:00 [blkcg_punt_bio]
  1096. 74 root 0:00 [ata_sff]
  1097. 75 root 0:00 [edac-poller]
  1098. 76 root 0:00 [devfreq_wq]
  1099. 77 root 0:00 [watchdogd]
  1100. 79 root 0:04 [kworker/1:1H-kb]
  1101. 80 root 0:33 [kswapd0]
  1102. 83 root 0:00 [kthrotld]
  1103. 85 root 0:00 [acpi_thermal_pm]
  1104. 87 root 0:00 [nvme-wq]
  1105. 88 root 0:00 [nvme-reset-wq]
  1106. 89 root 0:00 [nvme-delete-wq]
  1107. 90 root 0:00 [scsi_eh_0]
  1108. 91 root 0:00 [scsi_tmf_0]
  1109. 92 root 0:00 [scsi_eh_1]
  1110. 93 root 0:00 [scsi_tmf_1]
  1111. 94 root 0:00 [scsi_eh_2]
  1112. 95 root 0:00 [scsi_tmf_2]
  1113. 96 root 0:00 [scsi_eh_3]
  1114. 97 root 0:00 [scsi_tmf_3]
  1115. 98 root 0:00 [scsi_eh_4]
  1116. 99 root 0:00 [scsi_tmf_4]
  1117. 100 root 0:00 [scsi_eh_5]
  1118. 101 root 0:00 [scsi_tmf_5]
  1119. 106 root 0:00 [mld]
  1120. 107 root 0:00 [ipv6_addrconf]
  1121. 110 root 0:03 [kworker/2:1H-ev]
  1122. 119 root 0:00 [kstrp]
  1123. 124 root 0:00 [zswap1]
  1124. 125 root 0:00 [zswap1]
  1125. 126 root 0:00 [zswap-shrink]
  1126. 128 root 0:00 [charger_manager]
  1127. 157 root 0:00 [firewire]
  1128. 158 root 0:00 [firewire_ohci]
  1129. 159 root 0:02 [kworker/0:1H-ev]
  1130. 161 root 0:00 [sdhci]
  1131. 162 root 0:00 [irq/16-mmc0]
  1132. 172 root 0:00 [jbd2/sda2-8]
  1133. 173 root 0:00 [ext4-rsv-conver]
  1134. 228 root 0:02 [kworker/3:1H-ev]
  1135. 418 root 0:05 [jbd2/sda4-8]
  1136. 419 root 0:00 [ext4-rsv-conver]
  1137. 672 root 0:10 /bedrock/libexec/etcfs -o allow_other /etc
  1138. 938 root 0:10 /bedrock/libexec/crossfs -o allow_other /bedrock/cross
  1139. 2571 root 1:07 /bedrock/libexec/etcfs -o allow_other /etc
  1140. 3501 root 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 4 --print-address 6 --session
  1141. 3511 root 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 4 --print-address 6 --session
  1142. 4491 root 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-repair arch bedrock
  1143. 4522 root 0:00 flock -x 9
  1144. 4524 root 0:01 /usr/lib/systemd/systemd-journald
  1145. 4541 root 0:01 /usr/lib/systemd/systemd-udevd
  1146. 4568 root 0:00 [irq/25-mei_me]
  1147. 4583 root 0:00 [cfg80211]
  1148. 4585 root 0:00 [tpm_dev_wq]
  1149. 4586 root 0:00 [ktpacpid]
  1150. 4588 root 0:00 [cryptd]
  1151. 4595 root 0:57 [irq/27-iwlwifi]
  1152. 4625 root 0:00 [card0-crtc0]
  1153. 4626 root 0:00 [card0-crtc1]
  1154. 4661 root 0:00 /usr/lib/bluetooth/bluetoothd
  1155. 4662 dbus 0:06 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
  1156. 4663 root 0:11 /usr/bin/NetworkManager --no-daemon
  1157. 4664 root 0:01 /usr/lib/systemd/systemd-logind
  1158. 4692 root 0:00 /usr/bin/lightdm
  1159. 4697 root 18:39 /usr/lib/Xorg :0 -seat seat0 -auth /run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
  1160. 4698 root 0:02 /usr/lib/accounts-daemon
  1161. 4702 polkitd 0:01 /usr/lib/polkit-1/polkitd --no-debug
  1162. 4714 root 0:00 /usr/bin/wpa_supplicant -u -s -O /run/wpa_supplicant
  1163. 4785 root 0:02 /usr/lib/upowerd
  1164. 4830 root 0:00 lightdm --session-child 12 19
  1165. 4835 asmitir 0:00 /usr/lib/systemd/systemd --user
  1166. 4836 asmitir 0:00 (sd-pam)
  1167. 4844 asmitir 0:00 /usr/bin/gnome-keyring-daemon --daemonize --login
  1168. 4847 asmitir 0:13 xfce4-session
  1169. 4852 asmitir 0:04 /usr/bin/dbus-daemon --syslog --fork --print-pid 4 --print-address 6 --session
  1170. 4878 asmitir 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 4 --print-address 6 --session
  1171. 4909 asmitir 0:00 /usr/lib/at-spi-bus-launcher
  1172. 4914 asmitir 0:02 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 3
  1173. 4918 asmitir 0:00 /usr/lib/xfce4/xfconf/xfconfd
  1174. 4924 asmitir 0:06 /usr/lib/at-spi2-registryd --use-gnome-session
  1175. 4928 asmitir 0:03 /usr/bin/xfce4-screensaver
  1176. 4933 asmitir 0:00 /usr/bin/ssh-agent -s
  1177. 4942 asmitir 0:02 /usr/bin/gpg-agent --supervised
  1178. 4944 asmitir 11:52 xfwm4 --display :0.0 --sm-client-id 230eee988-2ecc-49b9-b5ab-5366a86457b3
  1179. 4951 asmitir 0:04 xfsettingsd --display :0.0 --sm-client-id 2d725de6b-470f-430d-9a99-1354aae5f506
  1180. 4955 asmitir 14:29 /usr/bin/pulseaudio --daemonize=no --log-target=journal
  1181. 4956 rtkit 0:00 /usr/lib/rtkit-daemon
  1182. 4961 asmitir 1:22 xfce4-panel --display :0.0 --sm-client-id 260a646ad-e7de-41ae-9dc8-255012f6520f
  1183. 4962 asmitir 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
  1184. 4966 asmitir 0:12 Thunar --sm-client-id 23d9c9da6-7996-4ab8-a047-9a2f2c0eefb7 --daemon
  1185. 4971 asmitir 0:13 xfdesktop --display :0.0 --sm-client-id 2cd0bde32-10c3-47d8-903d-48125e4419c0
  1186. 4974 asmitir 0:07 {panel-7-whisker} /usr/lib/xfce4/panel/wrapper-2.0 /usr/lib/xfce4/panel/plugins/libwhiskermenu.so 7 14680071 whiskermenu Menu Whisker Mostrar um menu para acessar facilmente os aplicativos instalados
  1187. 4985 asmitir 0:00 /usr/lib/pulse/gsettings-helper
  1188. 4986 asmitir 0:05 {panel-1-weather} /usr/lib/xfce4/panel/wrapper-2.0 /usr/lib/xfce4/panel/plugins/libweather.so 1 14680073 weather Atualização meteorológica Mostra condições meteorológicas atuais
  1189. 4987 asmitir 0:02 {panel-6-systray} /usr/lib/xfce4/panel/wrapper-2.0 /usr/lib/xfce4/panel/plugins/libsystray.so 6 14680074 systray Plug-in da bandeja de status Fornece itens notificadores de status (indicadores de aplicativos) e itens legado da bandeja do sistema
  1190. 4988 asmitir 0:03 {panel-9-power-m} /usr/lib/xfce4/panel/wrapper-2.0 /usr/lib/xfce4/panel/plugins/libxfce4powermanager.so 9 14680075 power-manager-plugin Plug-in Gerenciador de energia Exibe os níveis de bateria dos seus dispositivos e controla o brilho do seu monitor
  1191. 4989 asmitir 0:01 {panel-10-notifi} /usr/lib/xfce4/panel/wrapper-2.0 /usr/lib/xfce4/panel/plugins/libnotification-plugin.so 10 14680076 notification-plugin Plug-in de Notificações Plug-in de Notificações para o painel do Xfce
  1192. 5002 asmitir 0:01 {panel-14-action} /usr/lib/xfce4/panel/wrapper-2.0 /usr/lib/xfce4/panel/plugins/libactions.so 14 14680077 actions Botões de ação Sair, bloquear a tela ou outras ações do sistema
  1193. 5007 asmitir 0:01 xfce4-power-manager --restart --sm-client-id 27deb1e31-feb4-4fca-9f42-7273310aa26a
  1194. 5013 root 0:00 [krfcommd]
  1195. 5015 asmitir 0:01 pa-applet
  1196. 5017 asmitir 0:00 /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
  1197. 5030 asmitir 0:10 nm-applet
  1198. 5039 asmitir 1:00 /usr/bin/dunst
  1199. 5048 asmitir 0:01 blueberry-tray
  1200. 5068 asmitir 0:57 {terminator} /usr/bin/python /usr/bin/terminator
  1201. 5166 asmitir 0:00 {safechild} /usr/bin/python3 /usr/lib/blueberry/safechild /usr/sbin/rfkill event
  1202. 5176 asmitir 0:00 /usr/sbin/rfkill event
  1203. 6838 root 0:00 flock -x 9
  1204. 6842 asmitir 11:35 /opt/vivaldi/vivaldi-bin --enable-crashpad
  1205. 6845 asmitir 0:00 cat
  1206. 6846 asmitir 0:00 cat
  1207. 6848 asmitir 0:00 /opt/vivaldi/chrome_crashpad_handler --monitor-self --monitor-self-annotation=ptype=crashpad-handler --database=/home/asmitir/.config/vivaldi/Crash Reports --annotation=channel=stable --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Chrome_Linux --annotation=ver=4.3.2439.44 --initial-client-fd=6 --shared-client-connection
  1208. 6850 asmitir 0:00 /opt/vivaldi/chrome_crashpad_handler --no-periodic-tasks --monitor-self-annotation=ptype=crashpad-handler --database=/home/asmitir/.config/vivaldi/Crash Reports --annotation=channel=stable --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Chrome_Linux --annotation=ver=4.3.2439.44 --initial-client-fd=4 --shared-client-connection
  1209. 6854 asmitir 0:00 /opt/vivaldi/vivaldi-bin --type=zygote --no-zygote-sandbox --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --enable-crashpad
  1210. 6855 asmitir 0:00 /opt/vivaldi/vivaldi-bin --type=zygote --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --enable-crashpad
  1211. 6857 asmitir 0:00 /opt/vivaldi/vivaldi-bin --type=zygote --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --enable-crashpad
  1212. 6875 asmitir 47:02 /opt/vivaldi/vivaldi-bin --type=gpu-process --field-trial-handle=2617437046613494289,14297133335051729003,131072 --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --gpu-preferences=UAAAAAAAAAAgAAAIAAAAAAAAAAAAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAACAAAAAAAAAA= --shared-files
  1213. 6880 asmitir 2:56 /opt/vivaldi/vivaldi-bin --type=utility --utility-sub-type=network.mojom.NetworkService --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --running-vivaldi --service-sandbox-type=none --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --enable-crashpad
  1214. 6894 asmitir 0:04 /opt/vivaldi/vivaldi-bin --type=utility --utility-sub-type=storage.mojom.StorageService --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --running-vivaldi --service-sandbox-type=utility --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100
  1215. 6913 asmitir 6:01 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --extension-process --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=5 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1216. 6931 asmitir 20:20 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --extension-process --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=10 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1217. 6943 asmitir 1:40 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --extension-process --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=6 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1218. 6963 asmitir 0:20 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --extension-process --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=8 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1219. 7129 asmitir 12:10 /opt/discord/Discord
  1220. 7133 asmitir 0:00 /opt/discord/Discord --type=zygote --no-zygote-sandbox
  1221. 7134 asmitir 0:00 /opt/discord/Discord --type=zygote
  1222. 7136 asmitir 0:00 /opt/discord/Discord --type=zygote
  1223. 7161 asmitir 29:55 /opt/discord/Discord --type=gpu-process --field-trial-handle=1414950375641841950,12589476579509542589,131072 --disable-features=CookiesWithoutSameSiteMustBeSecure,SameSiteByDefaultCookies,SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand --enable-crash-reporter=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel --global-crash-keys=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel,_companyName=Discord Inc.,_productName=Discord,_version=0.0.16 --gpu-preferences=UAAAAAAAAAAgAAAQAAAAAAAAAAAAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAACAAAAAAAAAA= --shared-files
  1224. 7179 asmitir 1:44 /opt/discord/Discord --type=utility --utility-sub-type=network.mojom.NetworkService --field-trial-handle=1414950375641841950,12589476579509542589,131072 --disable-features=CookiesWithoutSameSiteMustBeSecure,SameSiteByDefaultCookies,SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand --lang=pt-BR --service-sandbox-type=none --enable-crash-reporter=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel --global-crash-keys=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel,_companyName=Discord Inc.,_productName=Discord,_version=0.0.16 --shared-files=v8_context_snapshot_data:100
  1225. 7206 asmitir 1h50 /opt/discord/Discord --type=renderer --autoplay-policy=no-user-gesture-required --field-trial-handle=1414950375641841950,12589476579509542589,131072 --disable-features=CookiesWithoutSameSiteMustBeSecure,SameSiteByDefaultCookies,SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand --lang=pt-BR --enable-crash-reporter=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel --global-crash-keys=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel,_companyName=Discord Inc.,_productName=Discord,_version=0.0.16 --app-path=/opt/discord/resources/app.asar --no-sandbox --no-zygote --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=7 --no-v8-untrusted-code-mitigations --shared-files=v8_context_snapshot_data:100 --enable-node-leakage-in-renderers
  1226. 7239 asmitir 0:06 /opt/discord/Discord --type=utility --utility-sub-type=audio.mojom.AudioService --field-trial-handle=1414950375641841950,12589476579509542589,131072 --disable-features=CookiesWithoutSameSiteMustBeSecure,SameSiteByDefaultCookies,SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand --lang=pt-BR --service-sandbox-type=none --enable-crash-reporter=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel --global-crash-keys=4cede19d-a219-4ebc-8e1f-5422b6ff74ef,no_channel,_companyName=Discord Inc.,_productName=Discord,_version=0.0.16 --shared-files=v8_context_snapshot_data:100
  1227. 9929 root 0:00 flock -x 9
  1228. 10478 asmitir 1:25 /opt/vivaldi/vivaldi-bin --type=utility --utility-sub-type=audio.mojom.AudioService --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --running-vivaldi --service-sandbox-type=none --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --enable-crashpad
  1229. 13733 root 0:00 flock -x 9
  1230. 14354 asmitir 5:14 /opt/spotify/spotify
  1231. 14357 asmitir 0:00 /opt/spotify/spotify --type=zygote --no-zygote-sandbox --no-sandbox --log-file=/opt/spotify/debug.log --log-severity=disable --user-agent-product=Chrome/91.0.4472.164 Spotify/1.1.68.632 --lang=en
  1232. 14358 asmitir 0:00 /opt/spotify/spotify --type=zygote --no-sandbox --log-file=/opt/spotify/debug.log --log-severity=disable --user-agent-product=Chrome/91.0.4472.164 Spotify/1.1.68.632 --lang=en
  1233. 14373 asmitir 2:45 /opt/spotify/spotify --type=gpu-process --field-trial-handle=6812017657446276934,10456444692770546614,131072 --no-sandbox --log-file=/opt/spotify/debug.log --log-severity=disable --user-agent-product=Chrome/91.0.4472.164 Spotify/1.1.68.632 --lang=en --gpu-preferences=UAAAAAAAAAAgAAAQAAAAAAAAAAAAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAACAAAAAAAAAA= --log-file=/opt/spotify/debug.log --shared-files
  1234. 14397 asmitir 0:00 /opt/spotify/spotify --type=utility --utility-sub-type=storage.mojom.StorageService --field-trial-handle=6812017657446276934,10456444692770546614,131072 --lang=en-US --service-sandbox-type=utility --no-sandbox --log-file=/opt/spotify/debug.log --log-severity=disable --user-agent-product=Chrome/91.0.4472.164 Spotify/1.1.68.632 --lang=en --log-file=/opt/spotify/debug.log --shared-files=v8_context_snapshot_data:100
  1235. 14403 asmitir 0:12 /opt/spotify/spotify --type=utility --utility-sub-type=network.mojom.NetworkService --field-trial-handle=6812017657446276934,10456444692770546614,131072 --lang=en-US --service-sandbox-type=none --no-sandbox --log-file=/opt/spotify/debug.log --log-severity=disable --user-agent-product=Chrome/91.0.4472.164 Spotify/1.1.68.632 --lang=en --log-file=/opt/spotify/debug.log --shared-files=v8_context_snapshot_data:100
  1236. 14424 asmitir 3:22 /opt/spotify/spotify --type=renderer --no-sandbox --log-file=/opt/spotify/debug.log --field-trial-handle=6812017657446276934,10456444692770546614,131072 --lang=en-US --log-file=/opt/spotify/debug.log --log-severity=disable --user-agent-product=Chrome/91.0.4472.164 Spotify/1.1.68.632 --disable-spell-checking --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=5 --shared-files=v8_context_snapshot_data:100
  1237. 15016 asmitir 0:00 bash /home/asmitir/.local/share/Steam/steam.sh steam://rungameid/1127400
  1238. 15343 asmitir 17:22 /home/asmitir/.local/share/Steam/ubuntu12_32/steam steam://rungameid/1127400
  1239. 15351 asmitir 0:00 /home/asmitir/.local/share/Steam/ubuntu12_32/steam steam://rungameid/1127400
  1240. 15352 asmitir 0:30 ./steamwebhelper -lang=en_US -cachedir=/home/asmitir/.local/share/Steam/config/htmlcache -steampid=15343 -buildid=1633666232 -steamid=0 -cachedir=/home/asmitir/.local/share/Steam/config/htmlcache -steamuniverse=Public -realm=Global -clientui=/home/asmitir/.local/share/Steam/clientui --enable-blink-features=ResizeObserver,Worklet,AudioWorklet --enable-media-stream --enable-smooth-scrolling --password-store=basic --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --disable-quick-menu
  1241. 15388 asmitir 0:00 /home/asmitir/.local/share/Steam/ubuntu12_64/steamwebhelper --type=zygote --no-sandbox --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --product-version=Valve Steam Client --lang=en_US.UTF-8
  1242. 15399 asmitir 2:05 /home/asmitir/.local/share/Steam/ubuntu12_64/steamwebhelper --type=gpu-process --field-trial-handle=5472739827857003365,7370890070548110125,131072 --disable-features=MimeHandlerViewInCrossProcessFrame --no-sandbox --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --product-version=Valve Steam Client --lang=en_US.UTF-8 --gpu-preferences=KAAAAAAAAAAgAAAgAAAAAAAAYAAAAAAAEAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAA --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --service-request-channel-token=9203969033048986387
  1243. 15411 asmitir 0:01 /home/asmitir/.local/share/Steam/ubuntu12_64/steamwebhelper --type=utility --field-trial-handle=5472739827857003365,7370890070548110125,131072 --disable-features=MimeHandlerViewInCrossProcessFrame --lang=pt-BR --service-sandbox-type=network --no-sandbox --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --product-version=Valve Steam Client --lang=en_US.UTF-8 --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --service-request-channel-token=9526294737962073811 --shared-files=v8_context_snapshot_data:100,v8_natives_data:101
  1244. 15441 root 0:05 /usr/lib/udisks2/udisksd
  1245. 15649 asmitir 0:00 /home/asmitir/.local/share/Steam/ubuntu12_64/steamwebhelper --type=renderer --no-sandbox --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --field-trial-handle=5472739827857003365,7370890070548110125,131072 --disable-features=MimeHandlerViewInCrossProcessFrame --enable-blink-features=ResizeObserver,Worklet,AudioWorklet --lang=pt-BR --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --product-version=Valve Steam Client --num-raster-threads=2 --enable-main-frame-before-activation --service-request-channel-token=4411702879521943096 --renderer-client-id=5 --shared-files=v8_context_snapshot_data:100,v8_natives_data:101
  1246. 15691 asmitir 0:15 /home/asmitir/.local/share/Steam/ubuntu12_64/steamwebhelper --type=renderer --no-sandbox --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --field-trial-handle=5472739827857003365,7370890070548110125,131072 --disable-features=MimeHandlerViewInCrossProcessFrame --enable-blink-features=ResizeObserver,Worklet,AudioWorklet --lang=pt-BR --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --product-version=Valve Steam Client --num-raster-threads=2 --enable-main-frame-before-activation --service-request-channel-token=5957886895268128949 --renderer-client-id=7 --shared-files=v8_context_snapshot_data:100,v8_natives_data:101
  1247. 15696 asmitir 0:08 /home/asmitir/.local/share/Steam/ubuntu12_64/steamwebhelper --type=renderer --no-sandbox --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --field-trial-handle=5472739827857003365,7370890070548110125,131072 --disable-features=MimeHandlerViewInCrossProcessFrame --enable-blink-features=ResizeObserver,Worklet,AudioWorklet --lang=pt-BR --log-file=/home/asmitir/.local/share/Steam/logs/cef_log.txt --product-version=Valve Steam Client --num-raster-threads=2 --enable-main-frame-before-activation --service-request-channel-token=105827281868624178 --renderer-client-id=8 --shared-files=v8_context_snapshot_data:100,v8_natives_data:101
  1248. 18239 asmitir 19:30 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=130 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1249. 18631 asmitir 0:00 /usr/lib/dconf-service
  1250. 18648 asmitir 0:00 /bedrock/cross/bin/bash
  1251. 18941 asmitir 0:00 /bedrock/cross/bin/bash
  1252. 19051 asmitir 0:44 /bedrock/libexec/busybox sh /bedrock/libexec/brl-tutorial brl-fetch
  1253. 31382 asmitir 0:00 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=141 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1254. 31557 asmitir 0:09 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=144 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1255. 31947 asmitir 0:16 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=148 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1256. 33484 root 0:07 [kworker/u17:0-i]
  1257. 34293 asmitir 0:09 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=150 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1258. 38840 asmitir 0:00 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=153 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1259. 52527 asmitir 0:23 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=156 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1260. 54482 root 0:01 [kworker/u17:1-r]
  1261. 55164 asmitir 0:02 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=159 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1262. 55367 asmitir 0:00 /opt/vivaldi/vivaldi-bin --type=renderer --enable-crashpad --crashpad-handler-pid=6848 --enable-crash-reporter=,stable --cross-origin-webassembly-module-sharing-allowed --display-capture-permissions-policy-allowed --change-stack-guard-on-fork=enable --field-trial-handle=2617437046613494289,14297133335051729003,131072 --lang=pt-BR --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=160 --no-v8-untrusted-code-mitigations --running-vivaldi --shared-files=v8_context_snapshot_data:100
  1263. 208113 root 0:01 [kworker/1:2-eve]
  1264. 233027 root 0:01 [kworker/3:0-eve]
  1265. 266725 root 0:05 [kworker/u16:4-i]
  1266. 280611 root 0:00 [kworker/2:2-eve]
  1267. 283440 root 0:02 [kworker/u16:0-i]
  1268. 289307 root 0:00 [kworker/0:2-eve]
  1269. 289782 root 0:01 [kworker/u16:1-i]
  1270. 293358 root 0:00 [kworker/0:0-eve]
  1271. 294467 root 0:01 [kworker/u16:2-e]
  1272. 295076 root 0:00 [kworker/1:0-eve]
  1273. 295247 root 0:00 [kworker/2:1-eve]
  1274. 295432 root 0:00 [kworker/3:2-eve]
  1275. 296506 asmitir 0:00 /usr/lib/tumbler-1/tumblerd
  1276. 296547 root 0:00 [kworker/0:1-eve]
  1277. 297059 root 0:00 [kworker/u17:2]
  1278. 297767 root 0:00 [kworker/3:1-eve]
  1279. 297817 root 0:00 [kworker/1:1-eve]
  1280. 297956 asmitir 0:00 /bedrock/cross/bin/bash
  1281. 298326 root 0:00 [kworker/2:0]
  1282. 298616 asmitir 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/log
  1283. 303749 asmitir 0:00 sleep 1
  1284. 303751 asmitir 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/log
  1285. 303753 asmitir 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/log
  1286. 303754 asmitir 0:00 sed s/^/ /
  1287. 303755 asmitir 0:00 {ps} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/log
  1288.  
  1289. $ 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
  1290. 1: arch
  1291. 2: arch
  1292. 3: arch
  1293. 4: arch
  1294. 6: arch
  1295. 8: arch
  1296. 10: arch
  1297. 11: arch
  1298. 12: arch
  1299. 13: arch
  1300. 14: arch
  1301. 15: arch
  1302. 16: arch
  1303. 17: arch
  1304. 18: arch
  1305. 20: arch
  1306. 21: arch
  1307. 22: arch
  1308. 23: arch
  1309. 24: arch
  1310. 25: arch
  1311. 27: arch
  1312. 28: arch
  1313. 29: arch
  1314. 30: arch
  1315. 31: arch
  1316. 32: arch
  1317. 34: arch
  1318. 35: arch
  1319. 36: arch
  1320. 37: arch
  1321. 38: arch
  1322. 39: arch
  1323. 41: arch
  1324. 42:
  1325. 43: arch
  1326. 44: arch
  1327. 45: arch
  1328. 46: arch
  1329. 47: arch
  1330. 48: arch
  1331. 49: arch
  1332. 50: arch
  1333. 51: arch
  1334. 71: arch
  1335. 72: arch
  1336. 73: arch
  1337. 74: arch
  1338. 75: arch
  1339. 76: arch
  1340. 77: arch
  1341. 79: arch
  1342. 80: arch
  1343. 83: arch
  1344. 85: arch
  1345. 87: arch
  1346. 88: arch
  1347. 89: arch
  1348. 90: arch
  1349. 91: arch
  1350. 92: arch
  1351. 93: arch
  1352. 94: arch
  1353. 95: arch
  1354. 96: arch
  1355. 97: arch
  1356. 98: arch
  1357. 99: arch
  1358. 100: arch
  1359. 101: arch
  1360. 106: arch
  1361. 107: arch
  1362. 110: arch
  1363. 119: arch
  1364. 124: arch
  1365. 125: arch
  1366. 126: arch
  1367. 128: arch
  1368. 157: arch
  1369. 158: arch
  1370. 159: arch
  1371. 161: arch
  1372. 162: arch
  1373. 172: arch
  1374. 173: arch
  1375. 228: arch
  1376. 418: arch
  1377. 419: arch
  1378. 672: bedrock
  1379. 938: bedrock
  1380. 2571: arch
  1381. 3501: arch
  1382. 3511: arch
  1383. 4491: arch
  1384. 4522: arch
  1385. 4524: arch
  1386. 4541:
  1387. 4568: arch
  1388. 4583: arch
  1389. 4585: arch
  1390. 4586: arch
  1391. 4588: arch
  1392. 4595: arch
  1393. 4625: arch
  1394. 4626: arch
  1395. 4661:
  1396. 4662: arch
  1397. 4663:
  1398. 4664:
  1399. 4692: arch
  1400. 4697: arch
  1401. 4698: arch
  1402. 4702: arch
  1403. 4714: arch
  1404. 4785:
  1405. 4830: arch
  1406. 4835: arch
  1407. 4836: arch
  1408. 4844: arch
  1409. 4847: arch
  1410. 4852: arch
  1411. 4878: arch
  1412. 4909: arch
  1413. 4914: arch
  1414. 4918: arch
  1415. 4924: arch
  1416. 4928: arch
  1417. 4933: arch
  1418. 4942: arch
  1419. 4944: arch
  1420. 4951: arch
  1421. 4955: arch
  1422. 4956:
  1423. 4961: arch
  1424. 4962: arch
  1425. 4966: arch
  1426. 4971: arch
  1427. 4974: arch
  1428. 4985: arch
  1429. 4986: arch
  1430. 4987: arch
  1431. 4988: arch
  1432. 4989: arch
  1433. 5002: arch
  1434. 5007: arch
  1435. 5013: arch
  1436. 5015: arch
  1437. 5017: arch
  1438. 5030: arch
  1439. 5039: arch
  1440. 5048: arch
  1441. 5068: arch
  1442. 5166: arch
  1443. 5176: arch
  1444. 6838: arch
  1445. 6842: arch
  1446. 6845: arch
  1447. 6846: arch
  1448. 6848: arch
  1449. 6850: arch
  1450. 6854: arch
  1451. 6855:
  1452. 6857:
  1453. 6875: arch
  1454. 6880: arch
  1455. 6894:
  1456. 6913:
  1457. 6931:
  1458. 6943:
  1459. 6963:
  1460. 7129: arch
  1461. 7133: arch
  1462. 7134:
  1463. 7136:
  1464. 7161: arch
  1465. 7179: arch
  1466. 7206: arch
  1467. 7239: arch
  1468. 9929: arch
  1469. 10478: arch
  1470. 13733: arch
  1471. 14354: arch
  1472. 14357: arch
  1473. 14358: arch
  1474. 14373: arch
  1475. 14397: arch
  1476. 14403: arch
  1477. 14424: arch
  1478. 15016: arch
  1479. 15343: arch
  1480. 15351: arch
  1481. 15352: arch
  1482. 15388: arch
  1483. 15399: arch
  1484. 15411: arch
  1485. 15441: arch
  1486. 15649: arch
  1487. 15691: arch
  1488. 15696: arch
  1489. 18239:
  1490. 18631: arch
  1491. 18648: arch
  1492. 18941: arch
  1493. 19051: arch
  1494. 31382:
  1495. 31557:
  1496. 31947:
  1497. 33484: arch
  1498. 34293:
  1499. 38840:
  1500. 52527:
  1501. 54482: arch
  1502. 55164:
  1503. 55367:
  1504. 208113: arch
  1505. 233027: arch
  1506. 266725: arch
  1507. 280611: arch
  1508. 283440: arch
  1509. 289307: arch
  1510. 289782: arch
  1511. 293358: arch
  1512. 294467: arch
  1513. 295076: arch
  1514. 295247: arch
  1515. 295432: arch
  1516. 296506: arch
  1517. 296547: arch
  1518. 297059: arch
  1519. 297767: arch
  1520. 297817: arch
  1521. 297956: arch
  1522. 298326: arch
  1523. 298616: arch
  1524. 303749:
  1525. 303757: arch
  1526. 303759: arch
  1527. 303760: arch
  1528. 303761: arch
  1529. 303762: arch
  1530.  
  1531. $ cat /bedrock/cross/.bedrock-config-filesystem
  1532. cat: can't open '/bedrock/cross/.bedrock-config-filesystem': Permission denied
  1533.  
  1534. $ cat /proc/1/root/etc/.bedrock-config-filesystem
  1535. cat: can't open '/proc/1/root/etc/.bedrock-config-filesystem': Permission denied
  1536.  
  1537. $ uname -m
  1538. x86_64
  1539.  
  1540. $ uname -a
  1541. Linux archlinux 5.14.9-arch2-1 #1 SMP PREEMPT Fri, 01 Oct 2021 19:03:20 +0000 x86_64 GNU/Linux
  1542.  
  1543. $ env
  1544. color_priority=\033[1;37m\033[101m
  1545. color_link=\033[0;94m
  1546. USER=asmitir
  1547. MAIL=/var/spool/mail/asmitir
  1548. XDG_SEAT=seat0
  1549. color_logo=\033[1;37m
  1550. SSH_AGENT_PID=4933
  1551. XDG_SESSION_TYPE=x11
  1552. CSF_TObjDefaults=/usr/share/opencascade/resources/StdResource
  1553. CSF_XCAFDefaults=/usr/share/opencascade/resources/StdResource
  1554. SHLVL=3
  1555. CSF_XSMessage=/usr/share/opencascade/resources/XSMessage
  1556. MOTD_SHOWN=pam
  1557. HOME=/home/asmitir
  1558. CSF_TObjMessage=/usr/share/opencascade/resources/TObj
  1559. MMGT_CLEAR=1
  1560. color_okay=\033[0;32m
  1561. DESKTOP_SESSION=xfce
  1562. CSF_ShadersDirectory=/usr/share/opencascade/resources/Shaders
  1563. CSF_MDTVTexturesDirectory=/usr/share/opencascade/resources/Textures
  1564. GTK_MODULES=canberra-gtk-module:canberra-gtk-module
  1565. XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
  1566. DRAWHOME=/usr/share/opencascade/resources/DrawResources
  1567. color_warn=\033[0;93m
  1568. color_term=\033[0;35m
  1569. CSF_IGESDefaults=/usr/share/opencascade/resources/XSTEPResource
  1570. DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-visX4q1kSa,guid=76292043e2a2beb436eb3c9761608438
  1571. color_strat=\033[0;36m
  1572. COLORTERM=truecolor
  1573. TERMINATOR_DBUS_NAME=net.tenshu.Terminator21a9d5db22c73a993ff0b42f64b396873
  1574. CASROOT=/usr
  1575. INFOPATH=/bedrock/cross/pin/info:/bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info
  1576. color_alias=\033[0;93m
  1577. color_norm=\033[0m
  1578. LOGNAME=asmitir
  1579. _=/bedrock/bin/brl
  1580. CSF_LANGUAGE=us
  1581. XDG_SESSION_CLASS=user
  1582. TERMINFO_DIRS=/bedrock/cross/pin/terminfo:/usr/local/share/terminfo:/usr/share/terminfo:/bedrock/cross/terminfo
  1583. color_sub=\033[0;93m
  1584. TERM=xterm-256color
  1585. XDG_SESSION_ID=2
  1586. PATH=/bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/games:/usr/games:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/bedrock/cross/bin
  1587. SESSION_MANAGER=local/archlinux:@/tmp/.ICE-unix/4847,unix/archlinux:/tmp/.ICE-unix/4847
  1588. GTK3_MODULES=xapp-gtk3-module:xapp-gtk3-module
  1589. XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0
  1590. XDG_MENU_PREFIX=xfce-
  1591. XDG_RUNTIME_DIR=/run/user/1000
  1592. CSF_XmlOcafResource=/usr/share/opencascade/resources/XmlOcafResource
  1593. DISPLAY=:0.0
  1594. TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2
  1595. LANG=pt_BR.UTF-8
  1596. XDG_CURRENT_DESKTOP=XFCE
  1597. XDG_SESSION_DESKTOP=xfce
  1598. XAUTHORITY=/home/asmitir/.Xauthority
  1599. CSF_StandardDefaults=/usr/share/opencascade/resources/StdResource
  1600. color_file=\033[0;32m
  1601. SSH_AUTH_SOCK=/tmp/ssh-XXXXXXurzGvZ/agent.4932
  1602. XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/asmitir
  1603. CSF_PluginDefaults=/usr/share/opencascade/resources/StdResource
  1604. DBUS_SESSION_BUS_PID=4852
  1605. SHELL=/bedrock/cross/bin/bash
  1606. TERMINATOR_UUID=urn:uuid:65255f34-9c50-4f61-9c2c-f6631aeecda6
  1607. color_bedrock=\033[0;93m
  1608. CSF_SHMessage=/usr/share/opencascade/resources/SHMessage
  1609. GDMSESSION=xfce
  1610. color_alert=\033[0;91m
  1611. CSF_STEPDefaults=/usr/share/opencascade/resources/XSTEPResource
  1612. color_rcmd=\033[0;31m
  1613. XDG_VTNR=7
  1614. PWD=/home/asmitir
  1615. CSF_StandardLiteDefaults=/usr/share/opencascade/resources/StdResource
  1616. color_disabled_strat=\033[0;34m
  1617. XDG_CONFIG_DIRS=/etc/xdg
  1618. CSF_DrawPluginDefaults=/usr/share/opencascade/resources/DrawResources
  1619. CSF_MIGRATION_TYPES=/usr/share/opencascade/resources/StdResource/MigrationSheet.txt
  1620. XDG_DATA_DIRS=/bedrock/cross/pin:/usr/local/share:/usr/share:/bedrock/cross:/usr/share
  1621. color_cmd=\033[0;32m
  1622. CSF_OCCTResourcePath=/usr/share/opencascade/resources
  1623. DRAWDEFAULT=/usr/share/opencascade/resources/DrawResources/DrawDefault
  1624. color_distro=\033[0;93m
  1625. MANPATH=/bedrock/cross/pin/man:/bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man
  1626. VTE_VERSION=6600
  1627. color_misc=\033[0;32m
  1628. CSF_EXCEPTION_PROMPT=1
  1629. color_glue=\033[1;37m
  1630.  
  1631. $ /bedrock/libexec/getfattr -d /bedrock/strata/bedrock
  1632. getfattr: Removing leading '/' from absolute path names
  1633. # file: bedrock/strata/bedrock
  1634. user.bedrock.arch="x86_64"
  1635. user.bedrock.show_boot=""
  1636. user.bedrock.show_cross=""
  1637. user.bedrock.show_init=""
  1638. user.bedrock.show_list=""
  1639. user.bedrock.show_pmm=""
  1640. user.bedrock.stratum="bedrock"
  1641.  
  1642.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement