xbps-digest(1): new utility that replaces "xbps-uhelper digest".
See the manual page:
XBPS-DIGEST(1) General Commands Manual XBPS-DIGEST(1)
NAME
xbps-digest - XBPS utility to generate message digests
SYNOPSIS
xbps-digest [OPTIONS] [FILE] [FILE+N]
DESCRIPTION
The xbps-digest utility generates message digests for specified FILE or
stdin if unset.
OPTIONS
-m, --mode mode
Sets the message digest mode. Supported: sha256. If unset, defaults
to sha256.
-h, --help
Show the help message.
-V, --version
Show the version information.
SEE ALSO
xbps.d(5), xbps-checkvers(1), xbps-create(1), xbps-dgraph(1),
xbps-fbulk(1), xbps-install(1), xbps-pkgdb(1), xbps-query(1),
xbps-reconfigure(1), xbps-remove(1), xbps-rindex(1), xbps-uchroot(1),
xbps-uunshare(1)
AUTHORS
Juan Romero Pardines <xtraeme@gmail.com>
BUGS
Probably, but I try to make this not happen. Use it under your own
responsibility and enjoy your life.
Report bugs at https://github.com/void-linux/xbps/issues
June 12, 2019
Signed-off-by: Juan RP <xtraeme@gmail.com>
2019-06-12 18:04:58 +05:30
|
|
|
.Dd June 12, 2019
|
2015-05-16 13:15:35 +05:30
|
|
|
.Dt XBPS-UUNSHARE 1
|
2015-03-05 23:14:20 +05:30
|
|
|
.Sh NAME
|
|
|
|
.Nm xbps-uunshare
|
2015-10-30 11:15:26 +05:30
|
|
|
.Nd XBPS utility to chroot and bind mount with Linux user namespaces
|
|
|
|
.Sh SYNOPSIS
|
2015-03-05 23:14:20 +05:30
|
|
|
.Nm xbps-uunshare
|
|
|
|
.Op OPTIONS
|
|
|
|
.Ar CHROOTDIR
|
|
|
|
.Ar COMMAND
|
|
|
|
.Op ARGS
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility allows users to chroot and bind mount required pseudo-filesystems
|
|
|
|
(/dev, /proc and /sys) in the target
|
|
|
|
.Ar CHROOTDIR
|
|
|
|
to execute
|
|
|
|
.Ar COMMAND .
|
2015-05-06 15:10:19 +05:30
|
|
|
.Pp
|
2015-03-05 23:14:20 +05:30
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility uses by default Linux namespaces to isolate IPC, PIDs and mounts to
|
|
|
|
the calling process. Thanks to
|
|
|
|
.Xr user_namespaces 7
|
|
|
|
the user does not need any privilege to create an isolated lightweight container.
|
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width -x
|
2015-05-06 15:10:19 +05:30
|
|
|
.It Fl b Ar src:dest
|
|
|
|
Bind mounts
|
|
|
|
.Ar src
|
|
|
|
into
|
|
|
|
.Ar CHROOTDIR/dest .
|
|
|
|
This option may be specified multiple times.
|
|
|
|
Please note that both
|
|
|
|
.Ar src
|
|
|
|
and
|
|
|
|
.Ar dest
|
|
|
|
must be absolute paths and must exist.
|
2019-11-05 21:00:39 +05:30
|
|
|
.It Fl -
|
|
|
|
Stop interpreting following arguments as options.
|
|
|
|
This option is useful if some of
|
|
|
|
.Ar ARGS
|
|
|
|
are options passed to
|
|
|
|
.Ar COMMAND .
|
2015-03-05 23:14:20 +05:30
|
|
|
.El
|
|
|
|
.Sh NOTES
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility uses Linux specific features (namespaces) and it's not meant to be portable to
|
|
|
|
other Operating Systems. The following kernel options must be enabled:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width CONFIG_NAMESPACES -compact -offset indent
|
|
|
|
.It Sy CONFIG_NAMESPACES
|
|
|
|
.It Sy CONFIG_IPC_NS
|
|
|
|
.It Sy CONFIG_USER_NS
|
2015-04-13 19:41:54 +05:30
|
|
|
.It Sy CONFIG_UTS_NS
|
2015-03-05 23:14:20 +05:30
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
2015-05-16 13:15:35 +05:30
|
|
|
.Xr xbps-checkvers 1 ,
|
|
|
|
.Xr xbps-create 1 ,
|
|
|
|
.Xr xbps-dgraph 1 ,
|
xbps-digest(1): new utility that replaces "xbps-uhelper digest".
See the manual page:
XBPS-DIGEST(1) General Commands Manual XBPS-DIGEST(1)
NAME
xbps-digest - XBPS utility to generate message digests
SYNOPSIS
xbps-digest [OPTIONS] [FILE] [FILE+N]
DESCRIPTION
The xbps-digest utility generates message digests for specified FILE or
stdin if unset.
OPTIONS
-m, --mode mode
Sets the message digest mode. Supported: sha256. If unset, defaults
to sha256.
-h, --help
Show the help message.
-V, --version
Show the version information.
SEE ALSO
xbps.d(5), xbps-checkvers(1), xbps-create(1), xbps-dgraph(1),
xbps-fbulk(1), xbps-install(1), xbps-pkgdb(1), xbps-query(1),
xbps-reconfigure(1), xbps-remove(1), xbps-rindex(1), xbps-uchroot(1),
xbps-uunshare(1)
AUTHORS
Juan Romero Pardines <xtraeme@gmail.com>
BUGS
Probably, but I try to make this not happen. Use it under your own
responsibility and enjoy your life.
Report bugs at https://github.com/void-linux/xbps/issues
June 12, 2019
Signed-off-by: Juan RP <xtraeme@gmail.com>
2019-06-12 18:04:58 +05:30
|
|
|
.Xr xbps-digest 1 ,
|
2015-10-28 14:07:09 +05:30
|
|
|
.Xr xbps-fbulk 1 ,
|
2019-06-12 21:27:03 +05:30
|
|
|
.Xr xbps-fetch 1 ,
|
2015-05-16 13:15:35 +05:30
|
|
|
.Xr xbps-install 1 ,
|
|
|
|
.Xr xbps-pkgdb 1 ,
|
|
|
|
.Xr xbps-query 1 ,
|
|
|
|
.Xr xbps-reconfigure 1 ,
|
|
|
|
.Xr xbps-rindex 1 ,
|
|
|
|
.Xr xbps-uchroot 1 ,
|
|
|
|
.Xr xbps.d 5
|
2015-03-05 23:14:20 +05:30
|
|
|
.Sh AUTHORS
|
|
|
|
.An Juan Romero Pardines <xtraeme@gmail.com>
|
|
|
|
.Sh BUGS
|
|
|
|
Probably, but I try to make this not happen. Use it under your own
|
2015-10-28 14:33:41 +05:30
|
|
|
responsibility and enjoy your life.
|
2015-03-05 23:14:20 +05:30
|
|
|
.Pp
|
2018-09-23 21:21:07 +05:30
|
|
|
Report bugs at https://github.com/void-linux/xbps/issues
|