You can just perform an x86-64 install over the top of your existing i386 install. There's no need to reformat or repartition - the Ubuntu installer has supported keeping the contents of /home and (most of) /etc (and other data directories) for a couple of releases now.
That will get you most of the way there; you'll keep all your configuration, but you won't have the same software installed.
To do that, the guide from this answer should work:
Before installing the x86-64 version, dump a list of your currently installed packages by running dpkg --get-selections > ~/installed-software in a terminal.
After installing, restore the list of installed packages by running sudo dpkg --set-selections < ~/installed-software followed by sudo apt-get -f install. There will probably be some packages that can't be installed, as there are some i386 packages without x86-64 counterparts - libc6-686, the 686-optimised libc is the common example.
There are some guides that offer a disclaimer-ridden murky pathway from 32bit to 64bit but believe me when I say I've been tinkering with Linux for years I just wouldn't want to take it on. It's a giant hack that intentionally breaks things to fool the 32bit system into taking on 64bit packages. Get one thing wrong and you break the install... And it looks like it would take a long time.
The truth is it's just so much easier to back up the things you can't replace (/etc/, /home/, parts of /var) to another drive, pop in the 64bit live CD/USB and reinstall. Installation to my SSD from USB took 12 minutes last time I did it.
When it's reinstalled, make a new user and copy whatever bits of your profile you want back in. You can either dump it all back in or spend a little bit of time and have a good old-fashioned clean out.
Backup your /etc and /home folders (I have /home as its own partition, you may need more folders if you have any custom folders... or /var/www if you have apache, maybe backup databases if you had any)
Run dpkg --get-selections > installed-software to save the list of installed software, backup the file installed-software.
Install the x64 version, create the same users.
Restore the /etc and/homefolders and theinstalled-software` file.
Run dpkg --set-selections < installed-software then run dselect to install the previously installed software.
I don't believe you can just upgrade to a 64 bit version of Ubuntu, you would have to reformat the partition and install the 64 bit version from the x64 Live CD.
As x86 and x64 are different architectures you can't just upgrade directly from one to another without wiping the root partition and re-installing the system.
One thing you can (and MUST) do is having directories where you store settings and files (usually /home/yourusername) set up in a separate partition, as this allows you to format your system without losing important settings, like your e-mail accounts' Evolution/Thunderbird configuration, or any other type of files.
If you do the same for /usr/bin (for example), then it also backups all files under this directory in a system format.
You can just perform an x86-64 install over the top of your existing i386 install. There's no need to reformat or repartition - the Ubuntu installer has supported keeping the contents of
/home
and (most of)/etc
(and other data directories) for a couple of releases now.That will get you most of the way there; you'll keep all your configuration, but you won't have the same software installed.
To do that, the guide from this answer should work:
dpkg --get-selections > ~/installed-software
in a terminal.sudo dpkg --set-selections < ~/installed-software
followed bysudo apt-get -f install
. There will probably be some packages that can't be installed, as there are some i386 packages without x86-64 counterparts -libc6-686
, the 686-optimised libc is the common example.No. Well... Not in a way that's worth it.
There are some guides that offer a disclaimer-ridden murky pathway from 32bit to 64bit but believe me when I say I've been tinkering with Linux for years I just wouldn't want to take it on. It's a giant hack that intentionally breaks things to fool the 32bit system into taking on 64bit packages. Get one thing wrong and you break the install... And it looks like it would take a long time.
The truth is it's just so much easier to back up the things you can't replace (
/etc/
,/home/
, parts of/var
) to another drive, pop in the 64bit live CD/USB and reinstall. Installation to my SSD from USB took 12 minutes last time I did it.When it's reinstalled, make a new user and copy whatever bits of your profile you want back in. You can either dump it all back in or spend a little bit of time and have a good old-fashioned clean out.
Should be simple.
/etc
and/home
folders (I have/home
as its own partition, you may need more folders if you have any custom folders... or/var/www
if you have apache, maybe backup databases if you had any)dpkg --get-selections > installed-software
to save the list of installed software, backup the fileinstalled-software
./etc and
/homefolders and the
installed-software` file.dpkg --set-selections < installed-software
then rundselect
to install the previously installed software.I don't believe you can just upgrade to a 64 bit version of Ubuntu, you would have to reformat the partition and install the 64 bit version from the x64 Live CD.
James is right.
As x86 and x64 are different architectures you can't just upgrade directly from one to another without wiping the root partition and re-installing the system.
One thing you can (and MUST) do is having directories where you store settings and files (usually /home/yourusername) set up in a separate partition, as this allows you to format your system without losing important settings, like your e-mail accounts' Evolution/Thunderbird configuration, or any other type of files.
If you do the same for /usr/bin (for example), then it also backups all files under this directory in a system format.