Advertisement
RayVermey

Untitled

May 25th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 65.07 KB | None | 0 0
  1. cat /tmp/report
  2. Bedrock Linux system report
  3.  
  4. $ cat /bedrock/etc/bedrock-release
  5. Bedrock Linux 0.7.6 Poki
  6.  
  7. $ cat /bedrock/etc/bedrock.conf
  8. #
  9. # Bedrock Linux main configuration file
  10. #
  11. # After making changes here, run `brl apply` (as root) to apply them.
  12. #
  13.  
  14. [locale]
  15. #
  16. # The Olson timezone. For example:
  17. #
  18. # timezone = America/New_York
  19. #
  20. # At least one stratum should provide an Olson database file at
  21. #
  22. # /usr/share/zoneinfo/<timezone>
  23. #
  24. # For example, for America/New_York there should be a file at
  25. #
  26. # /usr/share/zoneinfo/America/New_York
  27. #
  28. timezone = Europe/Amsterdam
  29.  
  30. #
  31. # The /etc/locale.gen language line. For example:
  32. #
  33. # localegen = en_US.UTF-8 UTF-8
  34. #
  35. localegen = en_US.UTF-8 UTF-8
  36.  
  37. #
  38. # The POSIX $LANG variable
  39. #
  40. LANG = en_US.UTF-8
  41.  
  42. [init]
  43. #
  44. # Bedrock Linux provides its own init which sets up Bedrock subsystems then
  45. # hands control over to a user-selected init provided by some stratum.
  46. #
  47.  
  48. #
  49. # Number of seconds to wait for an init to be input before automatically
  50. # selecting the default value (if a valid default value is set).
  51. #
  52. timeout = 30
  53.  
  54. #
  55. # Init to utilize by default if timeout expires. Format is
  56. #
  57. # default = <stratum>:<path>
  58. #
  59. # For example, to use void's /sbin/init, use:
  60. #
  61. # default = void:/sbin/init
  62. #
  63. default = ubuntu:/sbin/init
  64.  
  65. #
  66. # A comma separated list of local file paths which may provide an init. The
  67. # Bedrock init menu will list every available one from every (unignored)
  68. # stratum.
  69. #
  70. 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
  71.  
  72. [global]
  73. #
  74. # Bedrock Linux categorizes every file path on the system as either:
  75. #
  76. # - Local to a given stratum. Multiple instances of such files are needed to
  77. # avoid conflicts between the strata.
  78. # - Global across all strata. There is only one instance of such a file
  79. # irrelevant of the number of strata.
  80. #
  81. # For example: both Debian and Ubuntu have package managers that read
  82. # /etc/apt/sources.list, and each needs to see something different there.
  83. # Thus, the /etc/apt/sources.list file path should be local to each stratum.
  84. # However, all processes should see the same contents in /home, and thus /home
  85. # is global.
  86. #
  87. # By default, all files are local. The following settings are used to indicate
  88. # which files should be global. Different contexts require different systems
  89. # for marking a file path as global.
  90. #
  91.  
  92. #
  93. # A list of directories which should be global. If something is
  94. # mounted into one of these directories, that new mount point
  95. # is also global.
  96. #
  97. share = /boot, /dev, /home, /lib/modules, /media, /mnt, /proc, /root, /run, /sys, /tmp, /var/tmp
  98.  
  99. #
  100. # Another list of directories which should be global. Anything mounted in them
  101. # is local by default. These are primarily used to avoid recursion in nested
  102. # cases. Given that nesting is expected, be careful with order.
  103. #
  104. bind = /bedrock, /bedrock/cross, /bedrock/run, /bedrock/strata/bedrock
  105.  
  106. #
  107. # A list of files and directories within /etc which should be global. /etc
  108. # must be treated specially, as the techniques used for share and bind do not
  109. # work for files in it.
  110. #
  111. etc = adjtime, default/grub, fstab, group, group-, gshadow, gshadow-, hostname, hosts, login.defs, machine-id, modprobe.d/blacklist.conf, passwd, passwd-, passwd.org, passwd.upwd-write, rc.local, resolv.conf, shadow, shadow-, sudoers
  112.  
  113. [symlinks]
  114. #
  115. # Enforce various symlinks are in place at local paths. This is applied at
  116. # stratum enable/repair time.
  117. #
  118. # Keys are local paths, values are symlink contents.
  119. #
  120. # The symlink contents must be absolute paths.
  121. #
  122.  
  123. #
  124. # Some package managers attempt to update this. They become upset if it is
  125. # created between an unlink() and symlink(), making it unsuitable for
  126. # [etc-symlinks] below.
  127. #
  128. # Different distros use slightly different values here that are all effectively
  129. # the same. Rather than attempt to fight distros in this regard, Bedrock has
  130. # hard-coded internal support for multiple valid values here and may not
  131. # respect changes to this field.
  132. /etc/mtab = /proc/self/mounts
  133.  
  134. #
  135. # Some distros may expect a file at one path while others expect it at another.
  136. # Standardize the location of global files.
  137. #
  138. /var/lib/dbus/machine-id = /etc/machine-id
  139. /var/run = /run
  140.  
  141. #
  142. # Various programs need to be configured to properly interact with Bedrock
  143. # subsystems. Point them to Bedrock configuration.
  144. #
  145. /etc/systemd/system/bedrock-fix-mounts.service = /bedrock/share/systemd/bedrock-fix-mounts.service
  146. /etc/systemd/system/bedrock-stop-fuse-filesystems.service = /bedrock/share/systemd/bedrock-stop-fuse-filesystems.service
  147. /etc/systemd/system/multi-user.target.wants/bedrock-fix-mounts.service = /bedrock/share/systemd/bedrock-fix-mounts.service
  148. /etc/systemd/system/multi-user.target.wants/bedrock-stop-fuse-filesystems.service = /bedrock/share/systemd/bedrock-stop-fuse-filesystems.service
  149.  
  150. /etc/X11/xorg.conf.d/99-bedrock-fonts.conf = /bedrock/run/xorg-fonts
  151. /etc/fonts/conf.d/99-bedrock-fonts.conf = /bedrock/share/fonts/fontconf.conf
  152.  
  153. /etc/X11/Xsession.d/99bedrock_env = /bedrock/run/profile
  154. /etc/X11/xinit/xinitrc.d/99bedrock_env = /bedrock/run/profile
  155.  
  156. /etc/bash_completion.d/brl = /bedrock/share/bash/completion/brl
  157. /etc/bash_completion.d/strat = /bedrock/share/bash/completion/strat
  158.  
  159. /etc/fish/conf.d/99bedrock.fish = /bedrock/run/fprofile
  160. /etc/fish/completions/brl.fish = /bedrock/share/fish/completion/brl.fish
  161. /etc/fish/completions/strat.fish = /bedrock/share/fish/completion/strat.fish
  162.  
  163. #
  164. # In general, system software such as Bedrock should not manipulate /usr/local.
  165. # Bedrock should favor configuring /etc files instead.
  166. #
  167. # However, dbus's dbus-daemon-launch-helper seems to ignore /etc/dbus-1/
  168. # configuration extending the search path. See
  169. # https://bugs.freedesktop.org/show_bug.cgi?id=92458 for a discussion on the
  170. # matter. For example:
  171. #
  172. # > Note that d-d-l-h only reads .service files from standard hard-coded paths,
  173. # > not from any additional paths that you might have configured
  174. #
  175. # Since /usr/local/share/dbus is included in the hard-coded paths, is not used
  176. # by most package managers, and is rarely used by end-users, it's the cleanest
  177. # option available to teach dbus about /bedrock/cross.
  178. #
  179. /usr/local/share/dbus-1/system-services = /bedrock/cross/dbus-system
  180. /usr/local/share/dbus-1/services = /bedrock/cross/dbus-session
  181.  
  182. #
  183. # Some distros use a swap file and include reference to it in their fstab.
  184. # This must be global so that it is valid when using an init from another
  185. # stratum. However, it is not clear if it would work well with any of the
  186. # established techniques in [global]. Instead, symlink it into a known global
  187. # directory.
  188. #
  189. /swapfile = /bedrock/swapfile
  190.  
  191. [etc-symlinks]
  192. #
  193. # Dynamically enforce various symlinks are in place at local paths. Any change
  194. # away from specified configuration is immediately undone.
  195. #
  196. # Keys are local paths relative to /etc, values are symlink contents.
  197. #
  198. # The symlink contents must be absolute paths.
  199. #
  200.  
  201. #
  202. # Some init systems attempt to change these values at boot time, just after
  203. # being enabled. Thus, symlinks-general will not suffice.
  204. #
  205. localtime = /bedrock/run/localtime
  206. environment = /bedrock/run/environment
  207.  
  208. [etc-inject]
  209. #
  210. # Not all programs can be adequately/reliably configured by creating new,
  211. # cleanly isolated configuration files. Instead, a configuration file must be
  212. # extended to include desired configuration without clobbering its stratum
  213. # local configuration. Typically these configuration files are in /etc.
  214. #
  215. # Bedrock ensures that, should certain files exist in /etc, they will include
  216. # content specified at another file path. If the desired content is not found
  217. # in the file it is automatically appended to the end.
  218. #
  219. # The keys are file paths relative to /etc, and the values are paths to files
  220. # whose content must be included if the key's file exists in /etc.
  221. #
  222. # If you alter either the key/values in this section, or the actual content of
  223. # the values, run `brl reload` to apply the change. Do this before rebooting
  224. # to ensure any old content is removed.
  225. #
  226.  
  227. sudoers = /bedrock/share/sudo/include-bedrock
  228. profile = /bedrock/share/shells/include-bedrock
  229.  
  230. #
  231. # etc-inject only injects existing files and does create make files in order to
  232. # avoid creating a file a package manager does not expect. Different distro
  233. # zsh packages provide different files, requiring multiple zsh file injections.
  234. #
  235. zprofile = /bedrock/share/zsh/include-bedrock
  236. zshenv = /bedrock/share/zsh/include-bedrock
  237. zsh/zprofile = /bedrock/share/zsh/include-bedrock
  238. zsh/zshenv = /bedrock/share/zsh/include-bedrock
  239.  
  240. [env-vars]
  241. #
  242. # Many programs search environment variables consisting of a colon-separated
  243. # list of directories. We can use these to teach these programs about
  244. # cross-stratum content.
  245. #
  246. # Generally, the fields fall into three categories, which should be in the
  247. # following order:
  248. #
  249. # - The file must come from a specific stratum.
  250. # - For example, `reboot` should be provided by the stratum providing the
  251. # current init.
  252. # - Typically, these are provided by `/bedrock/cross/pin/[...]`.
  253. # - The file must come from the local stratum.
  254. # - Bedrock Linux assumes strata are self-sufficient in terms of hard
  255. # dependencies. Thus, if something has a hard dependency on a given file
  256. # that file *must* be available locally.
  257. # - For example, if a given distro's `/bin/sh` is provided by bash, that
  258. # distro's scripts may use bash-isms, and thus another distro's `/bin/sh`
  259. # may be unsuitable.
  260. # - Typically these values are the traditional values of the given
  261. # environment variable.
  262. # - The file may come from any stratum.
  263. # - If the above two categories don't apply, we know the program isn't
  264. # picky about the specific version of the given file, and thus any distro
  265. # may provide it.
  266. # - Typically, these are provided by `/bedrock/cross/[...]`.
  267. #
  268.  
  269. #
  270. # A list of directories searched by various programs to find executables.
  271. #
  272. 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
  273.  
  274. #
  275. # A list of directories searched by the man executable to find documentation.
  276. #
  277. MANPATH = /bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man
  278.  
  279. #
  280. # A list of directories searched by the info executable to find documentation.
  281. #
  282. INFOPATH = /bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info
  283.  
  284. #
  285. # A list of directories used by the freedesktop.org standard containing things
  286. # such as icons and application descriptions.
  287. #
  288. XDG_DATA_DIRS = /usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/flatpak/exports/share:/bedrock/cross/
  289.  
  290. #
  291. # Terminfo file locations
  292. #
  293. TERMINFO_DIRS = /usr/local/share/terminfo:/usr/share/terminfo:/bedrock/cross/terminfo
  294.  
  295. [cross]
  296. #
  297. # Bedrock Linux mounts a virtual filesystem at
  298. #
  299. # /bedrock/cross
  300. #
  301. # which provides an alternative view of various files from the enabled strata.
  302. # This view is used for cross-stratum coordination.
  303. #
  304. # For the [cross-*] sections below, the keys represent file paths appended to
  305. # /bedrock/cross, and the values are a list of files or directories to be
  306. # searched for contents for the given file path. For example,
  307. #
  308. # man = /usr/local/share/man, /usr/share/man
  309. #
  310. # indicates that /bedrock/cross/man should be populated with the contents of
  311. # the /usr/local/share/man and /usr/share/man directories of all of the enabled
  312. # strata.
  313. #
  314. # The paths used for values may be prefixed by "<stratum>:" indicating the
  315. # given file/directory should only be considered from a specific stratum. For
  316. # example,
  317. #
  318. # pin/bin/firefox = arch:/usr/bin/firefox, void:/usr/bin/firefox
  319. #
  320. # Indicates a file at /bedrock/cross/pin/bin/firefox should be provided by
  321. # arch if available, or if not then void; otherwise, the file should not exist.
  322. #
  323.  
  324. #
  325. # If a value does not have a stratum prefixed, it may be provided by any
  326. # stratum that has the file. If multiple do, the values in "priority" below
  327. # indicate which should be given priority. Any enabled strata left unspecified
  328. # are implicitly appended at the end in an unspecified order. For example,
  329. #
  330. # priority = gentoo, debian
  331. #
  332. # indicates that for the `man` example above, if gentoo provides the given man
  333. # page, gentoo's version should be provided. Otherwise, if debian does, then
  334. # debian's should be provided. Otherwise, any stratum that provides the man
  335. # page may provide it.
  336. #
  337. priority =
  338.  
  339. [cross-pass]
  340. #
  341. # Files accessed here are passed through from the stratum's version unaltered.
  342. #
  343. man = /bedrock/share/man, /usr/local/share/man, /usr/share/man
  344. info = /bedrock/share/info, /usr/local/share/info, /usr/share/info
  345. icons = /usr/local/share/icons, /usr/share/icons
  346. zoneinfo = /usr/share/zoneinfo
  347. terminfo = /usr/local/share/terminfo, /usr/share/terminfo
  348. bash-completion = /usr/share/bash-completion
  349. 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
  350. firmware = /lib/firmware/updates/UTS_RELEASE, /lib/firmware/updates, /lib/firmware/UTS_RELEASE, /lib/firmware
  351.  
  352. [cross-bin]
  353. #
  354. # Files are executables. Executing these files should implicitly redirect
  355. # through `strat <stratum>`.
  356. #
  357. bin = /usr/local/bin, /usr/local/sbin, /opt/bin, /opt/sbin, /usr/bin, /usr/sbin, /bin, /sbin, /usr/games, /usr/local/games, /snap/bin
  358.  
  359. #
  360. # These programs are strongly related to the init system. If the stratum
  361. # providing init provides these commands, that version should take priority.
  362. # Typical Bedrock systems have /bedrock/pin/bin/ at the from of the $PATH.
  363. #
  364. pin/bin/systemctl = init:/usr/sbin/systemctl, init:/usr/bin/systemctl, init:/sbin/systemctl, init:/bin/systemctl
  365. pin/bin/rc-service = init:/usr/sbin/rc-service, init:/usr/bin/rc-service, init:/sbin/rc-service, init:/bin/rc-service
  366. pin/bin/rc-status = init:/usr/sbin/rc-status, init:/usr/bin/rc-status, init:/sbin/rc-status, init:/bin/rc-status
  367. pin/bin/rc-update = init:/usr/sbin/rc-update, init:/usr/bin/rc-update, init:/sbin/rc-update, init:/bin/rc-update
  368. pin/bin/rc-udevadm = init:/usr/sbin/rc-udevadm, init:/usr/bin/rc-udevadm, init:/sbin/rc-udevadm, init:/bin/rc-udevadm
  369. pin/bin/sv = init:/usr/sbin/sv, init:/usr/bin/sv, init:/sbin/sv, init:/bin/sv
  370. pin/bin/poweroff = init:/usr/sbin/poweroff, init:/sbin/poweroff, init:/usr/bin/poweroff, init:/bin/poweroff
  371. pin/bin/reboot = init:/usr/sbin/reboot, init:/sbin/reboot, init:/usr/bin/reboot, init:/bin/reboot
  372. pin/bin/shutdown = init:/usr/sbin/shutdown, init:/sbin/shutdown, init:/usr/bin/shutdown, init:/bin/shutdown
  373. pin/bin/halt = init:/usr/sbin/halt, init:/sbin/halt, init:/usr/bin/halt, init:/bin/halt
  374.  
  375. [cross-bin-restrict]
  376. #
  377. # Files are executables. Executing these files should implicitly redirect
  378. # through `strat --restrict <stratum>`.
  379. #
  380. # Various distro package build tools should only run against the local stratum.
  381. pin/bin/dpkg-buildpkg = /usr/bin/dpkg-buildpackage
  382. pin/bin/makepkg = /usr/bin/makepkg
  383. pin/bin/rpmbuild = /usr/bin/rpmbuild
  384.  
  385. # It is tempting to add `make` here. However, make is often used in situations
  386. # where cross-stratum functionality is desirable.
  387.  
  388. [cross-ini]
  389. #
  390. # Files are in ini format. Any keys which match
  391. # "[Try]Exec[Start|Stop|Exec|Reload]" should have their values altered to
  392. # redirect through `strat <stratum>`.
  393. #
  394. applications = /usr/local/share/applications, /usr/share/applications, /var/lib/flatpak/exports/share/applications
  395. xsessions = init:/usr/local/share/xsessions, init:/usr/share/xsessions, /usr/local/share/xsessions, /usr/share/xsessions
  396.  
  397. dbus-system = /usr/share/dbus-1/system-services
  398. dbus-session = /usr/share/dbus-1/services
  399.  
  400. [cross-font]
  401. #
  402. # Values are font directories. Fonts are passed through, and font databases
  403. # are merged to list all fonts.
  404. #
  405. fonts = /usr/share/fonts
  406.  
  407. [brl-fetch-mirrors]
  408. #
  409. # `brl fetch` fetches files from distros for use as Bedrock Linux strata.
  410. #
  411. # If a mirror is provided to the `brl fetch` command, it is used to fetch the
  412. # given distro. Otherwise, this configuration is checked to see if it
  413. # specifies a given mirror should be tried. If no working mirror is found
  414. # here, `brl fetch` will attempt to select a mirror from those it finds for the
  415. # given distribution.
  416. #
  417.  
  418. #
  419. # Some mirrors support multiple Linux distributions and use the same prefix
  420. # path for all of them. For example, at the time of writing, there is an Arch
  421. # mirror at
  422. #
  423. # http://mirrors.edge.kernel.org/archlinux
  424. #
  425. # and a CentOS mirror at
  426. #
  427. # http://mirrors.edge.kernel.org/centos
  428. #
  429. # and a Debian mirror at:
  430. #
  431. # http://mirrors.edge.kernel.org/debian
  432. #
  433. # and a Fedora mirror at
  434. #
  435. # http://mirrors.edge.kernel.org/fedora
  436. #
  437. # Rather than configuring each of these separately, the base URL can be added
  438. # to mirror-prefix to tell `brl fetch` to check it as a possible mirror. For
  439. # the above kernel.org example, one may set:
  440. #
  441. # mirror-prefix = http://mirrors.edge.kernel.org
  442. #
  443. # This is a comma separated list which is checked in order.
  444. #
  445. mirror-prefix =
  446.  
  447. #
  448. # You may set mirrors per distro by setting the distro name as spelled by `
  449. #
  450. # brl fetch --list
  451. #
  452. # as the key and the mirror as the value. For example, to indicate that Ubuntu
  453. # should be fetched with the mirror
  454. #
  455. # http://us.archive.ubuntu.com/ubuntu
  456. #
  457. # One may set
  458. #
  459. # ubuntu = http://us.archive.ubuntu.com/ubuntu
  460. #
  461.  
  462. [miscellaneous]
  463.  
  464. mirrors = https://raw.githubusercontent.com/bedrocklinux/bedrocklinux-userland/0.7/releases
  465.  
  466. # Set to false to disable color in brl output
  467. color = true
  468.  
  469. $ /bedrock/bin/brl list -v
  470. arch
  471. bedrock
  472. hijacked -> ubuntu
  473. init -> ubuntu
  474. local -> ubuntu
  475. ubuntu
  476.  
  477. $ /bedrock/bin/brl status $(/bedrock/bin/brl list -aA)
  478. arch: enabled
  479. bedrock: enabled
  480. hijacked: enabled
  481. init: enabled
  482. local: enabled
  483. ubuntu: enabled
  484.  
  485. $ echo $PATH
  486. /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
  487.  
  488. $ echo $MANPATH
  489. /bedrock/share/man:/usr/local/share/man:/usr/share/man:/bedrock/cross/man
  490.  
  491. $ echo $INFOPATH
  492. /bedrock/share/info:/usr/local/share/info:/usr/share/info:/bedrock/cross/info
  493.  
  494. $ echo $XDG_DATA_DIRS
  495. /usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/flatpak/exports/share:/bedrock/cross/
  496.  
  497. $ echo $SHELL
  498. /bedrock/cross/bin/bash
  499.  
  500. $ ls -la /bedrock/strata/
  501. total 32
  502. drwxr-xr-x 5 root root 4096 May 24 01:04 .
  503. drwxr-xr-x 12 root root 4096 May 11 23:22 ..
  504. drwxr-xr-x 18 root root 4096 Apr 12 17:26 arch
  505. drwxr-xr-x 19 root root 4096 May 11 23:22 bedrock
  506. lrwxrwxrwx 1 root root 6 Apr 12 17:22 hijacked -> ubuntu
  507. lrwxrwxrwx 1 root root 23 May 24 01:04 init -> /bedrock/run/init-alias
  508. lrwxrwxrwx 1 root root 21 May 24 01:04 local -> ../cross/.local-alias
  509. drwxr-xr-x 25 root root 4096 May 17 06:05 ubuntu
  510.  
  511. $ ls -Rl /bedrock/run/
  512. /bedrock/run/:
  513. total 24
  514. drwxr-xr-x 2 root root 100 May 25 12:26 enabled_strata
  515. -rw-r--r-- 1 root root 541 May 25 12:26 environment
  516. -rw-r--r-- 1 root root 605 May 25 12:26 fprofile
  517. lrwxrwxrwx 1 root root 22 May 25 12:26 init-alias -> /bedrock/strata/ubuntu
  518. lrwxrwxrwx 1 root root 40 May 25 12:26 localtime -> /bedrock/cross/zoneinfo/Europe/Amsterdam
  519. -rw-r--r-- 1 root root 624 May 25 12:26 profile
  520. drwxr-xr-x 2 root root 40 May 25 12:26 restricted_cmds
  521. -rw-r--r-- 1 root root 168 May 25 12:26 sudoers
  522. -rw-r--r-- 1 root root 4025 May 25 12:26 xorg-fonts
  523. -rw-r--r-- 1 root root 127 May 25 12:26 zprofile
  524.  
  525. /bedrock/run/enabled_strata:
  526. total 0
  527. -rw-r--r-- 1 root root 0 May 25 12:26 arch
  528. -rw-r--r-- 1 root root 0 May 25 12:26 bedrock
  529. -rw-r--r-- 1 root root 0 May 25 12:26 ubuntu
  530.  
  531. /bedrock/run/restricted_cmds:
  532. total 0
  533.  
  534. $ grep secure_path /etc/sudoers
  535. Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
  536.  
  537. $ grep "^$(whoami):" /etc/passwd
  538. root:x:0:0:root:/root:/bedrock/cross/bin/bash
  539.  
  540. $ grep "^root:" /etc/passwd
  541. root:x:0:0:root:/root:/bedrock/cross/bin/bash
  542.  
  543. $ cat /etc/hostname
  544. Nova-Kubuntu
  545.  
  546. $ cat /etc/os-release
  547. NAME="Ubuntu"
  548. VERSION="19.04 (Disco Dingo)"
  549. ID=ubuntu
  550. ID_LIKE=debian
  551. PRETTY_NAME="Ubuntu 19.04"
  552. VERSION_ID="19.04"
  553. HOME_URL="https://www.ubuntu.com/"
  554. SUPPORT_URL="https://help.ubuntu.com/"
  555. BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
  556. PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
  557. VERSION_CODENAME=disco
  558. UBUNTU_CODENAME=disco
  559.  
  560. $ cat /etc/lsb-release
  561. DISTRIB_ID=Ubuntu
  562. DISTRIB_RELEASE=19.04
  563. DISTRIB_CODENAME=disco
  564. DISTRIB_DESCRIPTION="Ubuntu 19.04"
  565.  
  566. $ cat /etc/fstab
  567. # /etc/fstab: static file system information.
  568. #
  569. # Use 'blkid' to print the universally unique identifier for a
  570. # device; this may be used with UUID= as a more robust way to name devices
  571. # that works even if disks are added and removed. See fstab(5).
  572. #
  573. # <file system> <mount point> <type> <options> <dump> <pass>
  574. # / was on /dev/sda1 during installation
  575. UUID=932ff21c-c58e-467f-9403-29837c0d194c / ext4 errors=remount-ro 0 0
  576. /swapfile none swap sw 0 0
  577.  
  578. $ cat /proc/1/mountinfo
  579. 22 28 0:21 / /bedrock/strata/bedrock/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  580. 23 28 0:4 / /bedrock/strata/bedrock/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  581. 24 28 0:6 / /bedrock/strata/bedrock/dev rw,nosuid,relatime shared:2 - devtmpfs udev rw,size=1988120k,nr_inodes=497030,mode=755
  582. 25 24 0:22 / /bedrock/strata/bedrock/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  583. 26 28 0:23 / /bedrock/strata/bedrock/run rw,nosuid,noexec,relatime shared:11 - tmpfs tmpfs rw,size=403980k,mode=755
  584. 28 30 8:1 / /bedrock/strata/bedrock rw,relatime shared:24 - ext4 /dev/sda1 rw,errors=remount-ro
  585. 29 0 8:1 /bedrock/strata/ubuntu / rw,relatime shared:22 - ext4 /dev/sda1 rw,errors=remount-ro
  586. 30 29 8:1 /bedrock /bedrock rw,relatime shared:23 - ext4 /dev/sda1 rw,errors=remount-ro
  587. 31 29 0:4 / /proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  588. 32 29 0:6 / /dev rw,nosuid,relatime shared:2 - devtmpfs udev rw,size=1988120k,nr_inodes=497030,mode=755
  589. 33 32 0:22 / /dev/pts rw,nosuid,noexec,relatime shared:37 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  590. 34 29 0:21 / /sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  591. 35 28 0:25 / /bedrock/strata/bedrock/bedrock/run rw,relatime - tmpfs bedrock_run rw
  592. 36 30 0:25 / /bedrock/run rw,relatime shared:29 - tmpfs bedrock_run rw
  593. 38 28 0:27 / /bedrock/strata/bedrock/etc rw,nosuid,nodev,relatime - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  594. 39 28 8:1 / /bedrock/strata/bedrock/bedrock/strata/bedrock rw,relatime - ext4 /dev/sda1 rw,errors=remount-ro
  595. 40 28 0:28 / /bedrock/strata/bedrock/bedrock/cross rw,nosuid,nodev,relatime - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  596. 41 28 8:1 /boot /bedrock/strata/bedrock/boot rw,relatime shared:4 - ext4 /dev/sda1 rw,errors=remount-ro
  597. 42 29 8:1 /boot /boot rw,relatime shared:4 - ext4 /dev/sda1 rw,errors=remount-ro
  598. 43 28 8:1 /home /bedrock/strata/bedrock/home rw,relatime shared:6 - ext4 /dev/sda1 rw,errors=remount-ro
  599. 44 29 8:1 /home /home rw,relatime shared:6 - ext4 /dev/sda1 rw,errors=remount-ro
  600. 45 28 8:1 /lib/modules /bedrock/strata/bedrock/lib/modules rw,relatime shared:7 - ext4 /dev/sda1 rw,errors=remount-ro
  601. 46 29 8:1 /lib/modules /lib/modules rw,relatime shared:7 - ext4 /dev/sda1 rw,errors=remount-ro
  602. 47 28 8:1 /media /bedrock/strata/bedrock/media rw,relatime shared:8 - ext4 /dev/sda1 rw,errors=remount-ro
  603. 48 29 8:1 /media /media rw,relatime shared:8 - ext4 /dev/sda1 rw,errors=remount-ro
  604. 49 28 8:1 /mnt /bedrock/strata/bedrock/mnt rw,relatime shared:9 - ext4 /dev/sda1 rw,errors=remount-ro
  605. 50 29 8:1 /mnt /mnt rw,relatime shared:9 - ext4 /dev/sda1 rw,errors=remount-ro
  606. 51 28 8:1 /root /bedrock/strata/bedrock/root rw,relatime shared:10 - ext4 /dev/sda1 rw,errors=remount-ro
  607. 52 29 8:1 /root /root rw,relatime shared:10 - ext4 /dev/sda1 rw,errors=remount-ro
  608. 37 29 0:23 / /run rw,nosuid,noexec,relatime shared:11 - tmpfs tmpfs rw,size=403980k,mode=755
  609. 53 28 8:1 /tmp /bedrock/strata/bedrock/tmp rw,relatime shared:12 - ext4 /dev/sda1 rw,errors=remount-ro
  610. 54 29 8:1 /tmp /tmp rw,relatime shared:12 - ext4 /dev/sda1 rw,errors=remount-ro
  611. 55 28 8:1 /var/tmp /bedrock/strata/bedrock/var/tmp rw,relatime shared:13 - ext4 /dev/sda1 rw,errors=remount-ro
  612. 56 29 8:1 /var/tmp /var/tmp rw,relatime shared:13 - ext4 /dev/sda1 rw,errors=remount-ro
  613. 57 30 0:28 / /bedrock/cross rw,nosuid,nodev,relatime shared:30 - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  614. 58 29 0:26 / /etc rw,nosuid,nodev,relatime shared:38 - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  615. 59 30 8:1 /bedrock/strata/arch /bedrock/strata/arch rw,relatime shared:31 - ext4 /dev/sda1 rw,errors=remount-ro
  616. 60 59 8:1 /boot /bedrock/strata/arch/boot rw,relatime shared:4 - ext4 /dev/sda1 rw,errors=remount-ro
  617. 61 59 0:6 / /bedrock/strata/arch/dev rw,nosuid,relatime shared:2 - devtmpfs udev rw,size=1988120k,nr_inodes=497030,mode=755
  618. 62 61 0:22 / /bedrock/strata/arch/dev/pts rw,nosuid,noexec,relatime shared:5 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  619. 63 59 8:1 /home /bedrock/strata/arch/home rw,relatime shared:6 - ext4 /dev/sda1 rw,errors=remount-ro
  620. 64 59 8:1 /lib/modules /bedrock/strata/arch/usr/lib/modules rw,relatime shared:7 - ext4 /dev/sda1 rw,errors=remount-ro
  621. 65 59 8:1 /media /bedrock/strata/arch/media rw,relatime shared:8 - ext4 /dev/sda1 rw,errors=remount-ro
  622. 66 59 8:1 /mnt /bedrock/strata/arch/mnt rw,relatime shared:9 - ext4 /dev/sda1 rw,errors=remount-ro
  623. 67 59 0:4 / /bedrock/strata/arch/proc rw,nosuid,nodev,noexec,relatime shared:1 - proc proc rw
  624. 68 59 8:1 /root /bedrock/strata/arch/root rw,relatime shared:10 - ext4 /dev/sda1 rw,errors=remount-ro
  625. 69 59 0:23 / /bedrock/strata/arch/run rw,nosuid,noexec,relatime shared:11 - tmpfs tmpfs rw,size=403980k,mode=755
  626. 70 59 0:21 / /bedrock/strata/arch/sys rw,nosuid,nodev,noexec,relatime shared:3 - sysfs sysfs rw
  627. 71 59 8:1 /tmp /bedrock/strata/arch/tmp rw,relatime shared:12 - ext4 /dev/sda1 rw,errors=remount-ro
  628. 72 59 8:1 /var/tmp /bedrock/strata/arch/var/tmp rw,relatime shared:13 - ext4 /dev/sda1 rw,errors=remount-ro
  629. 73 59 8:1 /bedrock /bedrock/strata/arch/bedrock rw,relatime shared:32 - ext4 /dev/sda1 rw,errors=remount-ro
  630. 74 73 0:28 / /bedrock/strata/arch/bedrock/cross rw,nosuid,nodev,relatime shared:33 - fuse.crossfs crossfs rw,user_id=0,group_id=0,allow_other
  631. 75 73 0:25 / /bedrock/strata/arch/bedrock/run rw,relatime shared:34 - tmpfs bedrock_run rw
  632. 76 73 8:1 / /bedrock/strata/arch/bedrock/strata/bedrock rw,relatime shared:35 - ext4 /dev/sda1 rw,errors=remount-ro
  633. 77 59 0:29 / /bedrock/strata/arch/etc rw,nosuid,nodev,relatime shared:36 - fuse.etcfs etcfs rw,user_id=0,group_id=0,allow_other
  634. 78 34 0:7 / /sys/kernel/security rw,nosuid,nodev,noexec,relatime shared:14 - securityfs securityfs rw
  635. 80 70 0:7 / /bedrock/strata/arch/sys/kernel/security rw,nosuid,nodev,noexec,relatime shared:14 - securityfs securityfs rw
  636. 79 22 0:7 / /bedrock/strata/bedrock/sys/kernel/security rw,nosuid,nodev,noexec,relatime shared:14 - securityfs securityfs rw
  637. 81 32 0:30 / /dev/shm rw,nosuid,nodev shared:15 - tmpfs tmpfs rw
  638. 83 61 0:30 / /bedrock/strata/arch/dev/shm rw,nosuid,nodev shared:15 - tmpfs tmpfs rw
  639. 82 24 0:30 / /bedrock/strata/bedrock/dev/shm rw,nosuid,nodev shared:15 - tmpfs tmpfs rw
  640. 84 37 0:31 / /run/lock rw,nosuid,nodev,noexec,relatime shared:16 - tmpfs tmpfs rw,size=5120k
  641. 86 69 0:31 / /bedrock/strata/arch/run/lock rw,nosuid,nodev,noexec,relatime shared:16 - tmpfs tmpfs rw,size=5120k
  642. 85 26 0:31 / /bedrock/strata/bedrock/run/lock rw,nosuid,nodev,noexec,relatime shared:16 - tmpfs tmpfs rw,size=5120k
  643. 87 34 0:32 / /sys/fs/cgroup ro,nosuid,nodev,noexec shared:17 - tmpfs tmpfs ro,mode=755
  644. 89 70 0:32 / /bedrock/strata/arch/sys/fs/cgroup rw,nosuid,nodev,noexec shared:17 - tmpfs tmpfs ro,mode=755
  645. 88 22 0:32 / /bedrock/strata/bedrock/sys/fs/cgroup rw,nosuid,nodev,noexec shared:17 - tmpfs tmpfs ro,mode=755
  646. 90 87 0:33 / /sys/fs/cgroup/unified rw,nosuid,nodev,noexec,relatime shared:18 - cgroup2 cgroup2 rw,nsdelegate
  647. 92 89 0:33 / /bedrock/strata/arch/sys/fs/cgroup/unified rw,nosuid,nodev,noexec,relatime shared:18 - cgroup2 cgroup2 rw,nsdelegate
  648. 91 88 0:33 / /bedrock/strata/bedrock/sys/fs/cgroup/unified rw,nosuid,nodev,noexec,relatime shared:18 - cgroup2 cgroup2 rw,nsdelegate
  649. 93 87 0:34 / /sys/fs/cgroup/systemd rw,nosuid,nodev,noexec,relatime shared:19 - cgroup cgroup rw,xattr,name=systemd
  650. 95 89 0:34 / /bedrock/strata/arch/sys/fs/cgroup/systemd rw,nosuid,nodev,noexec,relatime shared:19 - cgroup cgroup rw,xattr,name=systemd
  651. 94 88 0:34 / /bedrock/strata/bedrock/sys/fs/cgroup/systemd rw,nosuid,nodev,noexec,relatime shared:19 - cgroup cgroup rw,xattr,name=systemd
  652. 96 34 0:35 / /sys/fs/pstore rw,nosuid,nodev,noexec,relatime shared:20 - pstore pstore rw
  653. 98 70 0:35 / /bedrock/strata/arch/sys/fs/pstore rw,nosuid,nodev,noexec,relatime shared:20 - pstore pstore rw
  654. 97 22 0:35 / /bedrock/strata/bedrock/sys/fs/pstore rw,nosuid,nodev,noexec,relatime shared:20 - pstore pstore rw
  655. 99 34 0:36 / /sys/fs/bpf rw,nosuid,nodev,noexec,relatime shared:21 - bpf bpf rw,mode=700
  656. 101 70 0:36 / /bedrock/strata/arch/sys/fs/bpf rw,nosuid,nodev,noexec,relatime shared:21 - bpf bpf rw,mode=700
  657. 100 22 0:36 / /bedrock/strata/bedrock/sys/fs/bpf rw,nosuid,nodev,noexec,relatime shared:21 - bpf bpf rw,mode=700
  658. 102 87 0:37 / /sys/fs/cgroup/perf_event rw,nosuid,nodev,noexec,relatime shared:39 - cgroup cgroup rw,perf_event
  659. 104 89 0:37 / /bedrock/strata/arch/sys/fs/cgroup/perf_event rw,nosuid,nodev,noexec,relatime shared:39 - cgroup cgroup rw,perf_event
  660. 103 88 0:37 / /bedrock/strata/bedrock/sys/fs/cgroup/perf_event rw,nosuid,nodev,noexec,relatime shared:39 - cgroup cgroup rw,perf_event
  661. 105 87 0:38 / /sys/fs/cgroup/rdma rw,nosuid,nodev,noexec,relatime shared:40 - cgroup cgroup rw,rdma
  662. 107 89 0:38 / /bedrock/strata/arch/sys/fs/cgroup/rdma rw,nosuid,nodev,noexec,relatime shared:40 - cgroup cgroup rw,rdma
  663. 106 88 0:38 / /bedrock/strata/bedrock/sys/fs/cgroup/rdma rw,nosuid,nodev,noexec,relatime shared:40 - cgroup cgroup rw,rdma
  664. 108 87 0:39 / /sys/fs/cgroup/devices rw,nosuid,nodev,noexec,relatime shared:41 - cgroup cgroup rw,devices
  665. 110 89 0:39 / /bedrock/strata/arch/sys/fs/cgroup/devices rw,nosuid,nodev,noexec,relatime shared:41 - cgroup cgroup rw,devices
  666. 109 88 0:39 / /bedrock/strata/bedrock/sys/fs/cgroup/devices rw,nosuid,nodev,noexec,relatime shared:41 - cgroup cgroup rw,devices
  667. 111 87 0:40 / /sys/fs/cgroup/freezer rw,nosuid,nodev,noexec,relatime shared:42 - cgroup cgroup rw,freezer
  668. 113 89 0:40 / /bedrock/strata/arch/sys/fs/cgroup/freezer rw,nosuid,nodev,noexec,relatime shared:42 - cgroup cgroup rw,freezer
  669. 112 88 0:40 / /bedrock/strata/bedrock/sys/fs/cgroup/freezer rw,nosuid,nodev,noexec,relatime shared:42 - cgroup cgroup rw,freezer
  670. 114 87 0:41 / /sys/fs/cgroup/blkio rw,nosuid,nodev,noexec,relatime shared:43 - cgroup cgroup rw,blkio
  671. 116 89 0:41 / /bedrock/strata/arch/sys/fs/cgroup/blkio rw,nosuid,nodev,noexec,relatime shared:43 - cgroup cgroup rw,blkio
  672. 115 88 0:41 / /bedrock/strata/bedrock/sys/fs/cgroup/blkio rw,nosuid,nodev,noexec,relatime shared:43 - cgroup cgroup rw,blkio
  673. 117 87 0:42 / /sys/fs/cgroup/pids rw,nosuid,nodev,noexec,relatime shared:44 - cgroup cgroup rw,pids
  674. 119 89 0:42 / /bedrock/strata/arch/sys/fs/cgroup/pids rw,nosuid,nodev,noexec,relatime shared:44 - cgroup cgroup rw,pids
  675. 118 88 0:42 / /bedrock/strata/bedrock/sys/fs/cgroup/pids rw,nosuid,nodev,noexec,relatime shared:44 - cgroup cgroup rw,pids
  676. 120 87 0:43 / /sys/fs/cgroup/cpu,cpuacct rw,nosuid,nodev,noexec,relatime shared:45 - cgroup cgroup rw,cpu,cpuacct
  677. 122 89 0:43 / /bedrock/strata/arch/sys/fs/cgroup/cpu,cpuacct rw,nosuid,nodev,noexec,relatime shared:45 - cgroup cgroup rw,cpu,cpuacct
  678. 121 88 0:43 / /bedrock/strata/bedrock/sys/fs/cgroup/cpu,cpuacct rw,nosuid,nodev,noexec,relatime shared:45 - cgroup cgroup rw,cpu,cpuacct
  679. 123 87 0:44 / /sys/fs/cgroup/net_cls,net_prio rw,nosuid,nodev,noexec,relatime shared:46 - cgroup cgroup rw,net_cls,net_prio
  680. 125 89 0:44 / /bedrock/strata/arch/sys/fs/cgroup/net_cls,net_prio rw,nosuid,nodev,noexec,relatime shared:46 - cgroup cgroup rw,net_cls,net_prio
  681. 124 88 0:44 / /bedrock/strata/bedrock/sys/fs/cgroup/net_cls,net_prio rw,nosuid,nodev,noexec,relatime shared:46 - cgroup cgroup rw,net_cls,net_prio
  682. 126 87 0:45 / /sys/fs/cgroup/cpuset rw,nosuid,nodev,noexec,relatime shared:47 - cgroup cgroup rw,cpuset
  683. 128 89 0:45 / /bedrock/strata/arch/sys/fs/cgroup/cpuset rw,nosuid,nodev,noexec,relatime shared:47 - cgroup cgroup rw,cpuset
  684. 127 88 0:45 / /bedrock/strata/bedrock/sys/fs/cgroup/cpuset rw,nosuid,nodev,noexec,relatime shared:47 - cgroup cgroup rw,cpuset
  685. 129 87 0:46 / /sys/fs/cgroup/memory rw,nosuid,nodev,noexec,relatime shared:48 - cgroup cgroup rw,memory
  686. 131 89 0:46 / /bedrock/strata/arch/sys/fs/cgroup/memory rw,nosuid,nodev,noexec,relatime shared:48 - cgroup cgroup rw,memory
  687. 130 88 0:46 / /bedrock/strata/bedrock/sys/fs/cgroup/memory rw,nosuid,nodev,noexec,relatime shared:48 - cgroup cgroup rw,memory
  688. 132 87 0:47 / /sys/fs/cgroup/hugetlb rw,nosuid,nodev,noexec,relatime shared:49 - cgroup cgroup rw,hugetlb
  689. 134 89 0:47 / /bedrock/strata/arch/sys/fs/cgroup/hugetlb rw,nosuid,nodev,noexec,relatime shared:49 - cgroup cgroup rw,hugetlb
  690. 133 88 0:47 / /bedrock/strata/bedrock/sys/fs/cgroup/hugetlb rw,nosuid,nodev,noexec,relatime shared:49 - cgroup cgroup rw,hugetlb
  691. 135 31 0:48 / /proc/sys/fs/binfmt_misc rw,relatime shared:50 - autofs systemd-1 rw,fd=32,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=25685
  692. 137 67 0:48 / /bedrock/strata/arch/proc/sys/fs/binfmt_misc rw,relatime shared:50 - autofs systemd-1 rw,fd=32,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=25685
  693. 136 23 0:48 / /bedrock/strata/bedrock/proc/sys/fs/binfmt_misc rw,relatime shared:50 - autofs systemd-1 rw,fd=32,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=25685
  694. 138 32 0:49 / /dev/hugepages rw,relatime shared:51 - hugetlbfs hugetlbfs rw,pagesize=2M
  695. 140 61 0:49 / /bedrock/strata/arch/dev/hugepages rw,relatime shared:51 - hugetlbfs hugetlbfs rw,pagesize=2M
  696. 139 24 0:49 / /bedrock/strata/bedrock/dev/hugepages rw,relatime shared:51 - hugetlbfs hugetlbfs rw,pagesize=2M
  697. 141 32 0:19 / /dev/mqueue rw,relatime shared:52 - mqueue mqueue rw
  698. 143 61 0:19 / /bedrock/strata/arch/dev/mqueue rw,relatime shared:52 - mqueue mqueue rw
  699. 142 24 0:19 / /bedrock/strata/bedrock/dev/mqueue rw,relatime shared:52 - mqueue mqueue rw
  700. 144 34 0:8 / /sys/kernel/debug rw,relatime shared:53 - debugfs debugfs rw
  701. 146 70 0:8 / /bedrock/strata/arch/sys/kernel/debug rw,relatime shared:53 - debugfs debugfs rw
  702. 145 22 0:8 / /bedrock/strata/bedrock/sys/kernel/debug rw,relatime shared:53 - debugfs debugfs rw
  703. 147 34 0:50 / /sys/fs/fuse/connections rw,relatime shared:54 - fusectl fusectl rw
  704. 149 70 0:50 / /bedrock/strata/arch/sys/fs/fuse/connections rw,relatime shared:54 - fusectl fusectl rw
  705. 148 22 0:50 / /bedrock/strata/bedrock/sys/fs/fuse/connections rw,relatime shared:54 - fusectl fusectl rw
  706. 150 34 0:20 / /sys/kernel/config rw,relatime shared:55 - configfs configfs rw
  707. 152 70 0:20 / /bedrock/strata/arch/sys/kernel/config rw,relatime shared:55 - configfs configfs rw
  708. 151 22 0:20 / /bedrock/strata/bedrock/sys/kernel/config rw,relatime shared:55 - configfs configfs rw
  709. 2332 37 0:55 / /run/user/1000 rw,nosuid,nodev,relatime shared:1183 - tmpfs tmpfs rw,size=403976k,mode=700,uid=1000,gid=1000
  710. 2334 69 0:55 / /bedrock/strata/arch/run/user/1000 rw,nosuid,nodev,relatime shared:1183 - tmpfs tmpfs rw,size=403976k,mode=700,uid=1000,gid=1000
  711. 2333 26 0:55 / /bedrock/strata/bedrock/run/user/1000 rw,nosuid,nodev,relatime shared:1183 - tmpfs tmpfs rw,size=403976k,mode=700,uid=1000,gid=1000
  712.  
  713. $ lsmod
  714. Not tainted
  715. sb_edac 24576 0 - Live 0xffffffffc042c000
  716. crct10dif_pclmul 16384 0 - Live 0xffffffffc0489000
  717. crc32_pclmul 16384 0 - Live 0xffffffffc0445000
  718. ghash_clmulni_intel 16384 0 - Live 0xffffffffc04bb000
  719. pcbc 16384 0 - Live 0xffffffffc0440000
  720. aesni_intel 200704 0 - Live 0xffffffffc044c000
  721. aes_x86_64 20480 1 aesni_intel, Live 0xffffffffc043a000
  722. crypto_simd 16384 1 aesni_intel, Live 0xffffffffc0410000
  723. cryptd 24576 3 ghash_clmulni_intel,aesni_intel,crypto_simd, Live 0xffffffffc041f000
  724. vmw_balloon 20480 0 - Live 0xffffffffc0426000
  725. glue_helper 16384 1 aesni_intel, Live 0xffffffffc041a000
  726. joydev 20480 0 - Live 0xffffffffc040a000
  727. intel_rapl_perf 16384 0 - Live 0xffffffffc0415000
  728. input_leds 16384 0 - Live 0xffffffffc0405000
  729. serio_raw 16384 0 - Live 0xffffffffc03fd000
  730. vmw_vmci 69632 1 vmw_balloon, Live 0xffffffffc03eb000
  731. mac_hid 16384 0 - Live 0xffffffffc03e6000
  732. sch_fq_codel 20480 3 - Live 0xffffffffc0377000
  733. parport_pc 36864 0 - Live 0xffffffffc0359000
  734. ppdev 20480 0 - Live 0xffffffffc0353000
  735. lp 20480 0 - Live 0xffffffffc02f9000
  736. parport 49152 3 parport_pc,ppdev,lp, Live 0xffffffffc0346000
  737. ip_tables 24576 0 - Live 0xffffffffc02ce000
  738. x_tables 40960 1 ip_tables, Live 0xffffffffc0271000
  739. autofs4 40960 2 - Live 0xffffffffc01ed000
  740. binfmt_misc 20480 0 - Live 0xffffffffc01e3000
  741. vmwgfx 270336 2 - Live 0xffffffffc0303000
  742. ttm 106496 1 vmwgfx, Live 0xffffffffc02de000
  743. drm_kms_helper 172032 1 vmwgfx, Live 0xffffffffc02a3000
  744. syscopyarea 16384 1 drm_kms_helper, Live 0xffffffffc029e000
  745. sysfillrect 16384 1 drm_kms_helper, Live 0xffffffffc0299000
  746. sysimgblt 16384 1 drm_kms_helper, Live 0xffffffffc0294000
  747. ahci 40960 0 - Live 0xffffffffc0282000
  748. fb_sys_fops 16384 1 drm_kms_helper, Live 0xffffffffc027d000
  749. libahci 32768 1 ahci, Live 0xffffffffc0155000
  750. psmouse 151552 0 - Live 0xffffffffc024b000
  751. mptspi 24576 1 - Live 0xffffffffc0240000
  752. mptscsih 40960 1 mptspi, Live 0xffffffffc0231000
  753. mptbase 98304 2 mptspi,mptscsih, Live 0xffffffffc0212000
  754. vmxnet3 57344 0 - Live 0xffffffffc01fe000
  755. drm 458752 5 vmwgfx,ttm,drm_kms_helper, Live 0xffffffffc0172000
  756. scsi_transport_spi 32768 1 mptspi, Live 0xffffffffc0169000
  757. i2c_piix4 24576 0 - Live 0xffffffffc014e000
  758. pata_acpi 16384 0 - Live 0xffffffffc0161000
  759.  
  760. $ ps
  761. PID USER TIME COMMAND
  762. 1 root 0:02 {systemd} /sbin/init
  763. 2 root 0:00 [kthreadd]
  764. 3 root 0:00 [rcu_gp]
  765. 4 root 0:00 [rcu_par_gp]
  766. 6 root 0:00 [kworker/0:0H-kb]
  767. 8 root 0:00 [mm_percpu_wq]
  768. 9 root 0:00 [ksoftirqd/0]
  769. 10 root 0:00 [rcu_sched]
  770. 11 root 0:00 [rcu_bh]
  771. 12 root 0:00 [migration/0]
  772. 13 root 0:00 [watchdog/0]
  773. 14 root 0:00 [cpuhp/0]
  774. 15 root 0:00 [cpuhp/1]
  775. 16 root 0:00 [watchdog/1]
  776. 17 root 0:00 [migration/1]
  777. 18 root 0:00 [ksoftirqd/1]
  778. 20 root 0:00 [kworker/1:0H-kb]
  779. 21 root 0:00 [kdevtmpfs]
  780. 22 root 0:00 [netns]
  781. 23 root 0:00 [rcu_tasks_kthre]
  782. 24 root 0:00 [kauditd]
  783. 25 root 0:00 [kworker/0:1-cgr]
  784. 26 root 0:00 [kworker/0:2-eve]
  785. 27 root 0:00 [khungtaskd]
  786. 28 root 0:00 [oom_reaper]
  787. 29 root 0:00 [writeback]
  788. 30 root 0:00 [kcompactd0]
  789. 31 root 0:00 [ksmd]
  790. 32 root 0:00 [khugepaged]
  791. 33 root 0:00 [crypto]
  792. 34 root 0:00 [kintegrityd]
  793. 35 root 0:00 [kblockd]
  794. 36 root 0:00 [ata_sff]
  795. 37 root 0:00 [md]
  796. 38 root 0:00 [edac-poller]
  797. 39 root 0:00 [devfreq_wq]
  798. 40 root 0:00 [watchdogd]
  799. 42 root 0:00 [kworker/1:1-eve]
  800. 44 root 0:00 [kswapd0]
  801. 45 root 0:00 [kworker/u5:0]
  802. 46 root 0:00 [ecryptfs-kthrea]
  803. 91 root 0:00 [kthrotld]
  804. 92 root 0:00 [acpi_thermal_pm]
  805. 93 root 0:00 [scsi_eh_0]
  806. 94 root 0:00 [scsi_tmf_0]
  807. 95 root 0:00 [scsi_eh_1]
  808. 96 root 0:00 [scsi_tmf_1]
  809. 102 root 0:00 [ipv6_addrconf]
  810. 111 root 0:00 [kstrp]
  811. 128 root 0:00 [charger_manager]
  812. 178 root 0:00 [mpt_poll_0]
  813. 179 root 0:00 [mpt/0]
  814. 180 root 0:00 [scsi_eh_2]
  815. 181 root 0:00 [scsi_tmf_2]
  816. 182 root 0:00 [scsi_eh_3]
  817. 183 root 0:00 [scsi_tmf_3]
  818. 184 root 0:00 [scsi_eh_4]
  819. 185 root 0:00 [ttm_swap]
  820. 186 root 0:00 [scsi_tmf_4]
  821. 187 root 0:00 [scsi_eh_5]
  822. 188 root 0:00 [irq/16-vmwgfx]
  823. 189 root 0:00 [scsi_tmf_5]
  824. 190 root 0:00 [scsi_eh_6]
  825. 191 root 0:00 [scsi_tmf_6]
  826. 192 root 0:00 [scsi_eh_7]
  827. 193 root 0:00 [scsi_tmf_7]
  828. 194 root 0:00 [scsi_eh_8]
  829. 195 root 0:00 [scsi_tmf_8]
  830. 196 root 0:00 [scsi_eh_9]
  831. 197 root 0:00 [scsi_tmf_9]
  832. 198 root 0:00 [scsi_eh_10]
  833. 199 root 0:00 [scsi_tmf_10]
  834. 200 root 0:00 [scsi_eh_11]
  835. 201 root 0:00 [scsi_tmf_11]
  836. 202 root 0:00 [scsi_eh_12]
  837. 203 root 0:00 [scsi_tmf_12]
  838. 204 root 0:00 [scsi_eh_13]
  839. 205 root 0:00 [scsi_tmf_13]
  840. 206 root 0:00 [scsi_eh_14]
  841. 207 root 0:00 [scsi_tmf_14]
  842. 208 root 0:00 [scsi_eh_15]
  843. 209 root 0:00 [scsi_tmf_15]
  844. 210 root 0:00 [scsi_eh_16]
  845. 211 root 0:00 [scsi_tmf_16]
  846. 212 root 0:00 [scsi_eh_17]
  847. 213 root 0:00 [scsi_tmf_17]
  848. 214 root 0:00 [scsi_eh_18]
  849. 215 root 0:00 [scsi_tmf_18]
  850. 216 root 0:00 [scsi_eh_19]
  851. 217 root 0:00 [scsi_tmf_19]
  852. 218 root 0:00 [scsi_eh_20]
  853. 219 root 0:00 [scsi_tmf_20]
  854. 220 root 0:00 [scsi_eh_21]
  855. 221 root 0:00 [scsi_tmf_21]
  856. 222 root 0:00 [scsi_eh_22]
  857. 223 root 0:00 [scsi_tmf_22]
  858. 224 root 0:00 [scsi_eh_23]
  859. 225 root 0:00 [scsi_tmf_23]
  860. 226 root 0:00 [scsi_eh_24]
  861. 227 root 0:00 [scsi_tmf_24]
  862. 228 root 0:00 [scsi_eh_25]
  863. 229 root 0:00 [scsi_tmf_25]
  864. 230 root 0:00 [scsi_eh_26]
  865. 231 root 0:00 [scsi_tmf_26]
  866. 232 root 0:00 [scsi_eh_27]
  867. 233 root 0:00 [scsi_tmf_27]
  868. 234 root 0:00 [scsi_eh_28]
  869. 235 root 0:00 [scsi_tmf_28]
  870. 236 root 0:00 [scsi_eh_29]
  871. 237 root 0:00 [scsi_tmf_29]
  872. 238 root 0:00 [scsi_eh_30]
  873. 239 root 0:00 [scsi_tmf_30]
  874. 240 root 0:00 [scsi_eh_31]
  875. 241 root 0:00 [scsi_tmf_31]
  876. 266 root 0:00 [kworker/u4:28-e]
  877. 267 root 0:00 [kworker/u4:29-e]
  878. 270 root 0:00 [scsi_eh_32]
  879. 271 root 0:00 [scsi_tmf_32]
  880. 273 root 0:00 [kworker/0:1H-kb]
  881. 276 root 0:00 [kworker/1:1H-kb]
  882. 328 root 0:00 [jbd2/sda1-8]
  883. 329 root 0:00 [ext4-rsv-conver]
  884. 908 root 0:01 /bedrock/libexec/etcfs -o allow_other /etc
  885. 1137 root 0:00 /bedrock/libexec/crossfs -o allow_other /bedrock/cross
  886. 2899 root 0:04 /bedrock/libexec/etcfs -o allow_other /etc
  887. 5329 root 0:00 /bedrock/libexec/etcfs -o allow_other /etc
  888. 6473 root 0:00 [kworker/1:2-eve]
  889. 6624 root 0:00 /lib/systemd/systemd-journald
  890. 9084 root 0:00 /lib/systemd/systemd-udevd
  891. 9129 systemd- 0:00 /lib/systemd/systemd-timesyncd
  892. 9130 systemd- 0:00 /lib/systemd/systemd-resolved
  893. 10984 root 0:00 /usr/sbin/haveged --Foreground --verbose=1 -w 1024
  894. 10988 root 0:00 /lib/systemd/systemd-logind
  895. 10989 root 0:00 /usr/lib/accountsservice/accounts-daemon
  896. 10990 root 0:00 /usr/sbin/ModemManager --filter-policy=strict
  897. 10996 root 0:00 /usr/sbin/cron -f
  898. 10997 root 0:00 {networkd-dispat} /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers
  899. 10999 root 0:00 /usr/sbin/acpid
  900. 11004 syslog 0:00 /usr/sbin/rsyslogd -n
  901. 11005 root 0:00 /usr/sbin/cupsd -l
  902. 11006 root 0:00 /usr/lib/udisks2/udisksd
  903. 11007 messageb 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
  904. 11010 root 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
  905. 11011 root 0:00 /usr/sbin/NetworkManager --no-daemon
  906. 11017 root 0:00 /usr/sbin/irqbalance --foreground
  907. 11018 avahi 0:00 avahi-daemon: running [Nova-Kubuntu.local]
  908. 11086 avahi 0:00 avahi-daemon: chroot helper
  909. 11097 mpd 0:00 /usr/bin/mpd --no-daemon
  910. 11098 root 0:00 {unattended-upgr} /usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal
  911. 11102 root 0:00 /usr/lib/policykit-1/polkitd --no-debug
  912. 11106 lp 0:00 /usr/lib/cups/notifier/dbus dbus://
  913. 11107 lp 0:00 /usr/lib/cups/notifier/dbus dbus://
  914. 11110 root 0:00 /usr/sbin/cups-browsed
  915. 11117 root 0:00 /usr/bin/sddm
  916. 11132 root 0:02 /usr/lib/xorg/Xorg -nolisten tcp -auth /var/run/sddm/{92a5a22a-afb2-4864-a835-6c4cd6884b69} -background none -noreset -displayfd 17 -seat seat0 vt1
  917. 11133 root 0:00 /usr/sbin/sshd -D
  918. 11140 root 0:00 /sbin/dhclient -d -q -sf /usr/lib/NetworkManager/nm-dhcp-helper -pf /run/dhclient-ens160.pid -lf /var/lib/NetworkManager/dhclient-c45843b2-6b05-3648-a1b2-6454fcb52914-ens160.lease -cf /var/lib/NetworkManager/dhclient-ens160.conf ens160
  919. 11153 whoopsie 0:00 /usr/bin/whoopsie -f
  920. 11165 kernoops 0:00 /usr/sbin/kerneloops --test
  921. 11171 kernoops 0:00 /usr/sbin/kerneloops
  922. 11190 root 0:00 /usr/lib/x86_64-linux-gnu/sddm/sddm-helper --socket /tmp/sddm-auth7d6d3491-95ed-4291-8964-b36f7a059940 --id 1 --start /usr/bin/startkde --user ray --autologin
  923. 11238 ray 0:00 /lib/systemd/systemd --user
  924. 11240 ray 0:00 (sd-pam)
  925. 11251 ray 0:00 {startkde} /bin/sh /usr/bin/startkde
  926. 11293 ray 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
  927. 11325 ray 0:00 /usr/bin/ssh-agent /usr/bin/im-launch /usr/bin/startkde
  928. 11360 ray 0:00 /usr/lib/x86_64-linux-gnu/libexec/kf5/start_kdeinit --kded +kcminit_startup
  929. 11364 ray 0:00 kdeinit5: Running...
  930. 11515 ray 0:00 /usr/lib/x86_64-linux-gnu/libexec/kf5/klauncher --fd=9
  931. 11713 ray 0:01 kded5 [kdeinit5]
  932. 11722 ray 0:00 /usr/bin/kaccess
  933. 11728 ray 0:00 /usr/bin/kactivitymanagerd start-daemon
  934. 11739 ray 0:00 /usr/bin/kglobalaccel5
  935. 11744 ray 0:00 /usr/lib/dconf/dconf-service
  936. 11759 ray 0:00 kwrapper5 /usr/bin/ksmserver
  937. 11760 ray 0:00 /usr/bin/ksmserver
  938. 11763 root 0:00 /usr/lib/upower/upowerd
  939. 11764 ray 0:03 /usr/bin/kwin_x11 -session 10f012815f138000155506115000000011210005_1555082558_354916
  940. 11778 ray 0:00 /usr/lib/x86_64-linux-gnu/libexec/kf5/kscreen_backend_launcher
  941. 11855 ray 0:00 /usr/bin/baloo_file
  942. 11861 ray 0:00 /usr/bin/krunner
  943. 11867 ray 0:05 /usr/bin/plasmashell
  944. 11881 ray 0:00 /usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1
  945. 11888 ray 0:00 /usr/bin/xembedsniproxy
  946. 11900 ray 0:00 /usr/bin/gmenudbusmenuproxy
  947. 12168 ray 0:00 /usr/lib/x86_64-linux-gnu/libexec/kdeconnectd
  948. 12269 ray 0:00 /usr/bin/pulseaudio --daemonize=no
  949. 12294 ray 0:00 /usr/lib/x86_64-linux-gnu/libexec/org_kde_powerdevil -session 10f012815f138000155506115000000011210009_1555082558_351634
  950. 12431 ray 0:00 /usr/lib/at-spi2-core/at-spi-bus-launcher --launch-immediately
  951. 12560 ray 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 3
  952. 12568 ray 0:00 /usr/lib/geoclue-2.0/demos/agent
  953. 12574 rtkit 0:00 /usr/lib/rtkit/rtkit-daemon
  954. 12906 ray 0:00 /usr/lib/bluetooth/obexd
  955. 13081 ray 0:00 /usr/bin/kuiserver5
  956. 13086 root 0:03 /usr/lib/packagekit/packagekitd
  957. 13152 root 0:00 {update-apt-xapi} /usr/bin/python3 /usr/share/apt-xapian-index/update-apt-xapian-index-dbus
  958. 13171 root 0:00 [kworker/u4:0-ev]
  959. 13439 ray 0:00 /usr/bin/konsole
  960. 13788 ray 0:00 /bedrock/cross/bin/zsh
  961. 13802 root 0:00 sudo brl report /tmp/report
  962. 13803 root 0:00 /lib/systemd/systemd-udevd
  963. 13804 root 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/report
  964. 20338 root 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/report
  965. 20340 root 0:00 /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/report
  966. 20341 root 0:00 sed s/^/ /
  967. 20342 root 0:00 {ps} /bedrock/libexec/busybox sh /bedrock/libexec/brl-report /tmp/report
  968.  
  969. $ 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
  970. 1: ubuntu
  971. 2: ubuntu
  972. 3: ubuntu
  973. 4: ubuntu
  974. 6: ubuntu
  975. 8: ubuntu
  976. 9: ubuntu
  977. 10: ubuntu
  978. 11: ubuntu
  979. 12: ubuntu
  980. 13: ubuntu
  981. 14: ubuntu
  982. 15: ubuntu
  983. 16: ubuntu
  984. 17: ubuntu
  985. 18: ubuntu
  986. 20: ubuntu
  987. 21:
  988. 22: ubuntu
  989. 23: ubuntu
  990. 24: ubuntu
  991. 25: ubuntu
  992. 26: ubuntu
  993. 27: ubuntu
  994. 28: ubuntu
  995. 29: ubuntu
  996. 30: ubuntu
  997. 31: ubuntu
  998. 32: ubuntu
  999. 33: ubuntu
  1000. 34: ubuntu
  1001. 35: ubuntu
  1002. 36: ubuntu
  1003. 37: ubuntu
  1004. 38: ubuntu
  1005. 39: ubuntu
  1006. 40: ubuntu
  1007. 42: ubuntu
  1008. 44: ubuntu
  1009. 45: ubuntu
  1010. 46: ubuntu
  1011. 91: ubuntu
  1012. 92: ubuntu
  1013. 93: ubuntu
  1014. 94: ubuntu
  1015. 95: ubuntu
  1016. 96: ubuntu
  1017. 102: ubuntu
  1018. 111: ubuntu
  1019. 128: ubuntu
  1020. 178: ubuntu
  1021. 179: ubuntu
  1022. 180: ubuntu
  1023. 181: ubuntu
  1024. 182: ubuntu
  1025. 183: ubuntu
  1026. 184: ubuntu
  1027. 185: ubuntu
  1028. 186: ubuntu
  1029. 187: ubuntu
  1030. 188: ubuntu
  1031. 189: ubuntu
  1032. 190: ubuntu
  1033. 191: ubuntu
  1034. 192: ubuntu
  1035. 193: ubuntu
  1036. 194: ubuntu
  1037. 195: ubuntu
  1038. 196: ubuntu
  1039. 197: ubuntu
  1040. 198: ubuntu
  1041. 199: ubuntu
  1042. 200: ubuntu
  1043. 201: ubuntu
  1044. 202: ubuntu
  1045. 203: ubuntu
  1046. 204: ubuntu
  1047. 205: ubuntu
  1048. 206: ubuntu
  1049. 207: ubuntu
  1050. 208: ubuntu
  1051. 209: ubuntu
  1052. 210: ubuntu
  1053. 211: ubuntu
  1054. 212: ubuntu
  1055. 213: ubuntu
  1056. 214: ubuntu
  1057. 215: ubuntu
  1058. 216: ubuntu
  1059. 217: ubuntu
  1060. 218: ubuntu
  1061. 219: ubuntu
  1062. 220: ubuntu
  1063. 221: ubuntu
  1064. 222: ubuntu
  1065. 223: ubuntu
  1066. 224: ubuntu
  1067. 225: ubuntu
  1068. 226: ubuntu
  1069. 227: ubuntu
  1070. 228: ubuntu
  1071. 229: ubuntu
  1072. 230: ubuntu
  1073. 231: ubuntu
  1074. 232: ubuntu
  1075. 233: ubuntu
  1076. 234: ubuntu
  1077. 235: ubuntu
  1078. 236: ubuntu
  1079. 237: ubuntu
  1080. 238: ubuntu
  1081. 239: ubuntu
  1082. 240: ubuntu
  1083. 241: ubuntu
  1084. 266: ubuntu
  1085. 267: ubuntu
  1086. 270: ubuntu
  1087. 271: ubuntu
  1088. 273: ubuntu
  1089. 276: ubuntu
  1090. 328: ubuntu
  1091. 329: ubuntu
  1092. 908: bedrock
  1093. 1137:
  1094. 2899: ubuntu
  1095. 5329: arch
  1096. 6473: ubuntu
  1097. 6624: ubuntu
  1098. 9084:
  1099. 9129:
  1100. 9130:
  1101. 10984:
  1102. 10988: ubuntu
  1103. 10989: ubuntu
  1104. 10990:
  1105. 10996: ubuntu
  1106. 10997: ubuntu
  1107. 10999: ubuntu
  1108. 11004: ubuntu
  1109. 11005: ubuntu
  1110. 11006: ubuntu
  1111. 11007: ubuntu
  1112. 11010: ubuntu
  1113. 11011:
  1114. 11017: ubuntu
  1115. 11018:
  1116. 11086: ubuntu
  1117. 11097:
  1118. 11098: ubuntu
  1119. 11102: ubuntu
  1120. 11106: ubuntu
  1121. 11107: ubuntu
  1122. 11110: ubuntu
  1123. 11117: ubuntu
  1124. 11132: ubuntu
  1125. 11133: ubuntu
  1126. 11140:
  1127. 11153: ubuntu
  1128. 11165: ubuntu
  1129. 11171: ubuntu
  1130. 11190: ubuntu
  1131. 11238: ubuntu
  1132. 11240: ubuntu
  1133. 11251: ubuntu
  1134. 11293: ubuntu
  1135. 11325: ubuntu
  1136. 11360: ubuntu
  1137. 11364: ubuntu
  1138. 11515: ubuntu
  1139. 11713: ubuntu
  1140. 11722: ubuntu
  1141. 11728: ubuntu
  1142. 11739: ubuntu
  1143. 11744: ubuntu
  1144. 11759: ubuntu
  1145. 11760: ubuntu
  1146. 11763:
  1147. 11764: ubuntu
  1148. 11778: ubuntu
  1149. 11855: ubuntu
  1150. 11861: ubuntu
  1151. 11867: ubuntu
  1152. 11881: ubuntu
  1153. 11888: ubuntu
  1154. 11900: ubuntu
  1155. 12168: ubuntu
  1156. 12269: ubuntu
  1157. 12294: ubuntu
  1158. 12431: ubuntu
  1159. 12560: ubuntu
  1160. 12568: ubuntu
  1161. 12574:
  1162. 12906: ubuntu
  1163. 13081: ubuntu
  1164. 13086: ubuntu
  1165. 13152: ubuntu
  1166. 13171: ubuntu
  1167. 13439: ubuntu
  1168. 13788: ubuntu
  1169. 13802: ubuntu
  1170. 13803:
  1171. 13804: ubuntu
  1172. 20344: ubuntu
  1173. 20346: ubuntu
  1174. 20347: ubuntu
  1175. 20348: ubuntu
  1176. 20349: ubuntu
  1177.  
  1178. $ cat /bedrock/cross/.bedrock-config-filesystem
  1179. pass /man ubuntu:/bedrock/share/man
  1180. pass /man ubuntu:/usr/local/share/man
  1181. pass /man ubuntu:/usr/share/man
  1182. pass /man arch:/bedrock/share/man
  1183. pass /man arch:/usr/local/share/man
  1184. pass /man arch:/usr/share/man
  1185. pass /man bedrock:/bedrock/share/man
  1186. pass /man bedrock:/usr/local/share/man
  1187. pass /man bedrock:/usr/share/man
  1188. pass /info ubuntu:/bedrock/share/info
  1189. pass /info ubuntu:/usr/local/share/info
  1190. pass /info ubuntu:/usr/share/info
  1191. pass /info arch:/bedrock/share/info
  1192. pass /info arch:/usr/local/share/info
  1193. pass /info arch:/usr/share/info
  1194. pass /info bedrock:/bedrock/share/info
  1195. pass /info bedrock:/usr/local/share/info
  1196. pass /info bedrock:/usr/share/info
  1197. pass /icons ubuntu:/usr/local/share/icons
  1198. pass /icons ubuntu:/usr/share/icons
  1199. pass /icons arch:/usr/local/share/icons
  1200. pass /icons arch:/usr/share/icons
  1201. pass /icons bedrock:/usr/local/share/icons
  1202. pass /icons bedrock:/usr/share/icons
  1203. pass /zoneinfo ubuntu:/usr/share/zoneinfo
  1204. pass /zoneinfo arch:/usr/share/zoneinfo
  1205. pass /zoneinfo bedrock:/usr/share/zoneinfo
  1206. pass /terminfo ubuntu:/usr/local/share/terminfo
  1207. pass /terminfo ubuntu:/usr/share/terminfo
  1208. pass /terminfo arch:/usr/local/share/terminfo
  1209. pass /terminfo arch:/usr/share/terminfo
  1210. pass /terminfo bedrock:/usr/local/share/terminfo
  1211. pass /terminfo bedrock:/usr/share/terminfo
  1212. pass /bash-completion ubuntu:/usr/share/bash-completion
  1213. pass /bash-completion arch:/usr/share/bash-completion
  1214. pass /bash-completion bedrock:/usr/share/bash-completion
  1215. pass /zsh-completion ubuntu:/usr/share/zsh/site-functions
  1216. pass /zsh-completion ubuntu:/usr/share/zsh/vendor-completion
  1217. pass /zsh-completion ubuntu:/usr/share/zsh/functions/Completion/Debian
  1218. pass /zsh-completion ubuntu:/usr/share/zsh/functions/Completion/Mandriva
  1219. pass /zsh-completion ubuntu:/usr/share/zsh/functions/Completion/openSUSE
  1220. pass /zsh-completion ubuntu:/usr/share/zsh/functions/Completion/Redhat
  1221. pass /zsh-completion arch:/usr/share/zsh/site-functions
  1222. pass /zsh-completion arch:/usr/share/zsh/vendor-completion
  1223. pass /zsh-completion arch:/usr/share/zsh/functions/Completion/Debian
  1224. pass /zsh-completion arch:/usr/share/zsh/functions/Completion/Mandriva
  1225. pass /zsh-completion arch:/usr/share/zsh/functions/Completion/openSUSE
  1226. pass /zsh-completion arch:/usr/share/zsh/functions/Completion/Redhat
  1227. pass /zsh-completion bedrock:/usr/share/zsh/site-functions
  1228. pass /zsh-completion bedrock:/usr/share/zsh/vendor-completion
  1229. pass /zsh-completion bedrock:/usr/share/zsh/functions/Completion/Debian
  1230. pass /zsh-completion bedrock:/usr/share/zsh/functions/Completion/Mandriva
  1231. pass /zsh-completion bedrock:/usr/share/zsh/functions/Completion/openSUSE
  1232. pass /zsh-completion bedrock:/usr/share/zsh/functions/Completion/Redhat
  1233. pass /firmware ubuntu:/lib/firmware/updates/UTS_RELEASE
  1234. pass /firmware ubuntu:/lib/firmware/updates
  1235. pass /firmware ubuntu:/lib/firmware/UTS_RELEASE
  1236. pass /firmware ubuntu:/lib/firmware
  1237. pass /firmware arch:/lib/firmware/updates/UTS_RELEASE
  1238. pass /firmware arch:/lib/firmware/updates
  1239. pass /firmware arch:/lib/firmware/UTS_RELEASE
  1240. pass /firmware arch:/lib/firmware
  1241. pass /firmware bedrock:/lib/firmware/updates/UTS_RELEASE
  1242. pass /firmware bedrock:/lib/firmware/updates
  1243. pass /firmware bedrock:/lib/firmware/UTS_RELEASE
  1244. pass /firmware bedrock:/lib/firmware
  1245. bin /bin ubuntu:/usr/local/bin
  1246. bin /bin ubuntu:/usr/local/sbin
  1247. bin /bin ubuntu:/opt/bin
  1248. bin /bin ubuntu:/opt/sbin
  1249. bin /bin ubuntu:/usr/bin
  1250. bin /bin ubuntu:/usr/sbin
  1251. bin /bin ubuntu:/bin
  1252. bin /bin ubuntu:/sbin
  1253. bin /bin ubuntu:/usr/games
  1254. bin /bin ubuntu:/usr/local/games
  1255. bin /bin ubuntu:/snap/bin
  1256. bin /bin arch:/usr/local/bin
  1257. bin /bin arch:/usr/local/sbin
  1258. bin /bin arch:/opt/bin
  1259. bin /bin arch:/opt/sbin
  1260. bin /bin arch:/usr/bin
  1261. bin /bin arch:/usr/sbin
  1262. bin /bin arch:/bin
  1263. bin /bin arch:/sbin
  1264. bin /bin arch:/usr/games
  1265. bin /bin arch:/usr/local/games
  1266. bin /bin arch:/snap/bin
  1267. bin /bin bedrock:/usr/local/bin
  1268. bin /bin bedrock:/usr/local/sbin
  1269. bin /bin bedrock:/opt/bin
  1270. bin /bin bedrock:/opt/sbin
  1271. bin /bin bedrock:/usr/bin
  1272. bin /bin bedrock:/usr/sbin
  1273. bin /bin bedrock:/bin
  1274. bin /bin bedrock:/sbin
  1275. bin /bin bedrock:/usr/games
  1276. bin /bin bedrock:/usr/local/games
  1277. bin /bin bedrock:/snap/bin
  1278. bin /pin/bin/systemctl ubuntu:/usr/sbin/systemctl
  1279. bin /pin/bin/systemctl ubuntu:/usr/bin/systemctl
  1280. bin /pin/bin/systemctl ubuntu:/sbin/systemctl
  1281. bin /pin/bin/systemctl ubuntu:/bin/systemctl
  1282. bin /pin/bin/rc-service ubuntu:/usr/sbin/rc-service
  1283. bin /pin/bin/rc-service ubuntu:/usr/bin/rc-service
  1284. bin /pin/bin/rc-service ubuntu:/sbin/rc-service
  1285. bin /pin/bin/rc-service ubuntu:/bin/rc-service
  1286. bin /pin/bin/rc-status ubuntu:/usr/sbin/rc-status
  1287. bin /pin/bin/rc-status ubuntu:/usr/bin/rc-status
  1288. bin /pin/bin/rc-status ubuntu:/sbin/rc-status
  1289. bin /pin/bin/rc-status ubuntu:/bin/rc-status
  1290. bin /pin/bin/rc-update ubuntu:/usr/sbin/rc-update
  1291. bin /pin/bin/rc-update ubuntu:/usr/bin/rc-update
  1292. bin /pin/bin/rc-update ubuntu:/sbin/rc-update
  1293. bin /pin/bin/rc-update ubuntu:/bin/rc-update
  1294. bin /pin/bin/rc-udevadm ubuntu:/usr/sbin/rc-udevadm
  1295. bin /pin/bin/rc-udevadm ubuntu:/usr/bin/rc-udevadm
  1296. bin /pin/bin/rc-udevadm ubuntu:/sbin/rc-udevadm
  1297. bin /pin/bin/rc-udevadm ubuntu:/bin/rc-udevadm
  1298. bin /pin/bin/sv ubuntu:/usr/sbin/sv
  1299. bin /pin/bin/sv ubuntu:/usr/bin/sv
  1300. bin /pin/bin/sv ubuntu:/sbin/sv
  1301. bin /pin/bin/sv ubuntu:/bin/sv
  1302. bin /pin/bin/poweroff ubuntu:/usr/sbin/poweroff
  1303. bin /pin/bin/poweroff ubuntu:/sbin/poweroff
  1304. bin /pin/bin/poweroff ubuntu:/usr/bin/poweroff
  1305. bin /pin/bin/poweroff ubuntu:/bin/poweroff
  1306. bin /pin/bin/reboot ubuntu:/usr/sbin/reboot
  1307. bin /pin/bin/reboot ubuntu:/sbin/reboot
  1308. bin /pin/bin/reboot ubuntu:/usr/bin/reboot
  1309. bin /pin/bin/reboot ubuntu:/bin/reboot
  1310. bin /pin/bin/shutdown ubuntu:/usr/sbin/shutdown
  1311. bin /pin/bin/shutdown ubuntu:/sbin/shutdown
  1312. bin /pin/bin/shutdown ubuntu:/usr/bin/shutdown
  1313. bin /pin/bin/shutdown ubuntu:/bin/shutdown
  1314. bin /pin/bin/halt ubuntu:/usr/sbin/halt
  1315. bin /pin/bin/halt ubuntu:/sbin/halt
  1316. bin /pin/bin/halt ubuntu:/usr/bin/halt
  1317. bin /pin/bin/halt ubuntu:/bin/halt
  1318. bin-restrict /pin/bin/dpkg-buildpkg ubuntu:/usr/bin/dpkg-buildpackage
  1319. bin-restrict /pin/bin/dpkg-buildpkg arch:/usr/bin/dpkg-buildpackage
  1320. bin-restrict /pin/bin/dpkg-buildpkg bedrock:/usr/bin/dpkg-buildpackage
  1321. bin-restrict /pin/bin/makepkg ubuntu:/usr/bin/makepkg
  1322. bin-restrict /pin/bin/makepkg arch:/usr/bin/makepkg
  1323. bin-restrict /pin/bin/makepkg bedrock:/usr/bin/makepkg
  1324. bin-restrict /pin/bin/rpmbuild ubuntu:/usr/bin/rpmbuild
  1325. bin-restrict /pin/bin/rpmbuild arch:/usr/bin/rpmbuild
  1326. bin-restrict /pin/bin/rpmbuild bedrock:/usr/bin/rpmbuild
  1327. ini /applications ubuntu:/usr/local/share/applications
  1328. ini /applications ubuntu:/usr/share/applications
  1329. ini /applications ubuntu:/var/lib/flatpak/exports/share/applications
  1330. ini /applications arch:/usr/local/share/applications
  1331. ini /applications arch:/usr/share/applications
  1332. ini /applications arch:/var/lib/flatpak/exports/share/applications
  1333. ini /applications bedrock:/usr/local/share/applications
  1334. ini /applications bedrock:/usr/share/applications
  1335. ini /applications bedrock:/var/lib/flatpak/exports/share/applications
  1336. ini /xsessions ubuntu:/usr/local/share/xsessions
  1337. ini /xsessions ubuntu:/usr/share/xsessions
  1338. ini /xsessions arch:/usr/local/share/xsessions
  1339. ini /xsessions arch:/usr/share/xsessions
  1340. ini /xsessions bedrock:/usr/local/share/xsessions
  1341. ini /xsessions bedrock:/usr/share/xsessions
  1342. ini /dbus-system ubuntu:/usr/share/dbus-1/system-services
  1343. ini /dbus-system arch:/usr/share/dbus-1/system-services
  1344. ini /dbus-system bedrock:/usr/share/dbus-1/system-services
  1345. ini /dbus-session ubuntu:/usr/share/dbus-1/services
  1346. ini /dbus-session arch:/usr/share/dbus-1/services
  1347. ini /dbus-session bedrock:/usr/share/dbus-1/services
  1348. font /fonts ubuntu:/usr/share/fonts
  1349. font /fonts arch:/usr/share/fonts
  1350. font /fonts bedrock:/usr/share/fonts
  1351.  
  1352. $ cat /proc/1/root/etc/.bedrock-config-filesystem
  1353. global /adjtime
  1354. global /default/grub
  1355. global /fstab
  1356. global /group
  1357. global /group-
  1358. global /gshadow
  1359. global /gshadow-
  1360. global /hostname
  1361. global /hosts
  1362. global /login.defs
  1363. global /machine-id
  1364. global /modprobe.d/blacklist.conf
  1365. global /passwd
  1366. global /passwd-
  1367. global /passwd.org
  1368. global /passwd.upwd-write
  1369. global /rc.local
  1370. global /resolv.conf
  1371. global /shadow
  1372. global /shadow-
  1373. global /sudoers
  1374. override symlink /localtime /bedrock/run/localtime
  1375. override symlink /environment /bedrock/run/environment
  1376. override inject /sudoers /bedrock/share/sudo/include-bedrock
  1377. override inject /profile /bedrock/share/shells/include-bedrock
  1378. override inject /zprofile /bedrock/share/zsh/include-bedrock
  1379. override inject /zshenv /bedrock/share/zsh/include-bedrock
  1380. override inject /zsh/zprofile /bedrock/share/zsh/include-bedrock
  1381. override directory /zsh x
  1382. override inject /zsh/zshenv /bedrock/share/zsh/include-bedrock
  1383.  
  1384. $ uname -m
  1385. x86_64
  1386.  
  1387. $ uname -a
  1388. Linux Nova-Kubuntu 4.18.0-20-generic #21-Ubuntu SMP Mon May 6 18:45:52 UTC 2019 x86_64 GNU/Linux
  1389.  
  1390. $ /bedrock/libexec/getfattr -d /bedrock/strata/bedrock
  1391. getfattr: Removing leading '/' from absolute path names
  1392. # file: bedrock/strata/bedrock
  1393. user.bedrock.arch="x86_64"
  1394. user.bedrock.show_boot=""
  1395. user.bedrock.show_cross=""
  1396. user.bedrock.show_init=""
  1397. user.bedrock.show_list=""
  1398. user.bedrock.stratum="bedrock"
  1399.  
  1400.  
  1401. ray@Nova-Kubuntu ~ %
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement