2021-07-14 15:13:36 +02:00
|
|
|
# RootDO [](https://aur.archlinux.org/packages/rdo/)
|
2021-07-13 21:33:12 +02:00
|
|
|
|
|
|
|
This little "project" aims to be a very slim alternative to both sudo and doas.
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
2021-07-14 15:13:36 +02:00
|
|
|
If you are on Arch Linux, you can download the package via the [AUR](https://aur.archlinux.org/packages/rdo/).
|
|
|
|
|
|
|
|
If you are using any other linux distro, you can build it yourself by following these instructions:
|
|
|
|
|
2021-07-13 21:33:12 +02:00
|
|
|
```sh
|
2021-07-13 21:34:38 +02:00
|
|
|
git clone https://codeberg.org/sw1tchbl4d3/rdo
|
2021-07-13 21:33:12 +02:00
|
|
|
cd rdo
|
|
|
|
make
|
|
|
|
sudo make install
|
|
|
|
```
|
|
|
|
|
|
|
|
After that, you'll have to configure rdo to allow you to use it.
|
2021-07-13 23:21:34 +02:00
|
|
|
To do this, edit `/etc/rdo.conf`, and set the username variable to your own.
|
2021-07-13 21:33:12 +02:00
|
|
|
|
|
|
|
After that you're good to go!
|
|
|
|
|
|
|
|
And to uninstall:
|
|
|
|
```sh
|
|
|
|
sudo make uninstall
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
```sh
|
|
|
|
rdo [command]
|
|
|
|
```
|
2021-07-15 12:44:44 +02:00
|
|
|
|
|
|
|
### Dependencies
|
|
|
|
```sh
|
|
|
|
libbsd
|
|
|
|
```
|