Method to know current kernel is 32bit or 64bit

Hi Dear all,
"uname" can not tell me this working kernel is 32bit or 64bit .
Does anyone has idea to resolve my problem?

isainfo -n

Similar Messages

  • IS THERE ANY FUNCTION OR METHOD TO KNOW CURRENT OPERATIN SYS

    Hi,
    is there any function or method to know current operating system where peoplecode is runnig or any system variable
    thanks,
    Amit

    CTRL + J displays the operating system.
    In terms of the code that does this, as discussed in this article:
    http://www.peoplesoftwiki.com/limit-control-j-information
    You can look at the PT_INFOPAGECONNECT HTML definition which uses the system variable %BrowserPlatform to show this information.
    According to PeopleBooks, this system variable resolves to:
    At runtime %BrowserPlatform is replaced with the operating system name as specified by the browser loading the current page.

  • How to know oracle dump is 32bit or 64bit

    Hi All,
    I Want know Oracle Database Dump is 32bit or 64bit. how can i find can you help me on this

    Hi,
    I Want know Oracle Database Dump is 32bit or 64bit. how can i find can you help me on thiswhy don't you try by command "file <file_name>" in unix flavors environments.
    If you trying to check the dump file which got generated from the database is whether 32 bit or 64 bit, then you it would be difficult to find out. Try to check the log of dump or database environment from where it got generated.
    - Pavan Kumar N

  • 64bit kernel with 32bit userspace + pacman integration

    There have been quite some questions about this topic. Sometimes leading even leading to frustration.
    Luckily, a nice writeup was made here with a nice addition to integrate this nicely here.
    Since there is no 32bit PAE kernel distributed by ArchLinux, using a 64bit kernel to enable NX is the only option. But since it only has 1G of memory, I do not wish to install a 64bit userspace + 32bit multilib.
    However, the *exact* steps have been quite a guess (and there is no wiki). That is why I'm writing this down.
    Let's start with the main configuration: pacman.conf
    We need to comment out the Architecture stanza. It's funky. Why? Because it actually has two unrelated purposes:
    As a documented feature, it provides protection against installing incorrect packages from another architecture
    The undocumented feature is the fact that it's literal value is used to replace '$arch' variables in repo URL's
    #Architecture = auto
    Syncing your local repo's just broke as '$arch' is no longer defined (try it now). I ditched /etc/pacman.d/mirrorlist and did this with my remote repo URL's:
    # custom repo for 64bit kernel
    [x86_64-kernel]
    Server = file:///home/$user/x86_64-kernel/
    [core]
    Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/core/os/i686
    [extra]
    Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/extra/os/i686
    [community]
    Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/community/os/i686
    Notice the new custom repo at the top of the file. Adapt your pacman.conf to contain this custom repo as well. Make sure you place it before the [core] repo or whatever other repo is providing your current kernel. The order matters.
    Furthermore, I rewrote the configuration file to not depend on variable substitution. One could argue that substituting $repo was unnecessary, but that does not really matter.
    Second, we setup the repository as a normal user. This can be done by a regular user in a safe way since the packages are all signed. So tampering with packages will not work. You could even dedicate a cron script with a dedicated user to this purpose (which is overkill).
    mkdir /home/$user/x86_64-kernel/
    Third, we use a small script to handle this custom repo. We place it at /home/$user/x86_64-kernel.sh . Subsitute the variable R_REPO with your favorite ArchLinux mirror. Make sure this URL points to a 64bit core repository.
    #!/bin/bash
    set -e
    set -o pipefail
    L_REPO=/home/$user/x86_64-kernel/
    R_REPO=http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/core/os/x86_64/
    cd "$L_REPO"
    wget -nv "$R_REPO"/core.db -O core.db
    DESC=$(tar -tf core.db | grep '^linux-[0-9.-]*/desc$' | tail -n1)
    KERNELPKG=$(tar -xf core.db "$DESC" -O | grep -A1 '^%FILENAME%$' | tail -n1)
    if ! [[ -f "$KERNELPKG" ]]; then
    wget -nv "$R_REPO"/"$KERNELPKG"
    wget -nv "$R_REPO"/"$KERNELPKG".sig
    repo-add -q x86_64-kernel.db.tar.gz "$KERNELPKG"
    fi
    Now we are in fact done with the configuration. Substiture $user for your current user in all the sections and do the following:
    # create repo, this script also updates it when newer 64bit kernels arrive
    user $ bash /home/$user/x86_64-kernel.sh
    # update pacman's database
    root # pacman -Syy
    # install 64bit kernel
    root # pacman -S linux
    Pacman will be able to update this kernel as long as you run x86_64-kernel.sh every once in a while. I put it in XFCE session startup to run at each session login. You could do this with cron as well.
    I tested what hapenned if something went wrong with this repo. Pacman handles this very nicely actually. If you delete the repository, it will complain but not immediatly install the 32bit kernel given you have a 64bit already installed with this repo.
    A final note: If you build a lot of packages you could run into trouble. Someone in the forums made a good suggestion about that here -> ("init=linux32 /usr/lib/systemd/..."). This is a nice system-wide way to trick your buildsystem into believing it's a 32bit machine. This is sometimes required. I don't use as I don't have a problem with it. But keep this in mind.
    EDIT: Fixed update script to overwrite core.db and not create new ones like core.db.n .
    Last edited by Rexilion (2014-02-01 15:41:29)

    That is nice. Pity I did not know about this earlier. However, my method allows me to stick with the official packages. Thanks though!

  • Practical approach to using 64bit kernel and 32bit userspace?

    I want to run a 64bit kernel on 32bit userspace. I know there are some out there who claim it's only bad and slowing down the transition to full blown 64bit systems. That may be, but for me and for this particular computer, I need to do this.
    I have tried it on my work laptop and there are no problems whatsoever: On my plain vanilla 32bit install I downloaded and installed the current 64bit kernel (after carefully backing up the current one). No problems anywhere, so far.
    However, for this other machine, I need to have a sane solution for the long run. What about kernel updates? When a new kernel is released, pacman is going to want to install the 32bit one instead of the 64bit version I want to use. I don't suppose there is a way to "tag" the kernel package to be x86_64 instead of i686, or something to that effect?
    I'd be happy to hear your thoughts on this.

    hw-tph wrote:
    flamelab wrote:put kernel26 in HoldPkg and each time it wants to be updated, install the 64bit one.
    According to pacman.conf(5), HoldPkg only seems to have any effect when attempting to remove a package:
    pacman.conf(5) wrote:HoldPkg = package ...
               If a user tries to --remove a package that's listed in HoldPkg, pacman will ask for confirmation before proceeding.
    I'll go with the local repository route.
    Well, I have pacman on HoldPkg, and I thought that HoldPkg makes the package manager to ask for a package to be installed before the others. It seems that I'm wrong

  • Safely installing 64bit kernel with 32bit userland

    I'm happily running a 64bit kernel with 32bit userland, but I was wondering whether there is any way to let pacman allow me to install the 64bit kernel (manually downloaded) without me needing to edit pacman.conf. I sometimes forget to set the arch to i686 again causing me to install 64bit packages.
    If there is no such option, I'll script something for myself, but I wanted to be sure I didn't miss something (maybe an undocumented option?).

    I have the Architecture line commented out of my pacman.conf, but that is because I am too lazy to upgrade the kernel using --arch.  That and I use "i686" in my mirror url and am fairly sure I will never change it to x86_64 by accident...
    Anyway, these are the changes I made to /etc/inittab.  Just added linux32 in lots of places.
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:linux32 /sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:linux32 /sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:linux32 /sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:linux32 /sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:linux32 /sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:linux32 /sbin/agetty -8 38400 tty6 linux
    # Hypervisor Virtual Console for Xen and KVM
    #h0:2345:respawn:/sbin/agetty -8 38400 hvc0 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:linux32 /usr/bin/slim >& /dev/null
    x:5:respawn:linux32 /usr/sbin/lxdm >& /dev/null
    Do that, and you will never know that you are running an x86_64 kernel and can keep Architecture=auto if you wish.

  • How do we know current posting period?

    How do we know current posting period?

    hi,
    try these FM ->
    <b>CKML_F_POSTING_PERIODS_GET
    HR_HCP_GET_POSTING_PERIODS</b>
    rgds
    anver
    pls mark hlpful answers

  • How do we know currently active call time in 6680?

    How do we know currently active call time? Whenever we receive or make a call, how can we know the call duration in Nokia 6680?

    Hello!
    Just take a look on page 27 of Manual.
    Recent calls: Connect -> Log -> Recent calls.
    Steps to activate call duration as follows: Connect -> Log -> Options -> Settings -> Show call duration. Select Yes.
    Andrey
    6150, 8310, 2100, 6310, 6310i, 6230, 6600, 6630, 6700, E60, N80, E61, N93
    N95, E61i, E71, E72,8600, 5800, N8

  • How could I know my kernel is 32 or 64 bit. I know there is a parameter

    Hello
    How could I know my kernel is 32 or 64 bit. I know there is a parameter. But which
    Thank you in advance

    Do you mean that you want to find out programmatically?  If not, it should be as easy as checking the properties under "My Computer".
    Regards,
    RIch Heilman

  • I want to buy windows 7 to download on my iMac but don't know if I need a 32bit or 64bit for parallels

    How do i know which,32bit or 64bit windows7 to buy for my iMac with parallels desktop. I just got my 21.5" iMac Dec. 2011 .Intel 2.5ghz but I don't see any 32bit or 64bit info for the system anywhere or if it matters.

    Home/Pro 32-bit address 3.5 GB memory.
    Home 64-bit Pro addresses 16 GB memory.
    Pro 64-bit addresses 192 GB memory.  And 64-bit Pro has XP mode just in case you need it.
    You dedicate a certain amount of memory to Parallels VM, and you have a machine that can install at least 16 GB memory.  So you can actually dedicate 8 GB RAM, and thus exceed and 32-bit Windows OS ability.
    In short ... to avoid re-buying Windows 7 in the future, and get XPmode, and address more than 3.5 GB RAM any time I want to ... buy 64-bit Pro once.

  • Downgrade nvidia by recompiling against current kernel

    I would like to downgrade my Nvidia driver to 295.59 and still use my current kernel. The Arch Wiki says here to
    search for the package you wish to downgrade. Once you find it, click "View SVN entries" and select "View Log". Locate the version you need and click on the path. Then just download the files located in that directory and build it with makepkg
    but this does not seem to be there. That is, all I can find is a "View Changes" feature, which results in what looks like a "diff" file. I've tried to modify the PKGBUILD file accordingly by starting with the ABS PKGBUILD and then compiling, but it failed with
    Starting package_opencl-nvidia()...
    install: cannot stat ‘libnvidia-opencl.so.295.59’: No such file or directory
    ==> ERROR: A failure occurred in package_opencl-nvidia().
    Aborting...
    Any help would be appreciated.

    Sounds like you are building the prerequisite package, nvidia-utils.   I think the opencl-nvidia package was built differently back in 295.59.  If you don't need the "opencl-nvidia" package, just remove 'opencl-nvidia' from the pkgname array in the PKGBUILD file.
    Change:
    pkgname=('nvidia-utils' 'opencl-nvidia')
    to
    pkgname=('nvidia-utils')
    Then rerun the makepkg.

  • Piix in current kernel (3.2.x)?

    aka "yet another System Unbootable After Upgrade".
    What's the name of piix module in the current kernel? The one that calls devices /dev/hdX natively, not those that have sdX even for PATA drives. Not ata_piix, in particular. I used to have MODULES="piix ide-gd_mod" in my mkinitcpio.conf with 3.0-ARCH, but with the new 3.2.something kernel I can't find those modules.
    Or is it the time to start using home-built kernel?

    Ugh, I see, ok.
    Using PATA modules isn't an option: https://bbs.archlinux.org/viewtopic.php?id=130532

  • Virtualbox - install build and header files for your current kernel

    I have initially installed virtualbox before upgrading the Arch
    Also took backup of the kernle before upgrading since kernel26 2.6.30 is having problem with virtualbox
    After upgrading I have configure the grub to use the previous kernel i.e 2.6.28
    Later  installed xorg and want to install the video drivers from VBox additions
    but running
    sh VBoxLinuxAdditions_x86.run
    i get the following
    install build and header files for your current kernel
    The current kernel version is 2.6.28 Arch
    What are the build and header files I have to install or search with pacman
    And since i have upgraded the system will I able to look up the header and build files needed for kernel 2.6.28

    dmartins - he's talking about his kernel's headers, not the kernel-headers package - they are two very differnet things.
    sant527 - when you backed up the 2.6.28 kernel, did you remember the files in /usr/src/linux-2.6.28-ARCH/ ? They're what VBox is looking for.

  • Oracle 10g XE migrate from 32bit to 64bit becomes slower

    Oracle 10g XE migrate from 32bit to 64bit becomes slower
    Currently we have a database using Oracle 10g XE R2
    (Oracle Database 10g Express Edition Release 10.2.0.1.0)
    on a linux 32bit server.
    And recently we did migrate it to another 64bit linux server.
    But found after migration is it running slower at 64bit server (~ 25% slower)
    1. We would wonder any tuning is required on 64bit server?
    Besides, as I know Oracle XE only using single core CPU for processing.
    On 32bit linux the CPU is Intel(R) Xeon(R) CPU E31235 @ 3.20GHz
    On 64bit linux the CPU is Intel(R) Xeon(R) CPU E5-2470 v2 @ 2.40GHz
    2. Would the CPU clock speed on a single core also made the 64bit Oracle slower?
    Thanks a lot.

    32 or 64 bit normally won't cause much performance difference as long as you can't use > 4GB RAM
    Please note that XE can use only 1 core and 1GB memory.
    According to benchmarks, Single Thread Rating of the 2 CPU really differ by around 25%. Quite consistent with your observation.
    Of course, IO (i.e., disk) speed is also an important factor.
    https://www.cpubenchmark.net/cpu.php?id=2003
    https://www.cpubenchmark.net/cpu.php?id=1200

  • Windows 7 64-bit and need to install both 32bit and 64bit Oracle 11g client

    Hello
    First I am sorry for asking what is probably a common knowledge answer from most in the forum. I just cannot find a straight forward answer searching these forums or via google.
    We have Windows 7 64-bit planned as our next desktop upgrade. We have several Oracle databases, and all of the client software in our environment is 32 bit.
    I want to try and be ahead of the curve so I want to deploy the latest 64-bit 11g client instead of our current client (10g 32bit).
    The simple question is this: Can we actually do that with our 32bit application suite or do I need to install the 32bit client for 32bit applications side-by-side with the 64bit 11g Oracle client for future 64-bit clients?
    For a follow up to that, if I do, then does anyone have good instructions on that? I found one article on this but it seemed custom and made use of the mklink command, so I have my doubts this is correct.
    Thanks

    Thanks for the tip. What I wonder though is should I do that or does the 64-bit client have a 32-bit layer that works with 32-bit applications or, am I forced to still deploy a 32-bit client because of my 32-bit software?
    Thanks

Maybe you are looking for

  • Can I use a Macbook pro as a second (palette) monitor on my new iMac 21.5" ?

    Hi there, I have a MacBook Pro (13-inch, Late 2011) and the latest 21.5" iMac 2.9GHz. What I would like to do is use the MacBook to load palettes for Adobe InDesign and Photoshop.  I see a lot of discussion about using the iMac to display a smaller s

  • Lack of music/apps in South Africa

    I know this topic has been discussed before, yet there never seems to be a satisfactory answer. http://www.thyon.com/blog-entry/items/apples-lack-of-games-music-movies-tv-in-so uth-africa.html The lack of availability of music, games and other apps o

  • Attached object(BUS2038) doesn`t open new window

    Hi guys, In my workflow I send an workitem with a business object attached to allow the approver see the PM Note. I meant, when the link is clicked it should open the transaction IW22(Edit PM orders). In my development server this was working for all

  • HP Pavilion Left Hinge Broke

    For some reason the other topic that had 255 replies has been closed???? I got off the phone with HP and was told it would be $200 to repair the damage done by their horrible hinges. Not that the care but they have lost me as a customer. Bye HP.

  • Oracle DB server and Reports&Forms Services - in separate homes

    Hi I have manaed to installe Oracle DB server (10g) in home1 and reports & forms services (together with Developer suite, 9.0.4) in home2 - can I work normally with that installation/configuration. What is normal practice?