Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aacc --with-opus
# Maintainer: Dennis E. Mungai <[email protected]> | |
#this package can be built with CUDA 7.0. | |
#Optimized for Maxwell Gen 1 GPUs ONLY. lolzzzz | |
pkgbase=opencv-cuda-qt-opencl | |
pkgname=('opencv-cuda-qt-opencl') | |
pkgver=2.4.10 | |
provides=('opencv=$pkgver' 'opencv-samples') | |
pkgrel=5 | |
pkgdesc="Open Source Computer Vision Library with CUDA and QT5 support. SSE4.1 is enabled." |
Section "Device" | |
Identifier "Intel Graphics" | |
Driver "intel" | |
Option "AccelMethod" "sna" | |
EndSection |
# Example xorg.conf.d snippet that assigns the touchpad driver | |
# to all touchpads. See xorg.conf.d(5) for more information on | |
# InputClass. | |
# DO NOT EDIT THIS FILE, your distribution will likely overwrite | |
# it when updating. Copy (and rename) this file into | |
# /etc/X11/xorg.conf.d first. | |
# Additional options may be added in the form of | |
# Option "OptionName" "value" | |
# | |
Section "InputClass" |
# Maintainer: Dennis E. Mungai <[email protected]> | |
pkgname=beignet-git | |
_gitname=beignet | |
pkgver=1257a87 | |
pkgrel=1 | |
pkgdesc="OpenCL Implemenation for Intel IvyBridge, Haswell and | |
Broadwell GPUs*" | |
arch=('i686' 'x86_64') | |
url="http://cgit.freedesktop.org/beignet/" |
# $Id$ | |
# Maintainer: Dennis E. Mungai <[email protected]> | |
pkgbase=linux-mainline # Build stock -ARCH kernel | |
#pkgbase=linux-custom # Build kernel with a different name | |
#_srcname=linux-3.18 | |
#_patchname=patch-3.19-rc6 | |
_srcname=linux-4.0 | |
pkgver=4.0 |
PBIS (PowerBroker Identity Service) throws some errors while installing v8.2.2 (latest as of 25 June 2015) rpm. | |
[root@centos7 ~]# cat /etc/redhat-release | |
CentOS Linux release 7.1.1503 (Core) | |
[root@centos7 ~]# ./pbis-open-8.2.2.2993.linux.x86_64.rpm.sh install (This is filtered output) | |
... | |
... | |
Error: /usr/bin/systemctl enable /etc/pbis/redhat/lwsmd.service returned 1 | |
Failed to issue method call: Unit /etc/pbis/redhat/lwsmd.service does not exist. |
Note that for you to be able to use the Wireless radio On/Off button on Asus G750JM-DS71 notebook SKU, you must make the following change on the system:
echo “options asus_nb_wmi wapf=1” | sudo tee /etc/modprobe.d/asus_nb_wmi.conf
Now, you can use the WMI - based keyboard input to control the status of the wireless card on the system.
# $Id: PKGBUILD 213056 2014-05-18 13:44:18Z andyrtr $ | |
# Maintainer: Jan de Groot <[email protected]> | |
# Contributor: Tobias Powalowski <[email protected]> | |
# Contributor: Thomas Bächler <[email protected]> | |
# Contributor: Alexander Baldeck <[email protected]> | |
pkgname=xf86-input-synaptics | |
pkgver=1.8.0 | |
pkgrel=2 | |
pkgdesc="Synaptics driver for notebook touchpads" |
sudo yum install libmpc-devel mpfr-devel gmp-devel | |
cd ~/Downloads | |
curl ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-4.9.2/gcc-4.9.2.tar.bz2 -O | |
tar xvfj gcc-4.9.2.tar.bz2 | |
cd gcc-4.9.2 | |
./configure --disable-multilib --enable-languages=all --prefix=/apps/gcc/4.9.2 | |
make -j 4 | |
make install |