一.绑定IP地址
编辑文件/etc/network/interfaces:
sudo vi /etc/network/interfaces
并用下面的行来替换有关eth0的行:
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.108
gateway 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
dns-nameservers *.*.*.*
将上面的ip地址等信息换成你自己就可以了.用下面的命令使网络设置生效:
sudo /etc/init.d/networking restart
二.解决解压缩不正确的BUG
当输入 tar -zxvf .....时,出现以下情况
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
只许要将-V去掉即可
三.使用rmmod会出现 rmmod : chdir(/lib/modules): No such file or directory ?
现在的内核模块在插入卸载时都会要转到 “/lib/modules/内核版本号/ ” 这个目录里。所以只要建立这个目录就行了。
在目标板执行
#mkdir -p /lib/modules/$(uname -r)
较新版本的busybox 1.13.1+ 要卸载模块必须要 “完全匹配模块名”才行,原来在老标本的使用模块文件名就能卸载,现在发现不行了。
# lsmod
mmc_block 9668 0 - Live 0xbf03a000
mmc_core 48000 1 mmc_block, Live 0xbf029000
这里面mmc_block和mmc_core为“完全匹配模块名”,
#rmmod mmc_block
#rmmod mmc_core
而不是mmc_block.ko mmc_core.ko 这样的模块文件名
问题:
"mkimage" command not found - U-Boot images will not be built
Image arch/arm/boot/uImage is ready
解决办法:
#apt-get install uboot-mkimage