Compare commits

...

4 Commits

Author SHA1 Message Date
kennet31526 f1f5c4ff8d
Merge d42a3dbda3 into e962dce97f 2025-04-13 12:00:43 +02:00
kennet31526 d42a3dbda3 Merge remote-tracking branch 'origin/cpu-max-features' into pr/822 2024-11-17 15:05:34 +01:00
David Pochobradský 42c6557c5f
Update README.md
To install qemu `apt-get update` has been needed
2024-09-05 20:14:32 +02:00
sickcodes 1b55c6e7e5
Change `Penryn` to `max`
As stated in QEMU 6 

Can test currently with:

`-e CPU=max \`

```
[user@hostname ~]$ qemu-system-x86_64 -cpu help
x86 Penryn                (alias configured by machine type)                        
x86 Penryn-v1             Intel Core 2 Duo P9xxx (Penryn Class Core 2)              
...
x86 base                  base CPU model type with no features enabled              
x86 host                  KVM processor with all supported host features            
x86 max                   Enables all features supported by the accelerator in the current host
```

See https://github.com/sickcodes/Docker-OSX/issues/304
2021-07-09 01:37:30 +00:00
1 changed files with 6 additions and 0 deletions

View File

@ -589,6 +589,12 @@ Create your personal image using `:latest` or `big-sur`. Then, pull the image ou
## Initial setup ## Initial setup
Before you do anything else, you will need to turn on hardware virtualization in your BIOS. Precisely how will depend on your particular machine (and BIOS), but it should be straightforward. Before you do anything else, you will need to turn on hardware virtualization in your BIOS. Precisely how will depend on your particular machine (and BIOS), but it should be straightforward.
Depending on your installation, you might need to update package manager:
```bash
sudo apt-get update
```
Then, you'll need QEMU and some other dependencies on your host: Then, you'll need QEMU and some other dependencies on your host:
```bash ```bash