Instal sof-firmware as described in Arch Linux Wiki:
sudo pacman -S sof-firmwareConfigure PulseAudio to load Alsa modules with the correct device and channel settings, by adding these two lines to /etc/pulse/default.pa:
Instal sof-firmware as described in Arch Linux Wiki:
sudo pacman -S sof-firmwareConfigure PulseAudio to load Alsa modules with the correct device and channel settings, by adding these two lines to /etc/pulse/default.pa:
| # try manualy update | |
| sudo pacman -Sy archlinux-keyring | |
| sudo pacman-key --refresh-keys | |
| pacman-key --list-sigs | grep ImporteddKey | |
| # recreate gpg database if previous wrong | |
| ls -l /etc/pacman.d/gnupg | |
| sudo mv /etc/pacman.d/gnupg /etc/pacman.d/gnupg.back | |
| sudo pacman-key --init | |
| sudo pacman-key --populate |
| package sftp | |
| import ( | |
| "errors" | |
| "fmt" | |
| "io" | |
| "os" | |
| "path/filepath" | |
| "strings" | |
| "time" |
| # Reference: https://www.exclamationlabs.com/blog/continuous-deployment-to-npm-using-gitlab-ci/ | |
| # GitLab uses docker in the background, so we need to specify the | |
| # image versions. This is useful because we're freely to use | |
| # multiple node versions to work with it. They come from the docker | |
| # repo. | |
| # Uses NodeJS V 9.4.0 | |
| image: node:9.4.0 | |
| # And to cache them as well. |
| stage('Stage Name') { | |
| steps { | |
| build(job: 'pipeline.name', parameters: [string(name: 'DEPLOY_TO', value: "test")]) | |
| } | |
| } |
| ❯ sudo ./intelmetool -s | |
| Bad news, you have a `QM67 Express Chipset Family LPC Controller` so you have ME hardware on board and you can't control or disable it, continuing... | |
| MEI was hidden on PCI, now unlocked | |
| MEI found: [8086:1c3a] 6 Series/C200 Series Chipset Family MEI Controller #1 | |
| ME Status : 0x1e003052 | |
| ME Status 2 : 0x16320172 | |
| ME: FW Partition Table : OK |
| user nginx; | |
| worker_processes auto; | |
| error_log /var/log/nginx/error.log info; | |
| pid /var/run/nginx.pid; | |
| events { worker_connections 1024; } | |
| http { | |
| default_type text/html; | |
| log_format main '$remote_addr -> $request $status $body_bytes_sent bytes -> $upstream_addr'; | |
| access_log /var/log/nginx/access.log main; |