本文已过期!请查看更新版本:Kernel:编译、安装内核详解教程 清理 $ make distclean CLEAN scripts/basic CLEAN scripts/kconfig CLEAN include/config include/generated 复制配置文...
三、GRUB2:删除内核文件,删除多余引导菜单项
GRUB2中没有menu.lst,并且不允许直接编辑/boot/grub/grub.cfg。那么怎么删除多余的引导菜单项呢? 答案是必须先删除/boot下的相关内核文件,以及与之相关的模块文件 自动删除内核文件 System -> Administra...
二、GRUB2配置详解:默认启动项,超时时间,隐藏引导菜单,配置文件详解,图形化配置
配置文件详解: /etc/default/grub # 设定默认启动项,推荐使用数字 GRUB_DEFAULT=0 # 注释掉下面这行将会显示引导菜单 #GRUB_HIDDEN_TIMEOUT=0 # 黑屏,并且不显示GRUB_HIDDEN_TIMEOUT过程中的倒计时 ...
一、GRUB, GRUB2: 区别、比较
关于版本: GRUB2 使之版本号为1.98之后的grub;GRUB legacy(版本为0.97)是指GRUB,而非GRUB2 检测版本: $ grub-install -v grub-install (GNU GRUB 1.98-1ubuntu10) GRUB2与GRUB的区别: 1.GRUB...
Ubuntu 10.04: 配置NFS
本文主要介绍Ubuntu 10.04上NFS服务的安装、配置。 安装NFS相关的软件包 $ sudo apt-get install nfs-kernel-server 进行配置 与之相关的配置文件有: /etc/default/nfs-kernel-server NEED_SVCG...
What does it mean: apt-get with caret (^)
I was confused about this for quite a long while, but now I find the answer and I am going to let you know. 我也曾为此问题困扰很久,直到最近我才直到答案,现分享给大家: A past post of mine ment...
在Ubuntu上建立tftp服务器 ( Set up tftp server on Ubuntu )
tftp(Trival File Transfer Protocol)是一种轻量级的文件传输协议,TFTP报文封装在UDP包之中(默认端口:69),并不可靠,因此不能 ls ,也不能认证。 但是,在嵌入式开发中,它能够为目标机提供高速下载服务。...
Solved: J-Flash ARM: PC of target system has unexpected value after …
While erasing/programming the NOR Flash of min2440, I find J-Flash ARM resists responding: PC of target system has unexpected value after ... To solve this problem, go to Options -> Projection...
通过网络使用ADB ( Connect to android with ADB over TCP )
本文介绍如何通过网络(尤指无线网络)与Android的adbd进行连接。 原理: adb server: 计算机上的一个服务进程,进程名为adb adb daemon: Android 手机上的一个服务进程,进程名为adbd adb client: 你可以认...
被打开的端口谁(哪个进程)在监听? (Detect service of opened port)
Ubuntu netstat -lnput 结果如下: (Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.) Active Internet connections (...