Bedrock Linux system report $ cat /bedrock/etc/bedrock-release Bedrock Linux 0.7.17 Poki $ cat /bedrock/etc/bedrock.conf # # Bedrock Linux main configuration file # # After making changes here, run `brl apply` (as root) to apply them. # [locale] # # The Olson timezone. For example: # # timezone = America/New_York # # At least one stratum should provide an Olson database file at # # /usr/share/zoneinfo/ # # For example, for America/New_York there should be a file at # # /usr/share/zoneinfo/America/New_York # timezone = Europe/London # # The /etc/locale.gen language lines. For example: # # localegen = en_US.UTF-8 UTF-8 # localegen = en_GB.UTF-8 UTF-8 # # The POSIX $LANG variable # LANG = en_GB.UTF-8 [init] # # Bedrock Linux provides its own init which sets up Bedrock subsystems then # hands control over to a user-selected init provided by some stratum. # # # Number of seconds to wait for an init to be input before automatically # selecting the default value (if a valid default value is set). # timeout = 30 # # Init to utilize by default if timeout expires. Format is # # default = : # # For example, to use void's /sbin/init, use: # # default = void:/sbin/init # default = void:/sbin/init # # A comma separated list of local file paths which may provide an init. The # Bedrock init menu will list every available one from every (unignored) # stratum. # 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 [global] # # Bedrock Linux categorizes every file path on the system as either: # # - Local to a given stratum. Multiple instances of such files are needed to # avoid conflicts between the strata. # - Global across all strata. There is only one instance of such a file # irrelevant of the number of strata. # # For example: both Debian and Ubuntu have package managers that read # /etc/apt/sources.list, and each needs to see something different there. # Thus, the /etc/apt/sources.list file path should be local to each stratum. # However, all processes should see the same contents in /home, and thus /home # is global. # # By default, all files are local. The following settings are used to indicate # which files should be global. Different contexts require different systems # for marking a file path as global. # # # A list of directories which should be global. If something is # mounted into one of these directories, that new mount point # is also global. # share = /boot, /dev, /home, /lib/modules, /media, /mnt, /proc, /root, /run, /sys, /tmp # # Another list of directories which should be global. Anything mounted in them # is local by default. These are primarily used to avoid recursion in nested # cases. Given that nesting is expected, be careful with order. # bind = /bedrock, /bedrock/cross, /bedrock/run, /bedrock/strata/bedrock # # A list of files and directories within /etc which should be global. /etc # must be treated specially, as the techniques used for share and bind do not # work for files in it. # etc = adjtime, crypttab, default/grub, fstab, group, group-, group.org, gshadow, gshadow-, gshadow.org, hostname, hosts, login.defs, machine-id, modprobe.d/blacklist.conf, passwd, passwd-, passwd.org, rc.local, resolv.conf, resolvconf/run, shadow, shadow-, shadow.org, sudoers [symlinks] # # Enforce various symlinks are in place at local paths. This is applied at # stratum enable/repair time. # # Keys are local paths, values are symlink contents. # # The symlink contents must be absolute paths. # # # Some package managers attempt to update this. They become upset if it is # created between an unlink() and symlink(), making it unsuitable for # [etc-symlinks] below. # # Different distros use slightly different values here that are all effectively # the same. Rather than attempt to fight distros in this regard, Bedrock has # hard-coded internal support for multiple valid values here and may not # respect changes to this field. /etc/mtab = /proc/self/mounts # # Some distros may expect a file at one path while others expect it at another. # Standardize the location of global files. # /var/lib/dbus/machine-id = /etc/machine-id /var/run = /run # # Various programs need to be configured to properly interact with Bedrock # subsystems. Point them to Bedrock configuration. # /etc/systemd/system/bedrock-fix-mounts.service = /bedrock/share/systemd/bedrock-fix-mounts.service /etc/systemd/system/bedrock-stop-fuse-filesystems.service = /bedrock/share/systemd/bedrock-stop-fuse-filesystems.service /etc/systemd/system/multi-user.target.wants/bedrock-fix-mounts.service = /bedrock/share/systemd/bedrock-fix-mounts.service /etc/systemd/system/multi-user.target.wants/bedrock-stop-fuse-filesystems.service = /bedrock/share/systemd/bedrock-stop-fuse-filesystems.service /etc/X11/xorg.conf.d/99-bedrock-fonts.conf = /bedrock/run/xorg-fonts /etc/fonts/conf.d/99-bedrock-fonts.conf = /bedrock/share/fonts/fontconf.conf /etc/X11/Xsession.d/99bedrock_env = /bedrock/run/profile /etc/X11/xinit/xinitrc.d/99bedrock_env = /bedrock/run/profile /etc/bash_completion.d/brl = /bedrock/share/bash/completion/brl /etc/bash_completion.d/strat = /bedrock/share/bash/completion/strat /etc/fish/conf.d/99bedrock.fish = /bedrock/run/fprofile /etc/fish/completions/brl.fish = /bedrock/share/fish/completion/brl.fish /etc/fish/completions/strat.fish = /bedrock/share/fish/completion/strat.fish /etc/resolvconf/update.d/00bedrock = /bedrock/share/resolvconf/00bedrock # # In general, system software such as Bedrock should not manipulate /usr/local. # Bedrock should favor configuring /etc files instead. # # However, dbus's dbus-daemon-launch-helper seems to ignore /etc/dbus-1/ # configuration extending the search path. See # https://bugs.freedesktop.org/show_bug.cgi?id=92458 for a discussion on the # matter. For example: # # > Note that d-d-l-h only reads .service files from standard hard-coded paths, # > not from any additional paths that you might have configured # # Since /usr/local/share/dbus is included in the hard-coded paths, is not used # by most package managers, and is rarely used by end-users, it's the cleanest # option available to teach dbus about /bedrock/cross. # /usr/local/share/dbus-1/system-services = /bedrock/cross/dbus-system /usr/local/share/dbus-1/services = /bedrock/cross/dbus-session # # Some distros use a swap file and include reference to it in their fstab. # This must be global so that it is valid when using an init from another # stratum. However, it is not clear if it would work well with any of the # established techniques in [global]. Instead, symlink it into a known global # directory. # /swapfile = /bedrock/swapfile [etc-symlinks] # # Dynamically enforce various symlinks are in place at local paths. Any change # away from specified configuration is immediately undone. # # Keys are local paths relative to /etc, values are symlink contents. # # The symlink contents must be absolute paths. # # # Some init systems attempt to change these values at boot time, just after # being enabled. Thus, symlinks-general will not suffice. # localtime = /bedrock/run/localtime environment = /bedrock/run/environment [etc-inject] # # Not all programs can be adequately/reliably configured by creating new, # cleanly isolated configuration files. Instead, a configuration file must be # extended to include desired configuration without clobbering its stratum # local configuration. Typically these configuration files are in /etc. # # Bedrock ensures that, should certain files exist in /etc, they will include # content specified at another file path. If the desired content is not found # in the file it is automatically appended to the end. # # The keys are file paths relative to /etc, and the values are paths to files # whose content must be included if the key's file exists in /etc. # # If you alter either the key/values in this section, or the actual content of # the values, run `brl apply` to apply the change. Do this before rebooting # to ensure any old content is removed. # sudoers = /bedrock/share/sudo/include-bedrock profile = /bedrock/share/shells/include-bedrock dkms/framework.conf = /bedrock/share/dkms/include-bedrock # # etc-inject only injects existing files and does create make files in order to # avoid creating a file a package manager does not expect. Different distro # zsh packages provide different files, requiring multiple zsh file injections. # zprofile = /bedrock/share/zsh/include-bedrock zshenv = /bedrock/share/zsh/include-bedrock zsh/zprofile = /bedrock/share/zsh/include-bedrock zsh/zshenv = /bedrock/share/zsh/include-bedrock [env-vars] # # Many programs search environment variables consisting of a colon-separated # list of directories. We can use these to teach these programs about # cross-stratum content. # # Generally, the fields fall into three categories, which should be in the # following order: # # - The file must come from a specific stratum. # - For example, `reboot` should be provided by the stratum providing the # current init. # - Typically, these are provided by `/bedrock/cross/pin/[...]`. # - The file must come from the local stratum. # - Bedrock Linux assumes strata are self-sufficient in terms of hard # dependencies. Thus, if something has a hard dependency on a given file # that file *must* be available locally. # - For example, if a given distro's `/bin/sh` is provided by bash, that # distro's scripts may use bash-isms, and thus another distro's `/bin/sh` # may be unsuitable. # - Typically these values are the traditional values of the given # environment variable. # - The file may come from any stratum. # - If the above two categories don't apply, we know the program isn't # picky about the specific version of the given file, and thus any distro # may provide it. # - Typically, these are provided by `/bedrock/cross/[...]`. # # # A list of directories searched by various programs to find executables. # PATH = /bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/opt/bin:/opt/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/snap/bin:/bedrock/cross/bin # # A list of directories searched by the man executable to find documentation. # MANPATH = /bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man # # A list of directories searched by the info executable to find documentation. # INFOPATH = /bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info # # A list of directories used by the freedesktop.org standard containing things # such as icons and application descriptions. # XDG_DATA_DIRS = /usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/flatpak/exports/share:/bedrock/cross # # Terminfo file locations # TERMINFO_DIRS = /usr/local/share/terminfo:/usr/share/terminfo:/bedrock/cross/terminfo [restriction] # # Some programs become confused upon discovering software from other distros. # To avoid this, Bedrock can restrict such software to its own stratum (and # global paths) by removing cross paths from various environment variables. # # This is primarily needed for software which discovers dependencies in # preparation for compiling, such as Arch Linux's makepkg. However, it may be # useful for other programs as well. # # This only affects processes which are run through `strat` or /bedrock/cross. # To ensure unwrapped calls are run through cross, configure pin entries under # [cross-bin]. # # List any commands you would like restricted here. # restrict = apt-key, debuild, dpkg-buildpackage, gdb, git, kiss, makepkg, rpmbuild [cross] # # Bedrock Linux mounts a virtual filesystem at # # /bedrock/cross # # which provides an alternative view of various files from the enabled strata. # This view is used for cross-stratum coordination. # # For the [cross-*] sections below, the keys represent file paths appended to # /bedrock/cross, and the values are a list of files or directories to be # searched for contents for the given file path. For example, # # man = /usr/local/share/man, /usr/share/man # # indicates that /bedrock/cross/man should be populated with the contents of # the /usr/local/share/man and /usr/share/man directories of all of the enabled # strata. # # The paths used for values may be prefixed by ":" indicating the # given file/directory should only be considered from a specific stratum. For # example, # # pin/bin/firefox = arch:/usr/bin/firefox, void:/usr/bin/firefox # # Indicates a file at /bedrock/cross/pin/bin/firefox should be provided by # arch if available, or if not then void; otherwise, the file should not exist. # # # If a value does not have a stratum prefixed, it may be provided by any # stratum that has the file. If multiple do, the values in "priority" below # indicate which should be given priority. Any enabled strata left unspecified # are implicitly appended at the end in an unspecified order. For example, # # priority = gentoo, debian # # indicates that for the `man` example above, if gentoo provides the given man # page, gentoo's version should be provided. Otherwise, if debian does, then # debian's should be provided. Otherwise, any stratum that provides the man # page may provide it. # priority = [cross-pass] # # Files accessed here are passed through from the stratum's version unaltered. # man = /bedrock/share/man, /usr/local/share/man, /usr/share/man info = /bedrock/share/info, /usr/local/share/info, /usr/share/info icons = /usr/local/share/icons, /usr/share/icons pixmaps = /usr/local/share/pixmaps, /usr/share/pixmaps zoneinfo = /usr/share/zoneinfo terminfo = /usr/local/share/terminfo, /usr/share/terminfo src = /usr/local/src, /usr/src bash-completion = /usr/share/bash-completion zsh-completion = /usr/share/zsh/site-functions, /usr/share/zsh/vendor-completion, /usr/share/zsh/functions/Completion/Debian, /usr/share/zsh/functions/Completion/Mandriva, /usr/share/zsh/functions/Completion/openSUSE, /usr/share/zsh/functions/Completion/Redhat firmware = /lib/firmware/updates/UTS_RELEASE, /lib/firmware/updates, /lib/firmware/UTS_RELEASE, /lib/firmware [cross-bin] # # Files are executables. Executing these files should implicitly redirect # through `strat `. # bin = /usr/local/bin, /usr/local/sbin, /opt/bin, /opt/sbin, /usr/bin, /usr/sbin, /bin, /sbin, /usr/games, /usr/local/games, /snap/bin # # These programs are strongly related to the init system. If the stratum # providing init provides these commands, that version should take priority. # Typical Bedrock systems have /bedrock/pin/bin/ at the front of the $PATH. # pin/bin/systemctl = init:/usr/sbin/systemctl, init:/usr/bin/systemctl, init:/sbin/systemctl, init:/bin/systemctl pin/bin/rc-service = init:/usr/sbin/rc-service, init:/usr/bin/rc-service, init:/sbin/rc-service, init:/bin/rc-service pin/bin/rc-status = init:/usr/sbin/rc-status, init:/usr/bin/rc-status, init:/sbin/rc-status, init:/bin/rc-status pin/bin/rc-update = init:/usr/sbin/rc-update, init:/usr/bin/rc-update, init:/sbin/rc-update, init:/bin/rc-update pin/bin/rc-udevadm = init:/usr/sbin/rc-udevadm, init:/usr/bin/rc-udevadm, init:/sbin/rc-udevadm, init:/bin/rc-udevadm pin/bin/sv = init:/usr/sbin/sv, init:/usr/bin/sv, init:/sbin/sv, init:/bin/sv pin/bin/poweroff = init:/usr/sbin/poweroff, init:/sbin/poweroff, init:/usr/bin/poweroff, init:/bin/poweroff pin/bin/reboot = init:/usr/sbin/reboot, init:/sbin/reboot, init:/usr/bin/reboot, init:/bin/reboot pin/bin/shutdown = init:/usr/sbin/shutdown, init:/sbin/shutdown, init:/usr/bin/shutdown, init:/bin/shutdown pin/bin/halt = init:/usr/sbin/halt, init:/sbin/halt, init:/usr/bin/halt, init:/bin/halt # [restriction]/restrict items are only restricted if run through strat or # cross. List any such items here to ensure they are run through cross to be # restricted. # # If a local instance is available, that is preferred over crossing strata # boundaries, just in case there is some dependency on its specific quirks. # Ensure all items here use the local alias. If the item is not available # locally, the call will fall through to un-pinned `bin` above. pin/bin/apt-key = local:/usr/local/bin/apt-key, local:/usr/bin/apt-key pin/bin/debuild = local:/usr/local/bin/debuild, local:/usr/bin/debuild pin/bin/dpkg-buildpackage = local:/usr/local/bin/dpkg-buildpackage, local:/usr/bin/dpkg-buildpackage pin/bin/gdb = local:/usr/local/bin/gdb, local:/usr/bin/gdb pin/bin/git = local:/usr/local/bin/git, local:/usr/bin/git pin/bin/kiss = local:/usr/local/bin/kiss, local:/usr/bin/kiss pin/bin/makepkg = local:/usr/local/bin/makepkg, local:/usr/bin/makepkg pin/bin/rpmbuild = local:/usr/local/bin/rpmbuild, local:/usr/bin/rpmbuild [cross-ini] # # Files are in ini format. These files are modified so that their contents # should work across stratum boundaries. For example, `Exec` keys may have # their values prefixed with `strat ` to ensure they work across # stratum boundaries. # applications = /usr/local/share/applications, /usr/share/applications, /var/lib/flatpak/exports/share/applications xsessions = init:/usr/local/share/xsessions, init:/usr/share/xsessions, /usr/local/share/xsessions, /usr/share/xsessions dbus-system = /usr/share/dbus-1/system-services dbus-session = /usr/share/dbus-1/services [cross-font] # # Values are font directories. Fonts are passed through, and font databases # are merged to list all fonts. # fonts = /usr/share/fonts [pmm] # # Package Manager Manager # # A typical Bedrock Linux system has multiple package managers. Bedrock's # Package Manager Manager, or pmm, acts as a front-end for these and provides # multi-package-manager and cross-package-manager operations. # # # The command line user interface pmm should utilize. # # See file names in /bedrock/share/pmm/package_managers/ for available options. # # For example, to mimic Debian/Ubuntu/etc's apt user interface, set: # # user-interface = apt # # Or to mimic Arch's pacman user interface, set: # # user-interface = pacman # user-interface = apt # # List indicating the order package managers should be considered by pmm. Any # available package manager not included will be considered after this list in # an undefined order. # # List entries may have any of the following patterns: # # - `:`, indicating a specific stratum's specific # package manager. # - `:`, indicating any/all package managers in the # given stratum. # - `:`, indicating a specific package manager from any # stratum. # # For example: # # priority = alpine:, debian:apt, arch:pacman, centos:, :pip # priority = # # If true, only system package managers such as `apt` or `pacman` will be # considered by pmm. # # If false, non-system-package managers such as `pip` or `yay` will be # considered as well. # # `priority` overrides this setting and may be used to white list specific # non-system package managers while others remain ignored. # ignore-non-system-package-managers = true # # To black list specific strata from pmm, `brl hide --pmm ` the # stratum. See `brl hide --help` and `brl show --help`. # # # Some package managers such as yay recommend against running as root. If pmm # is called as root, pmm will call such package managers with this user via # `sudo`. # # sudo sets $SUDO_USER accordingly and is thus a good general default if pmm is # called via sudo. If you do not use this, consider setting it either your # primary user or a dedicated unprivileged user. # unprivileged-user = $SUDO_USER # # Most package managers support only a subset of available operations. If a # given package manager is unable to fulfill an operation, it is skipped. # # If true, print a warning when skipping package manager because it does not # support the requested operation. # # If false, skip package managers silently. # warn-about-skipping-package-managers = true # # pmm cache settings # # Many pmm operations query multiple package managers, the sum of which may be # undesirably slow. When run as root, pmm can cache pre-calculate and cache # data to speed up future queries. However, this caching operation takes time # and its utilization risks missing cache invalidation cues. # # See `[miscellaneous]` `cache-life` to control how long cached values remain # on disk. # # # If true, pmm will cache the list of package managers to consider. # # If false, pmm will build list of available package managers every operation. # # This cache is updated on changes to bedrock.conf or the list of # non-pmm-hidden, enabled strata. It will miss the addition of new package # managers within a preexisting stratum, such as would occur if one ran `apt # install python-pip`. # # This cache size varies depending on the number of package managers available # on the system. It may use tens of kilobytes of disk space in total. # cache-package-manager-list = true # # If true, pmm will cache the list of available packages and some of their # metadata. This speeds up internal look-ups about available packages. # # If false, pmm will query underlying package managers every time it needs to # learn about possible available packages. # # This cache is updated after pmm is instructed to update package manager # databases (e.g. `pmm update`, `pmm -Syu`, etc). It may become outdated if # package managers update their databases outside of pmm. # # This cache size and caching time varies heavily depending on the number of # packages a given package manager has available. It may use tens of megabytes # of disk space per package manager. # cache-package-database = true [brl-fetch-mirrors] # # `brl fetch` fetches files from distros for use as Bedrock Linux strata. # # If a mirror is provided to the `brl fetch` command, it is used to fetch the # given distro. Otherwise, this configuration is checked to see if it # specifies a given mirror should be tried. If no working mirror is found # here, `brl fetch` will attempt to select a mirror from those it finds for the # given distribution. # # # Some mirrors support multiple Linux distributions and use the same prefix # path for all of them. For example, at the time of writing, there is an Arch # mirror at # # http://mirrors.edge.kernel.org/archlinux # # and a CentOS mirror at # # http://mirrors.edge.kernel.org/centos # # and a Debian mirror at: # # http://mirrors.edge.kernel.org/debian # # and a Fedora mirror at # # http://mirrors.edge.kernel.org/fedora # # Rather than configuring each of these separately, the base URL can be added # to mirror-prefix to tell `brl fetch` to check it as a possible mirror. For # the above kernel.org example, one may set: # # mirror-prefix = http://mirrors.edge.kernel.org # # This is a comma separated list which is checked in order. # mirror-prefix = # # You may set mirrors per distro by setting the distro name as spelled by # # brl fetch --list # # as the key and the mirror as the value. For example, to indicate that Ubuntu # should be fetched with the mirror # # http://us.archive.ubuntu.com/ubuntu # # One may set # # ubuntu = http://us.archive.ubuntu.com/ubuntu # [brl-update] # # Set mirrors to one or more Bedrock Linux releases file URLs. # # Most users are recommend to stick with the stable release channel here: # # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases # # However, if you would like to help test upcoming Bedrock updates and are # willing to take the associated risks, a beta channel is available as well. # It should be added in addition to the stable channel so that you're always on # whichever is newer between the two: # # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases, https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7beta/releases # mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases, https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7beta/releases [miscellaneous] # # Time to retain Bedrock cached data (such as from brl-fetch) in days. # cache-life = 30 # # Set to false to disable color in brl output # color = true # # Enable debugging for specified subsystems. # # Possible values include: # - etcfs # - brl-fetch # debug = $ /bedrock/bin/brl list -v artix bedrock devuan gentoo hijacked -> void init -> void local -> void void $ /bedrock/bin/brl status $(/bedrock/bin/brl list -aA) artix: enabled bedrock: enabled devuan: enabled gentoo: enabled hijacked: enabled init: enabled local: enabled void: enabled $ echo $PATH /bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/opt/bin:/opt/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/snap/bin:/bedrock/cross/bin:/usr/lib/jvm/default/bin $ echo $MANPATH /bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man $ echo $INFOPATH /bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info $ echo $XDG_DATA_DIRS /usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/flatpak/exports/share:/bedrock/cross $ echo $SHELL /bedrock/cross/bin/bash $ ls -la /bedrock/strata/ total 48 drwxr-xr-x 7 root root 4096 Jul 6 18:38 . drwxr-xr-x 12 root root 4096 Jul 5 21:08 .. drwxr-xr-x 18 root root 4096 Jul 5 21:16 artix drwxr-xr-x 19 root root 4096 Jul 5 21:08 bedrock drwxr-xr-x 22 root root 4096 Jul 5 22:11 devuan drwxr-xr-x 21 root root 4096 Jul 6 18:46 gentoo lrwxrwxrwx 1 root root 4 Jul 5 21:07 hijacked -> void lrwxrwxrwx 1 root root 23 Apr 30 12:20 init -> /bedrock/run/init-alias lrwxrwxrwx 1 root root 21 Apr 30 12:20 local -> ../cross/.local-alias drwxr-xr-x 18 root root 4096 Jul 5 23:16 void $ ls -Rl /bedrock/run/ /bedrock/run/: total 24 drwxr-xr-x 2 root root 140 Jul 6 18:46 enabled_strata -rw-r--r-- 1 root root 531 Jul 6 23:55 environment -rw-r--r-- 1 root root 604 Jul 6 23:55 fprofile lrwxrwxrwx 1 root root 20 Jul 6 01:48 init-alias -> /bedrock/strata/void lrwxrwxrwx 1 root root 37 Jul 6 23:55 localtime -> /bedrock/cross/zoneinfo/Europe/London -rw-r--r-- 1 root root 835 Jul 6 23:55 profile drwxr-xr-x 2 root root 200 Jul 6 01:48 restricted_cmds -rw-r--r-- 1 root root 168 Jul 6 23:55 sudoers -rw-r--r-- 1 root root 487 Jul 6 23:55 xorg-fonts -rw-r--r-- 1 root root 127 Jul 6 23:55 zprofile /bedrock/run/enabled_strata: total 0 -rw-r--r-- 1 root root 0 Jul 6 01:48 artix -rw-r--r-- 1 root root 0 Jul 6 01:48 bedrock -rw-r--r-- 1 root root 0 Jul 6 01:48 devuan -rw-r--r-- 1 root root 0 Jul 6 18:46 gentoo -rw-r--r-- 1 root root 0 Jul 6 01:48 void /bedrock/run/restricted_cmds: total 0 -rw-r--r-- 1 root root 0 Jul 6 23:55 apt-key -rw-r--r-- 1 root root 0 Jul 6 23:55 debuild -rw-r--r-- 1 root root 0 Jul 6 23:55 dpkg-buildpackage -rw-r--r-- 1 root root 0 Jul 6 23:55 gdb -rw-r--r-- 1 root root 0 Jul 6 23:55 git -rw-r--r-- 1 root root 0 Jul 6 23:55 kiss -rw-r--r-- 1 root root 0 Jul 6 23:55 makepkg -rw-r--r-- 1 root root 0 Jul 6 23:55 rpmbuild $ grep secure_path /etc/sudoers grep: /etc/sudoers: Permission denied $ grep "^$(whoami):" /etc/passwd digit:x:1000:1000:Digit:/home/digit:/bedrock/cross/bin/bash $ grep "^root:" /etc/passwd root:x:0:0:root:/root:/bedrock/cross/bin/sh $ cat /etc/hostname voidrock $ cat /etc/os-release NAME="void" ID="void" DISTRIB_ID="void" PRETTY_NAME="void" $ cat /etc/lsb-release cat: can't open '/etc/lsb-release': No such file or directory $ cat /etc/fstab UUID=12c4b08c-a35f-4f6c-88a8-8d2b9360f990 / ext4 defaults 0 0 UUID=a15b4a5f-02b8-4787-af51-57c9f197186a none swap sw 0 0 tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0 $ cat /proc/1/mountinfo 21 28 0:5 / /bedrock/strata/bedrock/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw 22 28 0:20 / /bedrock/strata/bedrock/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw 23 28 0:6 / /bedrock/strata/bedrock/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=216152k,nr_inodes=54038,mode=755 24 170 0:21 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 25 175 0:22 / /bedrock/strata/bedrock/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw 26 28 0:23 / /bedrock/strata/bedrock/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755 28 31 8:1 / /bedrock/strata/bedrock rw,relatime - ext4 /dev/sda1 rw 29 28 0:25 / /bedrock/strata/bedrock/tmp rw,nosuid,nodev,relatime shared:13 - tmpfs tmpfs rw 30 1 8:1 /bedrock/strata/void / rw,relatime - ext4 /dev/sda1 rw 31 30 8:1 /bedrock /bedrock rw,relatime - ext4 /dev/sda1 rw 32 30 0:5 / /proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw 33 30 0:6 / /dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=216152k,nr_inodes=54038,mode=755 34 173 0:21 / /dev/pts rw,nosuid,noexec,relatime - devpts devpts rw,gid=5,mode=620,ptmxmode=000 35 178 0:22 / /dev/shm rw,nosuid,nodev,noexec - tmpfs tmpfs rw 36 30 0:20 / /sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw 37 28 0:26 / /bedrock/strata/bedrock/bedrock/run rw,relatime - tmpfs bedrock_run rw 38 31 0:26 / /bedrock/run rw,relatime - tmpfs bedrock_run rw 40 28 0:28 / /bedrock/strata/bedrock/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other 41 28 8:1 / /bedrock/strata/bedrock/bedrock/strata/bedrock rw,relatime - ext4 /dev/sda1 rw 42 28 0:29 / /bedrock/strata/bedrock/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other 43 28 8:1 /boot /bedrock/strata/bedrock/boot rw,relatime shared:4 - ext4 /dev/sda1 rw 44 30 8:1 /boot /boot rw,relatime shared:4 - ext4 /dev/sda1 rw 45 28 8:1 /home /bedrock/strata/bedrock/home rw,relatime shared:7 - ext4 /dev/sda1 rw 46 30 8:1 /home /home rw,relatime shared:7 - ext4 /dev/sda1 rw 47 28 8:1 /lib/modules /bedrock/strata/bedrock/lib/modules rw,relatime shared:8 - ext4 /dev/sda1 rw 48 30 8:1 /lib/modules /usr/lib/modules rw,relatime shared:8 - ext4 /dev/sda1 rw 49 28 8:1 /media /bedrock/strata/bedrock/media rw,relatime shared:9 - ext4 /dev/sda1 rw 50 30 8:1 /media /media rw,relatime shared:9 - ext4 /dev/sda1 rw 51 28 8:1 /mnt /bedrock/strata/bedrock/mnt rw,relatime shared:10 - ext4 /dev/sda1 rw 52 30 8:1 /mnt /mnt rw,relatime shared:10 - ext4 /dev/sda1 rw 53 28 8:1 /root /bedrock/strata/bedrock/root rw,relatime shared:11 - ext4 /dev/sda1 rw 54 30 8:1 /root /root rw,relatime shared:11 - ext4 /dev/sda1 rw 39 30 0:23 / /run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755 55 30 0:25 / /tmp rw,nosuid,nodev,relatime shared:13 - tmpfs tmpfs rw 56 31 0:29 / /bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other 57 30 0:27 / /etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other 58 31 8:1 /bedrock/strata/devuan /bedrock/strata/devuan rw,relatime - ext4 /dev/sda1 rw 59 58 8:1 /boot /bedrock/strata/devuan/boot rw,relatime shared:4 - ext4 /dev/sda1 rw 60 58 0:6 / /bedrock/strata/devuan/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=216152k,nr_inodes=54038,mode=755 61 172 0:21 / /bedrock/strata/devuan/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 62 177 0:22 / /bedrock/strata/devuan/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw 63 58 8:1 /home /bedrock/strata/devuan/home rw,relatime shared:7 - ext4 /dev/sda1 rw 64 58 8:1 /lib/modules /bedrock/strata/devuan/lib/modules rw,relatime shared:8 - ext4 /dev/sda1 rw 65 58 8:1 /media /bedrock/strata/devuan/media rw,relatime shared:9 - ext4 /dev/sda1 rw 66 58 8:1 /mnt /bedrock/strata/devuan/mnt rw,relatime shared:10 - ext4 /dev/sda1 rw 67 58 0:5 / /bedrock/strata/devuan/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw 68 58 8:1 /root /bedrock/strata/devuan/root rw,relatime shared:11 - ext4 /dev/sda1 rw 69 58 0:23 / /bedrock/strata/devuan/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755 70 58 0:20 / /bedrock/strata/devuan/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw 71 58 0:25 / /bedrock/strata/devuan/tmp rw,nosuid,nodev,relatime shared:13 - tmpfs tmpfs rw 72 58 8:1 /bedrock /bedrock/strata/devuan/bedrock rw,relatime - ext4 /dev/sda1 rw 73 72 0:29 / /bedrock/strata/devuan/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other 74 72 0:26 / /bedrock/strata/devuan/bedrock/run rw,relatime - tmpfs bedrock_run rw 75 72 8:1 / /bedrock/strata/devuan/bedrock/strata/bedrock rw,relatime - ext4 /dev/sda1 rw 76 58 0:30 / /bedrock/strata/devuan/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other 77 31 8:1 /bedrock/strata/artix /bedrock/strata/artix rw,relatime - ext4 /dev/sda1 rw 78 77 8:1 /boot /bedrock/strata/artix/boot rw,relatime shared:4 - ext4 /dev/sda1 rw 79 77 0:6 / /bedrock/strata/artix/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=216152k,nr_inodes=54038,mode=755 80 171 0:21 / /bedrock/strata/artix/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 81 176 0:22 / /bedrock/strata/artix/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw 82 77 8:1 /home /bedrock/strata/artix/home rw,relatime shared:7 - ext4 /dev/sda1 rw 83 77 8:1 /lib/modules /bedrock/strata/artix/usr/lib/modules rw,relatime shared:8 - ext4 /dev/sda1 rw 84 77 8:1 /media /bedrock/strata/artix/media rw,relatime shared:9 - ext4 /dev/sda1 rw 85 77 8:1 /mnt /bedrock/strata/artix/mnt rw,relatime shared:10 - ext4 /dev/sda1 rw 86 77 0:5 / /bedrock/strata/artix/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw 87 77 8:1 /root /bedrock/strata/artix/root rw,relatime shared:11 - ext4 /dev/sda1 rw 88 77 0:23 / /bedrock/strata/artix/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755 89 77 0:20 / /bedrock/strata/artix/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw 90 77 0:25 / /bedrock/strata/artix/tmp rw,nosuid,nodev,relatime shared:13 - tmpfs tmpfs rw 91 77 8:1 /bedrock /bedrock/strata/artix/bedrock rw,relatime - ext4 /dev/sda1 rw 92 91 0:29 / /bedrock/strata/artix/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other 93 91 0:26 / /bedrock/strata/artix/bedrock/run rw,relatime - tmpfs bedrock_run rw 94 91 8:1 / /bedrock/strata/artix/bedrock/strata/bedrock rw,relatime - ext4 /dev/sda1 rw 95 77 0:31 / /bedrock/strata/artix/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other 96 36 0:8 / /sys/kernel/security rw,relatime shared:14 - securityfs securityfs rw 99 70 0:8 / /bedrock/strata/devuan/sys/kernel/security rw,relatime shared:14 - securityfs securityfs rw 98 89 0:8 / /bedrock/strata/artix/sys/kernel/security rw,relatime shared:14 - securityfs securityfs rw 97 22 0:8 / /bedrock/strata/bedrock/sys/kernel/security rw,relatime shared:14 - securityfs securityfs rw 100 36 0:32 / /sys/fs/cgroup rw,relatime shared:15 - tmpfs cgroup rw,mode=755 103 70 0:32 / /bedrock/strata/devuan/sys/fs/cgroup rw,relatime shared:15 - tmpfs cgroup rw,mode=755 102 89 0:32 / /bedrock/strata/artix/sys/fs/cgroup rw,relatime shared:15 - tmpfs cgroup rw,mode=755 101 22 0:32 / /bedrock/strata/bedrock/sys/fs/cgroup rw,relatime shared:15 - tmpfs cgroup rw,mode=755 104 100 0:33 / /sys/fs/cgroup/cpuset rw,relatime shared:16 - cgroup cgroup rw,cpuset 107 103 0:33 / /bedrock/strata/devuan/sys/fs/cgroup/cpuset rw,relatime shared:16 - cgroup cgroup rw,cpuset 106 102 0:33 / /bedrock/strata/artix/sys/fs/cgroup/cpuset rw,relatime shared:16 - cgroup cgroup rw,cpuset 105 101 0:33 / /bedrock/strata/bedrock/sys/fs/cgroup/cpuset rw,relatime shared:16 - cgroup cgroup rw,cpuset 108 100 0:34 / /sys/fs/cgroup/cpu rw,relatime shared:17 - cgroup cgroup rw,cpu 111 103 0:34 / /bedrock/strata/devuan/sys/fs/cgroup/cpu rw,relatime shared:17 - cgroup cgroup rw,cpu 110 102 0:34 / /bedrock/strata/artix/sys/fs/cgroup/cpu rw,relatime shared:17 - cgroup cgroup rw,cpu 109 101 0:34 / /bedrock/strata/bedrock/sys/fs/cgroup/cpu rw,relatime shared:17 - cgroup cgroup rw,cpu 112 100 0:35 / /sys/fs/cgroup/cpuacct rw,relatime shared:18 - cgroup cgroup rw,cpuacct 115 103 0:35 / /bedrock/strata/devuan/sys/fs/cgroup/cpuacct rw,relatime shared:18 - cgroup cgroup rw,cpuacct 114 102 0:35 / /bedrock/strata/artix/sys/fs/cgroup/cpuacct rw,relatime shared:18 - cgroup cgroup rw,cpuacct 113 101 0:35 / /bedrock/strata/bedrock/sys/fs/cgroup/cpuacct rw,relatime shared:18 - cgroup cgroup rw,cpuacct 116 100 0:36 / /sys/fs/cgroup/blkio rw,relatime shared:19 - cgroup cgroup rw,blkio 119 103 0:36 / /bedrock/strata/devuan/sys/fs/cgroup/blkio rw,relatime shared:19 - cgroup cgroup rw,blkio 118 102 0:36 / /bedrock/strata/artix/sys/fs/cgroup/blkio rw,relatime shared:19 - cgroup cgroup rw,blkio 117 101 0:36 / /bedrock/strata/bedrock/sys/fs/cgroup/blkio rw,relatime shared:19 - cgroup cgroup rw,blkio 120 100 0:37 / /sys/fs/cgroup/memory rw,relatime shared:20 - cgroup cgroup rw,memory 123 103 0:37 / /bedrock/strata/devuan/sys/fs/cgroup/memory rw,relatime shared:20 - cgroup cgroup rw,memory 122 102 0:37 / /bedrock/strata/artix/sys/fs/cgroup/memory rw,relatime shared:20 - cgroup cgroup rw,memory 121 101 0:37 / /bedrock/strata/bedrock/sys/fs/cgroup/memory rw,relatime shared:20 - cgroup cgroup rw,memory 124 100 0:38 / /sys/fs/cgroup/devices rw,relatime shared:21 - cgroup cgroup rw,devices 127 103 0:38 / /bedrock/strata/devuan/sys/fs/cgroup/devices rw,relatime shared:21 - cgroup cgroup rw,devices 126 102 0:38 / /bedrock/strata/artix/sys/fs/cgroup/devices rw,relatime shared:21 - cgroup cgroup rw,devices 125 101 0:38 / /bedrock/strata/bedrock/sys/fs/cgroup/devices rw,relatime shared:21 - cgroup cgroup rw,devices 128 100 0:39 / /sys/fs/cgroup/freezer rw,relatime shared:22 - cgroup cgroup rw,freezer 131 103 0:39 / /bedrock/strata/devuan/sys/fs/cgroup/freezer rw,relatime shared:22 - cgroup cgroup rw,freezer 130 102 0:39 / /bedrock/strata/artix/sys/fs/cgroup/freezer rw,relatime shared:22 - cgroup cgroup rw,freezer 129 101 0:39 / /bedrock/strata/bedrock/sys/fs/cgroup/freezer rw,relatime shared:22 - cgroup cgroup rw,freezer 132 100 0:40 / /sys/fs/cgroup/net_cls rw,relatime shared:23 - cgroup cgroup rw,net_cls 135 103 0:40 / /bedrock/strata/devuan/sys/fs/cgroup/net_cls rw,relatime shared:23 - cgroup cgroup rw,net_cls 134 102 0:40 / /bedrock/strata/artix/sys/fs/cgroup/net_cls rw,relatime shared:23 - cgroup cgroup rw,net_cls 133 101 0:40 / /bedrock/strata/bedrock/sys/fs/cgroup/net_cls rw,relatime shared:23 - cgroup cgroup rw,net_cls 136 100 0:41 / /sys/fs/cgroup/perf_event rw,relatime shared:24 - cgroup cgroup rw,perf_event 139 103 0:41 / /bedrock/strata/devuan/sys/fs/cgroup/perf_event rw,relatime shared:24 - cgroup cgroup rw,perf_event 138 102 0:41 / /bedrock/strata/artix/sys/fs/cgroup/perf_event rw,relatime shared:24 - cgroup cgroup rw,perf_event 137 101 0:41 / /bedrock/strata/bedrock/sys/fs/cgroup/perf_event rw,relatime shared:24 - cgroup cgroup rw,perf_event 140 100 0:42 / /sys/fs/cgroup/net_prio rw,relatime shared:25 - cgroup cgroup rw,net_prio 143 103 0:42 / /bedrock/strata/devuan/sys/fs/cgroup/net_prio rw,relatime shared:25 - cgroup cgroup rw,net_prio 142 102 0:42 / /bedrock/strata/artix/sys/fs/cgroup/net_prio rw,relatime shared:25 - cgroup cgroup rw,net_prio 141 101 0:42 / /bedrock/strata/bedrock/sys/fs/cgroup/net_prio rw,relatime shared:25 - cgroup cgroup rw,net_prio 144 100 0:43 / /sys/fs/cgroup/hugetlb rw,relatime shared:26 - cgroup cgroup rw,hugetlb 147 103 0:43 / /bedrock/strata/devuan/sys/fs/cgroup/hugetlb rw,relatime shared:26 - cgroup cgroup rw,hugetlb 146 102 0:43 / /bedrock/strata/artix/sys/fs/cgroup/hugetlb rw,relatime shared:26 - cgroup cgroup rw,hugetlb 145 101 0:43 / /bedrock/strata/bedrock/sys/fs/cgroup/hugetlb rw,relatime shared:26 - cgroup cgroup rw,hugetlb 148 100 0:44 / /sys/fs/cgroup/pids rw,relatime shared:27 - cgroup cgroup rw,pids 151 103 0:44 / /bedrock/strata/devuan/sys/fs/cgroup/pids rw,relatime shared:27 - cgroup cgroup rw,pids 150 102 0:44 / /bedrock/strata/artix/sys/fs/cgroup/pids rw,relatime shared:27 - cgroup cgroup rw,pids 149 101 0:44 / /bedrock/strata/bedrock/sys/fs/cgroup/pids rw,relatime shared:27 - cgroup cgroup rw,pids 152 54 0:45 / /root/.cache/gvfs rw,nosuid,nodev,relatime shared:28 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=0,group_id=0 155 68 0:45 / /bedrock/strata/devuan/root/.cache/gvfs rw,nosuid,nodev,relatime shared:28 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=0,group_id=0 154 87 0:45 / /bedrock/strata/artix/root/.cache/gvfs rw,nosuid,nodev,relatime shared:28 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=0,group_id=0 153 53 0:45 / /bedrock/strata/bedrock/root/.cache/gvfs rw,nosuid,nodev,relatime shared:28 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=0,group_id=0 156 46 0:46 / /home/digit/.cache/gvfs rw,nosuid,nodev,relatime shared:29 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=1000,group_id=1000 159 63 0:46 / /bedrock/strata/devuan/home/digit/.cache/gvfs rw,nosuid,nodev,relatime shared:29 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=1000,group_id=1000 158 82 0:46 / /bedrock/strata/artix/home/digit/.cache/gvfs rw,nosuid,nodev,relatime shared:29 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=1000,group_id=1000 157 45 0:46 / /bedrock/strata/bedrock/home/digit/.cache/gvfs rw,nosuid,nodev,relatime shared:29 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=1000,group_id=1000 173 190 0:21 / /dev/pts rw,nosuid,noexec,relatime shared:30 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 172 189 0:21 / /bedrock/strata/devuan/dev/pts rw,nosuid,noexec,relatime shared:30 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 171 188 0:21 / /bedrock/strata/artix/dev/pts rw,nosuid,noexec,relatime shared:30 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 170 187 0:21 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:30 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 178 196 0:51 / /dev/shm rw,relatime shared:31 - tmpfs shm rw 177 195 0:51 / /bedrock/strata/devuan/dev/shm rw,relatime shared:31 - tmpfs shm rw 176 194 0:51 / /bedrock/strata/artix/dev/shm rw,relatime shared:31 - tmpfs shm rw 175 193 0:51 / /bedrock/strata/bedrock/dev/shm rw,relatime shared:31 - tmpfs shm rw 190 182 0:21 / /dev/pts rw,nosuid,noexec,relatime shared:32 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 189 181 0:21 / /bedrock/strata/devuan/dev/pts rw,nosuid,noexec,relatime shared:32 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 188 180 0:21 / /bedrock/strata/artix/dev/pts rw,nosuid,noexec,relatime shared:32 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 187 179 0:21 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:32 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 196 191 0:53 / /dev/shm rw,relatime shared:33 - tmpfs shm rw 195 186 0:53 / /bedrock/strata/devuan/dev/shm rw,relatime shared:33 - tmpfs shm rw 194 185 0:53 / /bedrock/strata/artix/dev/shm rw,relatime shared:33 - tmpfs shm rw 193 184 0:53 / /bedrock/strata/bedrock/dev/shm rw,relatime shared:33 - tmpfs shm rw 182 207 0:21 / /dev/pts rw,nosuid,noexec,relatime shared:34 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 181 206 0:21 / /bedrock/strata/devuan/dev/pts rw,nosuid,noexec,relatime shared:34 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 180 205 0:21 / /bedrock/strata/artix/dev/pts rw,nosuid,noexec,relatime shared:34 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 179 204 0:21 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:34 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 191 213 0:52 / /dev/shm rw,relatime shared:35 - tmpfs shm rw 186 212 0:52 / /bedrock/strata/devuan/dev/shm rw,relatime shared:35 - tmpfs shm rw 185 211 0:52 / /bedrock/strata/artix/dev/shm rw,relatime shared:35 - tmpfs shm rw 184 210 0:52 / /bedrock/strata/bedrock/dev/shm rw,relatime shared:35 - tmpfs shm rw 207 33 0:21 / /dev/pts rw,nosuid,noexec,relatime shared:36 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 206 60 0:21 / /bedrock/strata/devuan/dev/pts rw,nosuid,noexec,relatime shared:36 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 205 79 0:21 / /bedrock/strata/artix/dev/pts rw,nosuid,noexec,relatime shared:36 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 204 23 0:21 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:36 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 213 33 0:56 / /dev/shm rw,relatime shared:37 - tmpfs shm rw 212 60 0:56 / /bedrock/strata/devuan/dev/shm rw,relatime shared:37 - tmpfs shm rw 211 79 0:56 / /bedrock/strata/artix/dev/shm rw,relatime shared:37 - tmpfs shm rw 210 23 0:56 / /bedrock/strata/bedrock/dev/shm rw,relatime shared:37 - tmpfs shm rw 164 31 8:1 /bedrock/strata/gentoo /bedrock/strata/gentoo rw,relatime - ext4 /dev/sda1 rw 166 164 8:1 /boot /bedrock/strata/gentoo/boot rw,relatime shared:4 - ext4 /dev/sda1 rw 167 164 0:6 / /bedrock/strata/gentoo/dev rw,nosuid,noexec shared:2 - devtmpfs devtmpfs rw,size=216152k,nr_inodes=54038,mode=755 168 167 0:21 / /bedrock/strata/gentoo/dev/pts rw,nosuid,noexec,relatime shared:36 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 169 168 0:21 / /bedrock/strata/gentoo/dev/pts rw,nosuid,noexec,relatime shared:34 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 174 169 0:21 / /bedrock/strata/gentoo/dev/pts rw,nosuid,noexec,relatime shared:32 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 183 174 0:21 / /bedrock/strata/gentoo/dev/pts rw,nosuid,noexec,relatime shared:30 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 192 183 0:21 / /bedrock/strata/gentoo/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000 197 167 0:56 / /bedrock/strata/gentoo/dev/shm rw,relatime shared:37 - tmpfs shm rw 198 197 0:52 / /bedrock/strata/gentoo/dev/shm rw,relatime shared:35 - tmpfs shm rw 199 198 0:53 / /bedrock/strata/gentoo/dev/shm rw,relatime shared:33 - tmpfs shm rw 200 199 0:51 / /bedrock/strata/gentoo/dev/shm rw,relatime shared:31 - tmpfs shm rw 201 200 0:22 / /bedrock/strata/gentoo/dev/shm rw,nosuid,nodev,noexec shared:6 - tmpfs tmpfs rw 202 164 8:1 /home /bedrock/strata/gentoo/home rw,relatime shared:7 - ext4 /dev/sda1 rw 203 202 0:46 / /bedrock/strata/gentoo/home/digit/.cache/gvfs rw,nosuid,nodev,relatime shared:29 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=1000,group_id=1000 208 164 8:1 /lib/modules /bedrock/strata/gentoo/lib/modules rw,relatime shared:8 - ext4 /dev/sda1 rw 209 164 8:1 /media /bedrock/strata/gentoo/media rw,relatime shared:9 - ext4 /dev/sda1 rw 214 164 8:1 /mnt /bedrock/strata/gentoo/mnt rw,relatime shared:10 - ext4 /dev/sda1 rw 215 164 0:5 / /bedrock/strata/gentoo/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw 216 164 8:1 /root /bedrock/strata/gentoo/root rw,relatime shared:11 - ext4 /dev/sda1 rw 217 216 0:45 / /bedrock/strata/gentoo/root/.cache/gvfs rw,nosuid,nodev,relatime shared:28 - fuse.gvfsd-fuse gvfsd-fuse rw,user_id=0,group_id=0 218 164 0:23 / /bedrock/strata/gentoo/run rw,nosuid,nodev,noexec shared:12 - tmpfs tmpfs rw,mode=755 219 164 0:20 / /bedrock/strata/gentoo/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw 220 219 0:8 / /bedrock/strata/gentoo/sys/kernel/security rw,relatime shared:14 - securityfs securityfs rw 221 219 0:32 / /bedrock/strata/gentoo/sys/fs/cgroup rw,relatime shared:15 - tmpfs cgroup rw,mode=755 222 221 0:33 / /bedrock/strata/gentoo/sys/fs/cgroup/cpuset rw,relatime shared:16 - cgroup cgroup rw,cpuset 223 221 0:34 / /bedrock/strata/gentoo/sys/fs/cgroup/cpu rw,relatime shared:17 - cgroup cgroup rw,cpu 224 221 0:35 / /bedrock/strata/gentoo/sys/fs/cgroup/cpuacct rw,relatime shared:18 - cgroup cgroup rw,cpuacct 225 221 0:36 / /bedrock/strata/gentoo/sys/fs/cgroup/blkio rw,relatime shared:19 - cgroup cgroup rw,blkio 226 221 0:37 / /bedrock/strata/gentoo/sys/fs/cgroup/memory rw,relatime shared:20 - cgroup cgroup rw,memory 227 221 0:38 / /bedrock/strata/gentoo/sys/fs/cgroup/devices rw,relatime shared:21 - cgroup cgroup rw,devices 228 221 0:39 / /bedrock/strata/gentoo/sys/fs/cgroup/freezer rw,relatime shared:22 - cgroup cgroup rw,freezer 229 221 0:40 / /bedrock/strata/gentoo/sys/fs/cgroup/net_cls rw,relatime shared:23 - cgroup cgroup rw,net_cls 230 221 0:41 / /bedrock/strata/gentoo/sys/fs/cgroup/perf_event rw,relatime shared:24 - cgroup cgroup rw,perf_event 231 221 0:42 / /bedrock/strata/gentoo/sys/fs/cgroup/net_prio rw,relatime shared:25 - cgroup cgroup rw,net_prio 232 221 0:43 / /bedrock/strata/gentoo/sys/fs/cgroup/hugetlb rw,relatime shared:26 - cgroup cgroup rw,hugetlb 233 221 0:44 / /bedrock/strata/gentoo/sys/fs/cgroup/pids rw,relatime shared:27 - cgroup cgroup rw,pids 234 164 0:25 / /bedrock/strata/gentoo/tmp rw,nosuid,nodev,relatime shared:13 - tmpfs tmpfs rw 235 164 8:1 /bedrock /bedrock/strata/gentoo/bedrock rw,relatime - ext4 /dev/sda1 rw 236 235 0:29 / /bedrock/strata/gentoo/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other 237 235 0:26 / /bedrock/strata/gentoo/bedrock/run rw,relatime - tmpfs bedrock_run rw 238 235 8:1 / /bedrock/strata/gentoo/bedrock/strata/bedrock rw,relatime - ext4 /dev/sda1 rw 239 164 0:55 / /bedrock/strata/gentoo/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other $ lsmod Not tainted cfg80211 737280 0 - Live 0x0000000000000000 8021q 36864 0 - Live 0x0000000000000000 garp 16384 1 8021q, Live 0x0000000000000000 mrp 20480 1 8021q, Live 0x0000000000000000 stp 16384 1 garp, Live 0x0000000000000000 llc 16384 2 garp,stp, Live 0x0000000000000000 joydev 24576 0 - Live 0x0000000000000000 psmouse 163840 0 - Live 0x0000000000000000 snd_intel8x0 40960 0 - Live 0x0000000000000000 input_leds 16384 0 - Live 0x0000000000000000 edac_mce_amd 32768 0 - Live 0x0000000000000000 snd_ac97_codec 135168 1 snd_intel8x0, Live 0x0000000000000000 pcspkr 16384 0 - Live 0x0000000000000000 vboxguest 36864 0 - Live 0x0000000000000000 ac 16384 0 - Live 0x0000000000000000 snd_pcm 110592 2 snd_intel8x0,snd_ac97_codec, Live 0x0000000000000000 intel_agp 24576 0 - Live 0x0000000000000000 evdev 20480 11 - Live 0x0000000000000000 i2c_piix4 24576 0 - Live 0x0000000000000000 ac97_bus 16384 1 snd_ac97_codec, Live 0x0000000000000000 intel_gtt 24576 1 intel_agp, Live 0x0000000000000000 mac_hid 16384 0 - Live 0x0000000000000000 snd_seq 77824 0 - Live 0x0000000000000000 snd_seq_device 16384 1 snd_seq, Live 0x0000000000000000 snd_timer 32768 2 snd_pcm,snd_seq, Live 0x0000000000000000 snd 86016 6 snd_intel8x0,snd_ac97_codec,snd_pcm,snd_seq,snd_seq_device,snd_timer, Live 0x0000000000000000 soundcore 16384 1 snd, Live 0x0000000000000000 vhost_vsock 20480 0 - Live 0x0000000000000000 vmw_vsock_virtio_transport_common 24576 1 vhost_vsock, Live 0x0000000000000000 vsock 36864 2 vhost_vsock,vmw_vsock_virtio_transport_common, Live 0x0000000000000000 vhost_net 28672 0 - Live 0x0000000000000000 vhost 40960 2 vhost_vsock,vhost_net, Live 0x0000000000000000 tap 28672 1 vhost_net, Live 0x0000000000000000 uhid 20480 0 - Live 0x0000000000000000 hci_vhci 16384 0 - Live 0x0000000000000000 bluetooth 557056 1 hci_vhci, Live 0x0000000000000000 ecdh_generic 16384 1 bluetooth, Live 0x0000000000000000 rfkill 24576 2 cfg80211,bluetooth, Live 0x0000000000000000 ecc 32768 1 ecdh_generic, Live 0x0000000000000000 vfio_iommu_type1 32768 0 - Live 0x0000000000000000 vfio 28672 1 vfio_iommu_type1, Live 0x0000000000000000 uinput 20480 0 - Live 0x0000000000000000 userio 16384 0 - Live 0x0000000000000000 ppp_generic 40960 0 - Live 0x0000000000000000 slhc 20480 1 ppp_generic, Live 0x0000000000000000 tun 49152 1 vhost_net, Live 0x0000000000000000 loop 36864 0 - Live 0x0000000000000000 nvram 16384 0 - Live 0x0000000000000000 btrfs 1392640 0 - Live 0x0000000000000000 xor 24576 1 btrfs, Live 0x0000000000000000 raid6_pq 118784 1 btrfs, Live 0x0000000000000000 libcrc32c 16384 1 btrfs, Live 0x0000000000000000 cuse 16384 0 - Live 0x0000000000000000 binfmt_misc 20480 0 - Live 0x0000000000000000 fuse 126976 17 cuse, Live 0x0000000000000000 hid_generic 16384 0 - Live 0x0000000000000000 usbhid 53248 0 - Live 0x0000000000000000 hid 131072 3 uhid,hid_generic,usbhid, Live 0x0000000000000000 ext4 700416 1 - Live 0x0000000000000000 crc32c_generic 16384 0 - Live 0x0000000000000000 crc16 16384 2 bluetooth,ext4, Live 0x0000000000000000 mbcache 16384 1 ext4, Live 0x0000000000000000 jbd2 110592 1 ext4, Live 0x0000000000000000 sr_mod 28672 0 - Live 0x0000000000000000 sd_mod 49152 3 - Live 0x0000000000000000 cdrom 53248 1 sr_mod, Live 0x0000000000000000 ata_generic 16384 0 - Live 0x0000000000000000 pata_acpi 16384 0 - Live 0x0000000000000000 vmwgfx 335872 2 - Live 0x0000000000000000 ttm 102400 1 vmwgfx, Live 0x0000000000000000 drm_kms_helper 176128 1 vmwgfx, Live 0x0000000000000000 syscopyarea 16384 1 drm_kms_helper, Live 0x0000000000000000 sysfillrect 16384 1 drm_kms_helper, Live 0x0000000000000000 sysimgblt 16384 1 drm_kms_helper, Live 0x0000000000000000 fb_sys_fops 16384 1 drm_kms_helper, Live 0x0000000000000000 crct10dif_pclmul 16384 1 - Live 0x0000000000000000 crc32_pclmul 16384 0 - Live 0x0000000000000000 ata_piix 36864 2 - Live 0x0000000000000000 crc32c_intel 24576 3 - Live 0x0000000000000000 ghash_clmulni_intel 16384 0 - Live 0x0000000000000000 ohci_pci 16384 0 - Live 0x0000000000000000 ehci_pci 16384 0 - Live 0x0000000000000000 libata 241664 3 ata_generic,pata_acpi,ata_piix, Live 0x0000000000000000 ohci_hcd 53248 1 ohci_pci, Live 0x0000000000000000 drm 483328 5 vmwgfx,ttm,drm_kms_helper, Live 0x0000000000000000 ehci_hcd 86016 1 ehci_pci, Live 0x0000000000000000 aesni_intel 372736 0 - Live 0x0000000000000000 crypto_simd 16384 1 aesni_intel, Live 0x0000000000000000 cryptd 20480 2 ghash_clmulni_intel,crypto_simd, Live 0x0000000000000000 glue_helper 16384 1 aesni_intel, Live 0x0000000000000000 scsi_mod 176128 3 sr_mod,sd_mod,libata, Live 0x0000000000000000 serio_raw 16384 0 - Live 0x0000000000000000 usbcore 258048 5 usbhid,ohci_pci,ehci_pci,ohci_hcd,ehci_hcd, Live 0x0000000000000000 e1000 139264 0 - Live 0x0000000000000000 agpgart 40960 4 intel_agp,intel_gtt,ttm,drm, Live 0x0000000000000000 video 45056 0 - Live 0x0000000000000000 button 16384 0 - Live 0x0000000000000000 dm_mirror 28672 0 - Live 0x0000000000000000 dm_region_hash 20480 1 dm_mirror, Live 0x0000000000000000 dm_log 20480 2 dm_mirror,dm_region_hash, Live 0x0000000000000000 dm_mod 139264 2 dm_mirror,dm_log, Live 0x0000000000000000 $ ps PID USER TIME COMMAND 1 root 0:01 runit 2 root 0:00 [kthreadd] 3 root 0:00 [rcu_gp] 4 root 0:00 [rcu_par_gp] 6 root 0:00 [kworker/0:0H-kb] 8 root 0:00 [mm_percpu_wq] 9 root 0:09 [ksoftirqd/0] 10 root 0:02 [rcu_preempt] 11 root 0:00 [migration/0] 12 root 0:00 [idle_inject/0] 14 root 0:00 [cpuhp/0] 15 root 0:00 [kdevtmpfs] 16 root 0:00 [netns] 17 root 0:00 [rcu_tasks_kthre] 18 root 0:00 [kauditd] 19 root 0:00 [khungtaskd] 20 root 0:00 [oom_reaper] 21 root 0:00 [writeback] 22 root 0:00 [kcompactd0] 23 root 0:00 [ksmd] 47 root 0:00 [kintegrityd] 48 root 0:00 [kblockd] 49 root 0:00 [blkcg_punt_bio] 50 root 0:00 [edac-poller] 51 root 0:00 [devfreq_wq] 52 root 0:00 [watchdogd] 54 root 0:35 [kswapd0] 55 root 0:00 [kthrotld] 56 root 0:00 [nvme-wq] 57 root 0:00 [nvme-reset-wq] 58 root 0:00 [nvme-delete-wq] 59 root 0:00 [ipv6_addrconf] 68 root 0:00 [kstrp] 69 root 0:00 [kworker/u3:0] 70 root 0:00 [charger_manager] 338 root 0:00 [cryptd] 359 root 0:00 [ata_sff] 362 root 0:00 [scsi_eh_0] 364 root 0:00 [scsi_tmf_0] 366 root 0:00 [scsi_eh_1] 368 root 0:00 [scsi_tmf_1] 372 root 0:00 [irq/18-vmwgfx] 373 root 0:00 [ttm_swap] 375 root 1:07 [kworker/0:1H-kb] 397 root 0:04 [jbd2/sda1-8] 398 root 0:00 [ext4-rsv-conver] 758 root 0:00 /usr/libexec/lxdm-session 759 digit 0:03 fluxbox 816 digit 0:00 dbus-launch --sh-syntax --exit-with-session 817 digit 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session 865 digit 0:00 st 885 digit 0:00 /bedrock/cross/bin/bash 929 digit 0:00 /usr/libexec/gvfsd 965 digit 1:34 icecat 1058 digit 0:00 /usr/libexec/at-spi-bus-launcher 1072 digit 0:03 {WebExtensions} /usr/lib/icecat/icecat -contentproc -childID 1 -isForBrowser -prefsLen 1 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 1177 digit 0:04 {Web Content} /usr/lib/icecat/icecat -contentproc -childID 3 -isForBrowser -prefsLen 8164 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 1225 digit 0:00 {dmenu-bind.sh} /bin/bash /usr/bin/dmenu-bind.sh 1231 digit 0:00 /bedrock/cross/bin/bash 1273 digit 0:00 st -f nztt 1294 digit 0:00 /bedrock/cross/bin/bash 1326 root 2:32 /bedrock/libexec/etcfs -o allow_other /etc 1598 root 0:09 /bedrock/libexec/crossfs -o allow_other /bedrock/cross 1667 digit 0:00 {Web Content} /usr/lib/icecat/icecat -contentproc -childID 10 -isForBrowser -prefsLen 9708 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 1719 digit 0:00 {Web Content} /usr/lib/icecat/icecat -contentproc -childID 11 -isForBrowser -prefsLen 9708 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 1809 root 0:00 [kworker/0:1-eve] 2006 root 0:00 [kworker/u2:2-ev] 2068 root 0:00 agetty -L -8 hvsi0 19200 vt100 2070 digit 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /home/digit/brlreportlog 2931 root 0:04 /bedrock/libexec/etcfs -o allow_other /etc 3293 root 5:13 /bedrock/libexec/etcfs -o allow_other /etc 4583 root 0:03 /bedrock/libexec/etcfs -o allow_other /etc 5200 digit 0:00 /usr/libexec/gvfs-udisks2-volume-monitor 5228 digit 0:00 /usr/libexec/gvfs-mtp-volume-monitor 5233 digit 0:00 /usr/libexec/gvfs-afc-volume-monitor 5238 digit 0:00 /usr/libexec/gvfsd-trash --spawner :1.1 /org/gtk/gvfs/exec_spaw/0 5252 digit 0:00 /usr/libexec/gvfsd-network --spawner :1.1 /org/gtk/gvfs/exec_spaw/1 5262 digit 0:00 /usr/libexec/gvfsd-dnssd --spawner :1.1 /org/gtk/gvfs/exec_spaw/3 5283 digit 0:00 /usr/libexec/gvfsd-metadata 5579 root 0:00 [kworker/0:0-eve] 5618 root 0:00 [kworker/u2:1-ev] 5980 root 0:15 /bedrock/libexec/etcfs -o allow_other /etc 7960 root 0:03 runsvdir -P /run/runit/runsvdir/current log: uested by ':1.88' (uid=1000 pid=472 comm="lxsession-logout --banner /usr/share/lxde/images/l") (using servicehelper) strat: warning: unable to set cwd to /etc/sv/dbus for stratum artix due to: no such directory (ENOENT). falling back to root directory dbus-daemon[8003]: [system] Failed to activate service 'org.freedesktop.login1': timed out (service_start_timeout=25000ms) ............ 7966 root 0:00 runsv agetty-tty4 7967 root 0:00 runsv dbus 7968 root 0:00 runsv agetty-tty5 7969 root 0:00 runsv dhcpcd 7970 root 0:00 runsv polkitd 7971 root 0:00 runsv sshd 7972 root 0:00 runsv lxdm 7973 root 0:00 runsv acpid 7974 root 0:00 runsv agetty-tty1 7975 root 0:00 runsv agetty-tty6 7976 root 0:00 runsv udevd 7977 root 0:00 runsv uuidd 7978 root 0:12 runsv agetty-hvsi0 7979 root 0:00 runsv agetty-tty2 7980 root 0:00 runsv rtkit 7981 root 0:00 runsv agetty-tty3 7982 root 0:12 runsv agetty-hvc0 7992 polkitd 0:00 /usr/lib/polkit-1/polkitd --no-debug 7994 root 0:00 agetty tty6 38400 linux 7995 root 0:00 agetty --noclear tty1 38400 linux 7996 root 0:00 dhcpcd: [launcher] 7997 root 0:00 sshd: /usr/bin/sshd -D [listener] 0 of 10-100 startups 7998 root 0:00 agetty tty2 38400 linux 7999 root 0:00 agetty tty3 38400 linux 8000 _uuidd 0:00 uuidd -F -P 8001 root 0:00 acpid -f -l 8002 root 0:00 agetty tty4 38400 linux 8003 dbus 0:00 dbus-daemon --system --nofork --nopidfile 8005 root 0:00 agetty tty5 38400 linux 8006 root 0:00 /usr/bin/lxdm-binary 8007 root 0:00 udevd 8030 rtkit 0:00 /usr/libexec/rtkit-daemon 8032 _dhcpcd 0:00 dhcpcd: [master] [ip4] [ip6] 8033 root 0:00 dhcpcd: [privileged actioneer] 8034 _dhcpcd 0:00 dhcpcd: [network proxy] 8035 root 2:26 /usr/libexec/Xorg -background none :0 vt07 -nolisten tcp -novtswitch -auth /var/run/lxdm/lxdm-:0.auth 8046 root 0:00 [cfg80211] 8066 _dhcpcd 0:00 dhcpcd: [BPF ARP] enp0s3 10.0.2.15 8078 root 0:00 dbus-launch --autolaunch c93c8ef9c21fbd33e322fbd45dc647b5 --binary-syntax --close-stderr 8079 root 0:00 /usr/bin/dbus-daemon --syslog-only --fork --print-pid 5 --print-address 7 --session 8081 root 0:00 /usr/libexec/at-spi-bus-launcher 8085 root 0:00 /usr/libexec/gvfsd 8090 root 0:00 /usr/libexec/gvfsd-fuse /root/.cache/gvfs -f 8093 root 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 3 8124 root 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session 8191 digit 0:00 dbus-launch --sh-syntax --exit-with-session 8192 digit 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session 8200 digit 0:00 /usr/libexec/gvfsd 8205 digit 0:00 /usr/libexec/gvfsd-fuse /home/digit/.cache/gvfs -f 8275 digit 0:00 /usr/bin/ssh-agent -s 8356 digit 0:01 /usr/libexec/gvfs-udisks2-volume-monitor 8367 root 0:00 /usr/libexec/udisks2/udisksd 8421 digit 0:00 /usr/libexec/gvfs-mtp-volume-monitor 8426 digit 0:01 /usr/libexec/gvfs-afc-volume-monitor 8432 digit 0:00 /usr/libexec/gvfsd-trash --spawner :1.2 /org/gtk/gvfs/exec_spaw/0 8660 digit 0:00 /usr/libexec/at-spi-bus-launcher 9573 root 0:00 [kworker/0:2-eve] 10946 root 0:00 agetty -L hvc0 9600 vt100 10972 digit 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /home/digit/brlreportlog 10974 digit 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /home/digit/brlreportlog 10975 digit 0:00 sed s/^/ / 10976 digit 0:00 {ps} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /home/digit/brlreportlog 15355 digit 0:03 {Web Content} /usr/lib/icecat/icecat -contentproc -childID 5 -isForBrowser -prefsLen 9670 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 15526 digit 0:08 {Web Content} /usr/lib/icecat/icecat -contentproc -childID 6 -isForBrowser -prefsLen 9670 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 24304 root 0:00 /usr/libexec/upowerd 27223 root 0:00 [kworker/u2:0-ev] 27229 digit 0:01 {Web Content} /usr/lib/icecat/icecat -contentproc -childID 9 -isForBrowser -prefsLen 9670 -prefMapSize 178816 -parentBuildID 20200703030514 -greomni /usr/lib/icecat/omni.ja -appomni /usr/lib/icecat/browser/omni.ja -appdir /usr/lib/icecat/browser 965 tab 29913 digit 0:00 dbus-launch --sh-syntax --exit-with-session 29914 digit 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session 29923 digit 0:00 /usr/libexec/gvfsd 29997 digit 0:00 /usr/bin/ssh-agent -s 30027 digit 0:00 /usr/libexec/gvfs-udisks2-volume-monitor 30104 digit 0:00 /usr/libexec/gvfs-mtp-volume-monitor 30111 digit 0:00 /usr/libexec/gvfs-afc-volume-monitor 30124 digit 0:00 /usr/libexec/gvfsd-trash --spawner :1.2 /org/gtk/gvfs/exec_spaw/0 30441 digit 0:00 dbus-launch --sh-syntax --exit-with-session 30442 digit 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session 30575 digit 0:00 dbus-launch --sh-syntax --exit-with-session 30576 digit 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session 30585 digit 0:00 /usr/libexec/gvfsd 30798 digit 0:00 /usr/bin/ssh-agent -s 30900 digit 0:00 /usr/libexec/gvfs-udisks2-volume-monitor 30930 digit 0:00 /usr/libexec/gvfs-mtp-volume-monitor 30935 digit 0:00 /usr/libexec/gvfs-afc-volume-monitor 30943 digit 0:00 /usr/libexec/gvfsd-trash --spawner :1.2 /org/gtk/gvfs/exec_spaw/0 $ 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 1: void 2: void 3: void 4: void 6: void 8: void 9: void 10: void 11: void 12: void 14: void 15: 16: void 17: void 18: void 19: void 20: void 21: void 22: void 23: void 47: void 48: void 49: void 50: void 51: void 52: void 54: void 55: void 56: void 57: void 58: void 59: void 68: void 69: void 70: void 338: void 359: void 362: void 364: void 366: void 368: void 372: void 373: void 375: void 397: void 398: void 758: void 759: void 816: void 817: void 865: void 885: void 929: void 965: void 1058: void 1072: 1177: 1225: void 1231: void 1273: void 1294: void 1326: bedrock 1598: 1667: 1719: 1809: void 2006: void 2068: 2070: void 2931: gentoo 3293: void 4583: devuan 5200: void 5228: void 5233: void 5238: void 5252: void 5262: void 5283: void 5579: void 5618: void 5980: artix 7960: void 7966: void 7967: void 7968: void 7969: void 7970: void 7971: void 7972: void 7973: void 7974: void 7975: void 7976: void 7977: void 7978: void 7979: void 7980: void 7981: void 7982: void 7992: void 7994: void 7995: void 7996: void 7997: void 7998: void 7999: void 8000: void 8001: void 8002: void 8003: void 8005: void 8006: void 8007: void 8030: 8032: 8033: void 8034: 8035: void 8046: void 8066: 8078: void 8079: void 8081: void 8085: void 8090: void 8093: void 8124: void 8191: void 8192: void 8200: void 8205: void 8275: void 8356: void 8367: void 8421: void 8426: void 8432: void 8660: void 9573: void 10946: void 10978: void 10980: void 10981: void 10982: void 10983: void 15355: 15526: 24304: void 27223: void 27229: 29913: void 29914: void 29923: void 29997: void 30027: void 30104: void 30111: void 30124: void 30441: void 30442: void 30575: void 30576: void 30585: void 30798: void 30900: void 30930: void 30935: void 30943: void $ cat /bedrock/cross/.bedrock-config-filesystem cat: can't open '/bedrock/cross/.bedrock-config-filesystem': Permission denied $ cat /proc/1/root/etc/.bedrock-config-filesystem cat: can't open '/proc/1/root/etc/.bedrock-config-filesystem': Permission denied $ uname -m x86_64 $ uname -a Linux voidrock 5.4.50_1 #1 SMP PREEMPT Thu Jul 2 15:07:59 UTC 2020 x86_64 GNU/Linux $ env color_priority=\033[1;37m\033[101m color_link=\033[0;94m USER=digit MAIL=/var/mail/digit color_logo=\033[1;37m SHLVL=3 HOME=/home/digit OLDPWD=/home/digit color_okay=\033[0;32m DESKTOP_SESSION=Fluxbox color_warn=\033[0;93m color_term=\033[0;35m DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-IOhFsvDMEb,guid=4bab5b7b29902df4f7d27d705f03b704 color_strat=\033[0;36m INFOPATH=/bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins color_alias=\033[0;93m color_norm=\033[0m LOGNAME=digit WINDOWID=18874373 _=/bedrock/bin/brl TERMINFO_DIRS=/usr/local/share/terminfo:/usr/share/terminfo:/bedrock/cross/terminfo color_sub=\033[0;93m TERM=st-256color LC_COLLATE=C PATH=/bedrock/cross/pin/bin:/bedrock/bin:/usr/local/bin:/usr/local/sbin:/opt/bin:/opt/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/snap/bin:/bedrock/cross/bin:/usr/lib/jvm/default/bin DISPLAY=:0.0 LANG=en_GB.UTF-8 XAUTHORITY=/home/digit/.Xauthority color_file=\033[0;32m SHELL=/bedrock/cross/bin/bash color_bedrock=\033[0;93m color_alert=\033[0;91m color_rcmd=\033[0;31m PWD=/home/digit/Pictures color_disabled_strat=\033[0;34m XDG_DATA_DIRS=/usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/flatpak/exports/share:/bedrock/cross color_cmd=\033[0;32m color_distro=\033[0;93m MANPATH=/bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man color_misc=\033[0;32m color_glue=\033[1;37m $ /bedrock/libexec/getfattr -d /bedrock/strata/bedrock getfattr: Removing leading '/' from absolute path names # file: bedrock/strata/bedrock user.bedrock.arch="x86_64" user.bedrock.show_boot="" user.bedrock.show_cross="" user.bedrock.show_init="" user.bedrock.show_list="" user.bedrock.show_pmm="" user.bedrock.stratum="bedrock"