Téléverser les fichiers vers "/"

This commit is contained in:
Olivier 2024-03-10 15:37:20 +01:00
parent 64775066d6
commit e38d1891b4
2 changed files with 24 additions and 0 deletions

12
ethernet.service Normal file
View File

@ -0,0 +1,12 @@
# 2024-01-23
[Unit]
Description=Ethernet Settings
After=network-online.target
[Service]
Type=oneshot
ExecStart=ip link set ens18 mtu 1500
ExecStart=ip link set ens18 txqueuelen 1000
[Install]
WantedBy=multi-user.target

12
multiqueue.service Normal file
View File

@ -0,0 +1,12 @@
# 2024-11-23
[Unit]
Description=Ethernet Multiqueue
After=network-online.target
[Service]
EnvironmentFile=/etc/env/nproc
Type=oneshot
ExecStart=ethtool -L ens18 combined ${NPROC}
[Install]
WantedBy=multi-user.target