博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle Application R12 (12.1.1) Download from edelivery.oracle.com
阅读量:6496 次
发布时间:2019-06-24

本文共 2401 字,大约阅读时间需要 8 分钟。

Oracle官方下载地址 ,基本上Oracle的所有软件都可以从上边得到

直接下载

2.接受协议

3.选择下载的产品和平台

4.选择“Oracle E-Business Suite Release 12.1.1 Media Pack for Linux x86-64-bit",然后一个一个下载

wget方式下载

http://edelivery.oracle.com/ 其实也可以通过Unix命令行来下载,

具体方法参见 或者

https://forums.oracle.com/forums/thread.jspa?threadID=925089

wget files from Oracle edelivery
When you want to install software from Oracle you have the great option you can download all you need from the edelivery website. The issue is that most of the files are quite large and in some cases we are talking about a large amount of very large files.
You can download all the files you need and after you downloaded it transfer it to your target server. However this means that your workstation is busy downloading files while you have your target server sitting idle. If you are in the lucky position that you can create a connection to the internet from your server you can download the files by making use of the wget command. The best option is to run the wget command in the background so you can end your connection and go ahead while your server is downloading the files. We assume that you have a linux server with only a commandline, if you are familiar with the download site from Oracle you know that you have to enter some credentials.
Your information is stored in a cookie on your workstation, so you have to move this cookie information to your server, in our case we have uploaded it to the file cookies.txt in the home of the root user. From the edelivery website we get the URL and we have to modify the URL a bit. In the URL we have some '&' signs which have to be changed to '\&'.
the wget command will become something like the example below:
wget --load-cookies /root/cookies.txt -O V14041-01_1of2.zip -bqc http://edelivery.oracle.com/EPD/Download/process_download/V14041-01_1of2.zip?file_id=25145149&aru=10526712&userid=131832&egroup_aru_number=10545708&email=john.do@oracle.com&country_id=528&patch_file=V14041-01_1of2.zip
--load-cookies /root/cookies.txt will state to load a cookie file from the stated location.
-O V14041-01_1of2.zip states the name the file will have to get when it is downloaded.
-bqc states that it will have to run in the background (b), no wget output (q) and it will resume a download if it gets broken (c).
This will make sure that the download will run in the background and you can work on other things while the download is running.

转载地址:http://obuyo.baihongyu.com/

你可能感兴趣的文章
Mysql 时间操作(当天,昨天,7天,30天,半年,全年,季度)
查看>>
Linux+Nginx+MySql+Php既LNMP源码安装
查看>>
BACKUP DATABASE 失败的处理方法
查看>>
NTP服务
查看>>
Shell 自动化安装Apache,并配置虚拟主机
查看>>
模板实现顺序表
查看>>
curl工具的使用
查看>>
《从零开始学Swift》学习笔记(Day 40)——析构函数
查看>>
最近在MyEclipse中导入jquery出现的错误,与解决办法
查看>>
js实现模态弹窗
查看>>
Debugging information cannot be found or does not match
查看>>
我的友情链接
查看>>
apache负载均衡apache2.4.18+tomcat7(windows版)
查看>>
我的友情链接
查看>>
跨平台开发时代的 (再次) 到来?
查看>>
Linux Kernel Panic报错解决思路
查看>>
mysql大数据量且多存储引擎场景下的完整+增量自动异地备份的可靠方案
查看>>
Java程序性能分析工具Java VisualVM(Visual GC)—程序员必备利器
查看>>
关于用户的操作:添加用户,删除用户,更改用户属性
查看>>
定制rpm包及搭建yum仓库
查看>>