The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Install/Profiles/es
Guia de Instalación: Perfiles
Install Guide, Chapter 17 | < Prev | Next > |
Una vez que haz reiniciado Funtoo Linux, puedes ajustar más tu sistema a tus necesidades usando Funtoo Profiles. Abajo se incluye una breve introducción a los perfiles - consulta la página Funtoo Profiles para información más detallada. Hay cinco tipos básicos de perfiles: arch, build, subarch, flavors y mix-ins.
Sub-Perfil | Description |
---|---|
arch | x86-32bit o x86-64bit , esto define el tipo de procesador y soporte para tu sistema. Esto es definido cuando su stage fue construido y NO deberá ser cambiado. |
build | Define si su sistema es de la construccion current , stable or experimental . Todas las construcciones Funtoo Linux usan la construccion funtoo-current . |
subarch | Define optimizaciones para el CPU de su sistema. El subarch es definido al momento de que el stage3 es construido pero luego puede ser cambiado de ser necesario.Asegurese de elegir una configuracion que sea compatible con el CPU de su sistema. |
flavor | Define el tipo de sistema en general, si es server or desktop , y definirá los valores USE por defecto apropiados para su sistema. |
mix-ins | Define varias configuraciones opcionales las cuales le podría interesar. |
Para cada sistema Funtoo Linux deben escogerse una arquitectura, rama y sabor, mientras que las combinaciones son opcionales y puede habilitar más de una si lo desea. Con frecuencia, los sabores y las combinaciones heredan los ajustes de otros sub-perfiles. Utilice epro show
para ver los ajustes actuales de su perfil, además de cualquier información heredada:
(chroot) # epro show
Se recomienda que ejecute este comando ahora, aun más si está utilizando la imágen de instalación con gnome
, para que pueda familiarizarse con la configuración de perfiles actual de su sistema.
root # epro show
##g##Enabled Profiles##!g##:
arch: ##c## x86-64bit build: ##c## current subarch: ##c## intel64-haswell flavor: ##c## desktop mix-ins: ##c## gnome
##g##All inherited flavors from desktop flavor##!g##:
##c##workstation##!c## (from desktop flavor) ##c##core##!c## (from workstation flavor) ##c##minimal##!c## (from core flavor)
##g##All inherited mix-ins from desktop flavor##!g##:
##c##X##!c## (from workstation flavor) ##c##audio##!c## (from workstation flavor) ##c##dvd##!c## (from workstation flavor) ##c##media##!c## (from workstation flavor) ##c##mediadevice-audio-consumer##!c## (from media mix-in) ##c##mediadevice-base##!c## (from mediadevice-audio-consumer mix-in) ##c##mediadevice-video-consumer##!c## (from media mix-in) ##c##mediadevice-base##!c## (from mediadevice-video-consumer mix-in) ##c##mediaformat-audio-common##!c## (from media mix-in) ##c##mediaformat-gfx-common##!c## (from media mix-in) ##c##mediaformat-video-common##!c## (from media mix-in) ##c##console-extras##!c## (from workstation flavor) ##c##print##!c## (from desktop flavor)
}}
He aquí algunos ejemplos básicos de uso de epro
:
Descripción | Comando |
---|---|
Ver perfiles disponibles. Los perfiles habilitados estarán resaltados en cyan. Los perfiles activados directamente estarán en negrita y tendrán un * anexado. | (chroot) # epro list |
Cambiar el sabor del sistema. | (chroot) # epro flavor desktop |
Agregar un mix-in. | (chroot) # epro mix-in +gnome |
Graphics Settings
The gnome
install image will have additional graphic support already enabled for you, but you will still need to set up X and your display manager (covered in the next section.)
Funtoo Linux 1.4 features the following mix-ins to allow simplified configuration of your graphics settings. It's recommended to use these mix-ins rather than manually placing USE
and VIDEO_CARDS
settings in /etc/make.conf
. You can learn more about Funtoo's graphics configuration and the design approach of these settings at the make.conf/VIDEO_CARDS page.
Funtoo Graphics Mix-Ins
gfxcard-intel
- This mix-in is equivalent to
gfxcard-intel-classic
orgfxcard-intel-iris
, depending on the release you're running. Currently, it defaults togfxcard-intel-classic
on 1.4-release and togfxcard-intel-classic
on Next release. Do not enable more than 1gfxcard-intel*
mix-in at the same time. The result is not what you might expect. gfxcard-intel-classic
- This mix-in enables Intel graphics support based on the older i915 mesa driver (not to be confused with the i915 kernel driver). Choose this if you have a Gen3 or older chipset.
gfxcard-intel-iris
- This mix-in enables Intel graphics support for cards with glamor modesetting support (drivers i965 or iris), including support OpenGL ES (>=Gen4) and OpenCL and Vulkan (>=Gen7) and video acceleration where available. If your card is >=Gen5, do an
emerge libva-intel-driver
oremerge media-libs/libva-intel-media-driver
(for >=Gen8) afterwards to ensure you have full video acceleration support. gfxcard-amdgpu
- This mix-in enables support for modern Radeon cards, Southern Islands -- GFX Core 6 (see this x.org reference) and greater. Includes Vulkan and video acceleration where available. Drivers are built for both the Gallium framework (modern replacement for DRI framework) and DRI framework. Glamor is used to accelerate 2D operations.
gfxcard-radeon
- This mix-in enables support for modern Radeon cards, R600 through Northern Islands -- GFX Core 4 and 5 (see this x.org reference). Drivers are built for the Gallium framework (modern replacement for DRI framework) as well as DRI framework. Glamor is used to accelerate 2D operations.
gfxcard-older-ati
- Use this mix-in to enable support for R300 up to (but not including) R600 Radeon cards -- -- GFX Core 3 (see this x.org reference). DRI as well as Gallium-based drivers are enabled.
gfxcard-ancient-ati
- Use this mix-in to enable support pre-R300 cards -- GFX Core 1 and 2 (see this x.org reference). These drivers are DRI-based.
gfxcard-nvidia
- Use this to enable support for proprietary NVIDIA drivers. You will also need to
emerge nvidia-kernel-modules
, blacklistnouveau
and add yourself to thevideo
group. See this documentation for more details. Note that Funtoo now has two catpkgs for NVIDIA proprietary graphics --nvidia-drivers
andnvidia-kernel-modules
-- to aid the use of NVIDIA acceleration on containers. gfxcard-nvidia-legacy
- Proprietary NVIDIA drivers like above, but the legacy version of the driver that supports older hardware. See https://www.nvidia.com/en-us/drivers/unix/ and browse the specific driver version that
emerge
is installing to get detailed compatibility information. gfxcard-nouveau
- Use this mix-in to enable support for Open Source nouveau drivers.
Enable the appropriate graphics options for your hardware as follows:
root # epro mix-in +gfxcard-intel
Once this has been done, proceed to set up X, KDE, GNOME or another desktop environment on your system, as desired. See the next section for more information on this.
Install Guide, Chapter 17 | < Prev | Next > |