1 关于该手册 该手册主要描述如何快速系统环境搭建, 获取及编译 Linux BSP, 烧写系统镜像, 运行系统 IMX6UL Linux BSP 主要包含交叉编译工具 烧写镜像 u-boot 及 linux 源代码 rootfs 文件系统及镜像烧写工具 注意 : 该手册中提供的交叉编译器只能运行在

Size: px
Start display at page:

Download "1 关于该手册 该手册主要描述如何快速系统环境搭建, 获取及编译 Linux BSP, 烧写系统镜像, 运行系统 IMX6UL Linux BSP 主要包含交叉编译工具 烧写镜像 u-boot 及 linux 源代码 rootfs 文件系统及镜像烧写工具 注意 : 该手册中提供的交叉编译器只能运行在"

Transcription

1 IMX6 UL Linux 用户使用手册 目录 IMX6 UL Linux 用户使用手册 关于该手册 支持的硬件平台 介绍与快速启动 系统基础设置 系统所需要软件包安装 Tftp 和 nfs 配置 安装交叉编译器 获取 Linux BSP 编译 Linux BSP 编译 u-boot 编译 linux kernel 烧写系统镜像 通过 MFG 工具烧写镜像 在 linux 下通过命令烧写镜像 系统运行 SD 卡启动 emmc 启动 nand 启动 nfs 启动 设备接口测试 网络接口 音频接口 HDMI 显示接口 IO 按键接口 TF 卡接口 USB HOST 接口 USB OTG 接口 串口 I2C 接口 SPI 接口 CAN 接口 内部 RTC 普通 IO 口... 11

2 1 关于该手册 该手册主要描述如何快速系统环境搭建, 获取及编译 Linux BSP, 烧写系统镜像, 运行系统 IMX6UL Linux BSP 主要包含交叉编译工具 烧写镜像 u-boot 及 linux 源代码 rootfs 文件系统及镜像烧写工具 注意 : 该手册中提供的交叉编译器只能运行在 X86_64 系统上 1.1 支持的硬件平台 IMX 6UltrLite 评估核心板和评估底板 2 介绍与快速启动 IMX6 UL 评估板支持从 nand TF 卡 emmc 三种方式启动 ( 其中 NAND 和 EMMC 芯片只能同时焊接一种 ) SW4 对应的启动设备选择拨码开关如下 : D1 D2 启动方式 OFF ON USB OTG ON OFF 内部启动, 按 SW1 启动设备选择 SW1 对应的启动设备选择拨码开关如下 : D1 D2 D3 D4 启动设备 OFF OFF ON OFF TF 卡 OFF ON ON OFF EMMC ON ON OFF ON NAND IMX6 UL 评估板默认从 nand 启动 板子串口默认设置为波特率 : , 数据位宽 :8, 奇偶校验 : 无, 停止位 :1, 流控 : 无 a) 确认启动方式的拨码开关为对应启动方式

