http://docs.oracle.com/cd/E37670_01/E37355/html/ol_instcfg_ocfs2.html

    • cd /etc/yum.repos.d
    • # wget --no-check-certificate https://public-yum.oracle.com/public-yum-ol6.repo
  • Edit the repo file and enable the [ol6_UEK_latest] repos­i­tory only.
  • Import the Ora­cle GPG key, rpm --import http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
  • # yum install kernel-uek ocfs2-tools
  • Edit /boot/grub/menu.lst and set the default option to the UEK ker­nel (NB, count­ing starts from 0).
    http://public-yum.oracle.com/

Oracle Linux Unbreakable Enterprise Kernel (UEK)

Note

If you want to use the global heartbeat feature, you must install ocfs2-tools-1.8.0-11 or later

http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-2.6.39-400.245.1.el6uek.x86_64.rpm

http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/ocfs2-tools-1.8.0-10.el6.x86_64.rpm

http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/getPackage/kernel-uek-firmware-2.6.39-400.245.1.el6uek.noarch.rpm

http://www.luocs.com/archives/tag/ocfs2

http://d-prototype.com/archives/1000

ruiy_ocfs2的更多相关文章

随机推荐

  1. jquery 选择器之children与find

    children()和find() 两个用于向下遍历 DOM 树的 jQuery 方法 children() 方法返回被选元素的所有直接子元素. find() 方法返回被选元素的后代元素,一路向下直到 ...

  2. C#学习日志 day 6 ------ 常用正则表达式例举

    c#支持正则表达式匹配文本,这里讨论一下正则表达式的使用方法以及例举一些常用的正则表达式的匹配. 1.在vs中使用正则表达式 在vs中使用正则表达式,需要using System.Text.Regul ...

  3. 【Howie玩docker】-windows下玩docker

    Windows下安装toolbox一直没成功,于是投机取巧,用虚拟机手工打造玩docker的方法. 步骤: 安装虚拟机,安装centos 在win下建立共享文件夹,假如是 f:/share 在cent ...

  4. Android 初步

    Android 四大组件: 1.Activity -------构建应用程序界面 /*2.Intent--------程序之间传输数据*/ 2.BroadcastReciever--------用来接 ...

  5. HTML 5 新标签

    HTML 5 是一个新的网络标准,目标在于取代现有的 HTML 4.01, XHTML 1.0 and DOM Level 2  HTML 标准.它希望能够减少浏览器对于需要插件的丰富性网络应用服务( ...

  6. 异构数据源海量数据交换工具-Taobao DataX 下载和使用

    DataX介绍 DataX是一个在异构的数据库/文件系统之间高速交换数据的工具,实现了在任意的数据处理系统(RDBMS/Hdfs/Local filesystem)之间的数据交换. 目前成熟的数据导入 ...

  7. firemonkey打开子窗体

    procedure TForm1.Button1Click(Sender: TObject);varChildForm: TForm2;beginChildForm := TForm2.Create( ...

  8. 每天学点Linux:一

    软链接和硬链接: 软链接,又称符号链接,它的原理是通过一个文本文件记录真实文件在系统中的位置,然后在文件操作的时候通过该地址查找原文件然后对其操作.类似于Windows里面的快捷方式.软链接可以链接不 ...

  9. Mongodb 安装迁移

    <pre name="code" class="python">1.下载MongoDB(64位) http://fastdl.mongodb.org ...

  10. _.each的用法2

    有这样一个需求:一个对象数组: 内容如下: {[ {id:"ssss",position:"4"}, {id:"ssss",position ...