Initial commit

This commit is contained in:
2026-03-02 17:06:32 +00:00
commit 430dd71917
1190 changed files with 622790 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
category:
- "[[Journal]]"
type:
- "[[Log]]"
title: Issues running proxmox on thinkpad t440s
created: 2026-02-03T16:18:02
date: 2026-02-03
---
Some issues I had after installing [[Proxmox|Proxmox]] on my old [[Lenovo Thinkpad T440s]]
## ssd not recognised as being attached on boot
reseating would fix, also turning off fast boot
common issue with Lenovo's t440s and SSDs
## Losing connection to network
common issue with intel power saving and Linux in general. I added the two lines at the bottom to the following file:
/etc/network/interfaces
```
iface vmbr0 inet static
address 192.168.1.37/24
gateway 192.168.1.254
bridge-ports nic0
bridge-stp off
bridge-fd 0
# DISABLE THE HANG-CAUSING FEATURES:
post-up ethtool -K nic0 tso off gso off gro off
post-up ethtool --set-eee nic0 eee off
```