3 b) 将板子的调试串口 ( 接口 J7) 和电脑串口相连 c) 打开 windows 下的终端程序并按下图配置 d) 打开评估板电源 3 系统基础设置 3.1 系统所需要软件包安装 Ubuntu & Debin sudo apt-get install gawk wget git-core diffstat unzip chrpath socat libsdl1.2-dev xterm texinfo Fedora gcc-multilib build-essential sudo dnf install gawk make wget tar bzip2 gzip python unzip perl patch diffutils diffstat git cpp gcc gcc-c++ glibc-devel texinfo chrpath ccache perl-data-dumper perl-text- ParseWords perl-thread-queue socat findutils which SDL-devel xterm perl-math-bigint meld 3.2 Tftp 和 nfs 配置 tftp 主要用于板子下载系统镜像,nfs 主要用于 nfs 文件系统和软件调试 a) 创建 /tftpboot 目录 mkdir /tftpboot b) 拷贝 kernel, boot, rootfs 镜像到 /tftpboot 目录 cp image_release/image/* /tftpboot c) 编辑 /etc/exports 并添加如下内容 <nfs_root_path> * (rw,no_root_squash, async) d) 编辑 /etc/xinetd.d/tftp 并使能 tftp service tftp

4 { } disable= no socket_type= dgram protocol= udp wait= yes user= root server= /usr/sbin/in.tftpd server_args= /tftpboot e) 开启 tftp 和 nfs 服务 /etc/init.d/xinetd restart /etc/init.d/nfs restart 3.3 安装交叉编译器 该交叉编译器只能运行在 X86_64 系统上, 请确保系统为 64 系统 a) sudo./im6ul_release/tools/fsl-imx-x11-glibc-x86_64-fsl-image-guicortexa7hf-vfp-neon-toolchain sh b) 编辑 /opt/fsl-imx-x11/ /environment-setup-cortexa7hf-vfpneon-poky-linux-gnueabi 文件并注释第 3 行的内容 export CCACHE_PATH=/opt/fsl-imx-x11/ /sysroots/x86_64- pokysdk-linux/usr/bin:/opt/fsl-imx-x11/ /sysroots/x86_64- pokysdk-linux/usr/bin/../x86_64-pokysdk-linux/bin:/opt/fsl-imx- x11/ /sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux- gnueabi:/opt/fsl-imx-x11/ /sysroots/x86_64-pokysdk- linux/usr/bin/arm-poky-linux-uclibc:/opt/fsl-imx-x11/ /sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linuxmusl:$ccache_path c) source /opt/fsl-imx-x11/ /environment-setup-cortexa7hf-vfpneon-poky-linux-gnueabi 交叉编译工具及交叉编译所需要的库文件和头文件默认安装在 /opt/fslimx-x11/ / 目录 交叉编译工具默认包含的库列表在 : fsl-imx-x11-glibc-x86_64-fsl-image-gui-cortexa7hf-vfp-neon-toolchain host.manifest fsl-imx-x11-glibc-x86_64-fsl-image-gui-cortexa7hf-vfp-neon-toolchain target.manifest 两个文件中列出 4 获取 Linux BSP Linux BSP 主要包含 u-boot 和 kernel 源代码

5 a) 获取 Linux Kernel 源代码 b) 获取 U-boot 源代码 git clone -b imx_xc 5 编译 Linux BSP 该手册中的 u-boot 和 kernel 都是单独编译的 5.1 编译 u-boot a) Source /opt/fsl-imx-x11/ /environment-setup-cortexa7hf-vfp-neon-poky-linuxgnueabi b) cd <u-boot_source_path> c) make distclean d) make mx6ul_14x14_evk_defconfig e) make f) 生成的 u-boot 文件为当前目录下的 u-boot.imx 5.2 编译 linux kernel a) source /opt/fsl-imx-x11/ /environment-setup-cortexa7hf-vfp-neon-poky-linuxgnueabi b) cd <linux_source_path> c) make distclean d) make imx_v7_defconfig e) make f) make imx6ul-14x14-evk.dtb g) make imx6ul-14x14-evk-gpmi-weim.dtb h) make modules_install INSTALL_MOD_PATH=<rootfs_path> i) 最终生成的文件为 arch/arm/boot/zimage, arch/arm/boot/dts/imx6ul-14x14-evk.dtb, imx6ul-14x14-evk-gpmi-weim.dtb <rootfs_path>/lib/modules 目录下的 ko 类型文件 6 烧写系统镜像 系统镜像可以使用 MFG 工具烧写或在 linux 系统下通过命令行烧写 MFG 工具适合一 次烧写全部镜像文件, 多用于批量烧写 linux 下适合烧写单个文件, 多用于调试开发阶段 6.1 通过 MFG 工具烧写镜像解压 mfgtools-with-rootfs.tar.gz MFG 工具的烧写指令位于 Profiles/Linux/OS Firmware/ucl2.xml 文件中 如需要了解 MFG 工具烧写原理请查看此文件 UICfg.ini cfg.ini mfgtool2-yocto-mx-evk-sdcard-sd2.vbs mfgtool2-yocto-mx-evk-nand.vbs 烧写板子数量配置文件 如 :PortMgrDlg=1 代表烧写 1 块板子 Mfg 工具板子相关配置文件烧写 EMMC 执行文件烧写 Nand 执行文件

6 mfgtool2-yocto-mx-evk-sdcard-sd1.vbs Profiles/Linux/OS\ Firmware/ucl2.xml Profiles/Linux/OS\ Firmware/files/rootfs_nogpu.tar.bz2 烧写 TF 卡执行文件 Mfg 工具烧写指令配置文件 Roofs 镜像文件 Profiles/Linux/OS\ Firmware/files/zImage Kernel zimage Profiles/Linux/OS\ Firmware/files/zImage-imx6ul-14x14- evk.dtb zimage-imx6ul-14x14-evk-gpmi-weim.dtb Profiles/Linux/OS\Firmware/files/u-bootimx6ulevk_sd.imx u-boot-imx6ulevk_nand.imx Kernel dtb 文件 u-boot 镜像文件 MFG 工具烧写步骤 : a) 用 USB 连接线将电脑和板子的 USB OTG 借口连接 b) 用串口线将电脑和板子的调试串口连接 c) 参考串口设置章节打开并设置串口 d) 将板子的启动开关设置为 USB OTG 启动模式 e) 执行对应的 vbs 脚本文件, 如烧写 NAND 的执行文件为 mfgtool2-yocto-mx-evknand.vbs f) 烧写完成后烧写工具颜色为绿色, 显示烧写完成 如为红色表示烧写失败, 请查看工具目录下的 MfgTool.log 文件查找详细失败原因 g) 将板子启动开关设置为正常启动模式 6.2 在 linux 下通过命令烧写镜像外部 SD(TF) 卡可以通过在 Linux 系统下直接烧写镜像, 板子的内部 emmc 也可以参 考该章节在板子的 Linux 系统内烧写 emmc 镜像 系统分区及功能介绍 : 起始地址大小分区类型描述 1K( 前 1K 空间用作保存分 2M 原始 U-boot 和保留 区表 )

7 2M 200M Fat32 Zimage 和 dtb 文件 202M( 可变 ) 剩余空间 Ext2/ext3/ext4 Rootfs a) 格式化分区 sudo fdisk /dev/sdx p # 列出已有分区 d # 删除已有分区 x # x 代表要删除的分区号, 如 :1 重复执行 d 命令直到删除所有分区 n # 新建分区 p # 主分区 1 # 分区号 2M # 2M 起始地址 200M # 200M 空间大小 n # 新建 rootfs 分区 202M # 起始地址 1G # rootfs 空间大小 w # 保存更改 b) 烧写 u-boot sudo dd if=<u-boot image> of=/dev/sdx bs=512 seek=2 conv=fsync c) 拷贝内核镜像和 dtb 文件 格式化 boot 分区为 fat 格式 sudo mkfs.vfat /dev/sdx1 挂载 boot 分区 mkdir mountpoint sudo mount /dev/sdx1 mountpoint d) 拷贝对应的 zimage 和 dtb 文件到 boot 分区 cp zimage zimage-xx.dtb mountpoint/ sudo umount mountpoint e) 拷贝 roofs 文件系统 sudo mkfs.ext3 /dev/sdx2 mkdir mountpoint sudo mount /dev/sdx2 mountpoint sudo tar -jxvf rootfs_nogpu.tar.gz -C mountpoint sudo umount /dev/sdx2 7 系统运行 系统可以从外部 SD(TF) 卡启动, 也可以从内部 emmc 或者 nand 启动 该节主要介绍各 种启动方式的 u-boot 启动参数设置 7.1 SD 卡启动 U-Boot > setenv mmcdev 0 U-Boot > setenv mmcpart 1 U-Boot > setenv loadfdt 'fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}'

8 U-Boot > setenv loadkernel 'fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} zimage' U-Boot > setenv bootcmd 'mmc dev ${mmcdev}; run loadkernel; run mmcargs; run loadfdt; bootz ${loadaddr} - ${fdt_addr};' 7.2 emmc 启动 U-Boot > setenv mmcdev 1 U-Boot > setenv mmcpart 1 U-Boot > setenv loadfdt 'fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}' U-Boot > setenv loadkernel 'fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} zimage' U-Boot > setenv bootcmd 'mmc dev ${mmcdev}; run loadkernel; run mmcargs; run loadfdt; bootz ${loadaddr} - ${fdt_addr};' 7.3 nand 启动 U-Boot > setenv bootcmd 'run bootargsset; nand read ${loadaddr} 0x x800000; nand read ${fdt_addr} 0x x100000; bootz ${loadaddr} - ${fdt_addr}' 7.4 nfs 启动 setenv ethaddr xx:xx:xx:xx:xx:xx U-Boot > setenv serverip U-Boot > setenv ipaddr U-Boot > setenv zimage U-Boot > setenv fdt_file imx6ul-14x14-evk.dtb U-Boot > setenv netargs 'setenv bootargs console=${console},${baudrate} root=/dev/nfs ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp U-Boot > setenv bootcmd_net 'run rootfsinfo; tftp ${image}; tftp ${fdt_addr} ${fdt_file}; bootz ${loadaddr} - ${fdt_addr}' U-Boot > setenv bootcmd 'run bootcmd_net' 8 设备接口测试该节主要描述一些常用外部接口的简单测试方法及命令 8.1 网络接口 a) ifconfig eth0 查看网络配置信息 root@imx6ul7d:~# ifconfig eth0 eth0 Link encap:ethernet HWaddr 7A:7D:1A:84:0F:FF inet addr: Bcast: Mask: inet6 addr: fe80::787d:1aff:fe84:fff/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:22 errors:0 dropped:0 overruns:0 frame:0 TX packets:53 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:2770 (2.7 KiB) TX bytes:7124 (6.9 KiB)

9 b) ethtool eth0 查看网络接口信息 ethtool eth0 Settings for eth0: Supported ports: [ TP MII ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Supported pause frame use: Symmetric Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Advertised pause frame use: Symmetric Advertised auto-negotiation: Yes Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Receive-only Link partner advertised auto-negotiation: Yes Speed: 100Mb/s Duplex: Full Port: MII PHYAD: 1 Transceiver: external Auto-negotiation: on Supports Wake-on: g Wake-on: d Link detected: yes c) ping 监测网络是否正常 root@imx6ul7d:~# ping PING ( ): 56 data bytes 64 bytes from : seq=0 ttl=64 time=1.054 ms 64 bytes from : seq=1 ttl=64 time=0.639 ms ^C ping statistics packets transmitted, 2 packets received, 0% packet loss round-trip min/avg/max = 0.639/0.846/1.054 ms 8.2 音频接口 aplay test.wav 播放音频文件 arecord -Dplughw:0,1 -r f S16_LE -c 2 -d 5 record.wav 采集音频到 record.wav 文件 8.3 HDMI 显示接口将 hdmi 接口接到显示器, 然后给板卡上电能看到图像输出 注意 : 因为 imx6ul 内部并不带 hdmi 接口, 板卡的 hdmi 接口为 LCD 接口进过芯片转接, 所以板块 hdmi 接口并不支持热插拔 8.4 IO 按键接口

10 evtest /dev/input/by-path/platform-20cc000.snvs:snvs-powerkey-event 按 SW2 后能打印按键事件 mx6ul7d:~# evtest /dev/input/by-path/platform-20cc000.snvs\:snvs-powerkey-event Input driver version is Input device ID: bus 0x19 vendor 0x0 product 0x0 version 0x0 Input device name: "20cc000.snvs:snvs-powerkey" Supported events: Event type 0 (EV_SYN) Event type 1 (EV_KEY) Event code 116 (KEY_POWER) Properties: Testing... (interrupt to exit) Event: time , type 1 (EV_KEY), code 116 (KEY_POWER), value 1 Event: time , SYN_REPORT Event: time , type 1 (EV_KEY), code 116 (KEY_POWER), value TF 卡接口插入 TF 卡 mmc0: host does not support reading read-only switch, assuming write-enable mmc0: new high speed SDHC card at address 0002 mmcblk0: mmc0:0002 SDMMC 29.8 GiB 8.6 USB HOST 接口插入 usb 鼠标或者 u 盘等 root@imx6ul7d:~# usb 1-1: new low-speed USB device number 2 using ci_hdrc input: USB Optical Mouse as /devices/platform/soc/ aipsbus/ usb/ci_hdrc.1/usb1/1-1/1-1:1.0/0003:1bcf: /input/input2 hid-generic 0003:1BCF: : input: USB HID v1.10 Mouse [USB Optical Mouse] on usb-ci_hdrc.1-1/input0 8.7 USB OTG 接口暂无 8.8 串口暂无 8.9 I2C 接口暂无 8.10 SPI 接口暂无 8.11 CAN 接口暂无 8.12 内部 RTC root@imx6ul7d:~# date 查看系统时间 Fri Apr 1 01:13:54 UTC 2016 root@imx6ul7d:~# date -s " :30" Wed Jun 8 11:30:00 UTC 2016 设置系统时间

11 hwclock w 8.13 普通 IO 口 暂无 将系统时间保存到 rtc 中, 防止断电后丢失

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force Steven Shiau steven@nchc.gov.tw National Center for High-Performance Computing Sep 10, 2002 1 Outline 1. 2. 3. Service DHCP, TFTP, NFS, NIS 4. 5. 2 DRBL (diskless remote boot

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

More information

Abstract arm linux tool-chain root NET-Start! 2

Abstract arm linux tool-chain root NET-Start! 2 Lab III - Embedding Linux 1 Abstract arm linux tool-chain root NET-Start! 2 Part 1.4 Step1. tool-chain 4 Step2. PATH 4 Part 2 kernel 5 Step1. 5 Step2... 6 Step3...8 Part 3 root. 8 Step1. 8 Step2. 8 Part

More information

A9RBC8B.tmp

A9RBC8B.tmp CCIE A B 1B 255.255.255.0 255.255.255.224 002 A B 1 1A B 2A B ARP MAC 3A B 192.168.26.2 4A B ARP 003 Wireshark Windows Wireshark 1. http://www.wireshark.org/download.html B 2. Wireshark Capture Interfaces

More information

¶C¶L§§¬_™¨ A.PDF

¶C¶L§§¬_™¨ A.PDF 1 9 3 1 9 4 / 7.1 / 1 9 5 7.2 % netstat -rn Routing tables Destination Gateway Flags Refcnt Use Interface 127.0.0.1 127.0.0.1 UH 1 132 lo0 172.16.12.0 172.16.12.2 U 26 49041 le0 1 9 6 / % ping -s almond

More information

MarsBoard AM335X 用户手册 微雪电子 WAVESHARE ELECTRONICS MarsBoard AM335X 用户手册 产品概述 MarsBoard AM335X 是基于 TI AM335X 系列处理器的卡片式电脑 工业级别的芯片, 广泛的应用 在工业, 医疗, 消费类电子等行

MarsBoard AM335X 用户手册 微雪电子 WAVESHARE ELECTRONICS MarsBoard AM335X 用户手册 产品概述 MarsBoard AM335X 是基于 TI AM335X 系列处理器的卡片式电脑 工业级别的芯片, 广泛的应用 在工业, 医疗, 消费类电子等行 MarsBoard AM335X 用户手册 产品概述 MarsBoard AM335X 是基于 TI AM335X 系列处理器的卡片式电脑 工业级别的芯片, 广泛的应用 在工业, 医疗, 消费类电子等行业 1 目录 产品概述... 1 目录... 2 1. 板载资源... 3 2. 使用操作... 5 2.1. 系统固件的下载... 5 2.2. TF 卡系统的烧写... 5 2.3. TF 卡系统的启动...

More information

MarsBoard AM335X 用户手册 微雪电子 WAVESHARE ELECTRONICS MarsBoard AM335X 用户手册 产品概述 MarsBoard AM335X 是基于 TI AM335X 系列处理器的卡片式电脑 工业级别的芯片, 广泛的应用 在工业, 医疗, 消费类电子等行

MarsBoard AM335X 用户手册 微雪电子 WAVESHARE ELECTRONICS MarsBoard AM335X 用户手册 产品概述 MarsBoard AM335X 是基于 TI AM335X 系列处理器的卡片式电脑 工业级别的芯片, 广泛的应用 在工业, 医疗, 消费类电子等行 MarsBoard AM335X 用户手册 产品概述 MarsBoard AM335X 是基于 TI AM335X 系列处理器的卡片式电脑 工业级别的芯片, 广泛的应用 在工业, 医疗, 消费类电子等行业 1 目录 产品概述... 1 目录... 2 1. 板载资源... 3 2. 使用操作... 5 2.1. 系统固件的下载... 5 2.2. TF 卡系统的烧写... 5 2.3. TF 卡系统的启动...

More information

untitled

untitled 年度 路 IVI 劉 隆 年 597 598 IVI 錄... 601 行... 601... 601 1.... 601 2. 路... 602 3.... 603... 604 1.IPv4 to IPv6... 604 2.IPv6 to IPv4... 605 -... 606 ( )IVI Server... 606 ( )IVI Server... 610 ( )IVI DNS Server...

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

<4D6963726F736F667420576F7264202D20C7B6C8EBCABD6C696E7578BBF9B4A1CAB5D1E92E646F63>

<4D6963726F736F667420576F7264202D20C7B6C8EBCABD6C696E7578BBF9B4A1CAB5D1E92E646F63> 嵌 入 式 linux 基 础 实 验 1 内 核 配 置 及 编 译 1. 进 入 内 核 所 在 目 录 /opt/ruiva/xscale/linux-2.6.26 #cd /opt/ruiva/xscale/linux-2.6.26 2. 键 入 make menuconfig, 根 据 需 要 适 当 配 置 内 核 #make menuconfig 这 里 先 使 用 默 认 的 配 置,

More information

. Outline 编译 Linux 在 QEMU 模拟器上运行制作带 grub 启动的磁盘映像...1 编译 Linux 在 QEMU 模拟器上运行...2 制作带 grub 启动的磁盘映像

. Outline 编译 Linux 在 QEMU 模拟器上运行制作带 grub 启动的磁盘映像...1 编译 Linux 在 QEMU 模拟器上运行...2 制作带 grub 启动的磁盘映像 .... 计算机应用教研室 @ 计算机学院嵌入式系统实验室 @ 苏州研究院中国科学技术大学 Fall 2010 . Outline 编译 Linux 在 QEMU 模拟器上运行制作带 grub 启动的磁盘映像...1 编译 Linux 在 QEMU 模拟器上运行...2 制作带 grub 启动的磁盘映像 . 编译 Linux 在 QEMU 模拟器上运行 qemu+linux-2.6.26.1. 准备模拟器.2.

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

手册 doc

手册 doc 1. 2. 3. 3.1 3.2 3.3 SD 3.4 3.5 SD 3.6 3.7 4. 4.1 4.2 4.3 SD 4.4 5. 5.1 5.2 5.3 SD 6. 1. 1~3 ( ) 320x240~704x288 66 (2G SD 320x2401FPS ) 32M~2G SD SD SD SD 24V DC 3W( ) -10~70 10~90% 154x44x144mm 2. DVR106

More information

更新说明 : 终结者卡片电脑 (NanoPC-T1)Ubuntu 安装指南 日期 改动 支持无 EDID 功能的电视 首次发布 第 页

更新说明 : 终结者卡片电脑 (NanoPC-T1)Ubuntu 安装指南 日期 改动 支持无 EDID 功能的电视 首次发布 第 页 NanoPC-T1 Ubuntu 安装指南 V1.0 (2014-05-22) 第 - 1 - 页 更新说明 : 终结者卡片电脑 (NanoPC-T1)Ubuntu 安装指南 日期 改动 2014-05-22 支持无 EDID 功能的电视 2014-04-15 首次发布 第 - 2 - 页 目录 1. 准备工作...- 4-2. SD 卡运行 Ubuntu...- 5-3. emmc 运行 Ubuntu...-

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

自由軟體社群發展經驗與 Linux認證介紹

自由軟體社群發展經驗與  Linux認證介紹 -- (http://linux.vbird.org) 2011/08/12 1 -- -- 不 理 便 了 來 連 ( ) ( ) 論 ~ ~ 2 復 理 3 4 復 數 量 復 離 來 ~ @_@ 5 - 年 Linux windows virtualbox 不 理 Linux Xen 立 4 4GB 了 30 xen 來 sudo xm 來 Linux I/O 例 yum 6 - 年 Windows

More information

投影片 1

投影片 1 的安裝與編譯實習 ( 代號 : 303)(Part II) DOC Number : RM-033-04-303 DOC Version : V1.00 Release Date : 2007-03-16 Module Name : 的安裝與編譯實習 Platform : Creator XScale- Category : embedded Linux Difficulty : basic Experiment

More information

Microsoft Word - DM6467系统平台构建.doc

Microsoft Word - DM6467系统平台构建.doc 达芬奇 DM6467 评估板 系统软件平台 构建方法 Revision Table Date Rev. Author Content of revision Approval 1.0 2009-09-01 Andy,LIU Original 1 系统介绍...4 2 开发环境的建立...4 3 网络文件系统的建立...5 4 tftp 服务的建立...5 5 UBOOT 的使用...6 6 启动方式说明...8

More information

網路安全:理論與實務 第二版

網路安全:理論與實務 第二版 第 10 章 :Wireshark 封 包 分 析 軟 體 10-1 Wireshark 簡 介 10-2 Wireshark 的 安 裝 方 法 10-3 Wireshark 的 使 用 Wireshark 簡 介 - 發 展 歷 史 Wireshark (http://www.wireshark.org/) 是 一 個 開 放 原 始 碼 (open source software) 軟 體,

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 2 1 Windows 95/98 Windows 2000 3.5 Windows NT Server 4.0 2 Windows DOS 3.5 T200 2002 RAID RAID RAID 5.1 Windows 2000 Server T200 2002 Windows 2000 Server Windows 2000 Server Windows 2000 Server 3.5 for

More information

P4i45GL_GV-R50-CN.p65

P4i45GL_GV-R50-CN.p65 1 Main Advanced Security Power Boot Exit System Date System Time Floppy Drives IDE Devices BIOS Version Processor Type Processor Speed Cache Size Microcode Update Total Memory DDR1 DDR2 Dec 18 2003 Thu

More information

<4D F736F F D204D D454BD3B2BCFED7CAD4B4CAB9D3C3CAD6B2E12E646F63>

<4D F736F F D204D D454BD3B2BCFED7CAD4B4CAB9D3C3CAD6B2E12E646F63> 杭州迈冲科技 2009 年 1 月 -1- 目录 1 概述...3 2 测试程序使用说明...3 2.1 网络接口测试...3 2.2 UART 测试...4 2.3 CAN 测试...4 2.4 USB Host 测试...5 2.5 MMC/SD 测试...6 2.6 CF/IDE 测试...6 2.7 BUZZER 测试...7 2.8 LED 测试...7 2.9 AUDIO 测试...7

More information

Microsoft Word - S3c6410移植过程.doc

Microsoft Word - S3c6410移植过程.doc S3C6400/6410 移植 Android 内核 主要过程 : 安装 lunux 环境 安装编译工具 下载 Linux kernel 安装 Android SDK 获得 root file system 修改 Linux kernel 源码 配置 Linux kernel 修改 root file system 编译 Linux kernel 下载 kernel Image 1. 安装 linux

More information

R3105+ ADSL

R3105+ ADSL ... 1 1 1... 1 1 2... 1... 3 2 1... 3 2 2... 3 2 3... 5 2 4... 5 2 4 1... 5... 7 3 1... 7 3 2... 8 3 2 1... 8 3 2 2... 9 3 3... 12 3 3 1... 13 3 3 2 WAN... 16 3 3 3 LAN... 21 3 3 4 NAT... 22 3 3 5... 24

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

嵌入式系统原理及应用教程 ( 第 2 版 )/ 清华大学出版社 EL-ARM-860 V1.2 实验三 Linux 的移植 内核 文件系统的生成与下载一 实验目的 1. 了解 Linux 移植的基本过程, 掌握内核和文件系统的下载方法 二 实验内容 1. 学习 Linux 移植的基本过程 2. 学习

嵌入式系统原理及应用教程 ( 第 2 版 )/ 清华大学出版社 EL-ARM-860 V1.2 实验三 Linux 的移植 内核 文件系统的生成与下载一 实验目的 1. 了解 Linux 移植的基本过程, 掌握内核和文件系统的下载方法 二 实验内容 1. 学习 Linux 移植的基本过程 2. 学习 实验三 Linux 的移植 内核 文件系统的生成与下载一 实验目的 1. 了解 Linux 移植的基本过程, 掌握内核和文件系统的下载方法 二 实验内容 1. 学习 Linux 移植的基本过程 2. 学习内核和文件系统的生成与下载方法 三 实验设备 1. Pentium II 以上的 PC 机 EL-ARM860 实验箱 四 Linux 的移植说明 本实验系统运行的 Linux 版本是针对 linux-2.6.28

More information

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD University of California UNIX X/Open Company, Ltd.

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD University of California UNIX X/Open Company, Ltd. Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7758 10 2004 9 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun Sun

More information

lect03.ppt

lect03.ppt Linux 操 作 系 统 Linux 基 础 主 要 内 容 q 使 用 Linux q Linux 的 两 种 登 录 方 式 q 字 符 操 作 环 境 和 X Windows 系 统 q Linux 图 形 界 面 基 本 操 作 q Linux 命 令 的 使 用 方 式 q Linux 一 些 常 用 命 令 1 2 一 些 基 本 术 语 u 命 令 (Command) 给 计 算 机

More information

Ch03_嵌入式作業系統建置_01

Ch03_嵌入式作業系統建置_01 Chapter 3 CPU Motorola DragonBall ( Palm PDA) MIPS ( CPU) Hitachi SH (Sega DreamCast CPU) ARM StrongARM CPU CPU RISC (reduced instruction set computer ) CISC (complex instruction set computer ) DSP(digital

More information

嵌入式系统原理及应用教程 ( 第 2 版 )/ 清华大学出版社 EL-ARM-860 V1.2 一 实验目的 实验二 Boot Loader 引导程序 1. 了解 Boot Loader 的作用, 掌握 Boot Loader 的编程思想 二 实验设备 1. Pentium II 以上的 PC 机,

嵌入式系统原理及应用教程 ( 第 2 版 )/ 清华大学出版社 EL-ARM-860 V1.2 一 实验目的 实验二 Boot Loader 引导程序 1. 了解 Boot Loader 的作用, 掌握 Boot Loader 的编程思想 二 实验设备 1. Pentium II 以上的 PC 机, 一 实验目的 实验二 Boot Loader 引导程序 1. 了解 Boot Loader 的作用, 掌握 Boot Loader 的编程思想 二 实验设备 1. Pentium II 以上的 PC 机, LINUX 操作系统 三 实验内容 1. 学习 x-loader 作用和编译过程 2. 学习 uboot 作用和编译过程 3. 学习 Boot Loader 的操作 四 Bootloader 程序说明

More information

Microsoft Word - 在VMWare-5.5+RedHat-9下建立本机QTopia-2.1.1虚拟平台a.doc

Microsoft Word - 在VMWare-5.5+RedHat-9下建立本机QTopia-2.1.1虚拟平台a.doc 在 VMWare-5.5+RedHat-9 下建立 本机 QTopia-2.1.1 虚拟平台 张大海 2008-5-9 一 资源下载 1. 需要以下安装包 : tmake-1.13.tar.gz qtopia-free-source-2.1.1.tar.gz qt-embedded-2.3.10-free.tar.gz qt-x11-2.3.2.tar.gz qt-x11-free-3.3.4.tar.gz

More information

Cygwin Cygwin windows Linux Cygwin.dll Windows Linux API Linux Windows Linux 2

Cygwin Cygwin windows Linux Cygwin.dll Windows Linux API Linux Windows Linux 2 uclinux 1 Cygwin Cygwin windows Linux Cygwin.dll Windows Linux API Linux Windows Linux 2 Cygwin Cygwin GNU gccgdbxfree86bashtetexopengl perlpython Linux Windows Cygwin Linux GNU Windows 3 Cygwin Cygwin

More information

BeagleBone Black emmc 烧写全记录 ( 基于 AM335x SDK06) emmc 存储介质目前越来越广泛的应用在嵌入式系统中,AM335x 的用户也越来越多的使用 EMMC 作为系统的主要存储介质 目前 AM335x 的几款官方 demo 板中, 只有 BeagleBone B

BeagleBone Black emmc 烧写全记录 ( 基于 AM335x SDK06) emmc 存储介质目前越来越广泛的应用在嵌入式系统中,AM335x 的用户也越来越多的使用 EMMC 作为系统的主要存储介质 目前 AM335x 的几款官方 demo 板中, 只有 BeagleBone B BeagleBone Black emmc 烧写全记录 ( 基于 AM335x SDK06) emmc 存储介质目前越来越广泛的应用在嵌入式系统中,AM335x 的用户也越来越多的使用 EMMC 作为系统的主要存储介质 目前 AM335x 的几款官方 demo 板中, 只有 BeagleBone Black 上加入了对 emmc 芯片的支持, 很多用户也是参考 BeagleBone Black 进行自己

More information

K9板LINUX移植文档

K9板LINUX移植文档 K9 板 LINUX 移植文档 2007 03 28 整理 2007 03 03 修改 2007 04 13 修改 感谢飞儿 与风来生缘提出的问题和错误,2007 04 13 一 特别说明 本文是基于 AT91RM9200 的 K9 板的 LINUX 移植文档, 已经成功在 K9 板上运行 LINUX 程序 本文仅针对 K9 板上现有接口进行移植, 供 K9 板学习者作为初步入门参考 由于本人水平有限,

More information

untitled

untitled V3041A-J/V3042A-J IP-SAN/NAS Infinova Infinova Infinova Infinova www.infinova.com.cn Infinova Infinova Infinova 1 2 1 2 V3041A-16R-J V3041A-24R-J V3042A-16R-J V3042A-24R-J V3049-EXD-R16 V3049-EXD-R24 ...

More information

A9RF716.tmp

A9RF716.tmp 1 PART I 1 2 3 4 5 6 7 8 Docker Docker Image Container Repository Docker le Docker Docker 8 1 Docker Linux 2 Docker Docker 3 5 Docker 6 Docker volume 7 8 Docker le Docker le 1 C H A P T E R 1 CPU Data

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

ARP ICMP

ARP ICMP ARP ICMP 2 9-1 ARP 9-2 ARP 9-3 ARP 9-4 ICMP 9-5 ICMP 9-6 ICMP 9-7 ICMP 3 ARP ICMP TCP / IP, IP ARP ICMP 3 IP, ARP ICMP IP ARP ICMP 2, 4 9-1 ARP, MAC, IP IP, MAC ARP Address Resolution Protocol, OSI ARP,,

More information

P4VM800_BIOS_CN.p65

P4VM800_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Fri 02/25/2005] BIOS Version : P4VM800 BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information

untitled

untitled V3049A-EXD IP-SAN/NAS Infinova Infinova Infinova Infinova www.infinova.com.cn Infinova Infinova Infinova 1 2 1 2 V3049A-EXD-R16 V3049A-EXD-R24 ... 1 1.1... 1 1.2... 1 1.3... 1... 2 2.1... 2 2.2... 3...

More information

USB - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - DES Module FSM CONTROLLER 8 6 8 Key ROM 8 8 Data_in RAM Data_out RAM 8 USB Board - 8 - - 9 - - 10 - - 11 - - 12 - USB device INF Windows INF Device Function

More information

Microsoft Word - YL-9G45_LINUX_烧写测试使用手册.doc

Microsoft Word - YL-9G45_LINUX_烧写测试使用手册.doc YL-9G45 开 发 板 烧 写 测 试 手 册 Version :0.10 2010 3 23 1 修 改 序 号 修 改 后 版 本 修 改 日 期 修 改 说 明 修 改 人 1 V0.10 2010-3-23 Cs 2 3 4 5 6 7 8 9 (754970706@qq.com) 2 目 录 1 综 述...4 1.1 主 要 内 容...4 1.2 参 考 资 料...4 2 SAM-BA

More information

Microsoft PowerPoint - 03.IPv6_Linux.ppt [相容模式]

Microsoft PowerPoint - 03.IPv6_Linux.ppt [相容模式] IPv6 Linux (Cent OS 5.x) IPV6 2 IPv6 IPv6 IPv6 IPv6 IPv4 IPv6 (RFC 2460) Dual Stack Tunnel 3 4 IPv6 Native IP IPv6, DHCPv6 IPv6 IP IPv6 Tunnel Broker IPv4, Tunnel IPv6 Tunnel Broker Client IPv6 ( ) IPv6

More information

P4V88+_BIOS_CN.p65

P4V88+_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Wed 12/22/2004] BIOS Version : P4V88+ BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

AL-MX200 Series

AL-MX200 Series PostScript Level3 Compatible NPD4760-00 TC Seiko Epson Corporation Seiko Epson Corporation ( ) Seiko Epson Corporation Seiko Epson Corporation Epson Seiko Epson Corporation Apple Bonjour ColorSync Macintosh

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

Chapter #

Chapter # 第三章 TCP/IP 协议栈 本章目标 通过本章的学习, 您应该掌握以下内容 : 掌握 TCP/IP 分层模型 掌握 IP 协议原理 理解 OSI 和 TCP/IP 模型的区别和联系 TCP/IP 介绍 主机 主机 Internet TCP/IP 早期的协议族 全球范围 TCP/IP 协议栈 7 6 5 4 3 应用层表示层会话层传输层网络层 应用层 主机到主机层 Internet 层 2 1 数据链路层

More information

CHN_p000A_Cover.ai

CHN_p000A_Cover.ai NextoDI Co., Ltd. www.nextodi.com 列表........................................................................ 1 3 4 4 6 7 8 9 10 12 14 16 20 01 02 03 04 1 2 3 5 6 4 XCopy Ready B Menu Menu Off Off 05 06

More information

目錄 前言 1 软件资源介绍 2 部署开发环境 3 构建系统 3.1 U-Boot 3.2 Linux Kernel 3.3 构建文件系统 Yocto 构建 Linux 系统 Yocto 构建 SDK 工具 4 Linux 应用开发 4.1 LCD 测试 4.2 触摸测试 4

目錄 前言 1 软件资源介绍 2 部署开发环境 3 构建系统 3.1 U-Boot 3.2 Linux Kernel 3.3 构建文件系统 Yocto 构建 Linux 系统 Yocto 构建 SDK 工具 4 Linux 应用开发 4.1 LCD 测试 4.2 触摸测试 4 目錄 前言 1 软件资源介绍 2 部署开发环境 3 构建系统 3.1 U-Boot 3.2 Linux Kernel 3.3 构建文件系统 3.3.1 Yocto 构建 Linux 系统 3.3.2 Yocto 构建 SDK 工具 4 Linux 应用开发 4.1 LCD 测试 4.2 触摸测试 4.3 Ethernet 测试 4.4 GPIO-KEY 测试 4.5 GPIO-LED 测试 4.6

More information

Openmoko

Openmoko Text Openmoko Linux 2008 2008-10-22, 15:30 ~ 16:45 Jollen Chen Openmoko Inc. www.openmoko.com Openmoko Openmoko LGPL/GPL v2 Linux Openmoko 2 Android - An Open Handset Alliance Project

More information

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0 SDChain-Matrix 节点搭建指南 目录 1 环境要求... 3 2 软件下载... 4 3 安装部署... 4 3.1 部署可执行程序目录... 4 3.2 部署配置文件目录... 4 3.3 部署数据库文件目录... 4 3.4 部署日志文件目录... 4 3.5 部署依赖库文件目录... 4 4 配置参数... 5 5 启动运行... 7 5.1 普通模式启动... 7 5.2 加载启动模式...

More information

Linux Ubuntu Part Linux Ubuntu Linux UNIX...19 Linux...19 Linux Linux...21 Linux GNU FSF Open So urce.

Linux Ubuntu Part Linux Ubuntu Linux UNIX...19 Linux...19 Linux Linux...21 Linux GNU FSF Open So urce. Linux Ubuntu 10.04 Part 1 17 1 Linux Ubuntu... 18 1-1 Linux... 19 UNIX...19 Linux...19 Linux...20...20 Linux...21 Linux...21 1-2 GNU FSF Open So urce...22 GNU...22 GPL...23...24 1-3 GNU/Linux V.S. Linux...25

More information

CX_300 Manual.book

CX_300 Manual.book PC PC 45~80 80~320 260 LCD 1 ...1...3 /...3...3...4 /...4...5...5...6...6...7 SD...8...9 SD...9...10...12...16...18...19 DSC...20...23...23 Mini USB...23...24...25...25...26...27...28 2 / 1. 2. / LCD 3.

More information

版权声明

版权声明 SG3124 http://www.utt.com.cn 2000-2008 URL Internet Web EULA EULA UTT HiPER PN 0901-0003-001 DN PR-PMMU-1180.03-PPR-CN-1.0A ...1 1...2 1.1...2 1.2...2 1.3...3 1.4...3 2 1.4.1...3 1.4.2...4...5 2.1...5

More information

(UTM???U_935_938_955_958_959 V2.1.9.1)

(UTM???U_935_938_955_958_959 V2.1.9.1) 192.16 www.sharetech.com.tw UTM 多 功 能 防 火 牆 管 理 者 手 冊 V 2.1.9.1 目 錄 第 一 章 安 裝 與 訊 息... 7 1-1 建 議 的 安 裝 設 定 圖... 8 1-2 軟 體 安 裝 設 定... 9 1-3 首 頁 訊 息... 14 1-4 型 號 與 功 能 對 照 表... 17 第 二 章 系 統 設 定... 19 2-1

More information

AIX系统培训7.ppt

AIX系统培训7.ppt AIX Undefined Defined Available No Differenc bound vmstat when %user + %sys greater than 80% I/O bound vmstat when %iowait greater than 40% (AIX 4.3.3 or later) lication

More information

投影片 1

投影片 1 類 Linux 理 (, VBird) 2008/03/31 Linux 理 1 Linux 理 Linux (ILA) Linux 理 (ILB) Linux Linux (ILA) Linux 理 (ILB) Linux 路 (ILC) 2008/03/31 Linux 理 2 Linux 理 Linux 理 理 更 kernel boot loader LILO, grub 理 shell script

More information

CentOS

CentOS CentOS 安装和配置无线网卡指南 1. 下载无线无线网卡网卡驱动程序 ; 2. 安装无线网卡驱动程序 ; 3. 配置无线拨号配置文件 ; 4. 注意事项 1, 到 http://snapshots.madwifi-project.org/madwifi-hal-0.10.5.6 下载最新的 madwifi- hal-0.10.5.6 文件, 如 madwifi-hal-0.10.5.6-r4016-20090429.tar.gz;

More information

1

1 SDT Uclinux SDT.alf.c 44blib.alf 44blib.c jtag ADS.alf.c make menuconfig make dep make clean make lib_only make user_only make romfs make image make uclinux ext2 cash lcd frambuffer 1 armsys-c uclinux

More information

FPGA GJVZsIPb3 IPb3pg(lwE & by2eh;[d)y IP ROM

FPGA GJVZsIPb3 IPb3pg(lwE & by2eh;[d)y IP ROM FPGA IPb3pg(lwE & by2eh;[d)y IP ROM NVMe SSD FPGA!! NVMe-IP 32G bps Gen3 x 4Lane IP CPUNVMe PCIe SSD 4GB/sec, PCIe Gen3 2ch RAID CPU FAT32 SMART, Shutdown, FLUSH!! Linux Gen3 PCIe SSD 2ch RAID 2ch RAID

More information

untitled

untitled DOP www.deltaww.com DOP (RS232/RS485/ RS422) DOP USB SD 30 100 PLC Best Performance Huma Beautiful Display Beneficial Feature 1 DOP LED 65536 2D n Machine Interface s 2 DOP-B DOP-B 4.3 inches Wide B03S211

More information

P4Dual-915GL_BIOS_CN.p65

P4Dual-915GL_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date Total Memory DIMM 1 DIMM 2 [ 14:00:09] [Wed 01/05/2005] BIOS Version : P4Dual-915GL BIOS P1.00 Processor Type : Intel (R) Pentium

More information

775i65PE_BIOS_CN.p65

775i65PE_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 14:00:09] [Wed 10/20/2004] BIOS Version : 775i65PE BIOS P1.00 Processor Type : Intel (R) CPU 3.20 GHz Processor Speed : 3200

More information

文件1

文件1 iptables log rule policy ( ) 1. (Packet Filter) OSI IP (Router) router router access control list ACL (Transparency) 2. Proxy store-and-forward proxy filter " " 3. Application internet java script 4. Hardware

More information

ebook71-13

ebook71-13 13 I S P Internet 13. 2. 1 k p p p P P P 13. 2. 2 1 3. 2. 3 k p p p 1 3. 2. 4 l i n u x c o n f P P P 13. 2. 5 p p p s e t u p 13. 2. 6 p p p s e t u p P P P 13. 2. 7 1 3. 2. 8 C a l d e r a G U I 13.

More information

Pchome

Pchome H Linux Linux Red Hat Linux Fedora 1 DNS Mail WWW Domain tslg.idv.tw IP 192.168.1.254 tslg.idv.tw PChome Seednet ISP http://rs.twnic.net.tw/index2.html Seednet http://rs.seed.net.tw/ Pchome http://myname.pchome.com.tw/

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

T

T T10452 2015 5 Copyright ASUSTeK Computer Inc. All rights reserved. http://support.asus.com 0800-093-456 1 2 2 筆記型電腦使用手冊 使用手冊... 7 手冊... 8... 8... 8... 9 使用... 9...10...10 筆記型電腦...12...12...16...18...20...22

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

KL DSC DEMO 使用说明

KL DSC DEMO 使用说明 :0755-82556825 83239613 : (0755)83239613 : http://www.kingbirdnet.com EMAIL Good989@163.com 1 1 KB3000 DTU... 3 1.1... 3 1.2... 3 1.3... 3 1.4... 3 2... 4 2.1 GSM/GPRS... 4 2.2... 4 2.3... 5 2.4... 6 2.5...

More information

PROFIBUS3.doc

PROFIBUS3.doc PLC PLC ProfiBus 3. PROFIBUS-DP PROFIBUS-DP PROFIBUS-DP PROFIBUS S7 STEP7 SIMATIC NET S5 COM PROFIBUS COM5431 PROFIBUS-DP GSD GSD *.GSD *. GSE GSD S7 STEP7 PROFIBUS DP S7-400 CPU416-2DP S7-200 PROFIBUS

More information

(Microsoft Word - 00.RHCE_RHEL6_\260\362\302\246_\272\364\270\364\272\336\262z_\250\276\244\365\300\360\303\366\263\254_ doc)

(Microsoft Word - 00.RHCE_RHEL6_\260\362\302\246_\272\364\270\364\272\336\262z_\250\276\244\365\300\360\303\366\263\254_ doc) 網路設定 防火牆關閉 一 關閉防火牆 方法一 : 使用 setup 指令選取 Firewall configuration (setup 可設定網路 認證 防火牆 鍵盤 系統服務等, 可多加善用 ) Step 1. [root@station~] # setup Step 2. 於防火牆設定畫面中使用 [SPACE] 鍵將 Enabled 去除後移至 [OK] 後再按 [Quit] 離開即可關閉防火牆

More information

Application Note Format

Application Note Format USB 說 2 - AD PWM Office: 6F, No. 12, Innovation 1st. RD., Science-Based Industrial Park, Hsin-Chu City, Taiwan, R.O.C Tel: +886-3-6661766 ext.1672 Fax: +886-3-6661765 Etoms Electronics Corp. Publication

More information

V39用户手册0227.doc

V39用户手册0227.doc 300 2004 (FCC) FCC I/O B Cet appareil numérique de la classe B respecte toutes les exigences du Réglement sur le matériel brouilieur du Canada. Windows Windows 98 Windows 2000 Windows ME Windows XP Microsoft

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 T200 3020 Windows 2000 Advanced Server /Windows NT 4.0 Server /Redhat Linux7.3 SCO UnixWare7.1.1 Novell NetWare5.0 1. Windows 2000 Advanced Server / 2. Windows NT 4.0 Server / 3. Redhat Linux7.3 4. SCO

More information

Xilinx Alliance Program Certified GJVZsIPb3 IPb3pg(lwE & by2eh;[d)y IP ROM

Xilinx Alliance Program Certified GJVZsIPb3 IPb3pg(lwE & by2eh;[d)y IP ROM Xilinx Alliance Program Certified IPb3pg(lwE & by2eh;[d)y IP ROM NVMe SSD FPGA!! NVMe-IP 32G bps Gen3 x 4Lane IP CPUNVMe PCIe SSD 4GB/sec, PCIe Gen3 2ch RAID CPU FAT32 PLDAPCIe Soft IP!! Linux Gen3 PCIe

More information

Microsoft Word - InoTouch Editor编程软件手册2012.2.10.doc

Microsoft Word - InoTouch Editor编程软件手册2012.2.10.doc 目 录 第 一 章 关 于 InoTouch Editor 编 程 软 件 的 安 装... - 6-1.1 InoTouch 系 列 HMI 和 InoTouch Editor 软 件 的 简 介... - 6-1.2 安 装 InoTouch Editor 编 程 软 件... - 10-1.3 系 统 连 接 图... - 12-1.4 InoTouch 系 列 人 机 界 面 的 系 统 设

More information

Content

Content 君正 Date: Apr 2014 君正 Copyright Ingenic Semiconductor Co. Ltd 2014. All rights reserved. Release history Date Revision Change Apr. 2014 1.01 First release Disclaimer This documentation is provided for use

More information

MYE-SAM9G15/9G25

MYE-SAM9G15/9G25 MYD-Y7Z010/007S Board 版本 V1.0 米尔电子 sales.cn@myirtech.com www.myir-tech.com 版本记录版本号 说明 时间 V1.0 初始版本 2018/1/2 V1.1 V1.2 米尔电子 sales.cn@myirtech.com www.myir-tech.com 目录 目录... 1 第 1 章概述及软件资源介绍... 2 1.1 概述...

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

ebook62-1

ebook62-1 1 Red Hat Linux R e d Hat Linux L i n u x X Wi n d o w Red Hat L i n u x 1.1 Red Hat Linux Red Hat 16 M 120 M 3. 5 Intel 386 C D - R O M C D - R O M We b / 1.1.1 L i n u x L i n u 4 Primary Partition Extended

More information

Microsoft Word - uboot说明.doc

Microsoft Word - uboot说明.doc Amlogic U-boot 使用说明 2009.05.19 V0.02.r256 1. U-boot 概述 U-Boot, 全称 Universal Boot Loader, 是遵循 GPL 条款的开放源码项目 其源码目录 编译形式与 Linux 内核很相似 使用优点 : a) 开放源码 ; b) 支持多种嵌入式操作系统内核 ; c) 支持多个处理器系列 ; d) 较高的可靠性和稳定性 ; e)

More information

微雪电子 Open407V-D 实验手册 Open407V-D 实验手册 目录 准备工作... 2 ADC+DMA... 2 CAN1 TO CAN2-Normal... 3 DCMI_OV DCMI_OV I2C... 6 L

微雪电子   Open407V-D 实验手册 Open407V-D 实验手册 目录 准备工作... 2 ADC+DMA... 2 CAN1 TO CAN2-Normal... 3 DCMI_OV DCMI_OV I2C... 6 L Open407V-D 实验手册 目录 准备工作... 2 ADC+DMA... 2 CAN1 TO CAN2-Normal... 3 DCMI_OV7670... 4 DCMI_OV9655... 5 I2C... 6 LCD-HY32D_FSMC... 7 Nand Flash_PCB0... 8 Nand Flash_SCB0... 9 SD_FatFS... 11 SDIO... 12 SPI...

More information

05 01 X Window X Window Linux Linux X Window X Window Webmin Web Linux Linux X Window X Window Notebook PC X Window X Window module Linux Linux kernel

05 01 X Window X Window Linux Linux X Window X Window Webmin Web Linux Linux X Window X Window Notebook PC X Window X Window module Linux Linux kernel Linux sub bash test2.sh sub bash test.sh test2.sh sub bash var1 123 123 test.sh test2.sh var1 bash sub bash var1 bash 01 5-4 X Window X Window X Window Linux Server X Window CPU2006 Linux X Window benchmark

More information

0 配置 Host MIB 设备 V ( 简体版 ) 0 Update: 2016/1/30

0 配置 Host MIB 设备 V ( 简体版 ) 0 Update: 2016/1/30 0 配置 Host MIB 设备 V 1.1.2 ( 简体版 ) 0 Update: 2016/1/30 前言 N-Reporter 支持 Host Resource MIB 监控主机 (Host) 状态, 本文件描述 N-Reporter 用户如何配置 Host MIB 设备 文件章节如下 : 1. 配置 Windows Server 2003... 2 1-1.Windows Server 2003

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Linux 操 作 系 统 基 础 介 绍 课 程 目 标 及 要 求 了 解 Linux 操 作 系 统 的 登 入 方 式 掌 握 常 用 命 令 的 基 本 用 法 能 够 熟 练 在 各 个 目 录 转 换 Outline 1. Linux 操 作 系 统 简 介 2. Linux 操 作 系 统 的 登 录 3. Linux 操 作 系 统 的 目 录 结 构 4. 常 用 命 令 5.

More information

TL138-EVM开发板规格书

TL138-EVM开发板规格书 OMAPL138 开 发 板 Linux SD 系 统 启 动 卡 制 作 方 法 Revision History Revision Description Draft Remark No. Date V1.0 1. 初 始 版 本 2013/12/25 销 售 邮 箱 :sales@tronlong.com 公 司 总 机 :020-8998-6280 技 术 邮 箱 :support@tronlong.com

More information

华恒家庭网关方案

华恒家庭网关方案 LINUX V1.5 1 2 1 2 LINUX WINDOWS PC VC LINUX WINDOWS LINUX 90% GUI LINUX C 3 REDHAT 9 LINUX PC TFTP/NFS http://www.hhcn.com/chinese/embedlinux-res.html minicom NFS mount C HHARM9-EDU 1 LINUX HHARM9-EDU

More information

ebook20-8

ebook20-8 8 Catalyst 5000 7 V L A N C a t a l y s t V L A N V L A N 8.1 VLAN VTP V L A N A VLAN VLAN 10 VLAN 20 VLAN 10 VLAN 20 B VLAN VLAN 10 VLAN 20 VLAN 10 C VLAN VLAN 10 VLAN 20 VLAN 10 VLAN 20 8-1 VLAN 8 Catalyst

More information