git clone https://kernel.googlesource.com/pub/scm/linux/kernel/git/firmware/linux-firmware.git
sudo cp linux-firmware/amdgpu/* /lib/firmware/amdgpu
sudo update-initramfs -k all -u -v
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// Script for converting hevc to avc (h265 to h264) | |
const fs = require('fs'); | |
const os = require('os'); | |
const path = require('path'); | |
const process = require('process'); | |
const shellescape = require('shell-escape'); | |
const child_process = require('child_process'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// Script for extracting all files from an MKV container. | |
const fs = require('fs'); | |
const path = require('path'); | |
const process = require('process'); | |
const shellescape = require('shell-escape'); | |
const child_process = require('child_process'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conky.config = { | |
alignment = 'top_right', | |
background = true, | |
border_inner_margin = 0, | |
border_outer_margin = 0, | |
border_width = 10, | |
cpu_avg_samples = 100, | |
display = 1, | |
double_buffer = true, | |
draw_borders = false, |
Download/install from: https://www.clamav.net/downloads
Open terminal
One time:
sudo cp /usr/local/clamav/etc/freshclam.conf.sample /usr/local/clamav/etc/freshclam.conf
sudo /usr/bin/sed -i '' 's/Example/# Example/' /usr/local/clamav/etc/freshclam.conf
sudo cp /usr/local/clamav/etc/clamd.conf.sample /usr/local/clamav/etc/clamd.conf
sudo /usr/bin/sed -i '' 's/Example/# Example/' /usr/local/clamav/etc/clamd.conf
Geared towards running on Dell Wyse 3040 ATOM CPU devices with antiX Linux with Nortek GoControl HUSBZB-1 Z-Wave and Zigbee.
The Wyse 3040 is a very basic 4 core 1.44GHz/1.92GHz (burst) Intel Atom x5-Z8350 with 2GB of RAM. Supposedly they average about 7.5 watts under normal load. They can be purchased for $35-100 on eBay (as of 2 Jan 2023). CPUMark on mine is 1,050, which is about 138 points higher than average.
I chose antiX as it is geared for low-end computers and it does not come with much installed on it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
by default,openwrt do not allow ssh access from wan, here are two method to change that: | |
1.login into your wrt from a lan host.issue the following command: | |
iptables -F | |
the command "flush away" all the firewall rules,including the one that rejects ssh request from wan. | |
now you can try ssh from anywhere. | |
aware that the firewall deactivation leads to highly security risk.and after the wrt restarts ,all default firewall configuration comes back.you hava to "flush" the rules once again. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Hack", | |
"font_size": 28.0, | |
"gutter": true, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"keys": ["super+shift+r"], | |
"command": "show_panel", | |
"args": { | |
"panel": "replace", | |
"reverse": false | |
} | |
}, | |
{ |