当前位置: 技术问答>linux和unix
Redhat9.0下安装最新版本edlk的问题
来源: 互联网 发布时间:2016-09-11
本文导语: 只是下载了最新版本的镜像,加载之后用readme的顺序安装 Create a new directory where the ELDK is to be installed, say: bash$ mkdir /opt/eldk Mount a CD or an ISO image with the distribution: bash$ mount /dev/cdrom /mnt/cdrom Run the...
只是下载了最新版本的镜像,加载之后用readme的顺序安装
Create a new directory where the ELDK is to be installed, say:
bash$ mkdir /opt/eldk
Mount a CD or an ISO image with the distribution:
bash$ mount /dev/cdrom /mnt/cdrom
Run the installation utility included on the distribution to install into that specified directory:
bash$ /mnt/cdrom/install -d /opt/eldk
到install -d时 没有进度条,只是一下子就跳过这条命令了
看到这个
If you want to download the whole ELDK directory tree instead you can - for example - use the ncftp FTP client:
bash$ ncftp ftp.sunet.se
...
ncftp / > cd /pub/Linux/distributions/eldk/4.2
ncftp /pub/Linux/distributions/eldk/4.2 > bin
ncftp /pub/Linux/distributions/eldk/4.2 > get -R arm-linux-x86/distribution
...
ncftp /pub/Linux/distributions/eldk/4.2 > bye
If you don't find the ncftp tool on your system you can download the NcFTP client from http://www.ncftp.com/download/
There are a few executable files (binaries and scripts) in the ELDK tree. Make sure they have the execute permissions set in your local copy:
bash$ for file in
> tools/bin/rpm
> tools/usr/lib/rpm/rpmd
> install
> ELDK_MAKEDEV
> ELDK_FIXOWNER
> do
> chmod +x arm-linux-x86/distribution/$file
> done
Now create an ISO image from the directory tree:
bash$ mkisofs
> -A "ELDK-4.2 -- Target: ARM -- Host: x86 Linux"
> -publisher "(C) `date "+%Y"` DENX Software Engineering, www.denx.de"
> -p "`id -nu`@`hostname` -- `date`"
> -V arm-linux-x86
> -l -J -R -o eldk-arm-linux-x86.iso arm-linux-x86/distribution
好像是除了镜像之外,还需要下载distribution然后重新构成一个镜像。。。有那么复杂吗?囧
有没有可以直接install -d 安装的镜像 另外distribution里的文件都要下载吗?
我是linux小白,各位多多帮忙啦。
Create a new directory where the ELDK is to be installed, say:
bash$ mkdir /opt/eldk
Mount a CD or an ISO image with the distribution:
bash$ mount /dev/cdrom /mnt/cdrom
Run the installation utility included on the distribution to install into that specified directory:
bash$ /mnt/cdrom/install -d /opt/eldk
到install -d时 没有进度条,只是一下子就跳过这条命令了
看到这个
If you want to download the whole ELDK directory tree instead you can - for example - use the ncftp FTP client:
bash$ ncftp ftp.sunet.se
...
ncftp / > cd /pub/Linux/distributions/eldk/4.2
ncftp /pub/Linux/distributions/eldk/4.2 > bin
ncftp /pub/Linux/distributions/eldk/4.2 > get -R arm-linux-x86/distribution
...
ncftp /pub/Linux/distributions/eldk/4.2 > bye
If you don't find the ncftp tool on your system you can download the NcFTP client from http://www.ncftp.com/download/
There are a few executable files (binaries and scripts) in the ELDK tree. Make sure they have the execute permissions set in your local copy:
bash$ for file in
> tools/bin/rpm
> tools/usr/lib/rpm/rpmd
> install
> ELDK_MAKEDEV
> ELDK_FIXOWNER
> do
> chmod +x arm-linux-x86/distribution/$file
> done
Now create an ISO image from the directory tree:
bash$ mkisofs
> -A "ELDK-4.2 -- Target: ARM -- Host: x86 Linux"
> -publisher "(C) `date "+%Y"` DENX Software Engineering, www.denx.de"
> -p "`id -nu`@`hostname` -- `date`"
> -V arm-linux-x86
> -l -J -R -o eldk-arm-linux-x86.iso arm-linux-x86/distribution
好像是除了镜像之外,还需要下载distribution然后重新构成一个镜像。。。有那么复杂吗?囧
有没有可以直接install -d 安装的镜像 另外distribution里的文件都要下载吗?
我是linux小白,各位多多帮忙啦。
|
jF~~study