how to convert OEL5 5 installation CDs into 1 DVD.

1.Simply extract all of the contents from cd1-cd5 to a given directory,next,export that directory by a nfs/http service to support a pvm installation.

2.As dyno commented,burn these several CDs to a dvd manually,here I just recommend following scripts for u as a cd2dvd tool(help to create a bootable DVD iso of a Oralce Enterprise Linux or Redhat Linux). you could simply copy/paste these free codes,then save as cd2dvd.sh,what's more,it is pretty easy to use,plz enjoy:)
==========code starts here===============
#!/bin/bash

# No warranties, Have fun.

if [ $# -lt 2 ]; then
echo "Usage: `basename $0` source /destination/DVD.iso"
echo ""
echo " The 'source' can be either a directory containing a single"
echo " set of isos, or an exploded tree like an ftp site."
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 -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 "Process Complete!"
echo ""
==========code ends here===============

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
回答: 错误信息PRVF-7543表示在节点"localhost"上,操作系统内核参数"semmni"的值不正确。\[1\]这个错误的原因是内核参数的值不符合要求。解决方法是修改内核参数的值以满足要求。\[1\]在RHEL/OEL 5上,默认已经配置了一些内核参数的默认值,包括kernel.shmall和kernel.shmmax。\[2\]然而,Oracle Database 11g release 2在RHEL/OEL 5上需要特定的内核参数设置。这些设置包括kernel.shmmax、kernel.shmall、kernel.shmmni、kernel.sem等。\[3\]其中,kernel.shmmax的最小值为4294967295,kernel.shmall的最小值为2097152,kernel.shmmni的最小值为4096,kernel.sem的值为250 32000 100 128。请根据这些要求修改内核参数的值以解决PRVF-7543错误。 #### 引用[.reference_title] - *1* [Linux 安装Oracle 11g](https://blog.csdn.net/weixin_33693070/article/details/92504639)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [Build Your Own Oracle RAC 11g Cluster on Oracle Linux and iSCSI](https://blog.csdn.net/launch_225/article/details/8763324)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值