[Solved] Can't build Xorg-Server-Git.

Hello
I want to build xorg-server-git from AUR I modifeted PKGBUILD becouse old can't be build.
That's my PKGBUILD:
pkgname=xorg-server-git
pkgver=20090731
pkgrel=1
pkgdesc="X.Org X servers"
arch=('x86_64')
license=('custom')
url="http://xorg.freedesktop.org"
depends=('libxfont>=1.4.0' 'openssl>=0.9.8k' 'libpciaccess>=0.10.6' 'libxv>=1.0.4' 'pixman>=0.14.0' 'xkeyboard-config>=1.6' 'xorg-server-utils' 'xorg-fonts-misc' 'xbitmaps' 'diffutils' )
makedepends=('libx11>=1.2.1' 'mesa>=7.5' 'xf86driproto>=2.0.4' 'xtrans>=1.2.3' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'renderproto>=0.9.3' 'xcmiscproto>=1.1.2' 'bigreqsproto>=1.0.2' 'resourceproto>=1.0.2' 'videoproto>=2.2.2' 'compositeproto>=0.4' 'scrnsaverproto>=1.1.0' 'libxinerama>=1.0.3' 'xf86dgaproto>=2.0.3' 'recordproto>=1.13.2' 'glproto>=1.4.9' 'xorg-util-macros')
conflicts=('catalyst-utils<=9.2')
options=('!libtool')
_gitver=1.6.2.1
provides=('x-server')
groups=('xorg')
install=xorg-server.install
_gitroot="git://anongit.freedesktop.org/git/xorg/xserver"
_gitname="xserver"
source=("xorg-redhat-die-ugly-pattern-die-die-die.patch")
md5sums=('1a336eb22e27cbf443ec5a2ecddfa93c')
build() {
msg "Connecting to git.freedesktop.org GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
cp -a "${srcdir}/$_gitname/" "${srcdir}/$_gitname-build/"
msg "GIT checkout done or server timeout"
msg "Starting make..."
cd "${srcdir}/$_gitname-build"
msg "Patching sources..."
# Fix dbus config path
sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
msg "Preparing sources for configure..."
autoreconf -v --install || return 1
msg "Starting configure for: $pkgname"
./configure --prefix=/usr \
--disable-ipv6 \
--disable-dri2 \
--disable-dri \
--disable-dmx \
--disable-xvfb \
--disable-xnest \
--disable-composite \
--disable-xcsecurity \
--enable-xorg \
--disable-xephyr \
--disable-glx-tls \
--disable-kdrive \
--enable-install-setuid \
--disable-config-hal \
--enable-config-dbus \
--disable-record \
--disable-xfbdev \
--disable-xfake \
--disable-xsdl \
--disable-static \
--sysconfdir=/etc/X11 \
--localstatedir=/var \
--with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1 \
--with-xkb-path=/usr/share/X11/xkb \
--with-xkb-output=/var/lib/xkb \
# --without-dri-driver-path=/usr/lib/xorg/modules/dri || return 1
msg "Starting make..."
make || return 1
make DESTDIR="${pkgdir}" install || return 1
msg "Creating the appropriate X.org directories..."
install -m755 -d "${pkgdir}/etc/X11" || return 1
install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
msg "Backing up libwfb.so..."
mv "${pkgdir}/usr/lib/xorg/modules/libwfb.so" \
"${pkgdir}/usr/lib/xorg/modules/libwfb.so.1.4" || return 1
msg "Fixes for non-Mesa drivers..."
ln -s "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
msg "Cleaning build area..."
rm -rf "${srcdir}/$_gitname-build"
rm -rf "${pkgdir}/var/log"
And It's my error when i try to make it:
In file included from xfixesint.h:63,
from xfixes.c:54:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
In file included from xfixesint.h:63,
from saveset.c:27:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
make[1]: *** [xfixes.lo] Błąd 1
make[1]: *** Oczekiwanie na niezakończone zadania....
make[1]: *** [saveset.lo] Błąd 1
In file included from xfixesint.h:63,
from region.c:27:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
In file included from xfixesint.h:63,
from select.c:27:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
In file included from xfixesint.h:63,
from cursor.c:54:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
region.c: In function 'ProcXFixesSetWindowShapeRegion':
region.c:695: error: 'ShapeBounding' undeclared (first use in this function)
region.c:695: error: (Each undeclared identifier is reported only once
region.c:695: error: for each function it appears in.)
region.c:696: error: 'ShapeClip' undeclared (first use in this function)
region.c:697: error: 'ShapeInput' undeclared (first use in this function)
make[1]: *** [region.lo] Błąd 1
make[1]: *** [select.lo] Błąd 1
make[1]: *** [cursor.lo] Błąd 1
make: *** [all-recursive] Błąd 1
==> BŁĄD: Budowanie nie powiodło się.
Przerywam...
Thanks for help and advice
Last edited by SpeedVin (2009-07-31 14:06:30)

flamelab wrote:
Can you please post an output of this error with english messages ? I don't understand Polish
It says "No such file or directory" I suppose ?
Yes that's right I'm not good at tranlate but I will try
In file included from xfixesint.h:63,
from saveset.c:27:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
In file included from xfixesint.h:63,
from cursor.c:54:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
make[1]: *** [saveset.lo] Error 1
make[1]: *** Waiting for not end tasks....
In file included from xfixesint.h:63,
from region.c:27:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
make[1]: *** [cursor.lo] Error 1
In file included from xfixesint.h:63,
from select.c:27:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
region.c: In function 'ProcXFixesSetWindowShapeRegion':
region.c:695: error: 'ShapeBounding' undeclared (first use in this function)
region.c:695: error: (Each undeclared identifier is reported only once
region.c:695: error: for each function it appears in.)
region.c:696: error: 'ShapeClip' undeclared (first use in this function)
region.c:697: error: 'ShapeInput' undeclared (first use in this function)
make[1]: *** [select.lo] Błąd 1
In file included from xfixesint.h:63,
from xfixes.c:54:
/usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
make[1]: *** [region.lo] Error 1
make[1]: *** [xfixes.lo] Error 1
make: *** [all-recursive] Error 1
==> Error: Make fail
Last edited by SpeedVin (2009-07-31 14:02:05)

Similar Messages

  • [SOLVED] building xorg-server: libgl & nvidia-utils conflict

    Hello!
    I somehow feel like I'm totally missing the point, but...
    edit: although I think (not sure any more) this was the same procedure when I first compiled xorg-server, I maybe should mention, I'm now using the testing xorg.
    I still don't really understand, why I need libgl to build xorg-server. Aren't nvidia-utils supposed to replace that? Is there a way of building xorg-server with nvidia-utils instead of libgl and if yes: are there (dis-/) advantages doing so other than not having to uninstall nvidia-utils while compiling xorg-server?
    Or the other way around: Perhaps it's just me, but I feel "funny" having to remove something that's vital to my installation before I can compile something that's vital to my installation, too... so is it really OK to remove nvidia-utils and compile xorg-server without it or am I doing it wrong?
    Thank you for enlightening me
    Last edited by whoops (2009-04-07 02:20:51)

    Well AFAIK, The nVIDIA closed source drivers haven't caught up with xorg server 1.6 which is why you need libgl to build xorg-xserver 1.6+. I personally perfer the open source drivers over Fglrx (FireGL and Radeon X) and the closed source nVIDIA drivers as well.
    edit: xorg server is 1.6 in testing so if you want to compile from source, and have the closed source nvidia drivers, you would need to compile xorg server 1.5.XX
    P.S. You cannot have both, the nvidia drivers and the open source drivers (libgl), running at the same time which is why the nvidia-* packages are to be removed.
    Cheers!
    Last edited by Neo_The_User (2009-03-30 16:53:28)

  • [SOLVED] Trouble Building Xorg-Server 1.6.1-1 (Modified PKGBUILD)

    ever since the release of xorg-server 1.5.3, i've been using a modified
    PKGBUILD to build xorg-server sans hal and dbus.  (not gonna try
    justifying it again; that'd just lead to yet another flame war.)
    i've never had a problem until the 1.6.1-1 PKGBUILD, which adds the lines:
    libtoolize --force || return 1
    aclocal || return 1
    autoconf || return 1
    automake --add-missing || return 1
    after applying patches and before running the configure.  these added lines produce:
    libtoolize: putting auxiliary files in `.'.
    libtoolize: linking file `./ltmain.sh'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros
    in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    hw/dmx/doc/Makefile.am:24: BUILD_LINUXDOC does not appear in AM_CONDITIONAL
    hw/dmx/doc/Makefile.am:27: BUILD_PDFDOC does not appear in AM_CONDITIONAL
    hw/xfree86/doc/sgml/Makefile.am:24: BUILD_LINUXDOC does not appear in
    AM_CONDITIONAL
    hw/xfree86/doc/sgml/Makefile.am:27: BUILD_PDFDOC does not appear in
    AM_CONDITIONAL
    ==> ERROR: Build Failed.
    Aborting...
    my modified PKGBUILD is build.  please note that i *have* tried
    reverting my changes (the commented patches), to no avail.
    as i'm pretty clueless vis-a-vis makefiles and the autoconf system,
    could somehow point me in the direction of a fix?
    many thanks,
    kludge
    # $Id: PKGBUILD 21903 2008-12-17 20:32:54Z jgc $
    # Maintainer: Alexander Baldeck <[email protected]>
    # Contributor: Jan de Groot <[email protected]>
    pkgname=xorg-server
    pkgver=1.6.1
    pkgrel=1
    pkgdesc="X.Org X servers"
    arch=('i686' 'x86_64')
    license=('custom')
    url="http://xorg.freedesktop.org"
    depends=('libgl' 'libxfont>=1.4.0' 'openssl>=0.9.8j' 'libpciaccess>=0.10.5' 'libxv>=1.0.4' 'pixman>=0.14.0' 'xcursor-themes' 'xkeyboard-config>=1.5' 'xorg-server-utils' 'xorg-fonts-misc' 'xbitmaps' 'diffutils')
    makedepends=('libx11>=1.2' 'mesa>=7.4' 'xf86driproto>=2.0.4' 'xtrans>=1.2.3' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'renderproto>=0.9.3' 'xcmiscproto>=1.1.2' 'bigreqsproto>=1.0.2' 'resourceproto>=1.0.2' 'videoproto>=2.2.2' 'compositeproto>=0.4' 'scrnsaverproto>=1.1.0' 'libxinerama>=1.0.3' 'xf86dgaproto>=2.0.3' 'recordproto>=1.13.2' 'libgl>=7.4' 'glproto>=1.4.9')
    #optdepends=( 'xf86-input-evdev: to provide input device hotplugging'
    # 'hal>=0.5.11: to provide input devices for hotplugging' )
    options=('!libtool')
    provides=('x-server' ) # 'xorg-server')
    conflicts=('catalyst-utils<=9.2')
    groups=('xorg')
    install=xorg-server.install
    source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2
    xorg-redhat-die-ugly-pattern-die-die-die.patch
    hal-wait.patch)
    md5sums=('ed0878bf32a24d4948c3b8a122a39eff'
    '1a336eb22e27cbf443ec5a2ecddfa93c'
    'f16d2caef84e1a9c4075b6c5e145512d')
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    # Get rid of the ugly pattern
    patch -Np3 -i "${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch" || return 1
    # Fix dbus config path - removed b/c no dbus config'd
    # sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    # Revert waiting for hal, assume hal won't show up when initial connect fails
    # commented out b/c no hal config'd
    # patch -R -Np1 -i "${srcdir}/hal-wait.patch" || return 1
    libtoolize --force || return 1
    aclocal || return 1
    autoconf || return 1
    automake --add-missing || return 1
    # --enable-config-{dbus,hal} switched to --disable
    # to disable hotplugging and dependencies
    ./configure --prefix=/usr \
    --enable-ipv6 \
    --enable-dri \
    --disable-dmx \
    --enable-xvfb \
    --enable-xnest \
    --enable-composite \
    --enable-xcsecurity \
    --enable-xorg \
    --enable-xephyr \
    --enable-glx-tls \
    --enable-kdrive \
    --enable-install-setuid \
    --disable-config-hal \
    --disable-config-dbus \
    --enable-record \
    --disable-xfbdev \
    --disable-xfake \
    --disable-xsdl \
    --disable-static \
    --sysconfdir=/etc/X11 \
    --localstatedir=/var \
    --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1 \
    --with-xkb-path=/usr/share/X11/xkb \
    --with-xkb-output=/var/lib/xkb \
    --with-dri-driver-path=/usr/lib/xorg/modules/dri || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    rm -rf "${pkgdir}/var/log" || return 1
    install -m755 -d "${pkgdir}/etc/X11" || return 1
    install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    # Needed for non-mesa drivers, libgl will restore it
    mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    Last edited by kludge (2009-05-01 17:25:39)

    Not any help to your error but have you tried the one in aur with disabled dbus and hal?
    I've been using it for a week or so with no problems and it built fine.
    http://aur.archlinux.org/packages.php?ID=23750

  • [SOLVED] Can't build 'crystalhd-git' package

    Hi
    I've bought  Broadcom  BCM70012 Video Decoder [Crystal HD] today. I'm trying to compile driver for this device. I need to compile two packages.
    1. libcrystalhd-git
    2. crystalhd-git
    Libcrytstalhd-git compiles just fine, no errors. But I can't build the driver crystalhd-git . Here is the output :
    make -C /lib/modules/2.6.39-ARCH/build SUBDIRS=/tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux modules
    make[1]: Wejście do katalogu `/usr/src/linux-2.6.39-ARCH'
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_lnx.o
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_misc.o
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_cmds.o
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_hw.o
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_hw.c: In function ‘crystalhd_hw_post_tx’:
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_hw.c:719:21: warning: variable ‘high_addr’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_hw.c:719:11: warning: variable ‘low_addr’ set but not used [-Wunused-but-set-variable]
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_linkfuncs.o
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.o
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.c: In function ‘crystalhd_flea_init_dram’:
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.c:171:42: warning: variable ‘sd_1_row_size’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.c:171:26: warning: variable ‘sd_1_bank_size’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.c:171:11: warning: variable ‘sd_1_col_size’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.c: In function ‘crystalhd_flea_set_power_state’:
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_fleafuncs.c:847:12: warning: variable ‘sts’ set but not used [-Wunused-but-set-variable]
    CC [M] /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.o
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c: In function ‘crystalhd_flea_ddr_pll_config’:
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c:152:5: error: implicit declaration of function ‘msleep_interruptible’ [-Werror=implicit-function-declaration]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c: In function ‘crystalhd_flea_ddr_ctrl_init’:
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c:324:10: warning: variable ‘DQ_IDLE_MODE’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c:323:10: warning: variable ‘CTL_IDLE_MODE’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c:322:10: warning: variable ‘DM_IDLE_MODE’ set but not used [-Wunused-but-set-variable]
    /tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.c:320:10: warning: variable ‘DQ_WIDTH’ set but not used [-Wunused-but-set-variable]
    cc1: some warnings being treated as errors
    make[2]: *** [/tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux/crystalhd_flea_ddr.o] Błąd 1
    make[1]: *** [_module_/tmp/yaourt-tmp-lukasz/aur-crystalhd-git/src/crystalhd/driver/linux] Błąd 2
    make[1]: Opuszczenie katalogu `/usr/src/linux-2.6.39-ARCH'
    make: *** [all] Błąd 2
    ==> BŁĄD: Wystąpił błąd w build().
    Przerywam...
    ==> ERROR: Makepkg was unable to build .
    ==> Restart building crystalhd-git ? [y/N]
    ==> --------------------------------------
    ==>
    Last edited by lgolebio (2011-06-29 06:01:46)

    Try replacing `sed -i 's/'-Werror'/''/g' Makefile` with `sed -i 's/-Werror/-Wno-error=implicit-function-declaration/g' Makefile` in the PKGBUILD. This won't fix the warning but the package should build.

  • [SOLVED] Can't build pulseaudio-git from AUR

    Can't build complains about:
    pulseaudio-dumpmodules.o: In function `pa_dump_modules':
    dumpmodules.c:(.text+0x163): undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    dumpmodules.c:(.text+0x168): undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    pulseaudio-dumpmodules.o: In function `callback':
    dumpmodules.c:(.text+0x2d4): undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    dumpmodules.c:(.text+0x2de): undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    pulseaudio-main.o: In function `main':
    main.c:(.text+0x6ae): undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    collect2: ld returned 1 exit status
    On the git-shortlog it seems like he just prepped test7 so I imagine it is building for others... googling brought up something about libtool 1.5 vs 2.2 mismatch, but they were directed at 0.9.14 or older PA versions. Any suggestions are welcomed.
    Last edited by ugkbunb (2009-04-11 14:26:33)

    I just tried to compile pulseaudio 0.9.14 from the pulseaudio website on arch x86_64.
    In my /etc/makepkg.conf I have CHOST="x86_64-unknown-linux-gnu" So i don't think its the problem
    All of this is in reponse to the error message when running sudo /etc/rc.d/pulseaudio start
       /usr/bin/pulseaudio: error while loading shared libraries: libcap.so.1: cannot open shared object file: No such file or directory
    Also note that
    http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
    says that pulseaudio needs a rebuild because of a new version of libtool
    I get the following error running make for pulseaudio:
    /home/savagenator/SVN/pulseaudio-0.9.14/src/daemon/dumpmodules.c:139: undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    /home/savagenator/SVN/pulseaudio-0.9.14/src/daemon/dumpmodules.c:134: undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    pulseaudio-dumpmodules.o: In function `is_preloaded':
    /home/savagenator/SVN/pulseaudio-0.9.14/src/daemon/dumpmodules.c:96: undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    /home/savagenator/SVN/pulseaudio-0.9.14/src/daemon/dumpmodules.c:96: undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    pulseaudio-main.o: In function `main':
    /home/savagenator/SVN/pulseaudio-0.9.14/src/daemon/main.c:575: undefined reference to `lt__PROGRAM__LTX_preloaded_symbols'
    collect2: ld returned 1 exit status

  • Can't start Xorg server using "startx"[SOLVED]

    Hi, I've just reinstalled arch on my netbook...And I get this weird problems...
    1. I cant start the Xorg server, it only shows this:
    /usr/bin/startx: line 196: xauth: command not found
    2. Also when I install packages, it shows this for example:
    /tmp/alpm_VkW1fs/.INSTALL: line 3: fc-cache: command not found
    All of the packages I install (DE,Xorg,Etc.) usually shows that...Maybe they are related...:(
    Thanks in advance...:)
    Last edited by kaola_linux (2009-02-04 17:38:48)

    Many times already I didn't encountered this type of problem before...I'm sorry
    What do I need to install for xauth?
    Btw, It's difficult to track problems for me coz I'm still in console and no DE yet..I'm just posting here using my Windows Desktop...:(
    Here other example when I reinstall xorg:
    /tmp/alpm_N5Yz97/.INSTALL: line 4: mkfontscale: command not found
    /tmp/alpm_N5Yz97/.INSTALL: line 5: mkfontdir: command not found
    Last edited by kaola_linux (2009-02-04 15:55:28)

  • Building xorg-server fails

    Hi everyone
    I think I'm having the same problems as this guy: https://bugs.freedesktop.org/show_bug.cgi?id=12509
    To make sure that the suggested patch (from here: https://bugs.freedesktop.org/show_bug.cgi?id=12858) is really working I tried to rebuild xorg-server.
    But I just get some strange errors and I can't figure out where they come from
    I did 'make' in the folder that failed during makepkg
    Here's the output: http://phpfi.com/277365
    My system is completely up to date (I also tried building it after the core-update but no success)
    I'd appreciate any help
    Thanks in advance
    XazZ

    Yep. it should work with --disable-config-hal .
    Btw, thats how the patch was really commited :
    http://gitweb.freedesktop.org/?p=xorg/x … 1b4c747727
    You should be able to download this link and use it as a patch directly.
    If it works, open a bug report on bugs.archlinux.org with a link to the upstream bug report 12858, and with the link above (the patch that was actually commited).

  • Unable to build xorg-server from abs

    Trying to makepkg xorg-server 1.13.1-1, however faults out with the following:
    /usr/include/X11/fonts/fontproto.h:48:13: note: previous declaration of 'remove_fs_handlers' was here
    In file included from main.c:102:0:
    ../include/dixfont.h:182:22: warning: redundant redeclaration of 'StoreFontClientFont' [-Wredundant-decls]
    In file included from /usr/include/X11/fonts/fontstruct.h:291:0,
    from ../include/dixfont.h:30,
    from main.c:102:
    /usr/include/X11/fonts/fontproto.h:61:12: note: previous declaration of 'StoreFontClientFont' was here
    main.c: In function 'main':
    main.c:140:13: warning: assignment discards 'const' qualifier from pointer target type [enabled by default]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    cc1: some warnings being treated as errors
    make[2]: *** [main.lo] Error 1
    make[2]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make: *** [all-recursive] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    My system is an AMD64 with a nvidia 9800GT using Arch x64 & nouveau driver.
    Would appreciate any help.

    Trying to makepkg xorg-server 1.13.1-1, however faults out with the following:
    /usr/include/X11/fonts/fontproto.h:48:13: note: previous declaration of 'remove_fs_handlers' was here
    In file included from main.c:102:0:
    ../include/dixfont.h:182:22: warning: redundant redeclaration of 'StoreFontClientFont' [-Wredundant-decls]
    In file included from /usr/include/X11/fonts/fontstruct.h:291:0,
    from ../include/dixfont.h:30,
    from main.c:102:
    /usr/include/X11/fonts/fontproto.h:61:12: note: previous declaration of 'StoreFontClientFont' was here
    main.c: In function 'main':
    main.c:140:13: warning: assignment discards 'const' qualifier from pointer target type [enabled by default]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    cc1: some warnings being treated as errors
    make[2]: *** [main.lo] Error 1
    make[2]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make: *** [all-recursive] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    My system is an AMD64 with a nvidia 9800GT using Arch x64 & nouveau driver.
    Would appreciate any help.

  • [SOLVED]Can't build dansguardian. Any alternative content filter?

    I can't build dansguardian in yaourt. Not sure what the problem is but here is the whole output of the build:
    ==> Starting build()...
    patching file src/downloadmanagers/fancy.cpp
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for g++... g++
    checking for C++ compiler default output file name... a.out
    checking whether the C++ compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking how to run the C++ preprocessor... g++ -E
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking arpa/inet.h usability... yes
    checking arpa/inet.h presence... yes
    checking for arpa/inet.h... yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking limits.h usability... yes
    checking limits.h presence... yes
    checking for limits.h... yes
    checking netdb.h usability... yes
    checking netdb.h presence... yes
    checking for netdb.h... yes
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/socket.h usability... yes
    checking sys/socket.h presence... yes
    checking for sys/socket.h... yes
    checking sys/time.h usability... yes
    checking sys/time.h presence... yes
    checking for sys/time.h... yes
    checking syslog.h usability... yes
    checking syslog.h presence... yes
    checking for syslog.h... yes
    checking for unistd.h... (cached) yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for sys/types.h... (cached) yes
    checking sys/un.h usability... yes
    checking sys/un.h presence... yes
    checking for sys/un.h... yes
    checking sys/poll.h usability... yes
    checking sys/poll.h presence... yes
    checking for sys/poll.h... yes
    checking sys/resource.h usability... yes
    checking sys/resource.h presence... yes
    checking for sys/resource.h... yes
    checking pwd.h usability... yes
    checking pwd.h presence... yes
    checking for pwd.h... yes
    checking grp.h usability... yes
    checking grp.h presence... yes
    checking for grp.h... yes
    checking byteswap.h usability... yes
    checking byteswap.h presence... yes
    checking for byteswap.h... yes
    checking whether byte ordering is bigendian... no
    checking if zlib should be statically linked... no
    checking for zlib... checking zlib.h usability... yes
    checking zlib.h presence... yes
    checking for zlib.h... yes
    checking for gzdopen in -lz... yes
    yes
    checking for pid_t... yes
    checking for size_t... yes
    checking for off_t... yes
    checking for uid_t in sys/types.h... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for dup2... yes
    checking for gettimeofday... yes
    checking for memset... yes
    checking for select... yes
    checking for strerror... yes
    checking for strstr... yes
    checking for strtol... yes
    checking for setuid... yes
    checking for setgid... yes
    checking for umask... yes
    checking for seteuid... yes
    checking for setreuid... yes
    checking for setlocale... yes
    checking for library containing floor... none required
    checking for library containing gethostbyname... none required
    checking for library containing socket... none required
    checking for library containing inet_aton... none required
    checking for backside with both hands... no
    checking build os... checking build system type... x86_64-unknown-linux-gnu
    linux-gnu
    checking for debug option... no
    checking for proxy user... yes
    checking for proxy group... yes
    checking for piddir... no
    checking for logdir... no
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for PCRE support... yes
    checking for PCRE... yes
    checking for backtrace on segfault support... no
    checking for large file support... yes
    checking for original destination IP checking support... no
    checking for type collision with off_t... yes
    checking for libclamav support... no
    checking for clamd support... no
    checking for icap support... no
    checking for kavd support... no
    checking for command-line content scanner support... no
    checking for fancy download manager support... yes
    checking for trickle download manager support... no
    checking for NTLM support... no
    checking for email notification support... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating data/Makefile
    config.status: creating data/languages/Makefile
    config.status: creating data/scripts/Makefile
    config.status: creating data/scripts/bsd-init
    config.status: creating data/scripts/dansguardian
    config.status: creating data/scripts/logrotation
    config.status: creating data/scripts/solaris-init
    config.status: creating data/scripts/systemv-init
    config.status: creating doc/Makefile
    config.status: creating configs/dansguardian.conf
    config.status: creating configs/dansguardianf1.conf
    config.status: creating configs/Makefile
    config.status: creating configs/lists/Makefile
    config.status: creating configs/lists/phraselists/Makefile
    config.status: creating configs/lists/blacklists/Makefile
    config.status: creating configs/lists/contentscanners/Makefile
    config.status: creating configs/lists/weightedphraselist
    config.status: creating configs/lists/exceptionphraselist
    config.status: creating configs/lists/bannedphraselist
    config.status: creating configs/lists/bannedurllist
    config.status: creating configs/lists/bannedsitelist
    config.status: creating configs/downloadmanagers/Makefile
    config.status: creating configs/downloadmanagers/default.conf
    config.status: creating configs/downloadmanagers/fancy.conf
    config.status: creating configs/downloadmanagers/trickle.conf
    config.status: creating configs/contentscanners/Makefile
    config.status: creating configs/contentscanners/clamav.conf
    config.status: creating configs/contentscanners/clamdscan.conf
    config.status: creating configs/contentscanners/icapscan.conf
    config.status: creating configs/contentscanners/kavav.conf
    config.status: creating configs/contentscanners/kavdscan.conf
    config.status: creating configs/contentscanners/commandlinescan.conf
    config.status: creating configs/authplugins/Makefile
    config.status: creating configs/authplugins/ip.conf
    config.status: creating configs/lists/authplugins/Makefile
    config.status: creating configs/lists/downloadmanagers/Makefile
    config.status: creating src/Makefile
    config.status: creating dgconfig.h
    config.status: executing depfiles commands
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    Making all in doc
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    Making all in .
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    Making all in data
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making all in languages
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    Making all in .
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making all in scripts
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making all in configs
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    Making all in lists
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making all in phraselists
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making all in blacklists
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/blacklists'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/blacklists'
    Making all in authplugins
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    Making all in .
    make[5]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    Making all in downloadmanagers
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    Making all in .
    make[5]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making all in downloadmanagers
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    Making all in authplugins
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    Making all in .
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    Making all in src
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/src'
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-String.o -MD -MP -MF .deps/dansguardian-String.Tpo -c -o dansguardian-String.o `test -f 'String.cpp' || echo './'`String.cpp
    mv -f .deps/dansguardian-String.Tpo .deps/dansguardian-String.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FDTunnel.o -MD -MP -MF .deps/dansguardian-FDTunnel.Tpo -c -o dansguardian-FDTunnel.o `test -f 'FDTunnel.cpp' || echo './'`FDTunnel.cpp
    mv -f .deps/dansguardian-FDTunnel.Tpo .deps/dansguardian-FDTunnel.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ConnectionHandler.o -MD -MP -MF .deps/dansguardian-ConnectionHandler.Tpo -c -o dansguardian-ConnectionHandler.o `test -f 'ConnectionHandler.cpp' || echo './'`ConnectionHandler.cpp
    mv -f .deps/dansguardian-ConnectionHandler.Tpo .deps/dansguardian-ConnectionHandler.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DataBuffer.o -MD -MP -MF .deps/dansguardian-DataBuffer.Tpo -c -o dansguardian-DataBuffer.o `test -f 'DataBuffer.cpp' || echo './'`DataBuffer.cpp
    mv -f .deps/dansguardian-DataBuffer.Tpo .deps/dansguardian-DataBuffer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-HTTPHeader.o -MD -MP -MF .deps/dansguardian-HTTPHeader.Tpo -c -o dansguardian-HTTPHeader.o `test -f 'HTTPHeader.cpp' || echo './'`HTTPHeader.cpp
    mv -f .deps/dansguardian-HTTPHeader.Tpo .deps/dansguardian-HTTPHeader.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-NaughtyFilter.o -MD -MP -MF .deps/dansguardian-NaughtyFilter.Tpo -c -o dansguardian-NaughtyFilter.o `test -f 'NaughtyFilter.cpp' || echo './'`NaughtyFilter.cpp
    mv -f .deps/dansguardian-NaughtyFilter.Tpo .deps/dansguardian-NaughtyFilter.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-RegExp.o -MD -MP -MF .deps/dansguardian-RegExp.Tpo -c -o dansguardian-RegExp.o `test -f 'RegExp.cpp' || echo './'`RegExp.cpp
    mv -f .deps/dansguardian-RegExp.Tpo .deps/dansguardian-RegExp.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FDFuncs.o -MD -MP -MF .deps/dansguardian-FDFuncs.Tpo -c -o dansguardian-FDFuncs.o `test -f 'FDFuncs.cpp' || echo './'`FDFuncs.cpp
    mv -f .deps/dansguardian-FDFuncs.Tpo .deps/dansguardian-FDFuncs.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-BaseSocket.o -MD -MP -MF .deps/dansguardian-BaseSocket.Tpo -c -o dansguardian-BaseSocket.o `test -f 'BaseSocket.cpp' || echo './'`BaseSocket.cpp
    mv -f .deps/dansguardian-BaseSocket.Tpo .deps/dansguardian-BaseSocket.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-Socket.o -MD -MP -MF .deps/dansguardian-Socket.Tpo -c -o dansguardian-Socket.o `test -f 'Socket.cpp' || echo './'`Socket.cpp
    mv -f .deps/dansguardian-Socket.Tpo .deps/dansguardian-Socket.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FatController.o -MD -MP -MF .deps/dansguardian-FatController.Tpo -c -o dansguardian-FatController.o `test -f 'FatController.cpp' || echo './'`FatController.cpp
    FatController.cpp: In function ‘int ip_list_listener(std::string, bool)’:
    FatController.cpp:1588:65: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
    FatController.cpp: In function ‘bool daemonise()’:
    FatController.cpp:309:12: warning: ignoring return value of ‘int chdir(const char*)’, declared with attribute warn_unused_result [-Wunused-result]
    mv -f .deps/dansguardian-FatController.Tpo .deps/dansguardian-FatController.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-UDSocket.o -MD -MP -MF .deps/dansguardian-UDSocket.Tpo -c -o dansguardian-UDSocket.o `test -f 'UDSocket.cpp' || echo './'`UDSocket.cpp
    mv -f .deps/dansguardian-UDSocket.Tpo .deps/dansguardian-UDSocket.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-SysV.o -MD -MP -MF .deps/dansguardian-SysV.Tpo -c -o dansguardian-SysV.o `test -f 'SysV.cpp' || echo './'`SysV.cpp
    mv -f .deps/dansguardian-SysV.Tpo .deps/dansguardian-SysV.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ListContainer.o -MD -MP -MF .deps/dansguardian-ListContainer.Tpo -c -o dansguardian-ListContainer.o `test -f 'ListContainer.cpp' || echo './'`ListContainer.cpp
    mv -f .deps/dansguardian-ListContainer.Tpo .deps/dansguardian-ListContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-Auth.o -MD -MP -MF .deps/dansguardian-Auth.Tpo -c -o dansguardian-Auth.o `test -f 'Auth.cpp' || echo './'`Auth.cpp
    mv -f .deps/dansguardian-Auth.Tpo .deps/dansguardian-Auth.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-HTMLTemplate.o -MD -MP -MF .deps/dansguardian-HTMLTemplate.Tpo -c -o dansguardian-HTMLTemplate.o `test -f 'HTMLTemplate.cpp' || echo './'`HTMLTemplate.cpp
    mv -f .deps/dansguardian-HTMLTemplate.Tpo .deps/dansguardian-HTMLTemplate.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-LanguageContainer.o -MD -MP -MF .deps/dansguardian-LanguageContainer.Tpo -c -o dansguardian-LanguageContainer.o `test -f 'LanguageContainer.cpp' || echo './'`LanguageContainer.cpp
    mv -f .deps/dansguardian-LanguageContainer.Tpo .deps/dansguardian-LanguageContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DynamicURLList.o -MD -MP -MF .deps/dansguardian-DynamicURLList.Tpo -c -o dansguardian-DynamicURLList.o `test -f 'DynamicURLList.cpp' || echo './'`DynamicURLList.cpp
    mv -f .deps/dansguardian-DynamicURLList.Tpo .deps/dansguardian-DynamicURLList.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DynamicIPList.o -MD -MP -MF .deps/dansguardian-DynamicIPList.Tpo -c -o dansguardian-DynamicIPList.o `test -f 'DynamicIPList.cpp' || echo './'`DynamicIPList.cpp
    mv -f .deps/dansguardian-DynamicIPList.Tpo .deps/dansguardian-DynamicIPList.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ImageContainer.o -MD -MP -MF .deps/dansguardian-ImageContainer.Tpo -c -o dansguardian-ImageContainer.o `test -f 'ImageContainer.cpp' || echo './'`ImageContainer.cpp
    mv -f .deps/dansguardian-ImageContainer.Tpo .deps/dansguardian-ImageContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-IPList.o -MD -MP -MF .deps/dansguardian-IPList.Tpo -c -o dansguardian-IPList.o `test -f 'IPList.cpp' || echo './'`IPList.cpp
    mv -f .deps/dansguardian-IPList.Tpo .deps/dansguardian-IPList.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-OptionContainer.o -MD -MP -MF .deps/dansguardian-OptionContainer.Tpo -c -o dansguardian-OptionContainer.o `test -f 'OptionContainer.cpp' || echo './'`OptionContainer.cpp
    mv -f .deps/dansguardian-OptionContainer.Tpo .deps/dansguardian-OptionContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FOptionContainer.o -MD -MP -MF .deps/dansguardian-FOptionContainer.Tpo -c -o dansguardian-FOptionContainer.o `test -f 'FOptionContainer.cpp' || echo './'`FOptionContainer.cpp
    mv -f .deps/dansguardian-FOptionContainer.Tpo .deps/dansguardian-FOptionContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ListManager.o -MD -MP -MF .deps/dansguardian-ListManager.Tpo -c -o dansguardian-ListManager.o `test -f 'ListManager.cpp' || echo './'`ListManager.cpp
    mv -f .deps/dansguardian-ListManager.Tpo .deps/dansguardian-ListManager.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-md5.o -MD -MP -MF .deps/dansguardian-md5.Tpo -c -o dansguardian-md5.o `test -f 'md5.cpp' || echo './'`md5.cpp
    mv -f .deps/dansguardian-md5.Tpo .deps/dansguardian-md5.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DownloadManager.o -MD -MP -MF .deps/dansguardian-DownloadManager.Tpo -c -o dansguardian-DownloadManager.o `test -f 'DownloadManager.cpp' || echo './'`DownloadManager.cpp
    mv -f .deps/dansguardian-DownloadManager.Tpo .deps/dansguardian-DownloadManager.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ConfigVar.o -MD -MP -MF .deps/dansguardian-ConfigVar.Tpo -c -o dansguardian-ConfigVar.o `test -f 'ConfigVar.cpp' || echo './'`ConfigVar.cpp
    mv -f .deps/dansguardian-ConfigVar.Tpo .deps/dansguardian-ConfigVar.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ContentScanner.o -MD -MP -MF .deps/dansguardian-ContentScanner.Tpo -c -o dansguardian-ContentScanner.o `test -f 'ContentScanner.cpp' || echo './'`ContentScanner.cpp
    mv -f .deps/dansguardian-ContentScanner.Tpo .deps/dansguardian-ContentScanner.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-SocketArray.o -MD -MP -MF .deps/dansguardian-SocketArray.Tpo -c -o dansguardian-SocketArray.o `test -f 'SocketArray.cpp' || echo './'`SocketArray.cpp
    mv -f .deps/dansguardian-SocketArray.Tpo .deps/dansguardian-SocketArray.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-dansguardian.o -MD -MP -MF .deps/dansguardian-dansguardian.Tpo -c -o dansguardian-dansguardian.o `test -f 'dansguardian.cpp' || echo './'`dansguardian.cpp
    mv -f .deps/dansguardian-dansguardian.Tpo .deps/dansguardian-dansguardian.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-default.o -MD -MP -MF .deps/dansguardian-default.Tpo -c -o dansguardian-default.o `test -f 'downloadmanagers/default.cpp' || echo './'`downloadmanagers/default.cpp
    mv -f .deps/dansguardian-default.Tpo .deps/dansguardian-default.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-fancy.o -MD -MP -MF .deps/dansguardian-fancy.Tpo -c -o dansguardian-fancy.o `test -f 'downloadmanagers/fancy.cpp' || echo './'`downloadmanagers/fancy.cpp
    mv -f .deps/dansguardian-fancy.Tpo .deps/dansguardian-fancy.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-proxy.o -MD -MP -MF .deps/dansguardian-proxy.Tpo -c -o dansguardian-proxy.o `test -f 'authplugins/proxy.cpp' || echo './'`authplugins/proxy.cpp
    mv -f .deps/dansguardian-proxy.Tpo .deps/dansguardian-proxy.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ident.o -MD -MP -MF .deps/dansguardian-ident.Tpo -c -o dansguardian-ident.o `test -f 'authplugins/ident.cpp' || echo './'`authplugins/ident.cpp
    mv -f .deps/dansguardian-ident.Tpo .deps/dansguardian-ident.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ip.o -MD -MP -MF .deps/dansguardian-ip.Tpo -c -o dansguardian-ip.o `test -f 'authplugins/ip.cpp' || echo './'`authplugins/ip.cpp
    mv -f .deps/dansguardian-ip.Tpo .deps/dansguardian-ip.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-digest.o -MD -MP -MF .deps/dansguardian-digest.Tpo -c -o dansguardian-digest.o `test -f 'authplugins/digest.cpp' || echo './'`authplugins/digest.cpp
    mv -f .deps/dansguardian-digest.Tpo .deps/dansguardian-digest.Po
    g++ -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro -o dansguardian dansguardian-String.o dansguardian-FDTunnel.o dansguardian-ConnectionHandler.o dansguardian-DataBuffer.o dansguardian-HTTPHeader.o dansguardian-NaughtyFilter.o dansguardian-RegExp.o dansguardian-FDFuncs.o dansguardian-BaseSocket.o dansguardian-Socket.o dansguardian-FatController.o dansguardian-UDSocket.o dansguardian-SysV.o dansguardian-ListContainer.o dansguardian-Auth.o dansguardian-HTMLTemplate.o dansguardian-LanguageContainer.o dansguardian-DynamicURLList.o dansguardian-DynamicIPList.o dansguardian-ImageContainer.o dansguardian-IPList.o dansguardian-OptionContainer.o dansguardian-FOptionContainer.o dansguardian-ListManager.o dansguardian-md5.o dansguardian-DownloadManager.o dansguardian-ConfigVar.o dansguardian-ContentScanner.o dansguardian-SocketArray.o dansguardian-dansguardian.o dansguardian-default.o dansguardian-fancy.o dansguardian-proxy.o dansguardian-ident.o dansguardian-ip.o dansguardian-digest.o -lpcreposix -lpcre -lz
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/src'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    ==> Starting package()...
    Making install in doc
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[2]: Nothing to be done for `install-exec-am'.
    test -z "/usr/share/doc/dansguardian" || /usr/bin/mkdir -p "/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian"
    /usr/bin/install -c -m 644 'AuthPlugins' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/AuthPlugins'
    /usr/bin/install -c -m 644 'ContentScanners' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/ContentScanners'
    /usr/bin/install -c -m 644 'DownloadManagers' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/DownloadManagers'
    /usr/bin/install -c -m 644 'FAQ' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/FAQ'
    /usr/bin/install -c -m 644 'FAQ.html' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/FAQ.html'
    /usr/bin/install -c -m 644 'Plugins' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/Plugins'
    test -z "/usr/share/man/man8" || /usr/bin/mkdir -p "/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/man/man8"
    /usr/bin/install -c -m 644 'dansguardian.8' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/man/man8/dansguardian.8'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    Making install in .
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    Making install in data
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making install in languages
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[3]: Nothing to be done for `install-exec-am'.
    /usr/bin/install -c -m 644 ./czech/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/czech
    /usr/bin/install -c -m 644 ./czech/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/czech
    /usr/bin/install -c -m 644 ./czech/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/czech
    /usr/bin/install -c -m 644 ./hebrew/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hebrew
    /usr/bin/install -c -m 644 ./hebrew/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hebrew
    /usr/bin/install -c -m 644 ./hebrew/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hebrew
    /usr/bin/install -c -m 644 ./turkish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/turkish
    /usr/bin/install -c -m 644 ./turkish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/turkish
    /usr/bin/install -c -m 644 ./turkish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/turkish
    /usr/bin/install -c -m 644 ./bulgarian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/bulgarian
    /usr/bin/install -c -m 644 ./bulgarian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/bulgarian
    /usr/bin/install -c -m 644 ./bulgarian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/bulgarian
    /usr/bin/install -c -m 644 ./danish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/danish
    /usr/bin/install -c -m 644 ./danish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/danish
    /usr/bin/install -c -m 644 ./danish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/danish
    /usr/bin/install -c -m 644 ./indonesian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/indonesian
    /usr/bin/install -c -m 644 ./indonesian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/indonesian
    /usr/bin/install -c -m 644 ./indonesian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/indonesian
    /usr/bin/install -c -m 644 ./russian-1251/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-1251
    /usr/bin/install -c -m 644 ./russian-1251/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-1251
    /usr/bin/install -c -m 644 ./russian-1251/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-1251
    /usr/bin/install -c -m 644 ./ukenglish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ukenglish
    /usr/bin/install -c -m 644 ./ukenglish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ukenglish
    /usr/bin/install -c -m 644 ./ukenglish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ukenglish
    /usr/bin/install -c -m 644 ./chinesebig5/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesebig5
    /usr/bin/install -c -m 644 ./chinesebig5/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesebig5
    /usr/bin/install -c -m 644 ./chinesebig5/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesebig5
    /usr/bin/install -c -m 644 ./dutch/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/dutch
    /usr/bin/install -c -m 644 ./dutch/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/dutch
    /usr/bin/install -c -m 644 ./dutch/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/dutch
    /usr/bin/install -c -m 644 ./italian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/italian
    /usr/bin/install -c -m 644 ./italian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/italian
    /usr/bin/install -c -m 644 ./italian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/italian
    /usr/bin/install -c -m 644 ./russian-koi8-r/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-koi8-r
    /usr/bin/install -c -m 644 ./russian-koi8-r/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-koi8-r
    /usr/bin/install -c -m 644 ./russian-koi8-r/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-koi8-r
    /usr/bin/install -c -m 644 ./chinesegb2312/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesegb2312
    /usr/bin/install -c -m 644 ./chinesegb2312/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesegb2312
    /usr/bin/install -c -m 644 ./chinesegb2312/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesegb2312
    /usr/bin/install -c -m 644 ./french/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/french
    /usr/bin/install -c -m 644 ./french/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/french
    /usr/bin/install -c -m 644 ./french/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/french
    /usr/bin/install -c -m 644 ./lithuanian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/lithuanian
    /usr/bin/install -c -m 644 ./lithuanian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/lithuanian
    /usr/bin/install -c -m 644 ./lithuanian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/lithuanian
    /usr/bin/install -c -m 644 ./polish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/polish
    /usr/bin/install -c -m 644 ./polish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/polish
    /usr/bin/install -c -m 644 ./polish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/polish
    /usr/bin/install -c -m 644 ./slovak/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/slovak
    /usr/bin/install -c -m 644 ./slovak/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/slovak
    /usr/bin/install -c -m 644 ./slovak/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/slovak
    /usr/bin/install -c -m 644 ./german/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/german
    /usr/bin/install -c -m 644 ./german/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/german
    /usr/bin/install -c -m 644 ./german/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/german
    /usr/bin/install -c -m 644 ./portuguese/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/portuguese
    /usr/bin/install -c -m 644 ./portuguese/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/portuguese
    /usr/bin/install -c -m 644 ./portuguese/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/portuguese
    /usr/bin/install -c -m 644 ./swedish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/swedish
    /usr/bin/install -c -m 644 ./swedish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/swedish
    /usr/bin/install -c -m 644 ./swedish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/swedish
    /usr/bin/install -c -m 644 ./spanish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/spanish
    /usr/bin/install -c -m 644 ./spanish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/spanish
    /usr/bin/install -c -m 644 ./spanish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/spanish
    /usr/bin/install -c -m 644 ./hungarian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hungarian
    /usr/bin/install -c -m 644 ./hungarian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hungarian
    /usr/bin/install -c -m 644 ./hungarian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hungarian
    /usr/bin/install -c -m 644 ./ptbrazilian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ptbrazilian
    /usr/bin/install -c -m 644 ./ptbrazilian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ptbrazilian
    /usr/bin/install -c -m 644 ./ptbrazilian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ptbrazilian
    /usr/bin/install -c -m 644 ./japanese/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/japanese
    /usr/bin/install -c -m 644 ./japanese/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/japanese
    /usr/bin/install -c -m 644 ./japanese/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/japanese
    /usr/bin/install -c -m 644 ./malay/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/malay
    /usr/bin/install -c -m 644 ./malay/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/malay
    /usr/bin/install -c -m 644 ./malay/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/malay
    /usr/bin/install -c -m 644 ./mxspanish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/mxspanish
    /usr/bin/install -c -m 644 ./mxspanish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/mxspanish
    /usr/bin/install -c -m 644 ./mxspanish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/mxspanish
    /usr/bin/install -c -m 644 ./arspanish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/arspanish
    /usr/bin/install -c -m 644 ./arspanish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/arspanish
    /usr/bin/install -c -m 644 ./arspanish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/arspanish
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    Making install in .
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[3]: Nothing to be done for `install-exec-am'.
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian && \
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/var/log/dansguardian && \
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/var/run && \
    for l in transparent1x1.gif dansguardian.pl ; do \
    echo "/usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/$l"; \
    /usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/$l; \
    done
    /usr/bin/install -c -m 644 transparent1x1.gif /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/transparent1x1.gif
    /usr/bin/install -c -m 644 dansguardian.pl /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/dansguardian.pl
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making install in scripts
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    Making install in .
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[4]: Nothing to be done for `install-exec-am'.
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts && \
    for l in dansguardian logrotation bsd-init solaris-init systemv-init ; do \
    echo "/usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/$l"; \
    /usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/$l; \
    done
    /usr/bin/install -c -m 644 dansguardian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/dansguardian
    /usr/bin/install -c -m 644 logrotation /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/logrotation
    /usr/bin/install -c -m 644 bsd-init /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/bsd-init
    /usr/bin/install -c -m 644 solaris-init /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/solaris-init
    /usr/bin/install -c -m 644 systemv-init /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/systemv-init
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making install in configs
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    Making install in lists
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making install in phraselists
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    make[4]: Nothing to be done for `install-exec-am'.
    for l in badwords chat drugadvocacy gambling games goodphrases googlesearches gore illegaldrugs intolerance legaldrugs malware news nudism peer2peer personals pornography proxies sport violence warezhacking weapons webmail forums rta conspiracy domainsforsale idtheft safelabel travel upstreamfilter secretsocieties translation music; do \
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/$l && \
    for f in ./$l/weighted* ./$l/exception* ./$l/banned*; do \
    if test -f $f ; then \
    echo "/usr/bin/install -c -m 644 $f /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/$l"; \
    /usr/bin/install -c -m 644 $f /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/$l; \
    fi \
    done \
    done
    /usr/bin/install -c -m 644 ./badwords/weighted_dutch /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_french /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_german /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_spanish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./chat/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/chat
    /usr/bin/install -c -m 644 ./chat/weighted_italian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/chat
    /usr/bin/install -c -m 644 ./drugadvocacy/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/drugadvocacy
    /usr/bin/install -c -m 644 ./gambling/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./gambling/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./gambling/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./gambling/banned_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./games/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/games
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_danish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_dutch /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_malay /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_polish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_swedish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_news /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/exception /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/exception_email /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./googlesearches/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/googlesearches
    /usr/bin/install -c -m 644 ./gore/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gore
    /usr/bin/install -c -m 644 ./gore/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gore
    /usr/bin/install -c -m 644 ./illegaldrugs/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/illegaldrugs
    /usr/bin/install -c -m 644 ./illegaldrugs/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/illegaldrugs
    /usr/bin/install -c -m 644 ./illegaldrugs/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/illegaldrugs
    /usr/bin/install -c -m 644 ./intolerance/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/intolerance
    /usr/bin/install -c -m 644 ./intolerance/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/intolerance
    /usr/bin/install -c -m 644 ./intolerance/banned_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/intolerance
    /usr/bin/install -c -m 644 ./legaldrugs/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/legaldrugs
    /usr/bin/install -c -m 644 ./malware/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/malware
    /usr/bin/install -c -m 644 ./news/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/news
    /usr/bin/install -c -m 644 ./nudism/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/nudism
    /usr/bin/install -c -m 644 ./peer2peer/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/peer2peer
    /usr/bin/install -c -m 644 ./personals/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/personals
    /usr/bin/install -c -m 644 ./personals/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/personals
    /usr/bin/install -c -m 644 ./pornography/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_chinese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_danish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_dutch /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_french /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_german /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_italian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_japanese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_malay /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_norwegian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_polish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_russian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_spanish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_swedish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/banned_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./proxies/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/proxies
    /usr/bin/install -c -m 644 ./sport/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/sport
    /usr/bin/install -c -m 644 ./violence/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/violence
    /usr/bin/install -c -m 644 ./violence/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/violence
    /usr/bin/install -c -m 644 ./warezhacking/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/warezhacking
    /usr/bin/install -c -m 644 ./weapons/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/weapons
    /usr/bin/install -c -m 644 ./weapons/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/weapons
    /usr/bin/install -c -m 644 ./webmail/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/webmail
    /usr/bin/install -c -m 644 ./forums/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/forums
    /usr/bin/install -c -m 644 ./rta/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/rta
    /usr/bin/install -c -m 644 ./conspiracy/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/conspiracy
    /usr/bin/install -c -m 644 ./domainsforsale/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/domainsforsale
    /usr/bin/install -c -m 644 ./idtheft/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/idtheft
    /usr/bin/install -c -m 644 ./safelabel/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/safelabel
    /usr/bin/install -c -m 644 ./travel/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/travel
    /usr/bin/install -c -m 644 ./upstreamfilter/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/upstreamfilter
    /usr/bin/install -c -m 644 ./secretsocieties/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/secretsocieties
    /usr/bin/install -c -m 644 ./translation/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/translation
    /usr/bin/install -c -m 644 ./music/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/musi

    What about using OpenDNS content filtering instead?
    http://www.opendns.com/home-solutions/
    https://wiki.archlinux.org/index.php/OpenDNS

  • [Solved] Can't Build qBittorrent

    Hello all,
    On a fresh system running on [testing], I can't build qBittorrent from the AUR (https://aur.archlinux.org/packages/qbittorrent/).
    I made sure all dependencies are met, but every time I try to build the package I get the same error:
    torrentcreatorthread.cpp:(.text._ZN10libtorrent6detail13write_integerISt16ostream_iteratorIccSt11char_traitsIcEEEEiRT_x[_ZN10libtorrent6detail13write_integerISt16ostream_iteratorIccSt11char_traitsIcEEEEiRT_x]+0x2e): undefined reference to `libtorrent::detail::integer_to_str(char*, int, long long)'
    collect2: error: ld returned 1 exit status
    make[1]: *** [qbittorrent] Error 1
    make[1]: Leaving directory `/home/adamdagan/qbittorrent/src/qbittorrent-3.0.11/src'
    make: *** [sub-src-make_default] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    Full log is available here - http://pastebin.com/C5VDsvGj
    Thanks, Adam.
    Last edited by adam777 (2013-08-18 17:15:48)

    Also same problem on my package qlivebittorrent.
    It also use libtorrent-rasterbar - I think problem in this library.

  • [SOLVED] Can't build vboxdrv module

    I can't build vboxdrv module with latest kernel 2.6.32.When I run vbox_build_module, I get
    Makefile:152: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again. Stop.
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make: *** [all] Error 2
    but, when I run
    KERN_DIR=/usr/src/linux-2.6.32-ARCH vbox_build_module
    I get this error
    Makefile:179: *** Error: unable to find the include directory for your current Linux kernel. Specify KERN_INCL=<directory> and run Make again. Stop.
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make: *** [all] Error 2
    What is the problem here?
    Last edited by na12 (2009-12-31 09:26:34)

    Also using Virtualbox here and was able to build the modules against the new kernel using this procedure:
    Update kernel 31 --> 32
    install kernel26-headers (seems to me you have the wrong kernel-headers package)
    reboot
    rebuild mkinitcpio (KMS)
    reboot
    rebuild vbox modules
    modprobe them or reboot
    Last edited by ulukai (2009-12-31 08:38:07)

  • [SOLVED] Can't launch X server with nvidia card

    I am having difficulties setting up X on my computer. Hardware is Nvidia Geforce 970 GTX. I keep getting the error:
    modprobe: ERROR: could not insert 'nvidia': No such device
    (EE) Fatal server error: no screens found
    Here's some additional info. Help is much appreciated.
    lspci:
    00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
    00:14.0 USB controller: Intel Corporation 9 Series Chipset Family USB xHCI Controller
    00:16.0 Communication controller: Intel Corporation 9 Series Chipset Family ME Interface #1
    00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (2) I218-LM
    00:1a.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #2
    00:1b.0 Audio device: Intel Corporation 9 Series Chipset Family HD Audio Controller
    00:1c.0 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 1 (rev d0)
    00:1c.3 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 4 (rev d0)
    00:1c.4 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 5 (rev d0)
    00:1c.6 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 7 (rev d0)
    00:1d.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #1
    00:1f.0 ISA bridge: Intel Corporation 9 Series Chipset Family Z97 LPC Controller
    00:1f.2 SATA controller: Intel Corporation 9 Series Chipset Family SATA Controller [AHCI Mode]
    00:1f.3 SMBus: Intel Corporation 9 Series Chipset Family SMBus Controller
    01:00.0 PCI bridge: PLX Technology, Inc. PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch (rev ca)
    02:08.0 PCI bridge: PLX Technology, Inc. PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch (rev ca)
    02:10.0 PCI bridge: PLX Technology, Inc. PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch (rev ca)
    03:00.0 VGA compatible controller: NVIDIA Corporation GM204 [GeForce GTX 970] (rev a1)
    03:00.1 Audio device: NVIDIA Corporation GM204 High Definition Audio Controller (rev a1)
    06:00.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:01.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:02.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:03.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:04.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:05.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:06.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:07.0 PCI bridge: ASMedia Technology Inc. Device 1187
    0a:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 02)
    0d:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
    0e:00.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6315 Series Firewire Controller (rev 01)
    0f:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 02)
    10:00.0 USB controller: ASMedia Technology Inc. ASM1042A USB 3.0 Host Controller
    20-nvidia.conf:
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BusID "PCI:3:0:0"
    Option "NoLogo" "true"
    EndSection
    Xorg.0.log:
    [ 258.707]
    X.Org X Server 1.16.3
    Release Date: 2014-12-20
    [ 258.707] X Protocol Version 11, Revision 0
    [ 258.707] Build Operating System: Linux 3.18.1-1-ARCH x86_64
    [ 258.707] Current Operating System: Linux Bastet 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64
    [ 258.707] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda4 rw acpi=off
    [ 258.707] Build Date: 29 December 2014 01:09:58PM
    [ 258.707]
    [ 258.707] Current version of pixman: 0.32.6
    [ 258.707] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 258.707] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 258.707] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Dec 30 00:53:53 2014
    [ 258.707] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 258.707] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 258.707] (==) No Layout section. Using the first Screen section.
    [ 258.707] (==) No screen section available. Using defaults.
    [ 258.707] (**) |-->Screen "Default Screen Section" (0)
    [ 258.707] (**) | |-->Monitor "<default monitor>"
    [ 258.707] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 258.707] (**) | |-->Device "Device0"
    [ 258.707] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 258.707] (==) Automatically adding devices
    [ 258.707] (==) Automatically enabling devices
    [ 258.707] (==) Automatically adding GPU devices
    [ 258.708] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 258.708] Entry deleted from font path.
    [ 258.708] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 258.708] Entry deleted from font path.
    [ 258.708] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 258.708] Entry deleted from font path.
    [ 258.708] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 258.708] Entry deleted from font path.
    [ 258.708] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 258.708] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 258.708] Entry deleted from font path.
    [ 258.708] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 258.708] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 258.708] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 258.708] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 258.708] (II) Loader magic: 0x818d80
    [ 258.708] (II) Module ABI versions:
    [ 258.708] X.Org ANSI C Emulation: 0.4
    [ 258.708] X.Org Video Driver: 18.0
    [ 258.708] X.Org XInput driver : 21.0
    [ 258.708] X.Org Server Extension : 8.0
    [ 258.708] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 258.709] (--) PCI:*(0:3:0:0) 10de:13c2:1043:8508 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 258.709] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 258.709] (II) LoadModule: "glx"
    [ 258.709] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 258.714] (II) Module glx: vendor="NVIDIA Corporation"
    [ 258.714] compiled for 4.0.2, module version = 1.0.0
    [ 258.714] Module class: X.Org Server Extension
    [ 258.714] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 258.714] (II) LoadModule: "nvidia"
    [ 258.714] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 258.714] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 258.714] compiled for 4.0.2, module version = 1.0.0
    [ 258.714] Module class: X.Org Video Driver
    [ 258.714] (II) NVIDIA dlloader X Driver 343.36 Mon Dec 1 15:28:39 PST 2014
    [ 258.714] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 258.714] (++) using VT number 1
    [ 258.714] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 258.714] (II) Loading sub module "fb"
    [ 258.714] (II) LoadModule: "fb"
    [ 258.714] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 258.714] (II) Module fb: vendor="X.Org Foundation"
    [ 258.714] compiled for 1.16.3, module version = 1.0.0
    [ 258.714] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 258.714] (II) Loading sub module "wfb"
    [ 258.714] (II) LoadModule: "wfb"
    [ 258.714] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 258.715] (II) Module wfb: vendor="X.Org Foundation"
    [ 258.715] compiled for 1.16.3, module version = 1.0.0
    [ 258.715] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 258.715] (II) Loading sub module "ramdac"
    [ 258.715] (II) LoadModule: "ramdac"
    [ 258.715] (II) Module "ramdac" already built-in
    [ 258.779] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the
    [ 258.779] (EE) NVIDIA: system's kernel log for additional error messages and
    [ 258.779] (EE) NVIDIA: consult the NVIDIA README for details.
    [ 258.779] (EE) No devices detected.
    [ 258.779] (EE)
    Fatal server error:
    [ 258.779] (EE) no screens found(EE)
    [ 258.779] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 258.779] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 258.779] (EE)
    Last edited by Nepherte (2014-12-30 10:05:05)

    dmesg (check the last messages):
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.6-1-ARCH (builduser@foutrelis) (gcc version 4.9.2 (GCC) ) #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda4 rw acpi=off pci=biosirq
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000001000-0x0000000000057fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x0000000000090fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000091000-0x000000000009dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009e51ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009e520000-0x000000009e526fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009e527000-0x000000009e984fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009e985000-0x000000009edeffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009edf0000-0x00000000bd921fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd922000-0x00000000bdc8efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bdc8f000-0x00000000bdcaffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bdcb0000-0x00000000be1d8fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000be1d9000-0x00000000beffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000befff000-0x00000000beffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043effffff] usable
    [ 0.000000] PCI: Unknown option `biosirq'
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] e820: update [mem 0x9c598018-0x9c5b9a57] usable ==> usable
    [ 0.000000] extended physical RAM map:
    [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000001000-0x0000000000057fff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000008ffff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000090000-0x0000000000090fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000091000-0x000000000009dfff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000009c598017] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009c598018-0x000000009c5b9a57] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009c5b9a58-0x000000009e51ffff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009e520000-0x000000009e526fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x000000009e527000-0x000000009e984fff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009e985000-0x000000009edeffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x000000009edf0000-0x00000000bd921fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000bd922000-0x00000000bdc8efff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000bdc8f000-0x00000000bdcaffff] ACPI data
    [ 0.000000] reserve setup_data: [mem 0x00000000bdcb0000-0x00000000be1d8fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000be1d9000-0x00000000beffefff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000befff000-0x00000000beffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000043effffff] usable
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI 2.0=0xbdc95000 ACPI=0xbdc95000 SMBIOS=0xbef4e498
    [ 0.000000] efi: mem00: type=6, attr=0x800000000000000f, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000059000-0x0000000000090000) (0MB)
    [ 0.000000] efi: mem05: type=5, attr=0x800000000000000f, range=[0x0000000000090000-0x0000000000091000) (0MB)
    [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000000091000-0x000000000009e000) (0MB)
    [ 0.000000] efi: mem07: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f4f000) (15MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000001f4f000-0x000000007fcb9000) (2013MB)
    [ 0.000000] efi: mem11: type=2, attr=0xf, range=[0x000000007fcb9000-0x0000000080000000) (3MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000080000000-0x000000009ae13000) (430MB)
    [ 0.000000] efi: mem13: type=2, attr=0xf, range=[0x000000009ae13000-0x000000009af13000) (1MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x000000009af13000-0x000000009c598000) (22MB)
    [ 0.000000] efi: mem15: type=2, attr=0xf, range=[0x000000009c598000-0x000000009c5ba000) (0MB)
    [ 0.000000] efi: mem16: type=1, attr=0xf, range=[0x000000009c5ba000-0x000000009e520000) (31MB)
    [ 0.000000] efi: mem17: type=10, attr=0xf, range=[0x000000009e520000-0x000000009e527000) (0MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x000000009e527000-0x000000009e688000) (1MB)
    [ 0.000000] efi: mem19: type=3, attr=0xf, range=[0x000000009e688000-0x000000009e94a000) (2MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x000000009e94a000-0x000000009e94f000) (0MB)
    [ 0.000000] efi: mem21: type=3, attr=0xf, range=[0x000000009e94f000-0x000000009e953000) (0MB)
    [ 0.000000] efi: mem22: type=4, attr=0xf, range=[0x000000009e953000-0x000000009e968000) (0MB)
    [ 0.000000] efi: mem23: type=3, attr=0xf, range=[0x000000009e968000-0x000000009e97a000) (0MB)
    [ 0.000000] efi: mem24: type=4, attr=0xf, range=[0x000000009e97a000-0x000000009e985000) (0MB)
    [ 0.000000] efi: mem25: type=6, attr=0x800000000000000f, range=[0x000000009e985000-0x000000009edf0000) (4MB)
    [ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x000000009edf0000-0x000000009ee03000) (0MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x000000009ee03000-0x000000009ee07000) (0MB)
    [ 0.000000] efi: mem28: type=2, attr=0xf, range=[0x000000009ee07000-0x000000009ee12000) (0MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x000000009ee12000-0x00000000b903e000) (418MB)
    [ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000b903e000-0x00000000b919d000) (1MB)
    [ 0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b919d000-0x00000000b91ab000) (0MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000b91ab000-0x00000000b91c7000) (0MB)
    [ 0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b91c7000-0x00000000b91ce000) (0MB)
    [ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b91ce000-0x00000000b91fe000) (0MB)
    [ 0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b91fe000-0x00000000b9211000) (0MB)
    [ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b9211000-0x00000000b9292000) (0MB)
    [ 0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b9292000-0x00000000b92b7000) (0MB)
    [ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b92b7000-0x00000000b92d3000) (0MB)
    [ 0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b92d3000-0x00000000b92e0000) (0MB)
    [ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b92e0000-0x00000000b9315000) (0MB)
    [ 0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b9315000-0x00000000b9330000) (0MB)
    [ 0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b9330000-0x00000000b9375000) (0MB)
    [ 0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b9375000-0x00000000b9398000) (0MB)
    [ 0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b9398000-0x00000000b93cd000) (0MB)
    [ 0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b93cd000-0x00000000b93ea000) (0MB)
    [ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b93ea000-0x00000000b93f0000) (0MB)
    [ 0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b93f0000-0x00000000b9408000) (0MB)
    [ 0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b9408000-0x00000000b9455000) (0MB)
    [ 0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b9455000-0x00000000b947d000) (0MB)
    [ 0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b947d000-0x00000000b951b000) (0MB)
    [ 0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b951b000-0x00000000b9529000) (0MB)
    [ 0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b9529000-0x00000000b9545000) (0MB)
    [ 0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b9545000-0x00000000b954c000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b954c000-0x00000000b957a000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b957a000-0x00000000b958d000) (0MB)
    [ 0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b958d000-0x00000000b960f000) (0MB)
    [ 0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b960f000-0x00000000b9634000) (0MB)
    [ 0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b9634000-0x00000000b9651000) (0MB)
    [ 0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000b9651000-0x00000000b965e000) (0MB)
    [ 0.000000] efi: mem60: type=4, attr=0xf, range=[0x00000000b965e000-0x00000000b9692000) (0MB)
    [ 0.000000] efi: mem61: type=7, attr=0xf, range=[0x00000000b9692000-0x00000000b96ad000) (0MB)
    [ 0.000000] efi: mem62: type=4, attr=0xf, range=[0x00000000b96ad000-0x00000000b96f2000) (0MB)
    [ 0.000000] efi: mem63: type=7, attr=0xf, range=[0x00000000b96f2000-0x00000000b9715000) (0MB)
    [ 0.000000] efi: mem64: type=4, attr=0xf, range=[0x00000000b9715000-0x00000000b974c000) (0MB)
    [ 0.000000] efi: mem65: type=7, attr=0xf, range=[0x00000000b974c000-0x00000000b9769000) (0MB)
    [ 0.000000] efi: mem66: type=4, attr=0xf, range=[0x00000000b9769000-0x00000000b981e000) (0MB)
    [ 0.000000] efi: mem67: type=7, attr=0xf, range=[0x00000000b981e000-0x00000000b986b000) (0MB)
    [ 0.000000] efi: mem68: type=4, attr=0xf, range=[0x00000000b986b000-0x00000000b9898000) (0MB)
    [ 0.000000] efi: mem69: type=7, attr=0xf, range=[0x00000000b9898000-0x00000000b98a6000) (0MB)
    [ 0.000000] efi: mem70: type=4, attr=0xf, range=[0x00000000b98a6000-0x00000000b98c1000) (0MB)
    [ 0.000000] efi: mem71: type=7, attr=0xf, range=[0x00000000b98c1000-0x00000000b98c8000) (0MB)
    [ 0.000000] efi: mem72: type=4, attr=0xf, range=[0x00000000b98c8000-0x00000000b998d000) (0MB)
    [ 0.000000] efi: mem73: type=7, attr=0xf, range=[0x00000000b998d000-0x00000000b999f000) (0MB)
    [ 0.000000] efi: mem74: type=4, attr=0xf, range=[0x00000000b999f000-0x00000000b99d0000) (0MB)
    [ 0.000000] efi: mem75: type=7, attr=0xf, range=[0x00000000b99d0000-0x00000000b99d5000) (0MB)
    [ 0.000000] efi: mem76: type=4, attr=0xf, range=[0x00000000b99d5000-0x00000000b9a0f000) (0MB)
    [ 0.000000] efi: mem77: type=7, attr=0xf, range=[0x00000000b9a0f000-0x00000000b9a17000) (0MB)
    [ 0.000000] efi: mem78: type=4, attr=0xf, range=[0x00000000b9a17000-0x00000000b9ac9000) (0MB)
    [ 0.000000] efi: mem79: type=7, attr=0xf, range=[0x00000000b9ac9000-0x00000000b9ad3000) (0MB)
    [ 0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000b9ad3000-0x00000000b9c16000) (1MB)
    [ 0.000000] efi: mem81: type=7, attr=0xf, range=[0x00000000b9c16000-0x00000000b9c24000) (0MB)
    [ 0.000000] efi: mem82: type=4, attr=0xf, range=[0x00000000b9c24000-0x00000000b9c40000) (0MB)
    [ 0.000000] efi: mem83: type=7, attr=0xf, range=[0x00000000b9c40000-0x00000000b9c47000) (0MB)
    [ 0.000000] efi: mem84: type=4, attr=0xf, range=[0x00000000b9c47000-0x00000000b9c77000) (0MB)
    [ 0.000000] efi: mem85: type=7, attr=0xf, range=[0x00000000b9c77000-0x00000000b9c7c000) (0MB)
    [ 0.000000] efi: mem86: type=4, attr=0xf, range=[0x00000000b9c7c000-0x00000000b9d4e000) (0MB)
    [ 0.000000] efi: mem87: type=7, attr=0xf, range=[0x00000000b9d4e000-0x00000000b9d5b000) (0MB)
    [ 0.000000] efi: mem88: type=4, attr=0xf, range=[0x00000000b9d5b000-0x00000000b9d8d000) (0MB)
    [ 0.000000] efi: mem89: type=7, attr=0xf, range=[0x00000000b9d8d000-0x00000000b9d95000) (0MB)
    [ 0.000000] efi: mem90: type=4, attr=0xf, range=[0x00000000b9d95000-0x00000000b9fc0000) (2MB)
    [ 0.000000] efi: mem91: type=7, attr=0xf, range=[0x00000000b9fc0000-0x00000000b9fc7000) (0MB)
    [ 0.000000] efi: mem92: type=4, attr=0xf, range=[0x00000000b9fc7000-0x00000000ba0cd000) (1MB)
    [ 0.000000] efi: mem93: type=7, attr=0xf, range=[0x00000000ba0cd000-0x00000000ba0da000) (0MB)
    [ 0.000000] efi: mem94: type=4, attr=0xf, range=[0x00000000ba0da000-0x00000000ba288000) (1MB)
    [ 0.000000] efi: mem95: type=7, attr=0xf, range=[0x00000000ba288000-0x00000000ba293000) (0MB)
    [ 0.000000] efi: mem96: type=4, attr=0xf, range=[0x00000000ba293000-0x00000000ba341000) (0MB)
    [ 0.000000] efi: mem97: type=7, attr=0xf, range=[0x00000000ba341000-0x00000000ba348000) (0MB)
    [ 0.000000] efi: mem98: type=4, attr=0xf, range=[0x00000000ba348000-0x00000000ba40c000) (0MB)
    [ 0.000000] efi: mem99: type=7, attr=0xf, range=[0x00000000ba40c000-0x00000000ba416000) (0MB)
    [ 0.000000] efi: mem100: type=4, attr=0xf, range=[0x00000000ba416000-0x00000000ba44f000) (0MB)
    [ 0.000000] efi: mem101: type=7, attr=0xf, range=[0x00000000ba44f000-0x00000000ba45c000) (0MB)
    [ 0.000000] efi: mem102: type=4, attr=0xf, range=[0x00000000ba45c000-0x00000000ba821000) (3MB)
    [ 0.000000] efi: mem103: type=7, attr=0xf, range=[0x00000000ba821000-0x00000000ba822000) (0MB)
    [ 0.000000] efi: mem104: type=4, attr=0xf, range=[0x00000000ba822000-0x00000000ba8da000) (0MB)
    [ 0.000000] efi: mem105: type=7, attr=0xf, range=[0x00000000ba8da000-0x00000000ba8dc000) (0MB)
    [ 0.000000] efi: mem106: type=4, attr=0xf, range=[0x00000000ba8dc000-0x00000000baa8c000) (1MB)
    [ 0.000000] efi: mem107: type=7, attr=0xf, range=[0x00000000baa8c000-0x00000000baa91000) (0MB)
    [ 0.000000] efi: mem108: type=4, attr=0xf, range=[0x00000000baa91000-0x00000000bab22000) (0MB)
    [ 0.000000] efi: mem109: type=7, attr=0xf, range=[0x00000000bab22000-0x00000000bab23000) (0MB)
    [ 0.000000] efi: mem110: type=4, attr=0xf, range=[0x00000000bab23000-0x00000000baba2000) (0MB)
    [ 0.000000] efi: mem111: type=7, attr=0xf, range=[0x00000000baba2000-0x00000000baba3000) (0MB)
    [ 0.000000] efi: mem112: type=4, attr=0xf, range=[0x00000000baba3000-0x00000000bac04000) (0MB)
    [ 0.000000] efi: mem113: type=7, attr=0xf, range=[0x00000000bac04000-0x00000000bac07000) (0MB)
    [ 0.000000] efi: mem114: type=4, attr=0xf, range=[0x00000000bac07000-0x00000000bac5c000) (0MB)
    [ 0.000000] efi: mem115: type=7, attr=0xf, range=[0x00000000bac5c000-0x00000000bac5e000) (0MB)
    [ 0.000000] efi: mem116: type=4, attr=0xf, range=[0x00000000bac5e000-0x00000000baef6000) (2MB)
    [ 0.000000] efi: mem117: type=7, attr=0xf, range=[0x00000000baef6000-0x00000000baf04000) (0MB)
    [ 0.000000] efi: mem118: type=4, attr=0xf, range=[0x00000000baf04000-0x00000000baf2a000) (0MB)
    [ 0.000000] efi: mem119: type=7, attr=0xf, range=[0x00000000baf2a000-0x00000000baf30000) (0MB)
    [ 0.000000] efi: mem120: type=4, attr=0xf, range=[0x00000000baf30000-0x00000000baf4a000) (0MB)
    [ 0.000000] efi: mem121: type=7, attr=0xf, range=[0x00000000baf4a000-0x00000000baf4f000) (0MB)
    [ 0.000000] efi: mem122: type=4, attr=0xf, range=[0x00000000baf4f000-0x00000000bb3e4000) (4MB)
    [ 0.000000] efi: mem123: type=7, attr=0xf, range=[0x00000000bb3e4000-0x00000000bb3e6000) (0MB)
    [ 0.000000] efi: mem124: type=4, attr=0xf, range=[0x00000000bb3e6000-0x00000000bb3ed000) (0MB)
    [ 0.000000] efi: mem125: type=7, attr=0xf, range=[0x00000000bb3ed000-0x00000000bb3ef000) (0MB)
    [ 0.000000] efi: mem126: type=4, attr=0xf, range=[0x00000000bb3ef000-0x00000000bb3f5000) (0MB)
    [ 0.000000] efi: mem127: type=7, attr=0xf, range=[0x00000000bb3f5000-0x00000000bb3f8000) (0MB)
    [ 0.000000] efi: mem128: type=4, attr=0xf, range=[0x00000000bb3f8000-0x00000000bb40c000) (0MB)
    [ 0.000000] efi: mem129: type=7, attr=0xf, range=[0x00000000bb40c000-0x00000000bb410000) (0MB)
    [ 0.000000] efi: mem130: type=4, attr=0xf, range=[0x00000000bb410000-0x00000000bb445000) (0MB)
    [ 0.000000] efi: mem131: type=7, attr=0xf, range=[0x00000000bb445000-0x00000000bb448000) (0MB)
    [ 0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000bb448000-0x00000000bb462000) (0MB)
    [ 0.000000] efi: mem133: type=7, attr=0xf, range=[0x00000000bb462000-0x00000000bb464000) (0MB)
    [ 0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000bb464000-0x00000000bb469000) (0MB)
    [ 0.000000] efi: mem135: type=7, attr=0xf, range=[0x00000000bb469000-0x00000000bb46b000) (0MB)
    [ 0.000000] efi: mem136: type=4, attr=0xf, range=[0x00000000bb46b000-0x00000000bb473000) (0MB)
    [ 0.000000] efi: mem137: type=7, attr=0xf, range=[0x00000000bb473000-0x00000000bb474000) (0MB)
    [ 0.000000] efi: mem138: type=4, attr=0xf, range=[0x00000000bb474000-0x00000000bb489000) (0MB)
    [ 0.000000] efi: mem139: type=7, attr=0xf, range=[0x00000000bb489000-0x00000000bb48a000) (0MB)
    [ 0.000000] efi: mem140: type=4, attr=0xf, range=[0x00000000bb48a000-0x00000000bcf39000) (26MB)
    [ 0.000000] efi: mem141: type=7, attr=0xf, range=[0x00000000bcf39000-0x00000000bd015000) (0MB)
    [ 0.000000] efi: mem142: type=3, attr=0xf, range=[0x00000000bd015000-0x00000000bd922000) (9MB)
    [ 0.000000] efi: mem143: type=0, attr=0xf, range=[0x00000000bd922000-0x00000000bd9e4000) (0MB)
    [ 0.000000] efi: mem144: type=0, attr=0xf, range=[0x00000000bd9e4000-0x00000000bdc8f000) (2MB)
    [ 0.000000] efi: mem145: type=9, attr=0xf, range=[0x00000000bdc8f000-0x00000000bdc95000) (0MB)
    [ 0.000000] efi: mem146: type=9, attr=0xf, range=[0x00000000bdc95000-0x00000000bdcb0000) (0MB)
    [ 0.000000] efi: mem147: type=10, attr=0xf, range=[0x00000000bdcb0000-0x00000000bddb8000) (1MB)
    [ 0.000000] efi: mem148: type=10, attr=0xf, range=[0x00000000bddb8000-0x00000000be1d9000) (4MB)
    [ 0.000000] efi: mem149: type=6, attr=0x800000000000000f, range=[0x00000000be1d9000-0x00000000be488000) (2MB)
    [ 0.000000] efi: mem150: type=6, attr=0x800000000000000f, range=[0x00000000be488000-0x00000000beeaf000) (10MB)
    [ 0.000000] efi: mem151: type=6, attr=0x800000000000000f, range=[0x00000000beeaf000-0x00000000beeb2000) (0MB)
    [ 0.000000] efi: mem152: type=6, attr=0x800000000000000f, range=[0x00000000beeb2000-0x00000000bef50000) (0MB)
    [ 0.000000] efi: mem153: type=5, attr=0x800000000000000f, range=[0x00000000bef50000-0x00000000bef74000) (0MB)
    [ 0.000000] efi: mem154: type=5, attr=0x800000000000000f, range=[0x00000000bef74000-0x00000000befff000) (0MB)
    [ 0.000000] efi: mem155: type=4, attr=0xf, range=[0x00000000befff000-0x00000000bf000000) (0MB)
    [ 0.000000] efi: mem156: type=7, attr=0xf, range=[0x0000000100000000-0x000000043f000000) (13296MB)
    [ 0.000000] efi: mem157: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [ 0.000000] efi: mem158: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem159: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem160: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem161: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem162: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] SMBIOS 2.8 present.
    [ 0.000000] DMI: ASUS All Series/Z97-WS, BIOS 1204 07/07/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7C00000000 write-back
    [ 0.000000] 1 base 0400000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 0420000000 mask 7FF0000000 write-back
    [ 0.000000] 3 base 0430000000 mask 7FF8000000 write-back
    [ 0.000000] 4 base 0438000000 mask 7FFC000000 write-back
    [ 0.000000] 5 base 043C000000 mask 7FFE000000 write-back
    [ 0.000000] 6 base 043E000000 mask 7FFF000000 write-back
    [ 0.000000] 7 base 00C0000000 mask 7FC0000000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbf000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b2b000, 0x01b2bfff] PGTABLE
    [ 0.000000] BRK [0x01b2c000, 0x01b2cfff] PGTABLE
    [ 0.000000] BRK [0x01b2d000, 0x01b2dfff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43ee00000-0x43effffff]
    [ 0.000000] [mem 0x43ee00000-0x43effffff] page 2M
    [ 0.000000] BRK [0x01b2e000, 0x01b2efff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43c000000-0x43edfffff]
    [ 0.000000] [mem 0x43c000000-0x43edfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x43bffffff]
    [ 0.000000] [mem 0x400000000-0x43bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9e51ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x9e3fffff] page 2M
    [ 0.000000] [mem 0x9e400000-0x9e51ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9e527000-0x9e984fff]
    [ 0.000000] [mem 0x9e527000-0x9e5fffff] page 4k
    [ 0.000000] [mem 0x9e600000-0x9e7fffff] page 2M
    [ 0.000000] [mem 0x9e800000-0x9e984fff] page 4k
    [ 0.000000] BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9edf0000-0xbd921fff]
    [ 0.000000] [mem 0x9edf0000-0x9edfffff] page 4k
    [ 0.000000] [mem 0x9ee00000-0xbd7fffff] page 2M
    [ 0.000000] [mem 0xbd800000-0xbd921fff] page 4k
    [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbefff000-0xbeffffff]
    [ 0.000000] [mem 0xbefff000-0xbeffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x7fcb9000-0x7fffffff]
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043effffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43effffff]
    [ 0.000000] NODE_DATA [mem 0x43eff8000-0x43effbfff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042e600000-ffff88043e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43effffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00057fff]
    [ 0.000000] node 0: [mem 0x00059000-0x0008ffff]
    [ 0.000000] node 0: [mem 0x00091000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x9e51ffff]
    [ 0.000000] node 0: [mem 0x9e527000-0x9e984fff]
    [ 0.000000] node 0: [mem 0x9edf0000-0xbd921fff]
    [ 0.000000] node 0: [mem 0xbefff000-0xbeffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x43effffff]
    [ 0.000000] On node 0 totalpages: 4179020
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3995 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12051 pages used for memmap
    [ 0.000000] DMA32 zone: 771249 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53184 pages used for memmap
    [ 0.000000] Normal zone: 3403776 pages, LIFO batch:31
    [ 0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org
    [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00090000-0x00090fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9c598000-0x9c598fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9c5b9000-0x9c5b9fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9e520000-0x9e526fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9e985000-0x9edeffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd922000-0xbdc8efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdc8f000-0xbdcaffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdcb0000-0xbe1d8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbe1d9000-0xbeffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf000000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xbf000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043ec00000 s82752 r8192 d23744 u2097152
    [ 0.000000] pcpu-alloc: s82752 r8192 d23744 u2097152 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4113700
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda4 rw acpi=off pci=biosirq
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 16297060K/16716080K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 419020K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
    [ 0.000000] NR_IRQS:8448 nr_irqs:24 0
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 3598.042 MHz processor
    [ 0.000019] Calibrating delay loop (skipped), value calculated using timer frequency.. 7198.92 BogoMIPS (lpj=11993473)
    [ 0.000021] pid_max: default: 32768 minimum: 301
    [ 0.001187] Security Framework initialized
    [ 0.001191] Yama: becoming mindful.
    [ 0.001802] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003720] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004536] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004547] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004689] Initializing cgroup subsys memory
    [ 0.004693] Initializing cgroup subsys devices
    [ 0.004694] Initializing cgroup subsys freezer
    [ 0.004695] Initializing cgroup subsys net_cls
    [ 0.004696] Initializing cgroup subsys blkio
    [ 0.004710] CPU: Physical Processor ID: 0
    [ 0.004711] CPU: Processor Core ID: 0
    [ 0.004713] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005425] mce: CPU supports 9 MCE banks
    [ 0.005435] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005443] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    [ 0.007800] Freeing SMP alternatives memory: 20K (ffffffff819fe000 - ffffffff81a03000)
    [ 0.009280] ftrace: allocating 20687 entries in 81 pages
    [ 0.014722] smpboot: weird, boot CPU (#0) not listed by the BIOS
    [ 0.014723] smpboot: SMP motherboard not detected
    [ 0.014743] TSC deadline timer enabled
    [ 0.014744] smpboot: SMP disabled
    [ 0.014756] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.014768] ... version: 3
    [ 0.014769] ... bit width: 48
    [ 0.014769] ... generic registers: 4
    [ 0.014770] ... value mask: 0000ffffffffffff
    [ 0.014770] ... max period: 0000ffffffffffff
    [ 0.014771] ... fixed-purpose events: 3
    [ 0.014771] ... event mask: 000000070000000f
    [ 0.031484] x86: Booted up 1 node, 1 CPUs
    [ 0.031486] smpboot: Total of 1 processors activated (7198.92 BogoMIPS)
    [ 0.031509] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.031540] devtmpfs: initialized
    [ 0.033214] PM: Registering ACPI NVS region [mem 0x9e520000-0x9e526fff] (28672 bytes)
    [ 0.033215] PM: Registering ACPI NVS region [mem 0xbdcb0000-0xbe1d8fff] (5410816 bytes)
    [ 0.033692] pinctrl core: initialized pinctrl subsystem
    [ 0.033718] RTC time: 1:46:17, date: 12/30/14
    [ 0.033767] NET: Registered protocol family 16
    [ 0.033828] cpuidle: using governor ladder
    [ 0.033830] cpuidle: using governor menu
    [ 0.033891] PCI: Using configuration type 1 for base access
    [ 0.045003] ACPI: Interpreter disabled.
    [ 0.045040] vgaarb: loaded
    [ 0.045084] PCI: Probing PCI hardware
    [ 0.045085] PCI: root bus 00: using default resources
    [ 0.045085] PCI: Probing PCI hardware (bus 00)
    [ 0.045098] PCI host bridge to bus 0000:00
    [ 0.045099] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.045100] pci_bus 0000:00: root bus resource [mem 0x00000000-0x7fffffffff]
    [ 0.045101] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
    [ 0.045106] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    [ 0.045142] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 0.045163] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.045208] pci 0000:00:14.0: [8086:8cb1] type 00 class 0x0c0330
    [ 0.045223] pci 0000:00:14.0: reg 0x10: [mem 0xdf720000-0xdf72ffff 64bit]
    [ 0.045269] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.045297] pci 0000:00:16.0: [8086:8cba] type 00 class 0x078000
    [ 0.045312] pci 0000:00:16.0: reg 0x10: [mem 0xdf73a000-0xdf73a00f 64bit]
    [ 0.045362] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.045396] pci 0000:00:19.0: [8086:15a0] type 00 class 0x020000
    [ 0.045409] pci 0000:00:19.0: reg 0x10: [mem 0xdf700000-0xdf71ffff]
    [ 0.045415] pci 0000:00:19.0: reg 0x14: [mem 0xdf738000-0xdf738fff]
    [ 0.045421] pci 0000:00:19.0: reg 0x18: [io 0xf040-0xf05f]
    [ 0.045467] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.045499] pci 0000:00:1a.0: [8086:8cad] type 00 class 0x0c0320
    [ 0.045514] pci 0000:00:1a.0: reg 0x10: [mem 0xdf737000-0xdf7373ff]
    [ 0.045585] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.045618] pci 0000:00:1b.0: [8086:8ca0] type 00 class 0x040300
    [ 0.045626] pci 0000:00:1b.0: reg 0x10: [mem 0xdf730000-0xdf733fff 64bit]
    [ 0.045669] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.045696] pci 0000:00:1c.0: [8086:8c90] type 01 class 0x060400
    [ 0.045745] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.045774] pci 0000:00:1c.3: [8086:8c96] type 01 class 0x060400
    [ 0.045823] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.045851] pci 0000:00:1c.4: [8086:8c98] type 01 class 0x060400
    [ 0.045900] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.045929] pci 0000:00:1c.6: [8086:8c9c] type 01 class 0x060400
    [ 0.045978] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
    [ 0.046011] pci 0000:00:1d.0: [8086:8ca6] type 00 class 0x0c0320
    [ 0.046027] pci 0000:00:1d.0: reg 0x10: [mem 0xdf736000-0xdf7363ff]
    [ 0.046098] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.046130] pci 0000:00:1f.0: [8086:8cc4] type 00 class 0x060100
    [ 0.046239] pci 0000:00:1f.2: [8086:8c82] type 00 class 0x010601
    [ 0.046251] pci 0000:00:1f.2: reg 0x10: [io 0xf090-0xf097]
    [ 0.046256] pci 0000:00:1f.2: reg 0x14: [io 0xf080-0xf083]
    [ 0.046261] pci 0000:00:1f.2: reg 0x18: [io 0xf070-0xf077]
    [ 0.046266] pci 0000:00:1f.2: reg 0x1c: [io 0xf060-0xf063]
    [ 0.046271] pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f]
    [ 0.046276] pci 0000:00:1f.2: reg 0x24: [mem 0xdf735000-0xdf7357ff]
    [ 0.046304] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.046328] pci 0000:00:1f.3: [8086:8ca2] type 00 class 0x0c0500
    [ 0.046338] pci 0000:00:1f.3: reg 0x10: [mem 0xdf734000-0xdf7340ff 64bit]
    [ 0.046354] pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f]
    [ 0.046407] pci 0000:01:00.0: [10b5:8747] type 01 class 0x060400
    [ 0.046413] pci 0000:01:00.0: reg 0x10: [mem 0xdf100000-0xdf13ffff]
    [ 0.046446] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.051564] pci 0000:00:01.0: PCI bridge to [bus 01-04]
    [ 0.051566] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.051567] pci 0000:00:01.0: bridge window [mem 0xde000000-0xdf1fffff]
    [ 0.051570] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.051606] pci 0000:02:08.0: [10b5:8747] type 01 class 0x060400
    [ 0.051645] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
    [ 0.051677] pci 0000:02:10.0: [10b5:8747] type 01 class 0x060400
    [ 0.051716] pci 0000:02:10.0: PME# supported from D0 D3hot D3cold
    [ 0.051745] pci 0000:01:00.0: PCI bridge to [bus 02-04]
    [ 0.051748] pci 0000:01:00.0: bridge window [io 0xe000-0xefff]
    [ 0.051750] pci 0000:01:00.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.051753] pci 0000:01:00.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.051779] pci 0000:02:08.0: PCI bridge to [bus 04]
    [ 0.051821] pci 0000:03:00.0: [10de:13c2] type 00 class 0x030000
    [ 0.051830] pci 0000:03:00.0: reg 0x10: [mem 0xde000000-0xdeffffff]
    [ 0.051840] pci 0000:03:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.051851] pci 0000:03:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.051858] pci 0000:03:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.051865] pci 0000:03:00.0: reg 0x30: [mem 0xdf000000-0xdf07ffff pref]
    [ 0.051918] vgaarb: device added: PCI:0000:03:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.051931] pci 0000:03:00.1: [10de:0fbb] type 00 class 0x040300
    [ 0.051938] pci 0000:03:00.1: reg 0x10: [mem 0xdf080000-0xdf083fff]
    [ 0.058252] pci 0000:02:10.0: PCI bridge to [bus 03]
    [ 0.058255] pci 0000:02:10.0: bridge window [io 0xe000-0xefff]
    [ 0.058257] pci 0000:02:10.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.058260] pci 0000:02:10.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.058300] pci 0000:00:1c.0: PCI bridge to [bus 05]
    [ 0.058349] pci 0000:06:00.0: [1b21:1187] type 01 class 0x060400
    [ 0.058430] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
    [ 0.064932] pci 0000:00:1c.3: PCI bridge to [bus 06-0e]
    [ 0.064934] pci 0000:00:1c.3: bridge window [io 0xa000-0xcfff]
    [ 0.064936] pci 0000:00:1c.3: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.065000] pci 0000:07:01.0: [1b21:1187] type 01 class 0x060400
    [ 0.065083] pci 0000:07:01.0: PME# supported from D0 D3hot D3cold
    [ 0.065126] pci 0000:07:02.0: [1b21:1187] type 01 class 0x060400
    [ 0.065209] pci 0000:07:02.0: PME# supported from D0 D3hot D3cold
    [ 0.065254] pci 0000:07:03.0: [1b21:1187] type 01 class 0x060400
    [ 0.065337] pci 0000:07:03.0: PME# supported from D0 D3hot D3cold
    [ 0.065382] pci 0000:07:04.0: [1b21:1187] type 01 class 0x060400
    [ 0.065464] pci 0000:07:04.0: PME# supported from D0 D3hot D3cold
    [ 0.065510] pci 0000:07:05.0: [1b21:1187] type 01 class 0x060400
    [ 0.065593] pci 0000:07:05.0: PME# supported from D0 D3hot D3cold
    [ 0.065641] pci 0000:07:06.0: [1b21:1187] type 01 class 0x060400
    [ 0.065724] pci 0000:07:06.0: PME# supported from D0 D3hot D3cold
    [ 0.065772] pci 0000:07:07.0: [1b21:1187] type 01 class 0x060400
    [ 0.065855] pci 0000:07:07.0: PME# supported from D0 D3hot D3cold
    [ 0.065918] pci 0000:06:00.0: PCI bridge to [bus 07-0e]
    [ 0.065923] pci 0000:06:00.0: bridge window [io 0xa000-0xcfff]
    [ 0.065926] pci 0000:06:00.0: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.065979] pci 0000:07:01.0: PCI bridge to [bus 08]
    [ 0.066038] pci 0000:07:02.0: PCI bridge to [bus 09]
    [ 0.066117] pci 0000:0a:00.0: [1b21:0612] type 00 class 0x010601
    [ 0.066134] pci 0000:0a:00.0: reg 0x10: [io 0xc050-0xc057]
    [ 0.066147] pci 0000:0a:00.0: reg 0x14: [io 0xc040-0xc043]
    [ 0.066160] pci 0000:0a:00.0: reg 0x18: [io 0xc030-0xc037]
    [ 0.066172] pci 0000:0a:00.0: reg 0x1c: [io 0xc020-0xc023]
    [ 0.066185] pci 0000:0a:00.0: reg 0x20: [io 0xc000-0xc01f]
    [ 0.066198] pci 0000:0a:00.0: reg 0x24: [mem 0xdf400000-0xdf4001ff]
    [ 0.071619] pci 0000:07:03.0: PCI bridge to [bus 0a]
    [ 0.071625] pci 0000:07:03.0: bridge window [io 0xc000-0xcfff]
    [ 0.071628] pci 0000:07:03.0: bridge window [mem 0xdf400000-0xdf4fffff]
    [ 0.071681] pci 0000:07:04.0: PCI bridge to [bus 0b]
    [ 0.071741] pci 0000:07:05.0: PCI bridge to [bus 0c]
    [ 0.071832] pci 0000:0d:00.0: [8086:1533] type 00 class 0x020000
    [ 0.071853] pci 0000:0d:00.0: reg 0x10: [mem 0xdf300000-0xdf37ffff]
    [ 0.071886] pci 0000:0d:00.0: reg 0x18: [io 0xb000-0xb01f]
    [ 0.071903] pci 0000:0d:00.0: reg 0x1c: [mem 0xdf380000-0xdf383fff]
    [ 0.072047] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
    [ 0.078303] pci 0000:07:06.0: PCI bridge to [bus 0d]
    [ 0.078309] pci 0000:07:06.0: bridge window [io 0xb000-0xbfff]
    [ 0.078312] pci 0000:07:06.0: bridge window [mem 0xdf300000-0xdf3fffff]
    [ 0.078387] pci 0000:0e:00.0: [1106:3403] type 00 class 0x0c0010
    [ 0.078414] pci 0000:0e:00.0: reg 0x10: [mem 0xdf200000-0xdf2007ff 64bit]
    [ 0.078429] pci 0000:0e:00.0: reg 0x18: [io 0xa000-0xa0ff]
    [ 0.078555] pci 0000:0e:00.0: supports D2
    [ 0.078556] pci 0000:0e:00.0: PME# supported from D2 D3hot D3cold
    [ 0.084986] pci 0000:07:07.0: PCI bridge to [bus 0e]
    [ 0.084991] pci 0000:07:07.0: bridge window [io 0xa000-0xafff]
    [ 0.084994] pci 0000:07:07.0: bridge window [mem 0xdf200000-0xdf2fffff]
    [ 0.085083] pci 0000:0f:00.0: [1b21:0612] type 00 class 0x010601
    [ 0.085095] pci 0000:0f:00.0: reg 0x10: [io 0xd050-0xd057]
    [ 0.085104] pci 0000:0f:00.0: reg 0x14: [io 0xd040-0xd043]
    [ 0.085113] pci 0000:0f:00.0: reg 0x18: [io 0xd030-0xd037]
    [ 0.085122] pci 0000:0f:00.0: reg 0x1c: [io 0xd020-0xd023]
    [ 0.085132] pci 0000:0f:00.0: reg 0x20: [io 0xd000-0xd01f]
    [ 0.085141] pci 0000:0f:00.0: reg 0x24: [mem 0xdf600000-0xdf6001ff]
    [ 0.091661] pci 0000:00:1c.4: PCI bridge to [bus 0f]
    [ 0.091663] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.091665] pci 0000:00:1c.4: bridge window [mem 0xdf600000-0xdf6fffff]
    [ 0.091720] pci 0000:10:00.0: [1b21:1142] type 00 class 0x0c0330
    [ 0.091739] pci 0000:10:00.0: reg 0x10: [mem 0xdf500000-0xdf507fff 64bit]
    [ 0.091849] pci 0000:10:00.0: PME# supported from D3cold
    [ 0.098344] pci 0000:00:1c.6: PCI bridge to [bus 10]
    [ 0.098347] pci 0000:00:1c.6: bridge window [mem 0xdf500000-0xdf5fffff]
    [ 0.098364] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 10
    [ 0.098440] PCI: pci_cache_line_size set to 64 bytes
    [ 0.098515] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.098516] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    [ 0.098517] e820: reserve RAM buffer [mem 0x9c598018-0x9fffffff]
    [ 0.098517] e820: reserve RAM buffer [mem 0x9e520000-0x9fffffff]
    [ 0.098518] e820: reserve RAM buffer [mem 0x9e985000-0x9fffffff]
    [ 0.098519] e820: reserve RAM buffer [mem 0xbd922000-0xbfffffff]
    [ 0.098520] e820: reserve RAM buffer [mem 0xbf000000-0xbfffffff]
    [ 0.098520] e820: reserve RAM buffer [mem 0x43f000000-0x43fffffff]
    [ 0.098569] NetLabel: Initializing
    [ 0.098570] NetLabel: domain hash size = 128
    [ 0.098570] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.098576] NetLabel: unlabeled traffic allowed by default
    [ 0.098594] Switched to clocksource refined-jiffies
    [ 0.100961] pnp: PnP ACPI: disabled
    [ 0.101632] pci 0000:02:08.0: PCI bridge to [bus 04]
    [ 0.101639] pci 0000:02:10.0: PCI bridge to [bus 03]
    [ 0.101640] pci 0000:02:10.0: bridge window [io 0xe000-0xefff]
    [ 0.101643] pci 0000:02:10.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.101645] pci 0000:02:10.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101648] pci 0000:01:00.0: PCI bridge to [bus 02-04]
    [ 0.101649] pci 0000:01:00.0: bridge window [io 0xe000-0xefff]
    [ 0.101652] pci 0000:01:00.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.101654] pci 0000:01:00.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101657] pci 0000:00:01.0: PCI bridge to [bus 01-04]
    [ 0.101661] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.101662] pci 0000:00:01.0: bridge window [mem 0xde000000-0xdf1fffff]
    [ 0.101664] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101666] pci 0000:00:1c.0: PCI bridge to [bus 05]
    [ 0.101674] pci 0000:07:01.0: PCI bridge to [bus 08]
    [ 0.101685] pci 0000:07:02.0: PCI bridge to [bus 09]
    [ 0.101696] pci 0000:07:03.0: PCI bridge to [bus 0a]
    [ 0.101698] pci 0000:07:03.0: bridge window [io 0xc000-0xcfff]
    [ 0.101702] pci 0000:07:03.0: bridge window [mem 0xdf400000-0xdf4fffff]
    [ 0.101710] pci 0000:07:04.0: PCI bridge to [bus 0b]
    [ 0.101721] pci 0000:07:05.0: PCI bridge to [bus 0c]
    [ 0.101733] pci 0000:07:06.0: PCI bridge to [bus 0d]
    [ 0.101735] pci 0000:07:06.0: bridge window [io 0xb000-0xbfff]
    [ 0.101739] pci 0000:07:06.0: bridge window [mem 0xdf300000-0xdf3fffff]
    [ 0.101747] pci 0000:07:07.0: PCI bridge to [bus 0e]
    [ 0.101748] pci 0000:07:07.0: bridge window [io 0xa000-0xafff]
    [ 0.101753] pci 0000:07:07.0: bridge window [mem 0xdf200000-0xdf2fffff]
    [ 0.101761] pci 0000:06:00.0: PCI bridge to [bus 07-0e]
    [ 0.101762] pci 0000:06:00.0: bridge window [io 0xa000-0xcfff]
    [ 0.101767] pci 0000:06:00.0: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.101774] pci 0000:00:1c.3: PCI bridge to [bus 06-0e]
    [ 0.101776] pci 0000:00:1c.3: bridge window [io 0xa000-0xcfff]
    [ 0.101779] pci 0000:00:1c.3: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.101783] pci 0000:00:1c.4: PCI bridge to [bus 0f]
    [ 0.101785] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.101788] pci 0000:00:1c.4: bridge window [mem 0xdf600000-0xdf6fffff]
    [ 0.101793] pci 0000:00:1c.6: PCI bridge to [bus 10]
    [ 0.101796] pci 0000:00:1c.6: bridge window [mem 0xdf500000-0xdf5fffff]
    [ 0.101801] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.101802] pci_bus 0000:00: resource 5 [mem 0x00000000-0x7fffffffff]
    [ 0.101803] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.101804] pci_bus 0000:01: resource 1 [mem 0xde000000-0xdf1fffff]
    [ 0.101805] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101806] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.101807] pci_bus 0000:02: resource 1 [mem 0xde000000-0xdf0fffff]
    [ 0.101807] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101808] pci_bus 0000:03: resource 0 [io 0xe000-0xefff]
    [ 0.101809] pci_bus 0000:03: resource 1 [mem 0xde000000-0xdf0fffff]
    [ 0.101810] pci_bus 0000:03: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101811] pci_bus 0000:06: resource 0 [io 0xa000-0xcfff]
    [ 0.101812] pci_bus 0000:06: resource 1 [mem 0xdf200000-0xdf4fffff]
    [ 0.101813] pci_bus 0000:07: resource 0 [io 0xa000-0xcfff]
    [ 0.101813] pci_bus 0000:07: resource 1 [mem 0xdf200000-0xdf4fffff]
    [ 0.101814] pci_bus 0000:0a: resource 0 [io 0xc000-0xcfff]
    [ 0.101815] pci_bus 0000:0a: resource 1 [mem 0xdf400000-0xdf4fffff]
    [ 0.101816] pci_bus 0000:0d: resource 0 [io 0xb000-0xbfff]
    [ 0.101817] pci_bus 0000:0d: resource 1 [mem 0xdf300000-0xdf3fffff]
    [ 0.101818] pci_bus 0000:0e: resource 0 [io 0xa000-0xafff]
    [ 0.101819] pci_bus 0000:0e: resource 1 [mem 0xdf200000-0xdf2fffff]
    [ 0.101819] pci_bus 0000:0f: resource 0 [io 0xd000-0xdfff]
    [ 0.101820] pci_bus 0000:0f: resource 1 [mem 0xdf600000-0xdf6fffff]
    [ 0.101821] pci_bus 0000:10: resource 1 [mem 0xdf500000-0xdf5fffff]
    [ 0.101833] NET: Registered protocol family 2
    [ 0.101941] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.102058] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.102147] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.102157] TCP: reno registered
    [ 0.102165] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.102195] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.102236] NET: Registered protocol family 1
    [ 0.102251] pci 0000:00:14.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.103443] pci 0000:00:1a.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.121537] PCI: CLS mismatch (64 != 128), using 64 bytes
    [ 0.121543] pci 0000:00:1d.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.139571] pci 0000:00:1c.6: can't find IRQ for PCI INT C; please try using pci=biosirq
    [ 0.139579] pci 0000:10:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.140768] Unpacking initramfs...
    [ 0.175981] Freeing initrd memory: 3356K (ffff88007fcb9000 - ffff880080000000)
    [ 0.175987] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.175989] software IO TLB [mem 0xb503e000-0xb903e000] (64MB) mapped at [ffff8800b503e000-ffff8800b903dfff]
    [ 0.176028] platform rtc_cmos: registered platform RTC device (no PNP device found)
    [ 0.176077] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.176092] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x19
    [ 0.176112] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.176126] Scanning for low memory corruption every 60 seconds
    [ 0.176233] futex hash table entries: 256 (order: 2, 16384 bytes)
    [ 0.176239] Initialise system trusted keyring
    [ 0.176423] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.177103] zpool: loaded
    [ 0.177104] zbud: loaded
    [ 0.177193] VFS: Disk quotas dquot_6.5.2
    [ 0.177209] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.177270] msgmni has been set to 31984
    [ 0.177299] Key type big_key registered
    [ 0.177354] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.177366] io scheduler noop registered
    [ 0.177367] io scheduler deadline registered
    [ 0.177381] io scheduler cfq registered (default)
    [ 0.177420] pcieport 0000:00:01.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177430] pcieport 0000:00:01.0: irq 16 for MSI/MSI-X
    [ 0.177454] pcieport 0000:00:1c.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177464] pcieport 0000:00:1c.0: irq 17 for MSI/MSI-X
    [ 0.177498] pcieport 0000:00:1c.3: can't find IRQ for PCI INT D; please try using pci=biosirq
    [ 0.177509] pcieport 0000:00:1c.3: irq 18 for MSI/MSI-X
    [ 0.177543] pcieport 0000:00:1c.4: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177553] pcieport 0000:00:1c.4: irq 19 for MSI/MSI-X
    [ 0.177595] pcieport 0000:00:1c.6: irq 20 for MSI/MSI-X
    [ 0.177629] pcieport 0000:01:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177651] pcieport 0000:02:08.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177673] pcieport 0000:02:10.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177697] pcieport 0000:06:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177740] pcieport 0000:07:01.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177786] pcieport 0000:07:02.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177830] pcieport 0000:07:03.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177875] pcieport 0000:07:04.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177920] pcieport 0000:07:05.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177964] pcieport 0000:07:06.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.178009] pcieport 0000:07:07.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.178063] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    [ 0.178064] pcieport 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178065] pcieport 0000:02:08.0: Signaling PME through PCIe PME interrupt
    [ 0.178066] pcieport 0000:02:10.0: Signaling PME through PCIe PME interrupt
    [ 0.178066] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178067] pci 0000:03:00.1: Signaling PME through PCIe PME interrupt
    [ 0.178069] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    [ 0.178078] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.178081] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.178089] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 0.178090] pcieport 0000:06:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178091] pcieport 0000:07:01.0: Signaling PME through PCIe PME interrupt
    [ 0.178092] pcieport 0000:07:02.0: Signaling PME through PCIe PME interrupt
    [ 0.178093] pcieport 0000:07:03.0: Signaling PME through PCIe PME interrupt
    [ 0.178093] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178094] pcieport 0000:07:04.0: Signaling PME through PCIe PME interrupt
    [ 0.178095] pcieport 0000:07:05.0: Signaling PME through PCIe PME interrupt
    [ 0.178095] pcieport 0000:07:06.0: Signaling PME through PCIe PME interrupt
    [ 0.178096] pci 0000:0d:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178097] pcieport 0000:07:07.0: Signaling PME through PCIe PME interrupt
    [ 0.178098] pci 0000:0e:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178100] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 0.178109] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 0.178109] pci 0000:0f:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178112] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 0.178121] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
    [ 0.178122] pci 0000:10:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178124] pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
    [ 0.178132] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.178140] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.178157] efifb: probing for efifb
    [ 0.178163] efifb: framebuffer at 0xc0000000, mapped to 0xffffc90001b80000, using 3072k, total 3072k
    [ 0.178164] efifb: mode is 1024x768x32, linelength=4096, pages=1
    [ 0.178165] efifb: scrolling: redraw
    [ 0.178165] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.179350] Console: switching to colour frame buffer device 128x48
    [ 0.180418] fb0: EFI VGA frame buffer device
    [ 0.180422] intel_idle: MWAIT substates: 0x42120
    [ 0.180423] intel_idle: v0.4 model 0x3C
    [ 0.180424] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.180487] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.201010] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.201132] Linux agpgart interface v0.103
    [ 0.201221] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    [ 0.201236] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
    [ 0.201241] Intel P-state driver initializing.
    [ 0.201260] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.201311] TCP: cubic registered
    [ 0.201359] NET: Registered protocol family 10
    [ 0.201460] NET: Registered protocol family 17
    [ 0.201549] Loading compiled-in X.509 certificates
    [ 0.201556] registered taskstats version 1
    [ 0.201938] Magic number: 10:630:762
    [ 0.201974] rtc_cmos rtc_cmos: setting system clock to 2014-12-30 01:46:17 UTC (1419903977)
    [ 0.202020] PM: Hibernation image not present or could not be loaded.
    [ 0.202422] Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
    [ 0.202423] Write protecting the kernel read-only data: 8192k
    [ 0.203481] Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
    [ 0.203917] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    [ 0.206804] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.214973] usbcore: registered new interface driver usbfs
    [ 0.215012] usbcore: registered new interface driver hub
    [ 0.218047] SCSI subsystem initialized
    [ 0.221736] libata version 3.00 loaded.
    [ 0.222022] ahci 0000:00:1f.2: version 3.0
    [ 0.222027] ahci 0000:00:1f.2: can't find IRQ for PCI INT B; please try using pci=biosirq
    [ 0.222053] ahci 0000:00:1f.2: irq 21 for MSI/MSI-X
    [ 0.222081] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0xb impl SATA mode
    [ 0.222082] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
    [ 0.222421] usbcore: registered new device driver usb
    [ 0.222622] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.222688] ehci-pci: EHCI PCI platform driver
    [ 0.224499] firewire_ohci 0000:0e:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.224527] genirq: Flags mismatch irq 0. 00000080 (firewire_ohci) vs. 00015a00 (timer)
    [ 0.224549] firewire_ohci 0000:0e:00.0: failed to allocate interrupt 0
    [ 0.224572] firewire_ohci: probe of 0000:0e:00.0 failed with error -5
    [ 0.234786] scsi host0: ahci
    [ 0.234841] scsi host1: ahci
    [ 0.234886] scsi host2: ahci
    [ 0.234929] scsi host3: ahci
    [ 0.234972] scsi host4: ahci
    [ 0.235014] scsi host5: ahci
    [ 0.235035] ata1: SATA max UDMA/133 abar m2048@0xdf735000 port 0xdf735100 irq 21
    [ 0.235037] ata2: SATA max UDMA/133 abar m2048@0xdf735000 port 0xdf735180 irq 21
    [ 0.235037] ata3: DUMMY
    [ 0.235039] ata4: SATA max UDMA/133 abar m2048@0xdf735000 port 0xdf735280 irq 21
    [ 0.235039] ata5: DUMMY
    [ 0.235039] ata6: DUMMY
    [ 0.235058] ahci 0000:0a:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235097] ahci 0000:0a:00.0: irq 22 for MSI/MSI-X
    [ 0.235109] ahci 0000:0a:00.0: SSS flag set, parallel bus scan disabled
    [ 0.235146] ahci 0000:0a:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    [ 0.235147] ahci 0000:0a:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
    [ 0.235275] ehci-pci 0000:00:1a.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235278] ehci-pci 0000:00:1a.0: Found HC with no IRQ. Check BIOS/PCI 0000:00:1a.0 setup!
    [ 0.235297] ehci-pci 0000:00:1a.0: init 0000:00:1a.0 fail, -19
    [ 0.235316] ehci-pci 0000:00:1d.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235318] ehci-pci 0000:00:1d.0: Found HC with no IRQ. Check BIOS/PCI 0000:00:1d.0 setup!
    [ 0.235338] ehci-pci 0000:00:1d.0: init 0000:00:1d.0 fail, -19
    [ 0.235400] xhci_hcd 0000:00:14.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235411] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.235414] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.235476] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.235486] xhci_hcd 0000:00:14.0: irq 23 for MSI/MSI-X
    [ 0.235714] hub 1-0:1.0: USB hub found
    [ 0.235728] hub 1-0:1.0: 14 ports detected
    [ 0.235898] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.235900] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.235973] hub 2-0:1.0: USB hub found
    [ 0.235998] hub 2-0:1.0: 6 ports detected
    [ 0.236094] xhci_hcd 0000:10:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.236104] xhci_hcd 0000:10:00.0: xHCI Host Controller
    [ 0.236106] xhci_hcd 0000:10:00.0: new USB bus registered, assigned bus number 3
    [ 0.244565] scsi host6: ahci
    [ 0.251214] scsi host7: ahci
    [ 0.251240] ata7: SATA max UDMA/133 abar m512@0xdf400000 port 0xdf400100 irq 22
    [ 0.251242] ata8: SATA max UDMA/133 abar m512@0xdf400000 port 0xdf400180 irq 22
    [ 0.251285] ahci 0000:0f:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.251314] ahci 0000:0f:00.0: irq 24 for MSI/MSI-X
    [ 0.251323] ahci 0000:0f:00.0: SSS flag set, parallel bus scan disabled
    [ 0.251350] ahci 0000:0f:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    [ 0.251351] ahci 0000:0f:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc
    [ 0.257910] scsi host8: ahci
    [ 0.264602] scsi host9: ahci
    [ 0.264625] ata9: SATA max UDMA/133 abar m512@0xdf600000 port 0xdf600100 irq 24
    [ 0.264627] ata10: SATA max UDMA/133 abar m512@0xdf600000 port 0xdf600180 irq 24
    [ 0.296576] xhci_hcd 0000:10:00.0: irq 25 for MSI/MSI-X
    [ 0.296578] xhci_hcd 0000:10:00.0: irq 26 for MSI/MSI-X
    [ 0.296710] hub 3-0:1.0: USB hub found
    [ 0.296716] hub 3-0:1.0: 2 ports detected
    [ 0.296759] xhci_hcd 0000:10:00.0: xHCI Host Controller
    [ 0.296761] xhci_hcd 0000:10:00.0: new USB bus registered, assigned bus number 4
    [ 0.296875] hub 4-0:1.0: USB hub found
    [ 0.296880] hub 4-0:1.0: 2 ports detected
    [ 0.556696] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.558535] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.558561] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
    [ 0.558562] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM01B6Q, max UDMA/133
    [ 0.558563] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 0.558738] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.558763] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
    [ 0.558806] ata1.00: configured for UDMA/133
    [ 0.563429] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 0.563472] scsi 0:0:0:0: Direct-Access ATA Samsung SSD 850 1B6Q PQ: 0 ANSI: 5
    [ 0.564753] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 0.564771] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.564772] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.564777] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.565118] ata2.00: ATAPI: ASUS BC-12D2HT, 1.00, max UDMA/100
    [ 0.565571] sda: sda1 sda2 sda3 sda4
    [ 0.565688] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.565740] ata2.00: configured for UDMA/100
    [ 0.566048] scsi 1:0:0:0: CD-ROM ASUS BC-12D2HT 1.00 PQ: 0 ANSI: 5
    [ 0.566799] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.567259] ata4.00: ATA-9: WDC WD3003FZEX-00Z4SA0, 01.01A01, max UDMA/133
    [ 0.567260] ata4.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.568491] ata4.00: configured for UDMA/133
    [ 0.573548] ata7: SATA link down (SStatus 0 SControl 300)
    [ 0.575040] scsi 3:0:0:0: Direct-Access ATA WDC WD3003FZEX-0 1A01 PQ: 0 ANSI: 5
    [ 0.575102] sd 3:0:0:0: [sdb] 5860533168 512-byte logical blocks: (3.00 TB/2.72 TiB)
    [ 0.575103] sd 3:0:0:0: [sdb] 4096-byte physical blocks
    [ 0.575115] sd 3:0:0:0: [sdb] Write Protect is off
    [ 0.575116] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 0.575121] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.587016] ata9: SATA link down (SStatus 0 SControl 300)
    [ 0.588472] sr 1:0:0:0: [sr0] scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 0.588473] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 0.588524] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 0.597116] usb 1-2: new high-speed USB device number 2 using xhci_hcd
    [ 0.602136] sdb: sdb1 sdb2
    [ 0.602224] sd 3:0:0:0: [sdb] Attached SCSI disk
    [ 0.796333] hub 1-2:1.0: USB hub found
    [ 0.796476] hub 1-2:1.0: 4 ports detected
    [ 0.897881] ata8: SATA link down (SStatus 0 SControl 300)
    [ 0.958892] usb 1-7: new full-speed USB device number 3 using xhci_hcd
    [ 1.138972] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.142463] usbcore: registered new interface driver usbhid
    [ 1.142465] usbhid: USB HID core driver
    [ 1.143465] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
    [ 1.198065] input: Logitech Unifying Device. Wireless PID:101a as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input0
    [ 1.198082] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Unifying Device. Wireless PID:101a] on usb-0000:00:14.0-7:1
    [ 1.207130] Switched to clocksource tsc
    [ 1.223905] ata10: SATA link down (SStatus 0 SControl 300)
    [ 1.254898] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.297340] usb 1-8: new high-speed USB device number 4 using xhci_hcd
    [ 1.343905] systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    [ 1.343953] systemd[1]: Detected architecture 'x86-64'.
    [ 1.344230] systemd[1]: Set hostname to <Bastet>.
    [ 1.387480] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 1.387651] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 1.387678] systemd[1]: Started Forward Passwor

  • [SOLVED] Can't make Akonadi server / Nepomuk service run

    I'm currently running KDE SC 4.9 on Arch Linux x86_64, system fully up to date.
    My laptop's HD went dead some days ago so I had to restore my system from a 2-weeks old backup; I usually use fsarchiver to backup root partition and 7z to compress ~/.kde4 and ~/.config so this way I'm covered up about these kind of things.
    So after restoring my system and home folder I did a full upgrade (nearly a gigabyte of downloads) and while most things seems to work well I found that Nepomuk isn't running, when I try to start it manually I have this error message:
    "Failed to start the desktop search service (Nepomuk). The settings have been saved and will be used the next time the server is started."
    Going back to the wiki I did my homework re-configuring Akonadi but so far I can't make Nepomuk run.
    This is what I have:
    ~/.config/akonadi/akonadiserverrc
    [%General]
    Driver=QMYSQL
    [QMYSQL]
    Name=akonadi
    Host=localhost
    ServerPath=/usr/bin/mysqld
    StartServer=true
    User=akonadiuser
    Password=akonadiuser
    Options="UNIX_SOCKET=/home/msx/.local/share/akonadi/socket-heybeavis/mysql.socket"
    [Debug]
    Tracer=null
    The database is already created and configured:
    mysql> show databases;
    +--------------------+
    | Database |
    +--------------------+
    | information_schema |
    | akonadi
    | mysql
    | owncloud
    | performance_schema |
    +--------------------+
    5 rows in set (0.00 sec)
    and the ~/.config/akonadi/mysql-local.conf is in place:
    ~ $ cat ~/.config/akonadi/mysql-local.conf
    # Global Akonadi MySQL server settings,
    # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
    # Based on advice by Kris Köhntopp <[email protected]>
    [mysqld]
    # strict query parsing/interpretation
    # TODO: make Akonadi work with those settings enabled
    #sql_mode=strict_trans_tables,strict_all_tables,strict_error_for_division_by_zero,no_auto_create_user,no_auto_value_on_zero,no_engine_substitution,no_zero_date,no_zero_in_date,only_full_group_by,pipes_as_concat
    sql_mode=strict_trans_tables
    # DEBUGGING:
    # log all queries, useful for debugging but generates an enormous amount of data
    # log=mysql.full
    # log queries slower than n seconds, log file name relative to datadir (for debugging only)
    # log_slow_queries=mysql.slow
    # long_query_time=1
    # log queries not using indices, debug only, disable for production use
    # log_queries_not_using_indexes=1
    # mesure database size and adjust innodb_buffer_pool_size
    # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
    # NOTES:
    # Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
    #expire_logs_days=3
    #sync_bin_log=0
    # Use UTF-8 encoding for tables
    character_set_server=utf8
    collation_server=utf8_general_ci
    # use InnoDB for transactions and better crash recovery
    default_storage_engine=innodb
    # memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
    innodb_additional_mem_pool_size=1M
    # memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
    # Larger values means less I/O
    innodb_buffer_pool_size=80M
    # Create a .ibd file for each table (default:0)
    innodb_file_per_table=1
    # Write out the log buffer to the log file at each commit (default:1)
    innodb_flush_log_at_trx_commit=2
    # Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
    # larger values means less I/O
    innodb_log_buffer_size=1M
    # Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
    innodb_log_file_size=64M
    # # error log file name, relative to datadir (default:hostname.err)
    log_error=mysql.err
    # print warnings and connection errors (default:1)
    log_warnings=2
    # Convert table named to lowercase
    lower_case_table_names=1
    # Maximum size of one packet or any generated/intermediate string. (default:1M)
    max_allowed_packet=32M
    # Maximum simultaneous connections allowed (default:100)
    max_connections=256
    # The two options below make no sense with prepared statements and/or transactions
    # (make sense when having the same query multiple times)
    # Memory allocated for caching query results (default:0 (disabled))
    query_cache_size=0
    # Do not cache results (default:1)
    query_cache_type=0
    # Do not use the privileges mechanisms
    skip_grant_tables
    # Do not listen for TCP/IP connections at all
    skip_networking
    # The number of open tables for all threads. (default:64)
    table_cache=200
    # How many threads the server should cache for reuse (default:0)
    thread_cache_size=3
    # wait 365d before dropping the DB connection (default:8h)
    wait_timeout=31536000
    [client]
    default-character-set=utf8
    Now, when I do restart Akonadi server I got:
    ~ $ akonadictl restart
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    search paths: ("/usr/local/bin", "/usr/bin", "/bin", "/usr/local/sbin", "/usr/sbin", "/sbin", "/usr/bin/vendor_perl", "/usr/bin/core_perl", "/usr/bin/msx", "/usr/lib/colorgcc/bin", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin")
    ~ $ akonadi.collectionattributetable OK
    akonadi.collectionmimetyperelation OK
    akonadi.collectionpimitemrelation OK
    akonadi.collectiontable OK
    akonadi.flagtable OK
    akonadi.mimetypetable OK
    akonadi.parttable OK
    akonadi.pimitemflagrelation OK
    akonadi.pimitemtable OK
    akonadi.resourcetable OK
    akonadi.schemaversiontable OK
    Nepomuk Query Server not available
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    search paths: ("/usr/local/bin", "/usr/bin", "/bin", "/usr/local/sbin", "/usr/sbin", "/sbin", "/usr/bin/vendor_perl", "/usr/bin/core_perl", "/usr/bin/msx", "/usr/lib/colorgcc/bin")
    KGlobal::locale::Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions before your main component was created. You should not do that since it most likely will not work
    KGlobal::locale::Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions before your main component was created. You should not do that since it most likely will not work
    "/usr/bin/akonadi_nepomuk_feeder(13892)" Soprano: "Could not connect to server at /tmp/ksocket-msx/nepomuk-socket (No such file or directory)"
    "/usr/bin/akonadi_nepomuk_feeder(13892)" Soprano: "Could not connect to server at /tmp/ksocket-msx/nepomuk-socket (No such file or directory)"
    "/usr/bin/akonadi_nepomuk_feeder(13892)" Soprano: "Could not connect to server at /tmp/ksocket-msx/nepomuk-socket (No such file or directory)"
    "/usr/bin/akonadi_nepomuk_feeder(13892)" Soprano: "Could not connect to server at /tmp/ksocket-msx/nepomuk-socket (No such file or directory)"
    search paths: ("/home/msx/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/home/msx/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/msx/.kde4/lib/kde4/", "/usr/lib/kde4/")
    AkonadiAgentServer(13913)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    AkonadiAgentServer(13913)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    Please correct me if I'm wrong but seems Akonadi can't/don't create the resource needed by Nepomuk, right?
    "/usr/bin/akonadi_nepomuk_feeder(13892)" Soprano: "Could not connect to server at /tmp/ksocket-msx/nepomuk-socket (No such file or directory)"
    Already raked the forums and the net but can't find anything of help :(
    * UPDATE *
    1.Further research shows akonadi database is empty so it seems Akonadi isn't connecting to MySQLd.
    2. I created a new user to simplify research and found the very same problem when trying to activate Nepomuk: Failed to start the desktop search service (Nepomuk). The settings have been saved and will be used the next time the server is started.
    From what I remember Akonadi/Nepomuk/Soprano were working well in previous KDE 4.8.4.
    * UPDATE *
    Solved after reinstalling all MySQL stack.
    Regards,
    Martin
    Last edited by msx (2012-08-15 06:33:30)

    msx, please use [ code ]...[ /code ] tags (without the intervening spaces) around your listings. See: https://bbs.archlinux.org/help.php#bbcode

  • **Solved** "Can't connect to server" problem

    If you connect to your wireless network and cannot use safari or youtube, i know how to solve your problem.
    -Open settings, select "wi-fi"
    - Select "DNS", then scroll over all the way to the left and delete the first set of numbers
    - Try safari again, and see if it works
    - If not, delete the next set of "dns" numbers
    - Continue until it works, (it did for me!)

    Hi eveyone again.
    Iv'e hopefully found all the data I need for someone to help me. When I go to the Wi-Fi settings on the touch only IP and Subnet Mask details come up (which come up as 169.254.211.37 and 255.255.0.0 respectfully. All the rest are blank.
    After looking on my computer through the ipconfig/all data on my computer I got the following:
    Description: Intel(R) PRO/WIRELESS 3945ABG Network
    Physical Address: 00-1B-77-3B-F2-59
    DHCP Enabled: Yes
    Autoconfiguration Enabled: Yes
    Link-local IPv6: fe80::6ce:a3d8:23ad%11
    IPv4 Address: 10.0.0.3 (preferred)
    Subnet Mask: 255.255.255.0
    Default Gateway: 10.0.0.138
    DHCP Server: 10.0.0.138
    DHCPv6 IAID: 285219703
    DNS Servers: 10.0.0.138
    I have a Siemens SpeedStream 6520 Wireless ADSL Gateway Router and have found the Wi-Fi WEP key Code, Wi-Fi SID (which is SpeedStream8993 although this comes up on the ipod as well as the internet sign on the ipod), Wi-Fi pin and our usename and password which I presume is for the internet (even though we never use it. i think its more our email internet account for bigpond - our server)
    I hope this is all the information needed in order for someone to help. As you can tell I'm not very tech savy. Also if smeone is kind enough to reply and help could you tell me whether to have the settings on DHCP (which I've been doing), BootP or Static as well as whether the HTTP Proxy needs to be on 'Off', "Manual' or 'Auto' (all of which I have tried, entering the required data).
    Looking forward to hearing your answers
    Nicole A.S
    aka
    Nicolethe_one_the_only_hockeychicspaz

  • [SOLVED] Can't set X server display resolution

    Hello all,
    I'm trying to set X Server display resolution to my monitor native 1366x768. I'm running Arch in a VMWare virtual machine. I have installed xf86-video-vmware drivers.
    Here's the contents of my 10-monitor.conf file
    Section "Monitor"
    Identifier "Monitor0"
    DisplaySize 410 230
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "vmware" #Choose the driver used for this monitor
    EndSection
    Section "Screen"
    Identifier "Screen0" #Collapse Monitor and Device section to Screen section
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24 #Choose the depth (16||24)
    SubSection "Display"
    Depth 24
    Modes "1366x768" "1024x768" "800x600" "640x480" #Choose the resolution
    EndSubSection
    EndSection
    And here's the log file where the resolutions get rejected:
    2831.766] (II) vmwlegacy(0): Not using mode "1366x768" (no mode of this name)
    2831.766] (II) vmwlegacy(0): Not using mode "1024x768" (no mode of this name)
    Is this a consequence of the vmlegacy drivers? This is up high in the log file, where the legacy drivers eventually get loaded:
    [ 2829.987] (II) LoadModule: "vmware"
    [ 2829.988] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
    [ 2829.988] (II) Module vmware: vendor="X.Org Foundation"
    [ 2829.988] compiled for 1.8.0, module version = 11.0.1
    [ 2829.988] Module class: X.Org Video Driver
    [ 2829.988] ABI class: X.Org Video Driver, version 7.0
    [ 2829.988] (II) LoadModule: "vmwgfx"
    [ 2829.988] (WW) Warning, couldn't open module vmwgfx
    [ 2829.988] (II) UnloadModule: "vmwgfx"
    [ 2829.988] (EE) Failed to load module "vmwgfx" (module does not exist, 0)
    [ 2829.996] (EE) vmware: Please ignore the above warnings about not being able to to load module/driver vmwgfx
    [ 2829.998] (II) vmware: Using vmwlegacy driver everything is fine.
    [ 2829.998] (II) LoadModule: "vmwlegacy"
    [ 2829.998] (II) Loading /usr/lib/xorg/modules/drivers/vmwlegacy_drv.so
    [ 2829.998] (II) Module vmwlegacy: vendor="X.Org Foundation"
    [ 2829.998] compiled for 1.8.0, module version = 11.0.1
    [ 2829.998] Module class: X.Org Video Driver
    [ 2829.998] ABI class: X.Org Video Driver, version 7.0
    [ 2829.998] (II) vmwlegacy: driver for VMware SVGA: vmware0405, vmware0710
    [ 2829.999] (--) using VT number 7
    [ 2830.043] (II) Primary Device is: PCI 00@00:0f:0
    [ 2830.043] (--) vmwlegacy(0): VMware SVGA regs at (0x10d0, 0x10d1)
    [ 2830.043] (II) Loading sub module "vgahw"
    [ 2830.043] (II) LoadModule: "vgahw"
    [ 2830.044] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 2830.044] (II) Module vgahw: vendor="X.Org Foundation"
    [ 2830.044] compiled for 1.8.1.902, module version = 0.1.0
    [ 2830.044] ABI class: X.Org Video Driver, version 7.0
    [ 2831.763] (--) vmwlegacy(0): caps: 0x001FC3E2
    [ 2831.763] (--) vmwlegacy(0): depth: 24
    [ 2831.763] (--) vmwlegacy(0): bpp: 32
    [ 2831.763] (--) vmwlegacy(0): vram: 18022400
    Am I stuck to 800x600 in X Server when running Arch as a VMWare guest, or can I improve my situation?
    EDIT: I have open-vm-tools installed and started through /etc/vmware-tools/poweron-vm-default.
    Last edited by marfig (2010-08-05 02:40:23)

    Ok. Finally it's working. This is why I love Arch. It forces me to learn.
    The solution:
    Step 1.
    I followed the instructions in X.Org Wiki about obtaining modelines. Sadly, the log file didn't produce anything (probably because I was using the vesa vbe driver). But I followed the next option and got the modeline from Windows tool, Powerstrip.
    "1366x768" 85.476 1366 1436 1579 1792 768 771 774 798 -hsync +vsync
    Step 2.
    Went to the web and fetched all the technical information about this monitor (a Acer X193HQ, that I use as my third monitor). I wanted hsync and vsync ranges, and display size in mm.
    Step 3.
    Edited my configuration file (/etc/X11/xorg.conf.d/10-monitor.conf) making sure to comment out the last part of the modeline, since I was going to manually add the hsync and vsync ranges.
    Section "Monitor"
    Identifier "Monitor0"
    DisplaySize 410 230
    HorizSync 30-80
    VertRefresh 55-60
    ModelName "X193HQ"
    Option "DPMS"
    VendorName "Acer"
    ModeLine "1366x768" 85.476 1366 1436 1579 1792 768 771 774 798 # -hsync +vsync
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 16
    SubSection "Display"
    Depth 16
    Modes "1366x768"
    EndSubSection
    EndSection
    Step 4.
    Success! X is started in 1366x768 with the vesa drivers with a 60Hz refresh rate.
    Final thoughts
    - With the vmware display drivers (xf86-driver-vmware) I don't get ideal results. For some reason it starts in 1368x768 (yes, 1368!). However xrandr reveals it supports 1366x768, and once I xrandr --size into it, all is fine. Dunno why this happens.
    - It only works in 16 bit depth. 24 or 32 corrupt the screen. I don't know exactly why either. But for the use I plan to give the X server, 16 bit is fine.
    Last edited by marfig (2010-08-06 00:02:24)

Maybe you are looking for

  • Connecting airport extreme, netgear dsl modem, windows 7, and Macbook pro

    I'm having a problem connecting my airport extreme to my netgear modem, windows 7 pc and my Macbook Pro.  Until a few days ago, I had a Westell wireless dsl modem and everything worked fine.  Now, the only way I can connect to the internet is through

  • Turn off auto-correction in 2.0?

    Is there a way to turn off auto-correction in firmware 2.0? I live in a non-English speaking country and most of my typing is in non-English. It's really annoying when my iPod tries to correct every other word that I type.

  • Try It mode - string input

    In Try It mode can you have more than 1 string input? I've been playing around with it but without success. For example when the user is inputting text some users put in 1 space after a full stop, others use 2. This will be frustrating to the users.

  • Drag and Drop issue and Exposé

    I know that there are many people with the same problem and maybe creating a new topic might seem lazy but I've just found a way to replicate the problem in my system and that might enlighten somebody to find a way to fix it. I've noticed that finder

  • How to create a text field (multi-line) that starts on one pages but finishes on another?

    Hi, I would like to create a multiline text field that the field starts on one pages but finishes on another? Here is an example of what I want. The text starts in the top of the box (1st box) and would continue in the bottom box (2nd box). I have Ad