ps ls pwd
ftp ftp server \telnet\telnet server
DHCP client
server login
addusr
NFS mount
mkdir
rootfs
cd roootfs
mkdir /dev etc etc/rc.d lig bin proc mnt
tmp var usr sbin
chmod 755
chmod 555 proc
mknod tty
c 5 0
mkdir console c 5 1
chmod 666 tty console
mknod ttyo c 4 0
chmod 666 tty0
mknod null c 1 3
...
bin 必要的用户命令
boot
dev
etc
home
lib
mnt
opt 附加的软件套件
proc
root
sbin
tmp
usr
var
foler3
/mnt>cat file1
hello................
/mnt>
mnt>rm file1
/mnt>vi file2
this is armsysboard
/mnt> is
file2
...............
/mnt>
umount /mnt
cd mnt
/mnt is
cd /home / uclinux-dist
make menuconfig
select customize kernek setting
customize cerdor/user setting
esc esc
loadable mudule support
space
enablet loadable module support
est
select memort technology decice
MTD support
...
第一步:
cd /home
apt get- install uClinuc-dist-20030522.tar.gz
第二步:tar zxvf uClinux-dist-20030522.tar.gz
第三步 cd uClinux-dist
make menuconfig
select custom vendor /user setting update default vendor setting
exit
yes
5 make dep
make lib_only
...
ls ls -a
pwd
ps ps -A
cd
mkdir
rmdir
rn -rf
ncftp -u zou 192.168.0.121
vim /etc/shadow
root:: 11829:0:99999:7:-1:-1:134539236
ifconfig eth0 192.168.2.32
gzip -d filename.gz
tar -xvf filename.tar
gzip -cd filena...
1 make clean 2 make dep 3 make zImage 4 make install
1) 到 ftp://ftp.arm.linux.org.uk 上下载Linux2.6.0 内核及其关于ARM 平台的补丁
(如:Patch-2.6.0-rmk1.gz)。
2) 给 Linux2.6.0 打补丁:zcat ../patch-2.6.0-rmk1.gz | patch –p1(前面../表
示补丁文件放在内核文件上一层目录)
3) 准备交叉编译环境。交叉编译环境工具链一般包括 binutils(含AS 汇编器,LD 链
接器等),arm-gcc,glibc 等。交叉编译环境的搭建也是个复杂的过程,后面我将
做进一步介绍。
4) 修改内核目录下的 makefi...