
Linux移植
文章平均质量分 81
jonvee
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
u-boot-2011.06在基于s3c2440开发板的移植之引导内核与加载根文件系统
http://www.linuxidc.com/Linux/2012-09/70510p2.htm转载 2015-04-10 09:07:55 · 288 阅读 · 0 评论 -
tftp
1、在虚机上安装tftp服务,安装:先安装xinetd 服务:yum install xinetd安装tftp ,tftp-sever:yum install tftp tftp-server2、修改文件/etc/xinetd.d/tftpservice tftp{ socket_type =dgram原创 2015-04-08 20:57:39 · 292 阅读 · 0 评论 -
nfs
1、检查安装#rpm –q nfs-utils portmap 注意fedora9.0或者以后的版本好像都用rpcbind套件代替了portmap软件包。2、修改配置共享目录 vim /etc/exports /home/jonvee/nfsshare/rootfs *(rw,sync,no_root_squash)其中/home/jonvee/nfs原创 2015-04-08 21:14:12 · 290 阅读 · 0 评论 -
uboot nfs引导内核
[u-boot@MINI2440]# nfs 30008000 192.168.1.189:/home/jonvee/nfsshare/rootfs/uImagedm9000 i/o: 0x20000300, id: 0x90000a46 DM9000: running in 16 bit modeMAC: 08:08:11:18:12:27operating at 100M fu原创 2015-04-09 19:49:57 · 884 阅读 · 0 评论 -
linux内核启动过程分析转载
http://blog.chinaunix.net/uid-25909619-id-3380544.html转载 2015-05-19 14:49:35 · 275 阅读 · 0 评论 -
Fedora9 Samba 服务器的搭建
1 安装samba[root@localhost ~]# yum –y install samba ← 通过网络安装samba 2 添加samba用户(用户名称叫“samba”)[root@localhost ~]# adduser samba ← 添加用户samba(系统自动在/home下创建samba文件夹)[root@localhost ~]# s转载 2015-07-14 21:05:56 · 473 阅读 · 0 评论