Most of times, user should install packages with the frontend(In here means apt and dnf) to install packages, because it has the ability to query the repo data if additional deps are needed.
|
```console |
|
$ sudo dpkg -i /path/to/deb/file.deb |
|
``` |
|
|
|
On a red hat based linux, the `.rpm` package can be installed with |
|
```console |
|
$ sudo rpm -ivh /path/to/rpm/file.rpm |
|
$ sudo systemctl start ntpd-rs |
|
``` |
Most of times, user should install packages with the frontend(In here means
aptanddnf) to install packages, because it has the ability to query the repo data if additional deps are needed.ntpd-rs/docs/guide/installation.md
Lines 12 to 20 in 520fd16