feat: add device acer

This commit is contained in:
dancingCycle 2022-04-10 18:02:25 +02:00
parent 2efcb53010
commit 9128188c7e
6 changed files with 37 additions and 9 deletions

12
devices/acer.md Normal file
View File

@ -0,0 +1,12 @@
# Acer Aspire 3820T
* press the <> key to interrupt the start sequence
* press the <> key to enter the BIOS setup
* prepare USB stick for Debian installation like [this](../doc/bootable-usb-drive.md)
* [Debian Installation](../doc/debian-install.md)
* [Debian Configuration](../doc/debian-config.md)
* [Debian Keyboard Layout](../doc/debian-keyboard-layout.md)
* [Debian Lid Switch Configuration](../doc/debian-lid-switch-config.md)
* [SSH Server](../doc/ssh-server.md)
* [SSH Public Key Authentication](../doc/ssh-pub-key-auth.md)
* [SSH Public Key Authentication](../doc/ssh-pub-key-auth.md)

View File

@ -1,4 +1,4 @@
# Cloud Server
* [SSH Server](doc/ssh-server.md)
* [SSH Public Key Authentication](doc/ssh-pub-key-auth.md)
* [SSH Server](../doc/ssh-server.md)
* [SSH Public Key Authentication](../doc/ssh-pub-key-auth.md)

View File

@ -1,6 +1,6 @@
# Cloud Server
* [SSH Server](doc/ssh-server.md)
* [SSH Public Key Authentication](doc/ssh-pub-key-auth.md)
* [Docker](doc/docker.md)
* [Static-gtfs-manager](doc/static-gtfs-manager.md)
* [SSH Server](../doc/ssh-server.md)
* [SSH Public Key Authentication](../doc/ssh-pub-key-auth.md)
* [Docker](../doc/docker.md)
* [Static-gtfs-manager](../doc/static-gtfs-manager.md)

View File

@ -1,8 +1,24 @@
# Configure Debian
* install sudo
```
su -
apt install sudo --no-install-recommends
exit
```
* add user <tbd> to sudoers using
```
sudo usermod -a -G sudo <tbd>
whereis usermod
su -
usermod -a -G sudo <tbd>
exit
exit
```
* logout and login user <tbd> and validate participation of the sudo group
```
sudo -l
```
* update Debian

View File

@ -61,7 +61,7 @@ you may savely close the terminal/shell running the open password-based login
* revert the password changes in ```ssh_config``` if you are srcurity conscious\
```
sudo vi /etc/ssh/sshd_config
PasswordAuthentication yes
PasswordAuthentication no
```
## Links

View File

@ -16,7 +16,7 @@ systemctl list-unit-files | grep enabled | grep ssh
sudo vi /etc/ssh/sshd_config
sudo systemctl restart sshd
````
* check port configuration
* validate port configuration
```
ss -tupln|grep <sshd port number>