sudo zypper install yubikey-manager pam_u2f
ykman info
ykman fido info
Below are instructions for using a proton runner directly, not inside Lutris or Bottles. Bottles appears to work the same way, but the instructions will be quite different. For example Bottles runners with the flatpak are in $HOME/.var/app/com.usebottles.bottles/data/bottles/runners
and many other paths and dxvk packages differ.
Install the following packages
xserver-xorg-core
(server)xserver-xorg-video-XXX
(video driver, XXX depends on your hardware)xserver-xorg-input-XXX
(input device driver, XXX depends on your hardware. evdev
works well for most cases)x11-xserver-utils
(xmodmap
, xrandr
)x11-xkb-utils
(setxkbmap
)x11-utils
(xdpyinfo
, xev
, xkill
, xprop
, xwininfo
)#!/bin/bash | |
#taken from http://www.insanelymac.com/forum/topic/308533-how-to-create-a-bootable-el-capitan-iso-fo-vmware/ | |
# Mount the installer image | |
hdiutil attach /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app | |
# Create the ElCapitan Blank ISO Image of 7316mb with a Single Partition - Apple Partition Map | |
hdiutil create -o /tmp/ElCapitan.cdr -size 7316m -layout SPUD -fs HFS+J |