Dear Wiki user, You have subscribed to a wiki page or wiki category on "Fedora Project Wiki" for change notification. The following page has been changed by BobJensen: http://fedoraproject.org/wiki/Docs/Beats/ArchSpecific/x86_64 The comment on the change is: Marking FC5 Content ------------------------------------------------------------------------------ + {{{ + Fedora Core 5 Release Notes Content is marked like this. + }}} + == x86_64 Specifics for Fedora == This section covers any specific information you may need to know about Fedora Core and the x86_64 hardware platform. @@ -12, +16 @@ ==== Memory Requirements ==== - This list is for 64-bit x86_64 systems: + {{{ This list is for 64-bit x86_64 systems: * Minimum RAM for text-mode: 128MiB * Minimum RAM for graphical: 256MiB - * Recommended RAM for graphical: 512MiB + * Recommended RAM for graphical: 512MiB }}} ==== Hard Disk Space Requirements ==== - The disk space requirements listed below represent the disk space taken up by Fedora Core [[GetVal(DocsDict,BeatsVer)]] after the installation is complete. However, additional disk space is required during the installation to support the installation environment. This additional disk space corresponds to the size of `/Fedora/base/stage2.img` on Installation Disc 1 plus the size of the files in `/var/lib/rpm` on the installed system. + {{{ The disk space requirements listed below represent the disk space taken up by Fedora Core [[GetVal(DocsDict,BeatsVer)]] after the installation is complete. However, additional disk space is required during the installation to support the installation environment. This additional disk space corresponds to the size of `/Fedora/base/stage2.img` on Installation Disc 1 plus the size of the files in `/var/lib/rpm` on the installed system. In practical terms, additional space requirements may range from as little as 90 MiB for a minimal installation to as much as an additional 175 MiB for an "everything" installation. The complete packages can occupy over 9 GB of disk space. - Additional space is also required for any user data, and at least 5% free space should be maintained for proper system operation. + Additional space is also required for any user data, and at least 5% free space should be maintained for proper system operation. }}} === RPM Multiarch Support on x86_64 === + {{{ '''RPM''' supports parallel installation of multiple architectures of the same package. A default package listing such as {{{rpm -qa}}} might appear to include duplicate packages, since the architecture is not displayed. Instead, use the {{{repoquery}}} command, part of the `yum-utils` package in Fedora Extras, which displays architecture by default. To install `yum-utils`, run the following command: - {{{ - su -c 'yum install yum-utils' + ##{{{ su -c 'yum install yum-utils' - }}} + ##}#}} To list all packages with their architecture using {{{rpm}}}, run the following command: - {{{ - rpm -qa --queryformat "%{name}-%{version}-%{release}.%{arch}\n" + ##{{{ rpm -qa --queryformat "%{name}-%{version}-%{release}.%{arch}\n" - }}} + ##}}} You can add this to `/etc/rpm/macros` (for a system wide setting) or `~/.rpmmacros` (for a per-user setting). It changes the default query to list the architecture: - {{{ - %_query_all_fmt %%{name}-%%{version}-%%{release}.%%{arch} + ##{{{ %_query_all_fmt %%{name}-%%{version}-%%{release}.%%{arch} + ##}}} }}}