LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 2028|回复: 22

我即将提供RHEL-5-Client BT下载[4.7 16:00准时放种]

[复制链接]
发表于 2007-4-7 16:35:43 | 显示全部楼层 |阅读模式
此次分两个种子发布:第一个种子为CD4-6  第二个种子为CD1-5(正在制作中)
Only Azureus can be used to download it
最好用Azureus下载(azureus.sourceforge.net下载azureus和www.java.com下载
java-runtime),如果在Linux环境下的话 ,要修改azureus这个文件,
######## CONFIGURATION OPTIONS ########
JAVA_PROGRAM_DIR="/opt/SDK/jdk/bin/"                            # use full path to java bin dir, ex. "/usr/java/j2sdk1.4.2/bin/"
#PROGRAM_DIR="/home/username/apps/azureus"      # use full path to Azureus bin dir
#######################################
如果在Linux下先保存iptables-save >  file.date , 然后iptables -F

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
发表于 2007-4-7 18:02:02 | 显示全部楼层
恩,如果又desktop版的就好了
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-4-7 19:53:34 | 显示全部楼层
这个就是版本就是Desktop+WorkStation+Virtualation
回复 支持 反对

使用道具 举报

发表于 2007-4-7 20:49:32 | 显示全部楼层
ddddddddddddddddddddd
回复 支持 反对

使用道具 举报

发表于 2007-4-7 22:06:44 | 显示全部楼层
如果我只要desktop版的话只要下载哪几张?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-4-7 22:14:37 | 显示全部楼层
最好全下,安装的时候,是根据install number来确定
到底你要,安装哪些东西。
回复 支持 反对

使用道具 举报

发表于 2007-4-7 23:21:25 | 显示全部楼层
汗啊…… 没有DVD版本的么
还是谢谢啊
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-4-8 00:04:11 | 显示全部楼层
#!/bin/bash
# by Chris Kloiber <ckloiber@redhat.com>
# A quick hack that will create a bootable DVD iso of a Red Hat Linux Distribution.
# Feed it either a directory containing the downloaded iso files of a distribution,
# or point it at a directory containing the "RedHat", "isolinux", and "images" directories.
# This version only works with "isolinux" based Red Hat Linux versions.
# Lots of disk space required to work, 3X the distribution size at least.
# GPL version 2 applies. No warranties, yadda, yadda. Have fun.
# If you want implant iso md5 into DVD, Be sure /usr/lib/anaconda-runtime/implantisomd5
# is installated correctlly. anaconda-runtime rpm in the following disc.
# RHEL AS     4 i386   disc4 anaconda-runtime-10.1.1.46-1.i386.rpm
# RHEL AS     4 x86_64 disc4 anaconda-runtime-10.1.1.46-1.x86_64.rpm
# RHEL Server 5 i386   disc5 anaconda-runtime-11.1.2.36-1.i386.rpm
# RHEL Server 5 x86_64 disc6 anaconda-runtime-11.1.2.36-1.x86_64.rpm
# Usage:
#       mkdvd /path/to/src /home/prometheus/rhel-as-4-i386-dvd.iso  RHEL-AS-4-DVD
#       mkdvd /path/to/iso /home/prometheus/rhel-as-4-i386-dvd.iso "RHEL AS 4 DVD"'
#
#       space in label is NOT recommanded.


if [ $# -lt 3 ]; then
    echo "Usage: `basename $0` source iso_file iso_label"
    echo ""
    echo "    'source' can be either a directory containing a single"
    echo "    set of isos, or an exploded tree like an ftp site."
    echo "    'iso_file' is the iso file to be created."
    echo "    'iso_label' is the DVD disk label."
    exit 1
fi
cleanup() {
    [ ${LOOP:=/tmp/loop} = "/" ] && echo "LOOP mount point = \/, dying!" && exit
    [ -d $LOOP ] && rm -rf $LOOP
    [ ${DVD:=~/mkrhdvd} = "/" ] && echo "DVD data location is \/, dying!" && exit
    [ -d $DVD ] && rm -rf $DVD
}
cleanup
mkdir -p $LOOP
mkdir -p $DVD
if [ !`ls $1/*.iso 2>&1>/dev/null ; echo $?` ]; then
    echo "Found ISO CD images..."
    CDS=`expr 0`
    DISKS="1"
    for f in `ls $1/*.iso`; do
        mount -o loop $f $LOOP
        cp -av $LOOP/* $DVD
        if [ -f $LOOP/.discinfo ]; then
            cp -av $LOOP/.discinfo $DVD
            CDS=`expr $CDS + 1`
            if [ $CDS != 1 ] ; then
                DISKS=`echo ${DISKS},${CDS}`
            fi
        fi
        umount $LOOP
    done
    if [ -e $DVD/.discinfo ]; then
        awk '{ if ( NR == 4 ) { print disks } else { print ; } }' disks="$DISKS" $DVD/.discinfo > $DVD/.discinfo.new
        mv $DVD/.discinfo.new $DVD/.discinfo
    fi
else
    echo "Found FTP-like tree..."
    cp -av $1/* $DVD
    [ -e $1/.discinfo ] && cp -av $1/.discinfo $DVD
fi
rm -rf $DVD/isolinux/boot.cat
find $DVD -name TRANS.TBL | xargs rm -f
cd $DVD
mkisofs -J -R -v -V $3 -T -o $2 -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table .
/usr/lib/anaconda-runtime/implantisomd5 --force $2
cleanup
echo ""
echo "rocess Complete!"
echo ""
回复 支持 反对

使用道具 举报

发表于 2007-4-8 03:31:26 | 显示全部楼层
请问Desktop有yum源吗?
回复 支持 反对

使用道具 举报

发表于 2007-4-8 09:45:16 | 显示全部楼层
不错!
支持!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表