List platforms with system requirements support
Value
Data frame with columns:
name
: human readable OS name.os
: OS name, e.g.linux
.distribution
: OS id, e.g.ubuntu
orredhat
.version
: distribution version. A star means that all versions are supported, that are also supported by the vendor.update_command
: command to run to update the system package metadata.install_command
: command to run to install packages.query_command
: name of the tool to use to query system package information.
See also
Other system requirements functions:
pkg_sysreqs()
,
sysreqs_check_installed()
,
sysreqs_db_list()
,
sysreqs_db_match()
,
sysreqs_db_update()
,
sysreqs_is_supported()
,
sysreqs_list_system_packages()
Examples
sysreqs_platforms()
#> # A data frame: 22 × 7
#> name os distribution version update_command install_command
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 Ubuntu Linux linux ubuntu * apt-get -y up… apt-get -y ins…
#> 2 Debian Linux linux debian * apt-get -y up… apt-get -y ins…
#> 3 CentOS Linux linux centos * NA yum install -y
#> 4 Rocky Linux linux rockylinux * NA dnf install -y
#> 5 Red Hat Ente… linux redhat 6 NA yum install -y
#> 6 Red Hat Ente… linux redhat 7 NA yum install -y
#> 7 Red Hat Ente… linux redhat * NA dnf install -y
#> 8 Red Hat Ente… linux rhel 7.0 NA yum install -y
#> 9 Red Hat Ente… linux rhel 7.1 NA yum install -y
#> 10 Red Hat Ente… linux rhel 7.2 NA yum install -y
#> # ℹ 12 more rows
#> # ℹ 1 more variable: query_command <chr>