LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 04-11-2011, 02:02 PM   #1
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Rep: Reputation: 32
How to figure out 64 or 32 bit


Hello, I have been using Ubuntu 10.10 netbook edition. Since I have a heavy duty 64 bit chip-set on my laptop laptop I decided to give the desktop amd version a go but found very unstable. For example. on one occasion my dual boot-loader got corrupted and had to reinstall both windows and Ubuntu. On another occasion as soon as I plugged in a USB device I lost all my desktop icons after a reboot., in addition to system frequently freezing when more than two applications are running. Netbook version has proven over time to be much more robust.

Anyway, I reverted back to my original netbook. In this post I only need to know how to figure out if this Ubuntu edition is 32 or 64 bit. There is no information about this on the download site. Alternatively where would I find a stabler 64 bit version.?
 
Old 04-11-2011, 02:03 PM   #2
szboardstretcher
Senior Member
 
Registered: Aug 2006
Location: Detroit, MI
Distribution: GNU/Linux systemd
Posts: 4,278

Rep: Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694
Once it is installed, you can type 'uname -a' or are you looking to identify what it is before you download it?
 
1 members found this post helpful.
Old 04-11-2011, 02:15 PM   #3
Timothy Miller
Moderator
 
Registered: Feb 2003
Location: Arizona, USA
Distribution: Debian, EndeavourOS, OpenSUSE, KDE Neon
Posts: 4,003
Blog Entries: 26

Rep: Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521
You may want to look at the 10.04 LTS release. As it's a Long Term Support release, it's much more stable than the current release (although myself has found 10.10 to be very stable of late now that it's getting ready to go away).
 
1 members found this post helpful.
Old 04-11-2011, 02:55 PM   #4
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
This is what I am getting on my installed system. It doesn't mention anything about amd or 64 bit.

Code:
siawacsh@siawacsh-sager:~$ sudo uname -a
[sudo] password for siawacsh: 
Linux siawacsh-sager 2.6.32-30-generic-pae #59-Ubuntu SMP Tue Mar 1 23:01:33 UTC 2011 i686 GNU/Linux
siawacsh@

Last edited by siawash; 04-11-2011 at 02:57 PM.
 
Old 04-11-2011, 02:56 PM   #5
szboardstretcher
Senior Member
 
Registered: Aug 2006
Location: Detroit, MI
Distribution: GNU/Linux systemd
Posts: 4,278

Rep: Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694
Quote:
Originally Posted by siawash View Post
This is what I am getting on my installed system

Code:
siawacsh@siawacsh-sager:~$ sudo uname -a
[sudo] password for siawacsh: 
Linux siawacsh-sager 2.6.32-30-generic-pae #59-Ubuntu SMP Tue Mar 1 23:01:33 UTC 2011 i686 GNU/Linux
siawacsh@
Its a 32 bit kernel.
 
1 members found this post helpful.
Old 04-11-2011, 03:05 PM   #6
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
Thanks I see that now. It's a pity since the netbook is so well put together. I like the desktop arrangement which I have not seen in the desktop version. I guess I will try the 10.04 LTS release as soon as I get the chance.

Thanks
 
Old 04-11-2011, 03:59 PM   #7
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
Forgot to mention, only the netbook could recognize my web cam. Desktop 10.10 could not. I hope 10.04 would recognize both web cam and microphone. I have had to use windows to have video chat on skype.
 
Old 04-11-2011, 04:13 PM   #8
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
If you download the 10.04 ISO, you can boot it directly from grub and have it boot right up without even burning to a CD or anything. If you are installed (your current installation) on one partition you can just point grub at the ISO. If you are on 2 partitions you needto put htte ISO on the root partition.

I use a file I created in my /etc directory (/etc/aa easy to find and close to /etc/grub.d so I can switch back and forth to check my spelling).

If you want to use this menu entry it will need edited to match your partition numbers and file path. Do;
Code:
sudo gedit /etc/grub.d/40_custom
copy paste this in there;
Code:
echo "Adding Lounge Lizard 10.04-2 ISO on sda9" >&2 
cat << EOF
menuentry "Lounge Lizard 10.04-2 ISO on /dev/sda9" {
loopback loop (hd0,9)/etc/aa/lucid-desktop-amd64.iso
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/etc/aa/lucid-desktop-amd64.iso quiet noprompt 
initrd (loop)/casper/initrd.lz
}
EOF
If you are on one partition that should probably read;
Code:
echo "Adding Lounge Lizard 10.04-2 ISO on sda9" >&2 
cat << EOF
menuentry "Lounge Lizard 10.04-2 ISO on /dev/sda9" {
loopback loop (hd0,1)/home/<user>/downloads/lucid-desktop-amd64.iso
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/home/<user>/downloads/lucid-desktop-amd64.iso quiet noprompt 
initrd (loop)/casper/initrd.lz
}
EOF
run;
Code:
sudo update-grub
run;
Code:
sudo grub-mkconfig
to check that it looks right in your /boot/grub/grub.cfg file. That is the file that is generated to produce your screen menu.

A handy link that anyone interested in Ubuntu should have;
http://cdimage.ubuntu.com/

Oh, and one more thing, have FUN.
 
  


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
64 bit cpu-64 bit Ubuntu-are there 32 bit app issues? sofasurfer Ubuntu 7 04-09-2014 02:02 PM
64 bit or 32 bit Ubuntu 10.04 in a multiple boot with windows 64 and 32 bit ? james2b Linux - General 7 09-22-2010 04:12 PM
Can't Figure out how to edit the default GRUB boot order in Ubuntu 9.10 64 Bit xzillerationer Linux - Newbie 4 03-25-2010 06:53 PM
LXer: Ubuntu 32-bit, 32-bit PAE, 64-bit Benchmarks LXer Syndicated Linux News 0 12-30-2009 11:00 AM
32 bit or 64 bit install - is 32 bit easier for a newbie? dms05 Linux - Newbie 3 05-19-2006 03:05 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 05:14 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