How to install SMP Kernel on RHEL 4

Hi all,
I am installing 2 Node RAC on VMWare on RHEL 4.
For which i need to have SMP Kernel installed.
As of now this is what i have.
uname -a
Linux abc.xyz.com 2.6.9-5.EL #1 Wed Jan 5 19:22:18 EST 2005 i686 i686 i386 GNU/Linux
Kindly guide me to the rpms wherein i cud upgrade to the SMP Kernal, or is there any other way i cud do it??

Hi, apologies for the delayed response.
Yes i did reboot the machine after installing the SMP pacakge, yet i see the same as
uname -r
2.6.9-5.EL
While /boot/grub/grub.conf shows
default=1
timeout=5
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux AS (2.6.9-5.ELsmp)
root (hd0,0)
kernel /boot/vmlinuz-2.6.9-5.ELsmp ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.9-5.ELsmp.img
title Red Hat Enterprise Linux AS (2.6.9-5.EL) ==> However it does not show here!!
root (hd0,0)
kernel /boot/vmlinuz-2.6.9-5.EL ro root=LABEL=/ rhgb quiet
clock=pit nosmp noapic nolapic
initrd /boot/initrd-2.6.9-5.EL.img
I just let this pass and started the RAC configurations.
Now here i hit another problem.
oracleasm packages installed are
[root@rac1] rpm -qa | grep -i oracleasm
oracleasmlib-2.0.2-1
oracleasm-support-2.1.2-1.el4
oracleasm-2.6.9-55.0.12.EL-2.0.3-1
Yet i get this error while configuring ASMLib Drivers
[root@rac1 RPMs]# /etc/init.d/oracleasm configure
Configuring the Oracle ASM library driver.
Default user to own the driver interface [oracle]:
Default group to own the driver interface [dba]:
Start Oracle ASM library driver on boot (y/n) [y]:
Scan for Oracle ASM disks on boot (y/n) [y]:
Writing Oracle ASM library driver configuration: done
*Initializing the Oracle ASMLib driver:                     [FAILED]*
Help appreciated.

