LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-09-2011, 04:02 AM   #1
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
This is a 32 bit computer, you can't use 64 bit software on it.


Code:
anisha@linux-uitj:~> cat /etc/issue && uname -a
Welcome to openSUSE 11.2 "Emerald" - Kernel \r (\l).

Linux linux-uitj 2.6.31.5-0.1-desktop #1 SMP PREEMPT 2009-10-26 15:49:03 +0100 x86_64 x86_64 x86_64 GNU/Linux

anisha@linux-uitj:~>
Doesn't this output show that this is a 64 bit machine?

Now when I try to load a 64 bit OpenSUSE 11.3 ISO on the VirtualBox, I get a message as shown in the thread title!
Code:
anisha@linux-uitj:~/tarBalls> file opensuse-dvd-x86_64.0702..001.iso
opensuse-dvd-x86_64.0702..001.iso: ISO 9660 CD-ROM filesystem data 'openSUSE-DVD-x86_64.0702..001  ' (bootable)

anisha@linux-uitj:~/tarBalls>
What's the point that I am missing?
Help please.
 
Old 08-09-2011, 04:07 AM   #2
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
It certainly looks like a 64-bit from the uname -a output. Very strange! Run:
Code:
cat /proc/cpuinfo
 
Old 08-09-2011, 04:08 AM   #3
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Code:
anisha@linux-uitj:~> cat /proc/cpuinfo
processor       : 0                   
vendor_id       : GenuineIntel        
cpu family      : 6                   
model           : 23                  
model name      : Intel(R) Core(TM)2 Duo CPU     E7400  @ 2.80GHz
stepping        : 10                                             
cpu MHz         : 1596.000                                       
cache size      : 3072 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm
bogomips        : 5594.34
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Core(TM)2 Duo CPU     E7400  @ 2.80GHz
stepping        : 10
cpu MHz         : 2793.000
cache size      : 3072 KB
physical id     : 0
siblings        : 2
core id         : 1
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm
bogomips        : 5594.41
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

anisha@linux-uitj:~>
 
Old 08-09-2011, 04:14 AM   #4
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
First thing, the output from uname doesn't show anything about your hardware, only about your kernel. It's a subtle difference that you should always keep in scope. Of course, in this case, to run a 64 bits kernel you need 64-able hardware so, accidentally, the erroneous assumption you made there doesn't really matter so much.

Your problem in this case has to do with the fact that you are trying to install a given OS in a virtual machine, so it's the emulated hardware in that machine which matters, and not your physical hardware. I have no idea if your concrete VM can emulate an x86_64 cpu, I will leave that for you to discover.

Last edited by i92guboj; 08-09-2011 at 04:15 AM.
 
Old 08-09-2011, 04:15 AM   #5
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Code:
fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm
Yeah, it's a 64-bit processor as well - that lm in the flags shows it is.
EDIT: Have you got the 64-bit VirtualBox?
ANOTHER EDIT: One for OpenSuse AMD64?
http://www.virtualbox.org/wiki/Linux_Downloads

Last edited by brianL; 08-09-2011 at 04:19 AM.
 
1 members found this post helpful.
Old 08-09-2011, 04:43 AM   #6
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by brianL View Post
EDIT: Have you got the 64-bit VirtualBox?
Thanks for the hint, how to figure that out? The "about" says: Version 3.0.6_OSE r52128.

Perhaps instead of wasting further time I should download that 64 bit VB.
 
Old 08-09-2011, 04:46 AM   #7
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Yeah, good idea. That one you've got is outdated, and it's an OSE version, which won't support USBs.
 
Old 08-09-2011, 04:56 AM   #8
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Just now I checked the install file I have for the VB.
Quote:
VirtualBox-3.2.8-64453-Linux_x86.run
 
Old 08-09-2011, 05:06 AM   #9
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
run 32 bit software on 64 bit debian linux jokar.mohsen Linux - Software 4 07-06-2011 11:39 PM
I know my computer supports 64 bit, but should I still use 32 bit? Chronothread Linux - Newbie 3 05-04-2009 02:09 PM
What makes a computer 64-bit or 32-bit ? exceed1 Linux - General 4 11-19-2008 01:57 AM
Benchmarking software, compare 32-bit to 64-bit H_TeXMeX_H Linux - Software 20 07-15-2008 03:39 AM
new 64 bit computer - can i install 32 bit suse 9.3 joel b SUSE / openSUSE 2 08-28-2005 02:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:45 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration