MyFirstBrain/Technik/Linux-Allgemein.md

46 lines
724 B
Markdown
Raw Normal View History

2025-04-11 09:01:14 +02:00
---
created: 2025-04-10T18:03
2025-04-28 09:45:05 +02:00
updated: 2025-04-28T09:45
2025-04-11 09:01:14 +02:00
---
2025-04-04 08:47:57 +02:00
### Linux Configurationen
##### Scripte for und nach Bereitschaft ausführen :
Ordner :
/usr/lib/systemd/system-sleep oder
/usr/systemd/system-sleep
Script
```Command
case $1/$2 in
pre/*)
echo "Going to $2..."
rfkill block all
;;
post/*)
echo "Waking up from $2..."
rfkill unblock all
;;
esac
2025-04-10 22:35:07 +02:00
```
#### Brightness auf dem Display einstellen
```Code
xrandr --output eDP-1 --brightness 0.5
```
2025-04-13 10:06:09 +02:00
** Nemo DateiManager in Cinnamon **
Einhängen einer Samba Freigabe
```code
nemo smb://ralfk@192.168.132.19
```
2025-04-19 11:38:07 +02:00
#### Wireguard VPN Conf Importieren
2025-04-13 10:06:09 +02:00
2025-04-19 11:38:07 +02:00
```bash
nmcli connection import type wireguard file ./wg-lg-zuhause.conf
```
2025-04-13 10:06:09 +02:00