Similar Messages

  • [SOLVED] How to install custom kernel from AUR?

    I am trying to install the custom kernel for the Acer Aspire One from AUR. What is the correct way to go about doing this? I pacman -U the .pkg.tar.gz I downloaded and it put a new kernel folder in /usr/src. Do I just copy the old .config file and make?
    Last edited by future stir-fry (2008-12-23 01:26:57)

    zaza224 wrote:
    After installing new kernel with pacman -U you  just need to add a new line to grub menu.lst pointing to it and reboot
    How would you go about doing this in syslinux instead of grub?
    Whoa there, get your shotguns, the zombies are coming!!
    Seriously, welcome to the Arch forums zaza224
    Please familiarize yourself with our forum guidelines, in particular the topic about waking the dead:
    https://wiki.archlinux.org/index.php/Fo … Bumping.22
    Closing.

  • How to install expect-5 on RHEL

    Hi,
    I have downloaded expect-5.44.1.15.tar.gz.
    And found the following steps from google,
    patch -Np1 -i ../expect-5.40.0-spawn.patch
    ./configure prefix=/tools with-tcl=/tools/lib --with-x=no
    make
    make SCRIPTS="" install
    From where I can download this patch?
    Thanks,
    Kavitha

    Installing yum on RHEL 4 is apparently not a trivial task and google finds only outdated success stories from people using RHEL 4.6. Perhaps this is a good reason to upgrade the system, which will also be a pre-requisite in case you plan to use Oracle 11g R2. From what I understand, the latest releases of RHEL 5 come with Yum or make it easy to install, but unless you have paid support, OEL seems the logical choice when running Oracle products. Or CentOS if you have any reason to avoid OEL, but I guess that's not the case, otherwise you would not post here.
    Back to expect, you have apparently already downloaded the most recent distribution:
    The Expect home page is http://expect.nist.gov
    The Expect FAQ is http://expect.nist.gov/FAQ.html
    After you extract the package:
    # tar -zxvf expect-5.44.1.15.tar.gz
    you will find a "README" and "INSTALL" file inside describing how to proceed. Packages like this are often created using (as root):
    # cd expect-5.44.1.15
    # ./configure
    # make
    # make install
    Edited by: Markus Waldorf on Jul 29, 2010 2:42 PM
    Btw, how about using http://en.wikipedia.org/wiki/CURL instead?

  • How to install a kernel?

    I want to install and use another kernel (i.e. 2.6.38.1). Is there any easy way to do that or maybe an example?

    Official supported kernels are: 'linux' and 'linux-lts' both of which are not the version in which you are interested.  I doubt you'll find one that old even in the AUR.  You can compile one yourself by ABS, but I recall some significant changes several months ago in glibc that may not work with an older PKGBUILD without much editing.  Look to the wiki for ABS and kernel compilation.  Arch Linux is not a newbie friendly distro; you will likely not get your hand held through this...

  • How jvm threads works on new Linux 2.6 scheduler with SMP kernell

    Hi,
    i'm using Sun JDK Java HotSpot(TM) Server VM (build 1.5.0_14-b03, mixed mode) to run tomcat,
    anyone knows How JVM threads works on new Linux 2.6 scheduler with SMP kernel?
    i ask this, because in a single processor machine the tomcat replies more fast than a dual processor machine, maybe the reason is, that SMP load balancing made for new scheduler, slow down the JVM performance for threads? there is a way to avoid this?
    reference about Linux Scheduler: http://www-128.ibm.com/developerworks/linux/library/l-scheduler/?ca=dgr-lnxw09LinuxScheduler
    bug that have "same" problem: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5038858
    thanks for any insight

    This is bug:
    6328462 Linux getCurrentThreadCpuTime() does not match with getThreadCpuTime(currentThread)
    It will be fixed in:
    - JDK 6.0 (Mustang) build b63
    - JDK 1.5.0_07 build b01
    The problem is that the HotSpot VM takes the stat info from the file'/proc/$tid/stat'
    which is incorrect on Linux kernels 2.6+ with NPTL because this file aggregates
    per-process (.vs. per-thread) usage on these kernels.
    The file '/proc/self/task/$tid/stat' still has the per-thread usage and must be used instead.
    There is also a performance bug:
    6200022: JVMTI GetCurrentThreadCpuTime slow on Linux
    This bug is about using new Linux posix compliant process clocks (2.6.10) :
    http://sources.redhat.com/ml/libc-alpha/2004-10/msg00117.html
    It is too late to fix this in Mustang but can be possible in one of the update releases.
    Thank you for posting the question!
    Serguei

  • How to install tools to build a standard kernel module?

    Hello!
    I am a long time Fedora user trying to switch over to Arch for the ease of customization.
    I am trying to build the hybrid_wl driver for my broadcom wireless card, and the requirements section says I need to have "the proper tools, packages, header files and libraries to build a standard kernel module. This is usually done by installing the kernel developer of kernel source package and caries from distro to distro."
    I have never messed around with the kernel in Arch (or Fedora, for that matter) so I really have no clue what a standard module even is. What do I need to install to get this driver working?
    Any help is welcome!
    Thanks,
    Jim

    that is in aur.
    http://aur.archlinux.org/packages.php?ID=19514
    read about what is aur here: http://wiki.archlinux.org/index.php/AUR_User_Guidelines

  • [HOW-TO] Ati Radeon & Kernel 2.6 - Updated

    [HOW-TO] Ati Radeon & Kernel 2.6
    Updated on new ati-drivers 4.3.0
    [CONTENTS]
        1.1 Requirements
        2.0 Compiling Kernel
        2.1 Configuring Bootloader [GRUB]
        3.0 Building & Generating modules
        3.1 Pacthing modules
        3.2 Compiling modules
        3.3 Adding modules boot runlevel
        4.0 fglrxconfig
        4.1 Xorg.conf   NEW!!
    [1.1] Requirements
        (All Intel & AMD users)
        1. Ati Radeon 9xxx (Mine 9600 Sapphyre pro)
        2. Kernel 2.8.x (Current 2.8.1)
        3. wget, rpmunpack, cpio
        4. PKGBUILD [FILE]
        5. ati-drivers.install [FILE]
        6. fglrx-2.6-vmalloc-vmaddr.patch   New!!!
    Those are code for listed files:
    PKGBUILD New!!!
    pkgname=ati-drivers
    pkgver=3.11.1
    pkgrel=1
    pkgdesc="Proprietary (binary) drivers for ATI Radeon Cards."
    url="www.ati.com/support/driver.html"
    depends=('xfree86')
    install="$pkgname.install"
    source=(http://www2.ati.com/drivers/linux/fglrx-4.3.0-$pkgver.i386.rpm)
    #md5sums=('9f7802ee0bbdeb5172673027056e789d')
    # build-time deps: rpmunpack, cpio, gzip
    build() {
    cd $startdir/pkg
    rpmunpack < $startdir/src/fglrx-4.3.0-$pkgver.i386.rpm | gzip -d | cpio -idmuv
    chmod 755 -R .
    mv opt/kde3 opt/kde
    mkdir -p opt/gnome/share
    mv usr/share/gnome/apps/ opt/gnome/share
    rm -rf usr/share/gnome
    usr/share/applnklib/modules/fglrx/{fglrx*.o,fglrx_info.txt}
    usr/X11R6/bin/LICENSE.{GPL,QPL}
    usr/X11R6/bin/*.bz2
    ati-drivers.install   New!!!
    post_install() {
    cat << EOF
    NOTE
    To create an fglrx module for your system, do:
    cd /lib/modules/fglrx/build_mod
    ./make.sh
    cd ..
    ./make_install.sh
    Make sure you have your full kernel tree at /usr/src/linux
    Then initialize "fglrxconfig" to create an XF86Config
    for your graphics card.
    EOF
    post_upgrade() {
    /bin/true
    pre_remove() {
    /bin/true
    op=$1
    shift
    $op $*
    fglrx-2.6-vmalloc-vmaddr.patch New!!!
    --- firegl_public.c 2004-03-17 17:00:29.000000000 -0500
    +++ /lib/modules/fglrx/build_mod/firegl_public.c 2004-07-18 16:09:46.000000000 -0500
    @@ -2010,8 +2010,8 @@
    pMmPage = virt_to_page(kaddr);
    #endif /* LINUX_VERSION_CODE < 0x020400 */
    - atomic_inc(&(pMmPage->count)); /* inc usage count of page */
    +// atomic_inc(&(pMmPage->_count)); /* inc usage count of page */
    + get_page(pMmPage);
    #if LINUX_VERSION_CODE >= 0x020400
    // __KE_DEBUG3("vm-address 0x%08lx => kernel-page-address 0x%pn",
    // address, page_address(pMmPage));
    [2.0] Compiling kernel
    <*> MTRR
    e poi
    <M> /dev/agpgart (AGP Support)                                                           
    < >   ALI chipset support                                                                 
    < >   ATI chipset support                                                                 
    < >   AMD Irongate, 761, and 762 chipset support                                           
    < >   AMD Opteron/Athlon64 on-CPU GART support                                             
    < >   Intel 440LX/BX/GX, I8xx and E7x05 chipset support                                   
    < >   Intel i865 chipset support                                                           
    < >   NVIDIA nForce/nForce2 chipset support                                               
    < >   SiS chipset support                                                                 
    < >   Serverworks LE/HE chipset support                                                   
    <M>   VIA chipset support                                                                 
    < >   Transmeta Efficeon support                                                           
    [*] Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)                       
    < >   3dfx Banshee/Voodoo3+                                                               
    < >   3dlabs GMX 2000                                                                     
    < >   ATI Rage 128                                                                         
    < >   ATI Radeon                                                                           
    < >   Matrox g200/g400                                                                     
    < >   SiS video cards                                                                     
    make dep && make clean bzImage modules modules_install
    [/code]
    when finished,mount boot partition (if not already mounted)
    [code]
    mount /boot
    [/code]
    and copy kernel image to the boot directory, so the new kernel loads after computer restart. Pay attention to not overwrite existent kernels images in boot partition. For security issues rename it as ***_new.
    [code]
    cp arch/i386/boot/bzImage /boot/vmlinuz_new
    [/code]
    [2.1] Configuring Bootloader [GRUB]
    Edit your boot-loader config file.
    I currently use grub instead of lilo.
    [code]
    nano /boot/grub/menu.lst
    [/code]
    Add a new sub-menu (this is an example) Check on the forum how to set-up a bootloader).
    [code]
    # (0) Arch Linux
    title  Arch Linux  [/boot/vmlinuz_new]
    root   (hd0,3)
    kernel (hd0,1)/vmlinuz_new root=/dev/discs/disc0/part4 ro
    [/code]
    REBOOT
    [3.0] Building ati-drivers
    Make a directory under /var/abs/local called ati
    [code]
    mkdir /var/abs/loca/ati
    [/code]
    copy in it the two files PKGBUILD ati-drivers.install
    [code]
    cp /path/to/file/PKGBUILD /var/abs/local/ati
    cp /path/to/file/ati-drivers.install /var/abs/local/ati
    [/code]
    start building package
    [code]
    makepkg -c
    [/code]
    if all goes well, this will be the output
    [code]
    [root@CippaLippa ati]# makepkg -c
    ==> Making package: ati-drivers
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==> .......
    ==> .......
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .PKGINFO file...
    ==> Copying install script...
    ==> Generating .FILELIST file...
    ==> Compressing package...
    ==> Cleaning up...
    ==> Finished making: ati-drivers  (Tue Feb 10 15:11:13 CET 2004)
    [root@CippaLippa ati]#
    [/code]
    It downloads necessary files and generates a file called ati-drivers-3.9.x.pkg.tar.gz
    Install it using:
    [code]
    pacman -A ati-drivers-3.x.x.pkg.tar.gz
    [/code]
    This installation generates a folder in /lib/modules/fglrx
    Change directory
    [code]
    cd /lib/modules/fglrx
    [/code]
    [3.1] Pacthing modules
    To patch modules simply copy the two files .patch listed on top in this directory. Intel users must only install fglrx-2.6-vmalloc-vmaddr.patch, AMD users both.
    [code]
    cp /path/to/patch/fglrx-2.6-vmalloc-vmaddr.patch /lib/modules/fglrx
    [/code]
    change directory
    [code]
    cd build_mod
    [/code]
    to patch the file firegl_public.c
    [code]
    patch -b firegl_public.c ../fglrx-2.6-vmalloc-vmaddr.patch
    [/code]
    It's time to compile the modules
    [code]
    sh make.sh
    [root@CippaLippa build_mod]# sh make.sh
    ATI module generator V 2.0
    ==========================
    initializing...
    probing for VMA API version...
    cleaning...
    patching...
    make[1]: Leaving directory `/usr/src/linux-2.6.x
    build succeeded with return value 0
    duplicating results into driver repository...
    done.
    ==============================
    You must change your working directory to /lib/modules/fglrx
    and then call ./make_install.sh in order to install the built module.
    ==============================
    [/code]
    change directory as you see on screen
    [code]
    cd /lib/modules/fglrx
    [/code]
    and compile in
    [code]
    sh make_install.sh
    [/code]
    if will be no errors in output, module fglrx were perfectly compiled in /lib/modules/2.6.x/kernel/drivers/char/drm/ and named "fglrx.ko"
    [3.2] Adding modules boot runlevel
    open /etc/rc.conf
    [code]
    nano /etc/rc.conf
    [/code]
    go to line MODULES= and add
    [code]
    agpgart via-agp fglrx rtc  <== make sure always in this order
    [/code]
    (if your motherboard is "VIA" equipped, else check what do you have: the same configured in kernel under /dev/agpgart (AGP Support)   
    [4.0] fglrxconfig
    Ati-drivers comes with a modified xf86config, utility to generate XF86config files.
    Run
    [code]
    fglrxconfig
    [/code]
    and a welcome screen appear
    [code]
    ==============================================================================
    ATI - FIRE GL - BE THE CREATOR
    ==============================================================================
    This program will create the ATI "XF86Config-4" file
    - based on your selections - for the below listed boardtypes...
             - ATI Radeon 8500 / 9100
             - ATI FireGL 8700 / 8800 / E1
             - ATI FireGL T2
             - ATI Radeon 9000
             - ATI Radeon 9200
             - ATI Radeon 9500
             - ATI Radeon 9600
             - ATI Radeon 9700
             - ATI Radeon 9800
             - ATI FireGL Z1 / X1 / X2
             - ATI Mobility M9
             - ATI Mobility FireGL 9000
             - ATI Mobility M9PLUS
    The "XF86Config-4" file usually resides in /etc/X11.
    Press [Enter] to continue, press 'q'&[Enter] or [Ctrl]+'c' to abort.
    [/code]
    follow the on-screen steps leaving default settings. Configure only mouse, keyboard, screen frequencies and resolution. At least when prompt for:
    [code]
    External AGPGART module:
    external agpgart module execute this on the commandline (as root):
        /sbin/insmod agpgart
    or alternatively configure your system to auto load the module.
    Do you want to use the external AGP GART module (y/n)? [y]
    [/code]
    be sure to answer "YES".
    [4.1] Xorg.cong New!!!
    Xorg configuration file, resides in /etc/X11.
    It is XF86config renamed and Will replace soon it, with the new video system based on Xorg.
    This is my xorg.conf file:
    [code]
    Section "dri"
        Mode 0666
    EndSection
    Section "Module"
        Load        "dbe"      # Double buffer extension
        SubSection  "extmod"
          Option    "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
        Load        "type1"
        Load        "freetype"
        Load        "glx"   # libglx.a
        Load        "dri"   # libdri.a
    EndSection
    Section "Files"
        RgbPath    "/usr/X11R6/lib/X11/rgb"
        FontPath   "/usr/X11R6/lib/X11/fonts/local/"
        FontPath   "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
        FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
        FontPath   "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath   "/usr/X11R6/lib/X11/fonts/Speedo/"
        FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/"
        FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/"
        ModulePath "/usr/X11R6/lib/modules"
    EndSection
    Section "InputDevice"
        Identifier    "Keyboard1"
        Driver    "Keyboard"
        Option "AutoRepeat" "500 30"
        Option "XkbRules"    "xfree86"
        Option "XkbModel"    "pc105"
        Option "XkbLayout"    "it"
    EndSection
    Section "InputDevice"
        Identifier    "Mouse1"
        Driver "mouse"
        Option "Protocol"   "ImPS/2"
        Option "ZAxisMapping"   "4 5"
        Option "Device"     "/dev/usbmouse"
    EndSection
    Section "Monitor"
        Identifier  "Monitor0"
        HorizSync   31-96
        VertRefresh 55-160
        Option "DPMS"
    EndSection
    Section "Device"
        Identifier  "Standard VGA"
        VendorName  "Unknown"
        BoardName   "Unknown"
    EndSection
    Section "Device"
        Identifier                          "ATI Graphics Adapter"
        Driver                              "fglrx"
        #Option                              "NoDDC"
        Option "no_accel"                   "no"
        Option "no_dri"                     "no"
        Option "DesktopSetup"               "0x00000000"
        Option "MonitorLayout"              "AUTO, AUTO"
        Option "IgnoreEDID"                 "off"
        Option "HSync2"                     "unspecified"
        Option "VRefresh2"                  "unspecified"
        Option "ScreenOverlap"              "0"
        Option "NoTV"                       "yes"     
        Option "TVStandard"                 "NTSC-M"     
        Option "TVHSizeAdj"                 "0"     
        Option "TVVSizeAdj"                 "0"     
        Option "TVHPosAdj"                  "0"     
        Option "TVVPosAdj"                  "0"     
        Option "TVHStartAdj"                "0"     
        Option "TVColorAdj"                 "0"     
        Option "GammaCorrectionI"           "0x00000000"
        Option "GammaCorrectionII"          "0x00000000"
        Option "Capabilities"               "0x00000000"
        Option "VideoOverlay"               "on"
        Option "OpenGLOverlay"              "off"
        Option "CenterMode"                 "off"
        Option "PseudoColorVisuals"         "off"
        Option "Stereo"                     "off"
        Option "StereoSyncEnable"           "1"
        Option "FSAAScale"                  "1"
        Option "FSAADisableGamma"           "no"
        Option "FSAACustomizeMSPos"         "no"
        Option "FSAAMSPosX0"                "0.000000"
        Option "FSAAMSPosY0"                "0.000000"
        Option "FSAAMSPosX1"                "0.000000"
        Option "FSAAMSPosY1"                "0.000000"
        Option "FSAAMSPosX2"                "0.000000"
        Option "FSAAMSPosY2"                "0.000000"
        Option "FSAAMSPosX3"                "0.000000"
        Option "FSAAMSPosY3"                "0.000000"
        Option "FSAAMSPosX4"                "0.000000"
        Option "FSAAMSPosY4"                "0.000000"
        Option "FSAAMSPosX5"                "0.000000"
        Option "FSAAMSPosY5"                "0.000000"
        Option "UseFastTLS"                 "0"
        Option "BlockSignalsOnLock"         "on"
        Option "UseInternalAGPGART"         "no"
        Option "ForceGenericCPU"            "no"
        BusID "PCI:1:0:0"    # vendor=1002, device=4150
        Screen 0
    EndSection
    Section "Screen"
        Identifier  "Screen0"
        Device      "ATI Graphics Adapter"
        Monitor     "Monitor0"
        DefaultDepth 24
        #Option "backingstore"
        Subsection "Display"
            Depth       24
            Modes       "1280x1024" "1024x768" "800x600"
            ViewPort    0 0  # initial origin if mode is smaller than desktop
        EndSubsection
    EndSection
    Section "ServerLayout"
        Identifier  "Server Layout"
        Screen "Screen0"
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    [/code]
    REBOOT
    Start in X with kde, gnome or othet window manager.
    If X does not start you maybe made something wrong, retry from the beginning. Else if it starts, check if DRI os working
    [code]
    fgl_glxgears
    [/code]
    if it is working, a rotating cube will appear in a new windows, and if it is so.....
    ENJOY
    **SORRY FOR MY ENGLISH **

    Using kernel 2.6.2
    I'm starting over again but now cannot get the PKGBUILD to complete.  I had this problem this morning as well, but after editing the PKGBUILD file did eventually get it to complete.  This is the output of makepkg -c using the PKGBUILD as posted:
    [root@Arch2 ati]# makepkg -c
    ==> Making package: ati-drivers  (Wed Feb 11 16:11:02 GMT 2004)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==>     Downloading fglrx-glc22-4.3.0-3.2.8.i586.rpm
    --16:11:02--  http://www2.ati.com/drivers/linux/fglrx … 8.i586.rpm
               => `fglrx-glc22-4.3.0-3.2.8.i586.rpm'
    Resolving www2.ati.com... 62.25.100.58, 62.25.100.32
    Connecting to www2.ati.com[62.25.100.58]:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 4,365,039 [audio/x-pn-realaudio-plugin]
    100%[====================================>] 4,365,039     55.23K/s    ETA 00:00
    16:12:27 (50.80 KB/s) - `fglrx-glc22-4.3.0-3.2.8.i586.rpm' saved [4365039/4365039]
    ==> Validating source files with MD5sums
        fglrx-glc22-4.3.0-3.2.8.i586.rpm ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ./lib/modules/fglrx/build_mod/2.6.x/Makefile
    ./lib/modules/fglrx/build_mod/agp.h
    ./lib/modules/fglrx/build_mod/agp3.c
    ./lib/modules/fglrx/build_mod/agp_backend.h
    ./lib/modules/fglrx/build_mod/agpgart.h
    ./lib/modules/fglrx/build_mod/agpgart_be.c
    ./lib/modules/fglrx/build_mod/firegl_public.c
    ./lib/modules/fglrx/build_mod/firegl_public.h
    ./lib/modules/fglrx/build_mod/i7505-agp.c
    ./lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC2
    ./lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC3
    ./lib/modules/fglrx/build_mod/make.sh
    ./lib/modules/fglrx/build_mod/nvidia-agp.c
    ./lib/modules/fglrx/fglrx.2.4.18-17.7.x.o
    ./lib/modules/fglrx/fglrx.2.4.18-17.8.0.o
    ./lib/modules/fglrx/fglrx.2.4.20-6-SMP.o
    ./lib/modules/fglrx/fglrx.2.4.20-6.o
    ./lib/modules/fglrx/fglrx.2.4.21-1.1931.2.349.2.2.ent-SMP.o
    ./lib/modules/fglrx/fglrx.2.4.21-1.1931.2.349.2.2.ent.o
    ./lib/modules/fglrx/fglrx.2.4.21-1.1931.2.349.2.2.entbigmem-SMP.o
    ./lib/modules/fglrx/fglrx_info.txt
    ./lib/modules/fglrx/make_install.sh
    ./opt/kde3/share/applnk/fireglcontrol_kde3.desktop
    ./usr/X11R6/bin/LICENSE.GPL
    ./usr/X11R6/bin/LICENSE.QPL
    ./usr/X11R6/bin/fgl_glxgears
    ./usr/X11R6/bin/fglrx_xgamma
    ./usr/X11R6/bin/fglrxconfig
    ./usr/X11R6/bin/fglrxinfo
    ./usr/X11R6/bin/fireglcontrol.qt2.gcc2.96.bz2
    ./usr/X11R6/bin/fireglcontrol.qt3.gcc3.2.bz2
    ./usr/X11R6/bin/fireglcontrol.qtstatic.gcc2.96.bz2
    ./usr/X11R6/include/X11/extensions/fglrx_gamma.h
    ./usr/X11R6/lib/libGL.so.1.2
    ./usr/X11R6/lib/libfglrx_gamma.a
    ./usr/X11R6/lib/libfglrx_gamma.so.1.0
    ./usr/X11R6/lib/modules/dri/fglrx_dri.so
    ./usr/X11R6/lib/modules/drivers/fglrx_drv.o
    ./usr/X11R6/lib/modules/linux/libfglrxdrm.a
    ./usr/include/GL/glxATI.h
    ./usr/share/applnk/fireglcontrol.kdelnk
    ./usr/share/gnome/apps/fireglcontrol.desktop
    ./usr/share/icons/ati.xpm
    ./usr/share/pixmaps/ati.xpm
    ./usr/src/ATI/fglrx_panel_sources.tgz
    ./usr/src/ATI/fglrx_sample_source.tgz
    21763 blocks
    /usr/bin/makepkg: line 23: usr/share/applnklib/modules/fglrx/fglrx*.o: No such file or directory
    usr/X11R6/bin/LICENSE.GPL: line 2: syntax error near unexpected token `('
    usr/X11R6/bin/LICENSE.GPL: line 2: ` The Qt GUI Toolkit is Copyright (C) 1994-2000 Trolltech AS.'
    /usr/bin/makepkg: line 25: usr/X11R6/bin/fireglcontrol.qt2.gcc2.96.bz2: cannot execute binary file
    ==> ERROR: Build Failed.  Aborting...
    [root@Arch2 ati]#
    I seem to be going backwards!

  • How to install Oracle in linux red hat.

    Hi,
    Follup this thread How to install ?
    i'm trying to install oralce in linux red hat 4.i extraced the db sucessfully
    Now iing'm try to copy this
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    kernel.shmmni = 4096
    # semaphores: semmsl, semmns, semopm, semmni
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default=262144
    net.core.rmem_max=262144
    net.core.wmem_default=262144
    net.core.wmem_max=262144
    from http://www.oracle-base.com/articles/10g/oracle-db-10gr2-installation-on-rhel-4.php . and paste into /etc/sysctl.conf here .. But copy and paste is not working.. How can i do that ?

    sb92075 wrote:
    phaeus wrote:
    Hello,
    i think you can work best if you connect your guest to the host network and working from the host directly (if you have no skill with linux). To do this "system-config-network" if avaible on the guest will help you to set ip address.
    Otherwise use a text editor like vi or something like that. Most folks these days can not even spell vi when spotted one of the two letters.
    All they know how to do is click on the GEDIT icon.What does this mean ?

  • OAS 4.0.8.1 & SMP kernel = wrksf up

    Here something I finally figured out, but maybe everyone already knows this.
    Running RedHat 6.0, I still couldn't get wrksf to stay up, even with a clean install of everything. But by switching to an SMP kernel, everything things happy.
    I saw only passing mention of this while searching the archives, so I thought I'd put it out there. Since SMP isn't installed by default on a basic desktop, maybe this info should be more prominent.
    rob
    null

    Hi parrott,
    I have also encountered the same problem as you. Could you teach me how to switch to SMP kernel? My email is [email protected] Thanks in advance.
    regards
    hengsq
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by parrott:
    Here something I finally figured out, but maybe everyone already knows this.
    Running RedHat 6.0, I still couldn't get wrksf to stay up, even with a clean install of everything. But by switching to an SMP kernel, everything things happy.
    I saw only passing mention of this while searching the archives, so I thought I'd put it out there. Since SMP isn't installed by default on a basic desktop, maybe this info should be more prominent.
    rob<HR></BLOCKQUOTE>
    null

  • Rt2500 driver PROBLEM - SMP kernel

    hello,
    EDIT
    do any of you have a PKGBUILD for a kernel without SMP - or a package? i'm having troubel with compilation.
    Hardware: Sitecom WL-115 pci sold in holland - http://www.sitecom.com/products_info.ph … 3&grp_id=6
    Driver: RT2500 - http://rt2x00.serialmonkey.com
    The issue is this:
    1.) the computer boots perfectly
    2.) network is activated with the ESSID
    3.) network deamon works
    4.) after 5 min. I lose connection to Access Point, connects to another Access Point (the wrong one)
    5.) Immediately crashes
    I have a wireless router at home of the same brand as the NIC. there are people with other AccessPoints somewhere around here because I detect 2 more. I can't connect to those obviously, and I dont want to anyway.
    In gentoo and ubuntu, if my card lost the connection to the Access Point, i would have to go to the network settings and change the ESSID back to the correct one. That was it, it didn't crash or anything else. The driver was compiled in gentoo through portage, and in Ubuntu I compiled it myself and installed it myself. It is the same driver as the one I'm using in Arch Linux.
    This is what I tried:
    1.) Change mode to Ad-Hoc
    2.) Forced to register to my AccessPoint with the 'ap' option in iwconfig
    3.) restarted daemons
    4.) dmesg says nothing
    None of this helps.
    UPDATE
    i learned what the problem is, except i still need help.
    I'm running Arch 0.7 . i haven't updated anything. i haven't done pacman -Su so everything on the system is still from the ISO image. however, i dont understand why the kernel that is installed with the iso intallation contains a SMP kernel! i dont have a SMP cpu.
    because of conflicts with my wireless driver, i need to disable SMP in my kernel. how do i do that? if I update my kernel will it still be SMP? do i need to compile the kernel on my own?
    i'm asking with without trying it because my computer is freezing since the NIC is connected.

    syg00 wrote:Have you tried just passing "nosmp" from the bootloader  ???.
    Let those that can't live with it turn it off, leave it in for everyone else.
    That does not work. It is the SMP build that freezes rt2500. I use a custom kernel (one vanilla, one vanilla+suspend2) with Preemption, no rt2500 trouble here.
    As for rt2x00, you can not expect it to finish for a long time, they started the third rewrite recently, and it probably won't be the last one due to the kernel wlan stack cofusion (ieee80211 vs. softmac vs. hostap vs. another one). The current rt2x00 rewrite is based on softmac, if that one doesn't go to the vanilla kernel, there will be another rewrite and it will take more time ...

  • I can't figure out how to install Bootcamp 5.

    I recently bought a Windows 8 disc, with the hopes of installing it onto my MacBook Pro early 2011 version 10.8.5. I've read up on all of the instructions, and know how to install windows itself, but I cannot for the life of me figure out how to install Bootcamp 5. The instructions on Apple's support website say I need to open up the Bootcamp 5 folder that I put onto a flashdrive (which I did) and open the setup.exe file while in windows.... "while in windows"... don't I have to have Bootcamp 5 installed before I can have windows installed and open? I tried installing Bootcamp 4 and installing my windows 8 64-bit onto there, but as I suspected, it won't actually install the windows 8 information, because bootcamp 4 doesn't support windows 8 64-bit. This is the first time I've tried doing anything like this before. I don't have windows 7, or bootcamp 4, or parallels, or anything like that. After giving it a lot of thought, I'm beginning to worry that Bootcamp 5 can only be installed if you already have windows 7 on bootcamp 4, and you're just trying to upgrade. I really hope that's not the case, because I've already spent over $200 on the windows 8 disk, and I can't return it. If somebody could please tell me how to install Bootcamp 5, if it's even possible without windows 7 already on bootcamp 4, I would really appreciate it...
    Thanks!

    So I never installed grub or syslinux. You may want to reread the beginner's guide and specifically the section on efistub: https://wiki.archlinux.org/index.php/Beginners'_Guide#EFISTUB
    Roughly summarized, condensed, and paraphrased it goes like this (and leaving out stuff you don't need):
    Look at the output of "lsblk." It will probably show a 200MB partition as /dev/sda1. This is probably your UEFISYS partition.
    Mount the UEFISYS partition at /mnt/boot/efi, chroot and copy the kernel and initramfs files as described below.
    Create /boot/efi/EFI/arch/ directory.
    Copy /boot/vmlinuz-linux to /boot/efi/EFI/arch/vmlinuz-arch.efi. The .efi file extension is very important as some UEFI firmwares refuse to launch a file without this extension. Important: Remember that the file is called vmlinuz, but not vmlinux.
    Copy /boot/initramfs-linux.img to /boot/efi/EFI/arch/initramfs-arch.img.
    Copy /boot/initramfs-linux-fallback.img to /boot/efi/EFI/arch/initramfs-arch-fallback.img.
    Every time the kernel and initramfs files are updated in /boot, they need to be updated in /boot/efi/EFI/arch. This can be automated either using systemd or using incron (for non-systemd setups).
    You will find more nuggets here: https://wiki.archlinux.org/index.php/UEFI for your future improvements.
    Create a refind_linux.conf file with the kernel parameters to be used by rEFInd:
    # nano /boot/efi/EFI/arch/refind_linux.conf
    "Boot to X" "root=/dev/sdaX ro rootfstype=ext4 systemd.unit=graphical.target"
    "Boot to console" "root=/dev/sdaX ro rootfstype=ext4 systemd.unit=multi-user.target"
    Note that instead you may want to use a line similar to
    "Boot to X" "root=PARTUUID=78b89af1-8445-4f8d-bfed-9f57b96ee0a7 ro rootfstype=ext4 systemd.unit=graphical.target"
    Those two things pretty much did it for me: copy the kernel files into /boot/efi/EFI/arch (after you mount the UEFISYS partition there!!!) and make the refind.conf file.

  • How to install archlinux2008.6 from the hard drive?

    How to install archlinux2008_6 by archlinux2008_6_i686.iso in  hard drive?
    i get the booting files(archlive.img,vmlinuz26) in the archlinux2008_6_i686.iso and put them in c:\
    in the grub command mode the use of these code:
    root   (hd0,0)
    kernel (hd0,0)/vmlinuz26
    initrd (hd0,0)/archlive.img
    boot
    i get those from : http://blog.chinaunix.net/u/31909/showart_1121360.html
    but  it stopped  , some  code  printing on the screen...................it can not continue..
    from the  google  i  find :"this method must use  the "vmlinz "and the "initrd.img",this files is from  archlinux2008.03.iso
    i don't understand .......
    i must download the archlinux2008.03.iso?...........it's too much  trouble.
    How to install archlinux2008.6 from the hard drive? or  who could give me the two files (the "vmlinz "and the "initrd.img")  from  archlinux2008.03.iso?
    e mail: [email protected]
    THS.
    --------this is my  topic for the first time in english, I hope that you can  know what i said ~~~
    Last edited by 自学linux (2008-08-29 03:14:54)

    自学linux wrote:
    http://blog.chinaunix.net/u/31909/showart_1121360.html
    A waste of CD-ROM...........,in china, many people install linux  just  by iso,don't burn the iso,
    could you give me the two files (the "vmlinz "and the "initrd.img") in  archlinux2008.03.iso, those  can't  find  in  archlinux2008.06.iso
    my email :[email protected]
    Do you have a USB stick you could copy the image to? Where I live, a CD costs $0.50 at most. To put that into perspective. A coffee costs a $1.00. Either a CD costs a lot more than a coffee where you live or are you telling me you'd rather get a lot of grey hair than buy half a coffee?
    Sorry I can't be of much help. I don't know how to do this method of installation. If you're desperate, you could try making an extra partition, and trying something with that. Take a look at these:
    http://wiki.archlinux.org/index.php/Fas … nux_System
    http://wiki.archlinux.org/index.php/Ins … her_distro
    Last edited by solarwind (2008-08-27 04:37:59)

  • How to install grid control agent

    Hi All,
    I have a two node rac cluster 11gr2 named rac1,rac2.And I have also installed OEM 11g on RHEL 5 on node3 i.e rac3.
    Now i want to install agents on all of the rac nodes.And i have a oracle 10g agent.
    Can anybody let me know how to install the agent and will there be any compatibility issues be there or not?

    you can start with
    How To Install Oracle 10g Grid Agent on RAC
    http://repettas.wordpress.com/2007/10/21/how-to-install-oracle-10g-grid-agent-on-rac/

  • How to install Oracle 9i on redhat 9

    i have installed 4-5 times oracle 9i on linux ...but the thing is ..as soon i restart my pc..the SQLPLUS doest not start from the redhat 9 terminal
    ...So plz tell me the step by step procedure how to install Oracle 9i on linux ...
    .... What & where is .bash_profile file is located ...???
    How to create system shareable memory ...??? without this SQLPLUS is not starting ...
    how to modify the kernel variables ..???
    ..

    What & where is .bash_profile file is located ...???The file exists under oracle home directory.
    # ls -l /home/oracle/.bash_profile
    -rw-r--r-- 1 oracle dba 328 11? 2 15:35 /home/oracle/.bash_profile
    How to create system shareable memory ? without this SQLPLUS is not starting.Append your shareable memory parameters to /etc/sysctl.conf, You might want to change these values if you have more RAM:
    kernel.shmmax = 536870912
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    REBOOT the system so the kernel changes can take effect, or if rebooting is not an option, you can change the kernel params at runtime by issuing:
    # echo 536870912 > /proc/sys/kernel/shmmax
    # echo 4096 > /proc/sys/kernel/shmmni
    # echo 2097152 > /proc/sys/kernel/shmall
    how to modify the kernel variables ..???method 1:
    To modify kernel parameters a common way is to change /proc file system:
    1. Log in as root user.
    2. Change to the /proc/sys/kernel directory.
    3. echo <desired list of values> > <group of parameters>
    But this update is not permanent and after system reboot, your kernel parameters's
    values will be the same as before.
    method 2:
    setuping permanently kernel parameter values ,is to use '/etc/sysctl.conf' file.
    Every time the system boots, the '/etc/rc.d/rc.sysinit' script is executed
    by init process. This shell script contains a call to sysctl command and
    reads the values from /etc/sysctl.conf file as the ones to be set Therefore, any values added to /etc/sysctl.conf will take effect after the system boot or without downtime using "sysctl -p" command

  • How to install Oracle 10g release 2 on rhel4 release 2

    I want to know How to install Oracle 10g release 2 on rhel4 release 2 from scratch from the partitioning of the disk in rhel 4 till the post installation .
    System Configuration
    x86 32 bit
    Pentium(R) 4 CPU 3 ghz
    RAM 1 GB 2.99Ghz
    Oracle 10g release 2
    rhel 4 release 2
    Please reply me soon.
    With Regards
    Suvin Prathab
    www.sceneworks.co.cc

    Dear Suvin Prathab!
    Please have a look at this:
    [http://www.oracle.com/technology/pub/articles/smiley_10gdb_install.html]
    Yours sincerely
    Florian W.

Maybe you are looking for

  • Garbage Collector pausing my Server for MINUTES at a time

    Garbage Collection pauses are really crippling my server. Here is a grep of Full GCs from the log file. (The lines following each Full GC have a timestamp, yymmdd:hhmmss.sss) [Full GC 876186K->169083K(222400K), 28.4152794 secs] 011120:004809.413: [Fu

  • Icon size slider not always working

    Since the installaton of Lion, the icon size slider on the bottom right of a folder containining photos doesn't have any effect on the size of the icons. It seems to work on and off, but I can't figure out what "settings" I am missing. Does anyone ha

  • Triggering a background job of class 'A' from within the ABAP program

    Dear All, We are implementing SAP ECC 6.0 on IBM System i, i5/OS V5R4,  SAP kernel 7.00, kernel patch level 173. Is there a way to control that when a background job is triggered from within an ABAP program using the : CALL FUNCTION 'JOB_OPEN' statem

  • Is it a OBIEE 10 bug?

    Guys, Please help me with the following situation. I have a pivot table where I am displaying the data as percentage of row. I am also displaying the chart pivoted results for the same report. But when I do so, the table is taking the correct percent

  • Add jTDS to Connection Profile Types

    I am using Juno SR2 with the latest updates applied. How do I add jTDS to the Database Development (perspective)? Details: Using the SQL explorer I am able to connect to and run a select statement against a SQL database and get the correct results. T