征战LINUX第6天

一.绑定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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值