Here are several ways to check if you have an Ice Lake or later Intel processor on Debian:
## Method 1: Check CPU model using `lscpu`
```bash
lscpu | grep "Model name"
```
## Method 2: Check `/proc/cpuinfo`
```bash
grep "model name" /proc/cpuinfo | head -1
```
## Method 3: Check CPU family and model numbers
```bash
lscpu | grep -E "(CPU family|Model|Stepping)"
```
## Method 4: More detailed processor info
```bash
cat /proc/cpuinfo | grep -E "(processor|vendor_id|cpu family|model|model name|stepping|microcode)" | head -10
```
## What to look for:
**Ice Lake processors** typically have:
- Model names containing "Ice Lake" or generation indicators like:
- 10th gen Core processors (some models)
- Model numbers like 1035G1, 1065G7, etc.
**Later generations include:**
- **Tiger Lake**: 11th gen (1135G7, 1165G7, etc.)
- **Alder Lake**: 12th gen (1240P, 1260P, etc.)
- **Raptor Lake**: 13th gen
- **Meteor Lake**: 14th gen (newer)
## Quick identification tip:
```bash
lscpu | grep "Model name" | grep -E "(10th|11th|12th|13th|14th) Gen"
```
If you share the output of `lscpu | grep "Model name"`, I can help you identify exactly what generation processor you have!