Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
| # source: https://forum.proxmox.com/threads/removing-deleting-a-created-cluster.18887/ | |
| #/bin/sh | |
| # stop service | |
| systemctl stop pvestatd.service | |
| systemctl stop pvedaemon.service | |
| systemctl stop pve-cluster.service | |
| systemctl stop corosync | |
| systemctl stop pve-cluster | |
| # edit through sqlite, check, delete, verify |
| // ==UserScript== | |
| // @name AdLess FS.TO Player | |
| // @namespace http://j4ck.lp5.com.ua/myshows/ | |
| // @version 0.4 | |
| // @description Меняет плеер сайта на HTML5 встроенный и добавляет кнопку MyShows и фон для сериалов оттуда | |
| // @author J4ck Th3 R1pp3r | |
| // @match http://fs.to/* | |
| // @connect j4ck.lp5.com.ua | |
| // @grant GM_xmlhttpRequest | |
| // ==/UserScript== |
This guide assumes you have the emmet and language-babel packages already installed in Atom
keymap.cson file by clicking on Atom -> Keymap… in the menu bar'atom-text-editor[data-grammar~="jsx"]:not([mini])':| Mounting block device in lxc (specifically Proxmox 4) | |
| 1. Find devices' major & minor ID (need both dev + partition for HDD) | |
| # ls -al /dev/sda | |
| brw-rw---- 1 root disk 8, 0 Dec 19 11:16 /dev/sda1 | |
| # ls -al /dev/sda1 | |
| brw-rw---- 1 root disk 8, 1 Dec 19 11:16 /dev/sda1 | |
| That's 8,0 for sda and 8,1 for sda1 |
| function readFile(file) { | |
| var reader = new FileReader(); | |
| var deferred = $.Deferred(); | |
| reader.onload = function(event) { | |
| deferred.resolve(event.target.result); | |
| }; | |
| reader.onerror = function() { | |
| deferred.reject(this); |