Skip to content

Commit ee09eee

Browse files
os: install sudo & add user to sudo group
resolve: #26
1 parent e3f552d commit ee09eee

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- practices: asking questions
1717
- linux: link to sudo setup page on Debian Linux wiki
1818
- dev: add scheduled stale issue & pull request check (monthly)
19+
- os: install sudo & add user to sudo group
1920

2021
### Changed
2122

docs/os/debian-linux.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,17 @@ su -
4949
??? INFO "Install & Configure sudo for Debian Linux"
5050
The [sudo page on the Debian Wiki](https://wiki.debian.org/sudo) describes how to install `sudo`, should that approach be acceptable.
5151

52+
Install sudo package, using root account
53+
54+
```shell
55+
apt install sudo
56+
```
57+
58+
Add account-name to `sudo` group, using root account
59+
60+
```shell
61+
adduser account-name sudo
62+
```
5263

5364
## Set XDG freedesktop locations
5465

0 commit comments

Comments
 (0)