Gentoo Linux/AMD64 Frequently Asked Questions
1.
Questions
Introduction to Gentoo/AMD64 FAQ
This document contains the most commonly asked questions about Gentoo/AMD64. We
intend to help and provide useful information about Gentoo/AMD64. Some of these
questions can be found in forums, IRC, or mailing lists. If you have
suggestions or questions about this FAQ, you are welcome to send an e-mail to
amd64@gentoo.org.
Installation
Hardware
Applications
How can I help the Gentoo/AMD64 project?
Other Resources
2.
Installation
What CFLAGS should I use for AMD64/EM64T?
You should use simple CFLAGS to avoid future problems with your system.
Supported CFLAGS are -O2 -march=k8 -pipe for non-EM64T systems and
-O2 -march=nocona -pipe for EM64T systems.
What kernel should I use for AMD64?
You can use almost all kernel sources available in Portage. We recommend using
gentoo-sources because it is a special kernel designed for Gentoo Linux.
It contains lots of AMD64-specific patches and therefore is the only kernel
officially supported by Gentoo/AMD64.
Warning:
You should watch out for some kernel features which are not well tested, such
as PREEMPT.
|
Make sure you have the IA32_EMULATION option activated in the kernel.
Code Listing 2.1: Activating IA32 Emulation in Kernel source |
# cd /usr/src/linux
# make menuconfig
Executable file formats / Emulations --->
[*] IA32 Emulation
|
Warning:
You may experience build failures on multilib-systems if you deactivate this
option.
|
Will I have a performance upgrade if I use a 64bit system instead of 32bit?
That is a difficult question to answer. In some cases, you will experience a
performance improvement, in other cases you will not. For everyday use, there
is nearly no difference between 64bit and 32bit. 64bit is generally faster
when it comes to floating point computing which is normally the case in
multimedia applications and 3D rendering. This article
may interest you. There's also a nice thread in our
forums.
What is multilib and how can I use it?
Every AMD64 processor is able to run 32bit code as well as 64bit code.
However, when you have a 32bit application, you are unable to mix it with
64bit libraries or vice versa. You can, however, natively run 32bit
applications if all shared libraries it needs are available as 32bit objects.
You can choose whether you want multilib support or not by selecting the
according profile. The default is a multilib-enabled profile.
Warning:
Currently you cannot switch from a no-multilib to a multilib-enabled profile,
so think over your decision twice before you use the no-multilib profile.
|
How do I create a 32bit chroot?
Please read the 32bit chroot
guide.
Can I upgrade from my x86 system to amd64 by doing emerge -e world?
Due to several differences between an x86 and an amd64
installation, it is impossible to upgrade. Please perform a fresh install. The
installation is slightly different than an x86 one, so please use the
AMD64 Handbook.
Also, binary files created on an x86 system most likely cannot be read by
packages on an amd64 system. In particular, databases such as MySQL, innoDB,
Berkeley DB, SQLite, OpenLDAP, etc. cannot simply be copied as-is. You will need
to dump the database into an architecture-independent format, such as a text
file, before attempting to restore it on an amd64 system.
Can I use Reiser4?
Reiser4 is not available from any kernel offered by the Gentoo Kernel project,
thus neither AMD64 team supports it. The answer is no.
3.
Hardware
Will my binary NVIDIA/ATI drivers work?
Yes, NVIDIA and ATI provide drivers that work on AMD64. You can install them by
executing emerge nvidia-drivers or emerge ati-drivers. If you have
more questions about these drivers, you should read the Nvidia guide or the ATI FAQ.
How do I use Cool'n'Quiet/PowerNow features?
You have to compile your kernel with support for these features. You just need
to enable the features below:
Code Listing 3.1: Kernel options for Cool'n'Quiet/PowerNow |
Power management options --->
[*] Power Management support
CPU Frequency scaling --->
[*] CPU Frequency scaling
[*] CPU frequency table helpers
[*] AMD Opteron/Athlon64 PowerNow!
|
Then emerge cpudyn and edit /etc/conf.d/cpudyn with your
favorite editor.
Code Listing 3.2: Example of /etc/conf.d/cpudyn |
INTERVAL=1
CPU_UP=0.5
CPU_DOWN=0.9
THROTTLING_LOW=7
CPUFREQ_25="/sys/devices/system/cpu/cpu0/cpufreq /sysfs/devices/system/cpu/cpu0/cpufreq"
CPUFREQ_ACPI="/proc/acpi/processor/CPU0/throttling"
|
Now you only have to run rc-update add cpudyn default to make sure it is
started every time you boot.
Note:
You may want to read the Power Management Guide
for more tips on CPU power management.
|
4.
Applications
Can I get Macromedia Flash working?
Yes. Even though Macromedia doesn't provide a 64-bit version of Flash, there are
a couple ways to get Flash working.
First, you can use a 32-bit browser like mozilla-firefox-bin or
opera with the 32-bit Flash. After emerging the -bin package of your
favorite browser, install Flash by doing emerge netscape-flash.
Second, you can use a 64-bit browser such as mozilla-firefox with the
32-bit Flash plugin by emerging nspluginwrapper, a which lets you load
32-bit plugins on 64-bit browsers. Install your browser, netscape-flash,
and then nspluginwrapper. The wrapper will automatically detect and setup
Flash for your browser.
Can I get OpenOffice.org working?
OpenOffice versions prior to 2.0.4 do not build on 64bit systems, so you have to
use the 32bit binary version, available in Portage as
app-office/openoffice-bin. If you feel brave you can emerge
openoffice, but be aware that the 64bit version is not yet tested out
enough to be considered stable.
I want to install package foo, but emerge says: (masked by: ~amd64 keyword)
This means that the package is still in the 'testing' tree. Please read man
portage or the Mixing Software
Branches chapter of the AMD64 Handbook for more
information.
I want to install package foo, but emerge says: (masked by: missing keyword)
This means that the package has not been tested yet. It does not
necessarily mean that the package does not work. You can unmask it by
accepting another architecture for the package. The following example shows you
can tell Portage to accept any keyword for a given package.
Code Listing 4.1: Example of adding package keywords |
# echo "category/packagename **" >> /etc/portage/package.keywords
# emerge packagename
|
If it works fine for you, please let us know and file a bug on Gentoo's Bugzilla, so that the AMD64 team
can keyword the package and other users can benefit from your test.
Warning:
Do not try commands like ACCEPT_KEYWORDS="~x86" emerge packagename. It
will most certainly break your tree.
|
5.
How can I help the Gentoo/AMD64 project?
How can I help?
With a growing popularity of the amd64 architecture, we also increasingly need
more help. There's still much work to be done to improve the quality of
Gentoo/AMD64. An average user can help us by:
- Filing general bug reports
- Testing software that does not yet have the ~amd64 keyword
-
Participating in the Arch Testers
project
-
Help answering questions on the mailing lists, forums and IRC channels
- Sending patches
6.
Other Resources
Where can I get more help or information about Gentoo/AMD64?
If any of your questions wasn't answered here, you can try other resources
listed on our project homepage. You can
also ask us at #gentoo-amd64 on irc.freenode.net, Gentoo/AMD64 Forums,
or on the gentoo-amd64@lists.gentoo.org mailing list.
The contents of this document are licensed under the Creative Commons -
Attribution / Share Alike license.
|