-
Posts
490 -
Joined
-
Last visited
-
Days Won
59
Community Answers
-
cardinal's post in How properly to uninstall nvidia? was marked as the answer
The intel value is for x11-base/xorg-drivers. The i915 value is for media-libs/mesa.
Change
VIDEO_CARDS="i915" to
VIDEO_CARDS="intel i915" Build drivers and install linux-firmware:
emerge -av xorg-x11 linux-firmware
Reference:
https://www.funtoo.org/Video
Video Driver Installation and Setup
Selecting a Video Driver
https://wiki.gentoo.org/wiki/Intel
-
cardinal's post in [Solved] Emerge Genkernel failed fetching file was marked as the answer
This file has the correct sha512sum for open-iscsi-2.0.872.tar.gz in the genkernel Manifest
cd /var/cache/portage/distfiles wget http://ftp.osuosl.org/pub/funtoo/distfiles/genkernel/open-iscsi-2.0-872.tar.gz emerge -1av genkernel -
cardinal's post in [Solved]"boot-update" Error was marked as the answer
Open /etc/boot.conf as root user in a text editor.
Change:
"memtest86+" { type linux16 kernel /memtest86.bin } To:
#"memtest86+" { # type linux16 # kernel /memtest86.bin #} Type this command as root user and hit Enter on keyboard:
boot-update
-
cardinal's post in unable to install unbound, unmet libsodium dependency was marked as the answer
File a bug report at bugs.funtoo.org
-
cardinal's post in How to get new kernel ? was marked as the answer
Genkernel provides a generic configuration that works with gentoo-sources,vanilla-sources.
Verify /usr/src/linux is symlinked to the kernel sources to be built: eselect kernel list Available kernel symlink targets: [1] linux-4.4.115 * [2] linux-debian-sources-3.19.3 * is pointing to linux-4.4.115 vanilla sources ls -la /usr/src/linux lrwxrwxrwx 1 root root 13 Feb 23 23:37 /usr/src/linux -> linux-4.4.115 Command to build:
genkernel all Genkernel installs my completed build of linux-4.4.115 to /boot
ls /boot System.map-debian-sources-x86_64-3.19.3-1~exp1 System.map-genkernel-x86_64-4.4.115 initramfs-debian-sources-x86_64-3.19.3-1~exp1 initramfs-genkernel-x86_64-4.4.115 intel-uc.img kernel-debian-sources-x86_64-3.19.3-1~exp1 kernel-genkernel-x86_64-4.4.115 After configuring grub I reboot into new kernel:
uname -a Linux funtoo 4.4.115 #1 SMP Fri Feb 23 22:06:22 EST 2018 x86_64 Intel(R) Core(TM)2 Duo CPU E4500 @ 2.20GHz GenuineIntel GNU/Linux
-
cardinal's post in Xorg - Screen not found was marked as the answer
Radeon graphics cards require firmware.
rj@funtoo ~ $ sudo emerge -av linux-firmware These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild N ] sys-kernel/linux-firmware-20180213::core-hw-kit USE="-savedconfig" 136,762 KiB Total: 1 package (1 new), Size of downloads: 136,762 KiB Would you like to merge these packages? [Yes/No] Debian sources kernel includes the radeon kernel module.
-
cardinal's post in Getting eix to work with kits was marked as the answer
Eix determines the path from location attribute in /etc/portage/repos.conf/funtoo/core-kit
rj@funtoo ~ $ cat /etc/portage/repos.conf/funtoo/default [DEFAULT] main-repo = core-kit rj@funtoo ~ $ cat /etc/portage/repos.conf/funtoo/core-kit [core-kit] location = /var/git/meta-repo/kits/core-kit auto-sync = no priority = 1 Using ports-2012 location attribute was /usr/portage
rj@funtoo ~ $ cat /etc/portage/repos.conf.bak/gentoo [DEFAULT] main-repo = gentoo [gentoo] location = /usr/portage sync-type = git sync-uri = git://github.com/funtoo/ports-2012.git auto-sync = yes strace shows file paths scanned by eix
strace -o eix.open.txt -e open eix --print PORTDIR
strace -o eix.txt eix --print PORTDIR
-
cardinal's post in funtoo repo appears behind gento repo was marked as the answer
Follow directions here to install/use meta-repo.
Funtoo eliminated stable.
Funtoo users running stable have to upgrade to current.
I had one system running stable that I upgraded to current while still running ports-2012 before switching to meta-repo.
Funtoo in many cases upgrades package versions at a slower rate than gentoo.
On synced meta-repo dev-db/postgresql-10.0-r1
funtoo rj # emerge -av postgresql These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild N ] app-eselect/eselect-postgresql-2.0-r1::core-kit 0 KiB [ebuild N ] dev-db/postgresql-10.0-r1:10::dev-kit USE="nls pam python readline server ssl xml zlib -doc -kerberos -ldap -libressl -perl (-selinux) -static-libs -systemd -tcl -threads -uuid" LINGUAS="en -af -cs -de -es -fa -fr -hr -hu -it -ko -nb -pl -pt_BR -ro -ru -sk -sl -sv -tr -zh_CN -zh_TW" PYTHON_SINGLE_TARGET="python3_4 -python2_7 -python3_5 -python3_6" PYTHON_TARGETS="python2_7 python3_4 -python3_5 -python3_6" 19,179 KiB Total: 2 packages (2 new), Size of downloads: 19,179 KiB Would you like to merge these packages? [Yes/No]
-
cardinal's post in The good stage was marked as the answer
The output from this command gives you the subarch for your cpu.
gcc -march=native -Q --help=target | grep march Find the output of -march= that matches in the right column printed in red here:
http://www.funtoo.org/Subarches#amd64
Click the link to download optimized stage at the beginning of the line where you find the matching march.
For example if "-march= amdfam10"
Download http://www.funtoo.org/Amd64-k10
Reference:
http://www.funtoo.org/Install#Installing_the_Stage_3_tarball
http://www.funtoo.org/Subarches
-
cardinal's post in About "microcode" was marked as the answer
Build microcode cpio with iucode_tool and load as initrd, If there is a problem disable in the grub menu prior to boot.
-
cardinal's post in Can' t mask an ebuild was marked as the answer
(0) 1.0.2k^d {M}(~)1.1.0e(0/1.1)^d
Curly brackets { } around the Mask => {M}
The version was originally masked in $PORTDIR/profiles/package.mask, but this was locally changed in /etc/portage/package.unmask.
Eix indicates you have manually unmasked openssl-1.1.0e in /etc/portage/package.unmask
Remove that configuration.
Reference: eix manpage
-
cardinal's post in problem when updating was marked as the answer
The conversion to meta-repo from ports-2012 downgrades xorg-server from 1.19.1_p20170228 to 1.17.4-r1
You manually removed xorg-server-1.19.1_p20170228 which was being replaced with xorg-server-1.17.4-r1
Due to the file collision you haven't finished installing x11-base/xorg-server-1.17.4-r1
I had the same file collision error that prevented xorg-server from updating.
# mv /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/10-evdev.conf~ No file collision after rename, install of xorg-server-1.17.4-r1 should succeed.
Before starting Xorg check for /usr/share/X11/xorg.conf.d/10-evdev.conf
If you start xorg-server without 10-evdev.conf the mouse won't move the cursor.
On my system it didn't exist, I rename 10-evdev.conf~ back to 10-evdev.conf
# mv /usr/share/X11/xorg.conf.d/10-evdev.conf~ /usr/share/X11/xorg.conf.d/10-evdev.conf After the update is finished:
funtoo rj # eix -I xorg-server
x11-base/xorg-server [1]
Available versions: 1.17.4(0/1.17.4) 1.17.4-r1(0/1.17.4) {dmx doc glamor ipv6 kdrive libressl minimal nptl selinux static-libs +suid systemd tslib +udev unwind wayland xephyr xnest xorg xvfb}
Installed versions: 1.17.4-r1(0/1.17.4)(07:05:44 PM 07/27/2017)(glamor ipv6 nptl suid udev xorg -dmx -doc -kdrive -libressl -minimal -selinux -static-libs -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb)
Homepage: http://xorg.freedesktop.org/
Description: X.Org X servers
[1] "xorg-kit" /var/git/meta-repo/kits/xorg-kit
funtoo rj # equery list -po x11-base/xorg-server
* Searching for xorg-server in x11-base ...
[--O] [ ] x11-base/xorg-server-1.17.4:0/1.17.4
[i-O] [ ] x11-base/xorg-server-1.17.4-r1:0/1.17.4
-
cardinal's post in connecting to download.nvidia.com ... failed was marked as the answer
Web search for the file, download it to /usr/portage/distfiles
# cd /usr/portage/distfiles # wget ftp://ftp.fr.freshrpms.net/pub/linux/drivers/nvidia/XFree86/nvidia-settings/nvidia-settings-375.10.tar.bz2 -
cardinal's post in Issue installing Abiword was marked as the answer
Couldn't find include 'Gsf-1.gir' (search path: '[u'/usr/share/gdm/gir-1.0', u'/var/lib/menu-xdg/gir-1.0', u'/usr/local/share /usr/share/gobject-introspection-1.0/Makefile.introspection:155: recipe for target 'Abi-3.0.gir' failed Reinstall libgsf and gobject-introspection:
emerge -1av libgsf gobject-introspection Try building abiword-3.0.1
emerge -av =app-office/abiword-3.0.1 If you need more help use wgetpaste to upload the build.log and post the link.
abiword-3.0.1.log for my install on x86
abiword-3.0.1.log for my install on ~amd64
-
cardinal's post in How to create localpatches? was marked as the answer
Local patches are applied to the source code only, not the ebuild.
Modified ebuilds go in the local overlay.
-
cardinal's post in Not using Funtoo (yet) How to check for supported packages? was marked as the answer
The funtoo portage tree: https://github.com/funtoo/ports-2012
-
cardinal's post in Why enabling "cuda" use flags portage requires gcc-4.8.5-r1 was marked as the answer
dev-util/nvidia-cuda-toolkit-6.5.19-r1.ebuild
RDEPEND="${DEPEND}
<sys-devel/gcc-4.9[cxx]
-
cardinal's post in About revdep-rebuild was marked as the answer
Gentoo's Bugzilla ? Bug 589130 app-portage/gentoolkit-0.3.2-r1: revdep-rebuild: Could not save cache: unicode argument expected, got 'str'
Fixed in gentoolkit-0.3.3
-
cardinal's post in Firefox-52.0 no sound on YouTube was marked as the answer
Sound output in pre-compiled firefox >=52.0 requires pulseaudio.
I use this method : https://wiki.archlinux.org/index.php/PulseAudio/Examples#PulseAudio_as_a_minimal_unintrusive_dumb_pipe_to_ALSA
Required USE="-alsa-plugin" in pulseaudio with my profile.
media-sound/pulseaudio
Available versions: 9.0 10.0 {+X +alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer +gdbm +glib gnome gtk ipv6 jack libressl libsamplerate lirc native-headset neon ofono-headset +orc oss qt4 realtime selinux sox ssl system-wide systemd tcpd test +udev +webrtc-aec xen zeroconf ABI_MIPS="n32 n64 o32" ABI_PPC="32 64" ABI_S390="32 64" ABI_X86="32 64 x32"}
Installed versions: 10.0(11:09:17 PM 03/07/2017)(X alsa asyncns bluetooth caps dbus gdbm glib gtk ipv6 orc ssl tcpd udev webrtc-aec -alsa-plugin -doc -equalizer -gnome -jack -libressl -libsamplerate -lirc -native-headset -neon -ofono-headset -oss -qt4 -realtime -selinux -sox -system-wide -systemd -test -zeroconf ABI_MIPS="-n32 -n64 -o32" ABI_PPC="-32 -64" ABI_S390="-32 -64" ABI_X86="64 -32 -x32")
Homepage: http://www.pulseaudio.org/
Description: A networked sound server with an advanced plugin system
-
cardinal's post in i get this python message when using portage after upgrade was marked as the answer
Updated stable and current funtoo are running python2.7.12 and python3.4.5
The python-exec configuration was not updated and is still pointing to python3.3 which is no longer on your system.
Open a terminal, as root user:
eselect python edit At the bottom of the text delete python3.3
Save and exit.
Type this command and hit Enter:
eselect python list You should see:
funtoo rj # eselect python list Available Python interpreters, in order of preference: [1] python3.4 (fallback) [2] python2.7 (fallback) Now update with this command:
funtoo rj # eselect python update Switching to python3.4 Verify update:
funtoo rj # eselect python list Available Python interpreters, in order of preference: [1] python3.4 [2] python2.7 (fallback) The error should be gone when you use portage.
-
cardinal's post in /dev/snd/seq missing after last update was marked as the answer
modprobe -v snd-seq
Add modules="snd-seq" to /etc/conf.d/modules for openrc to auto-load on boot. -
cardinal's post in Qemu virtual machine troubles was marked as the answer
AQEMU:
File/Advanced Settings
General tab/Installed Emulators
Did you add installed QEMU location in AQEMU advanced configuration?
Reference:
AQEMU setup tutorial with pictures
-
cardinal's post in Technical difficulties updating system was marked as the answer
If "<dev-util/gdbus-codegen-2.48.2" is blocking dev-libs/glib-2.48.2,
then try to emerge gdbus-codegen-2.48.2 and glib-2.48.2 in one command:
funtoo rj # emerge -1av =dev-util/gdbus-codegen-2.48.2 =dev-libs/glib-2.48.2 These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild R ] dev-libs/glib-2.48.2:2::gentoo USE="dbus mime xattr -debug (-fam) (-selinux) -static-libs -systemtap {-test} -utils" PYTHON_TARGETS="python2_7" 0 KiB [ebuild R ] dev-util/gdbus-codegen-2.48.2::gentoo PYTHON_TARGETS="python2_7 python3_4 -python3_5" 0 KiB Total: 2 packages (2 reinstalls), Size of downloads: 0 KiB Would you like to merge these packages? [Yes/No] -
cardinal's post in About /var/mail/root was marked as the answer
The error message in your first post:
egencache: error: --repo option is required Your existing crontab has no --repo option:
00 21 * * * /usr/bin/egencache --update-use-local-desc Replace --update-use-local-desc with --repo=gentoo
00 21 * * * /usr/bin/egencache --repo=gentoo -
cardinal's post in Superblock last write time is in the future was marked as the answer
Do you want hardware clock set for local time due to dual booting with windows which sets hardware clock to local time?
Then if
ls -la /etc/localtime localtime -> /usr/share/zoneinfo/America/Chicago Change it to:
localtime-> /usr/share/zoneinfo/localtime
ln -s /usr/share/zoneinfo/localtime /etc/localtime
