setup/doc/debian-config.md

34 lines
559 B
Markdown
Raw Permalink Normal View History

2022-02-12 17:47:04 +01:00
# Configure Debian
2022-04-10 18:02:25 +02:00
* install sudo
```
su -
apt install sudo --no-install-recommends
exit
```
2022-02-12 17:47:04 +01:00
* add user <tbd> to sudoers using
```
2022-04-10 18:02:25 +02:00
whereis usermod
su -
usermod -a -G sudo <tbd>
exit
exit
```
* logout and login user <tbd> and validate participation of the sudo group
```
sudo -l
2022-02-12 17:47:04 +01:00
```
* update Debian
```
sudo apt update
sudo apt upgrade
```
* speed up boot time: In case you have only Debian installed on your system then you can speed up boot time by changing the grub timeout value ```GRUB_TIMEOUT``` to 0 in grub file.
```
sudo vi /etc/default/grub
```