我刚刚看到谷歌将goldfish_armv7_defconfig添加到3.18内核中,当我编译内核时,没有任何错误。但当我在模拟器中启动它时,我得到了一个黑屏,设备保持“脱机”状态!
编译:
$ make ARCH=arm goldfish_armv7_defconfig
$ make ARCH=arm CROSS_COMPILE=/opt/android-ndk/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi- menuconfig # I enable overlayf
我最近在Ubuntu服务器上运行了sudo apt-get update和sudo apt-get install,APT建议运行sudo apt autoremove。当我运行这个命令时,它会警告我:
The following packages will be REMOVED:
linux-headers-4.4.0-31 linux-headers-4.4.0-31-generic linux-headers-4.4.0-57 linux-headers-4.4.0-57-generic linux-headers-4.4.0-62
linux-headers-4.4.0-62-
我需要一个静态分析工具的Linux设备驱动程序,我写的ARM为基础的董事会。我正在考虑以下几个工具:
是一种计算机软件工具,已经在Linux上使用,旨在查找Linux内核中可能存在的编码错误。
有两个活动项目,旨在提高可加载内核模块的质量。
- `Linux Driver Verification` (LDV) - a comprehensive toolset for static source code verification of Linux device drivers.
- `KEDR Framework` - an extensible framework for
自从Ubuntu服务器发布了崩溃漏洞补丁后,我就一直在升级Ubuntu服务器的内核。我注意到,几乎在所有服务器上,在重新启动之后,我必须运行两次apt autoremove才能清除系统上所有的旧内核。
如果我第一次运行它,它首先删除内核的两个旧版本:
% sudo apt autoremove
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
linux-headers-
我正在运行opensuse:13.1 docker映像,但它在"uname -a“命令中显示了ubuntu。我只想知道这是SuSe码头形象的问题还是我这方面的问题。
root@ip-172-31-22-20:~/docker-emr# docker run -it opensuse:13.1 bash
bash-4.2# uname -a
Linux 3e52b37a2610 3.13.0-92-generic #139-Ubuntu SMP Tue Jun 28 20:42:26 UTC 2016 x86_64
如何解决在Fedora上的make menuconfig中编译Linux时出现的以下错误:
$ make menuconfig
Makefile:323: /home/user/linux-3.12.6/scripts/Kbuild.include: No such file or directory
make: *** empty variable name. Stop.
每当我安装任何新内核(或内核升级)时,都会出现很多错误。
我所犯的错误
sudo apt -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
5 not fully installed or removed.
After this operation, 0 B of additional disk space
我使用DEB软件包安装了Virtualbox 5.0,我完全安装了它,然后我创建了一个MacOS塞拉利昂虚拟机。
然后执行以下命令:
VBoxManage modifyvm "MacOsSierra" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff
它给了我这个错误:
The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (4.13.0-26-generic
我得到了这段代码,其中我试图使内核模块打印系统的,正好在simple_init上。
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <sys/sysinfo.h>
/* This function is called when the module is loaded. */
int simple_init(void)
{
struct sysinfo info;
sysinfo(&info);
我注意到,每当我创建一个新的Dockerfile和:
RUN FROM ubuntu:latest,或者如果我运行以下命令:
docker run -it ubuntu bash,然后做:
uname -a,其结果总是如下所示:
Linux 5d0eab7d2f8e 4.9.36-moby #1 SMP Wed Jul 12 15:29:07 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
结果不应该是Ubuntu-16.04 for uname -r吗?为什么它说的是Moby而不是Ubuntu?
我已经尝试了很长一段时间来修改内核配置,但没有成功。:-(
在meta-xxx-yyy/中有一个BSP,它的配方是-kernel/linux/linux_git.bb。我尝试覆盖名为meta-xxx-mylayer的层中的内核配置,在该层中有菜谱- kernel /linux/linux_git.bbappend和菜谱-kernel/linux/files/Fra.cfg
frag.cfg:
# CONFIG_NETFILTER is not set
CONFIG_AUTOFS4_FS=y
linux_git.bbappend:
COMPATIBLE_MACHINE_my_mach =
我在做Ubuntu 12服务器的季度更新。在apt-get更新成功后,我会得到这个错误,运行apt-获取任何内容。
Depends: linux-image-server (= 3.2.0.72.86) but it is not going to be installed
我不明白为什么这个linux映像不会被安装。该软件包存在,可下载等。