1. The following error occurred while compiling the kernel
CHK Include/linux/version.h
CHK include/generated/utsrelease.h
MAKE[1]: ' Include/generated/mach-types.h ' is up to date.
Call scripts/checksyscalls.sh
CC SCRIPTS/MOD/EMPTY.O
/OPT/FRIENDLYARM/TOOLSCHAIN/4.5.1/LIB/GCC/ARM-NONE-LINUX-GNUEABI/4.5.1/. /.. /.. /.. /arm-none-linux-gnueabi/bin/as:error while loading shared libraries:libz.so.1:cannot open shared object file:no such F Ile or Directory
MAKE[2]: * * * [SCRIPTS/MOD/EMPTY.O] Error 1
MAKE[1]: * * * [Scripts/mod] Error 2
Make: * * * [scripts] Error 2
Workaround:
The problem is that your 64-bit operating system does not have 32-bit class library, and Android SDK is to 32-bit support, if not installed can only be reported above the error!
Open terminal to run the following command:
sudo apt-get update
sudo apt-get install Ia32-libs
When running the second command, you may say that you cannot find it or be replaced by another one, and then install the terminal list.
2, vmware Install virtual machine piix4_smbus:host smbus Error Resolution
Error: Ubuntu boot error prompt:piix4_SMBus 0000:00:007.3: Host SMBus Controller not enabled
Reason: Ubuntu loaded into the i2c_piix4 module because the system cannot find this module, so the error
Processing method:
1, find out the exact name of the loaded module, the result of the display output is the exact name of the module:i2c_piix4
2, the module is included in the non-loading list. Edit File sudo vim/etc/modprobe.d/blacklist.conf, add blacklist i2c-piix4 at the end
3, restart reboot
Ubuntu Tips Piix4_smbus:host SMBus Error Resolution