Chrubuntu 12.04上的VMware Workstation

时间:2013-11-26 05:45:32

标签: ubuntu-12.04 virtual-machine vmware-workstation

我正在尝试在运行Chrubuntu 12.04的Samsung XE500C21上安装VMware Workstation。我能够检索并安装3.4.0的通用linux头文件。但是,每当我尝试启动VMware Workstation时,我仍然会得到:

找不到版本3.4.0的内核头文件。

即使在指向/ usr / src中的标题后,我得到:

找不到与正在运行的内核匹配的C头文件。

任何人对我如何在我的Chrubuntu机器上启动和使用VMware Workstation有任何想法?我已经研究和试验了两天了。

运行uname -r会给出: 3.4.0

另外,我读到VMware Player可以在任何Linux发行版上运行:https://superuser.com/questions/571384/can-vmware-player-run-on-an-acer-a7-running-chrubuntu

但我不确定为什么VMware Workstation不能使用通用的3.4.0标头。

2 个答案:

答案 0 :(得分:1)

最后,我解决了我的问题。我制作的以下教程解释了如何在Samsung Series 5 Chromebook上安装和使用自定义3.4.0内核头文件。注意:您必须具有非ARM处理器才能工作。此外,如果您还没有将Chrubuntu 12.04安装到Samsung Series 5,请使用本教程:http://chromeos-cr48.blogspot.com/2012/04/chrubuntu-1204-now-with-double-bits.html

在运行脚本之前确保以root用户身份登录。

1。运行我从Acer C7教程修改的脚本(注意:收到消息时不要覆盖内核。只需点击是。如果你覆盖内核,可能会导致Chrubuntu安装失灵):

#!/bin/bash
#Edited 11/27/2013 
#Fixes the old_bins directory not found error

set -x

#
# Grab verified boot utilities from ChromeOS.
#
mkdir -p /usr/share/vboot

#
#Make a new directory called old_bins
#
mkdir -p /usr/bin/old_bins


mount -o ro /dev/sda3 /mnt

#
#copy the vbutil_* commands to the old_bins directory
#
cp /mnt/usr/bin/vbutil_* /usr/bin/
cp /mnt/usr/bin/vbutil_* /usr/bin/old_bins


cp /mnt/usr/bin/dump_kernel_config /usr/bin
rsync -avz /mnt/usr/share/vboot/ /usr/share/vboot/
umount /mnt

#
# On the Acer C7, ChromeOS is 32-bit, so the verified boot binaries need a
# few 32-bit shared libraries to run under ChrUbuntu, which is 64-bit.
#
apt-get install libc6:i386 libssl1.0.0:i386

#
# Fetch ChromeOS kernel sources from the Git repo.
#
apt-get install git-core
cd /usr/src
git clone  https://git.chromium.org/git/chromiumos/third_party/kernel.git
cd kernel
git checkout origin/chromeos-3.4

#
# Configure the kernel
#
# First we patch ``base.config`` to set ``CONFIG_SECURITY_CHROMIUMOS``
# to ``n`` ...
cp ./chromeos/config/base.config ./chromeos/config/base.config.orig
sed -e \
  's/CONFIG_SECURITY_CHROMIUMOS=y/CONFIG_SECURITY_CHROMIUMOS=n/' \
  ./chromeos/config/base.config.orig > ./chromeos/config/base.config
./chromeos/scripts/prepareconfig chromeos-intel-pineview
#
# ... and then we proceed as per Olaf's instructions
#
yes "" | make oldconfig

#
# Build the Ubuntu kernel packages
#
apt-get install kernel-package
make-kpkg kernel_image kernel_headers

#
# Backup current kernel and kernel modules
#
tstamp=$(date +%Y-%m-%d-%H%M)
dd if=/dev/sda6 of=/kernel-backup-$tstamp
cp -Rp /lib/modules/3.4.0 /lib/modules/3.8.0-backup-$tstamp

#
# Install kernel image and modules from the Ubuntu kernel packages we
# just created.
#
dpkg -i /usr/src/linux-*.deb

#
# Extract old kernel config
#
vbutil_kernel --verify /dev/sda6 --verbose | tail -1 > /config-$tstamp-orig.txt
#
# Add ``disablevmx=off`` to the command line, so that VMX is enabled (for VirtualBox & Co)
#
sed -e 's/$/ disablevmx=off/' \
  /config-$tstamp-orig.txt > /config-$tstamp.txt

#
# Wrap the new kernel with the verified block and with the new config.
#
vbutil_kernel --pack /newkernel \
  --keyblock /usr/share/vboot/devkeys/kernel.keyblock \
  --version 1 \
  --signprivate /usr/share/vboot/devkeys/kernel_data_key.vbprivk \
  --config=/config-$tstamp.txt \
  --vmlinuz /boot/vmlinuz-3.4.0 \
  --arch x86_64

#
# Make sure the new kernel verifies OK.
#
vbutil_kernel --verify /newkernel

#
# Copy the new kernel to the KERN-C partition.
#
dd if=/newkernel of=/dev/sda6

2. 它不应该完成第一次运行。您将收到有关fstack-protector-strong的错误消息。导航至/usr/src/kernel/arch/x86/Makefile并修改从stackp-y := -fstack-protector-strongstackp-y := -fstack-protector-all

的第78行

3. 使用新修改的Makefile再次运行脚本。同样,不要覆盖内核。

4。您应该收到更多错误,但不要担心。现在是时候打开VMware Workstation了。当您获得内核3.4.0标头缺少提示时,将提示框指向:/usr/src/linux-headers-3.4.0/include

5. 你已经完成了!现在一切都应该工作了。感谢michaela_elise(Reddit)创建原始脚本并指出-fstack-protector-strong问题。 (注意:您可能需要在第二次和最后一次运行脚本后重新启动。我第二次运行脚本后,我的VMware Workstation出现故障。)

答案 1 :(得分:0)

三星chromebook有ARM处理器,所以我不确定它们会不会。我建议你放弃。我已经详尽地研究了在我的Acer Chromebook上安装linux-headers-3.4.0,但没有用。人们说它有效,我至少运行了10个不同的脚本,但都失败了。我通过goo.gl/tnyga安装了64位ChrUbuntu 12.04。