33 lines
814 B
Markdown
33 lines
814 B
Markdown
---
|
|
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
|
|
``` |