transfered existing blog into a new hugo project

This commit is contained in:
Eric Phillips
2025-12-19 22:14:51 -07:00
commit 7486c791c9
24 changed files with 754 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
---
title: "VMWare and recent kernels"
date: 2019-06-05T20:29:10-07:00
tags:
- linux
- vmware
- kernel
---
VMware is still slow at updating their software to support newer linux kernel releases. I'm still using [vmware modules for linux](https://github.com/mkubecek/vmware-host-modules) on github. Download the branch corresponding to the version of vmware I'm currently using. I rewrote my module upgrade script to use these src files to build the modules.
<!--more-->
```bash
cd path/to/src
make clean
make
sudo make install
sudo systemctl restart vmware
```