This explains how to build mesa from source, and how to use the custom built mesa to run some apps and games, without needing to replace the mesa libraries that your operating system runs on.
Let's assume that you are using an x86_64 system.
This explains how to build mesa from source, and how to use the custom built mesa to run some apps and games, without needing to replace the mesa libraries that your operating system runs on.
Let's assume that you are using an x86_64 system.
(a guide by rika (@lostkagamine). tested, should work fine.)
If you are having issues like the screen turning black, read the mini-FAQ at the bottom of this document!
Uninstalling GShade removes the gshade-shaders folder which contains all the content. It does not remove GShade's executable file. This guide will help you do that.
Hello, brethren :-)
As it turns out, the current version of FFmpeg (version 3.1 released earlier today) and libav (master branch) supports full H.264 and HEVC encode in VAAPI on supported hardware that works reliably well to be termed "production-ready".
Final Fantasy IX should work with the latest GloriousEggroll proton builds and should properly boot the game with controller support if you are using Steam's internal controller drivers.
FINAL FANTASY IX COMMON DIR - The directory to your FINAL FANTASY IX installation. Steam installs game assets into a "steamapp/common" directory, which is generally located in ~/.steam/steam/SteamApps/common with a default steam library configuration.
Memoria Mod Manager - The framework for all FFIX modding on PC -- used to add additional content or game logic to the game. It can be configured using a configuration file found in the FINAL FANTASY IX COMMON DIR named Memoria.ini.
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
Build VAAPI with support for VP8/9 decode and encode hardware acceleration on a Skylake validation testbed:
Build platform: Ubuntu 16.04LTS.
First things first:
Install baseline dependencies first
sudo apt-get -y install autoconf automake build-essential libass-dev libtool pkg-config texinfo zlib1g-dev libva-dev cmake mercurial libdrm-dev libvorbis-dev libogg-dev git libx11-dev libperl-dev libpciaccess-dev libpciaccess0 xorg-dev intel-gpu-tools
| 1 #!/bin/sh | |
| 2 | |
| 3 set -x | |
| 4 case $script_type in | |
| 5 up) | |
| 6 ip netns add vpn | |
| 7 ip netns exec vpn ip link set dev lo up | |
| 8 mkdir -p /etc/netns/vpn | |
| 9 ip link set dev "$1" up netns vpn mtu "$2" | |
| 10 ip netns exec vpn ip addr add dev "$1" \ |