User contributions for David
From KlavoWiki
Jump to navigationJump to search
10 November 2024
- 02:0502:05, 10 November 2024 diff hist −8 Firewall for Windows No edit summary current
5 November 2024
- 21:5321:53, 5 November 2024 diff hist −43 Debian IPv6 Network Manager No edit summary current
- 21:5121:51, 5 November 2024 diff hist +1,151 N Debian IPv6 Network Manager Created page with "= Intro = On Debian 12 or more specifically Raspbian 12 Bookworm whenever I created a static IPv6 address router advertisement would cease to work. I could not find a solution while using network manager, so I decided to remove it. This solved my problem. If you are doing this on a remote system it can be done in the following order as not to loose connectivity to IPv4 or IPv6. = Configure Static IPs = <pre>vi /etc/network/interfaces</pre> <pre> auto eth0 iface eth0..."
29 October 2024
- 04:3004:30, 29 October 2024 diff hist +204 exim No edit summary current
14 October 2024
- 00:0700:07, 14 October 2024 diff hist +615 N Reolink IP Camera Created page with " left To obtain the video steam of the the Reolink cameras. RTSP, Clear and Fluent. <pre> rtsp://<username>:<password>@<camera_ip> rtsp://<username>:<password>@<camera_ip>/h264Preview_01_sub </pre> RTMP, Clear and Fluent <pre> rtmp://<camera_ip>/bcs/channel0_main.bcs?channel=0&stream=0&user=<username>&password=<password> rtmp://<camera_ip>/bcs/channel0_sub.bcs?channel=0&stream=1&user=<username>&password=<password> </pre> <br><br>Ima..." current
13 October 2024
- 23:5423:54, 13 October 2024 diff hist 0 N File:reolink rlc-1240a.jpg No edit summary current
27 September 2024
- 21:5821:58, 27 September 2024 diff hist +2 Static IP Address for Raspbian No edit summary current
- 21:5121:51, 27 September 2024 diff hist +79 Static IP Address for Raspbian No edit summary
13 September 2024
- 21:5821:58, 13 September 2024 diff hist +233 exim No edit summary
21 July 2024
- 07:3407:34, 21 July 2024 diff hist +221 btop No edit summary current
18 July 2024
- 23:5923:59, 18 July 2024 diff hist +63 btop No edit summary
- 23:5523:55, 18 July 2024 diff hist +42 btop No edit summary
- 23:5323:53, 18 July 2024 diff hist +361 N btop Created page with "btop++ : Resource monitor that shows usage and stats for processor, memory, disks, network and processes<br> To run on a Raspberry Pi, hence aarch64 <pre> cd /opt wget https://github.com/aristocratos/btop/releases/download/v1.3.2/btop-aarch64-linux-musl.tbz tar -xvjf btop-aarch64-linux-musl.tbz ./install.sh cd </pre> <pre> btop </pre> Category : Linux "
17 June 2024
- 03:4103:41, 17 June 2024 diff hist +6 RDP Saved Password No edit summary current
- 03:3303:33, 17 June 2024 diff hist +792 N RDP Saved Password Created page with "Using the RDP command MSTSC and trying to save a username and password does not work. = Command = Create a saved password using this method. <pre>cmdkey /generic:TERMSRV/mycomputer.domain.local /user:domainname\username /pass:mysecretpssword</pre> = Show = If the type is Domain Password it seems to fail. Type needs to be Generic. <pre>cmdkey /list:TERMSRV/*</pre> == Domain Password : Will Fail == <pre> Currently stored credentials for TERMSRV/*: Target: TERMSR..."
11 June 2024
- 03:3203:32, 11 June 2024 diff hist 0 Private Internet Access with OpenVPN →Enhanced Security current
- 03:3103:31, 11 June 2024 diff hist +300 Private Internet Access with OpenVPN No edit summary
9 June 2024
- 00:5900:59, 9 June 2024 diff hist 0 Private Internet Access with OpenVPN No edit summary
31 May 2024
- 08:1608:16, 31 May 2024 diff hist +350 N Home Assistant VLAN Created page with "To create a virtual interface on HassIO. SSH to Server. <pre> ha network vlan end0 15 --ipv4-address 10.13.14.253/24 --ipv6-method disabled </pre> Go into network setting as it seems to make the interface DHCP. Change to static and set the desired IP address.<br><br> To delete just disable interface and it will be removed. Category : HassIO" current
19 May 2024
- 20:0720:07, 19 May 2024 diff hist +730 Crontab No edit summary current
7 May 2024
- 21:1021:10, 7 May 2024 diff hist +78 Mysql commands →To a Local file current
28 March 2024
- 07:5807:58, 28 March 2024 diff hist −13 TeslaMate →TeslaMate Install current
9 March 2024
- 00:3500:35, 9 March 2024 diff hist −1 Sunrise and Sunset Times (sunwait) No edit summary current
- 00:3400:34, 9 March 2024 diff hist +590 N Sunrise and Sunset Times (sunwait) Created page with "<pre> cd /opt git clone https://github.com/risacher/sunwait cd sunwait make </pre> <pre> #!/bin/bash # Replace with your actual latitude and longitude # NOTE: the N and E after the lat and long value. # Right click on Google Maps location for coordinates. LATITUDE="48.8566N" LONGITUDE="2.3522E" # Get sunrise and sunset times SUNRISE=$(/opt/sunwait/sunwait list rise offset 0:00:00 $LATITUDE $LONGITUDE) SUNSET=$(/opt/sunwait/sunwait list set offset 0:00:00 $LATITUDE $L..."
22 February 2024
- 10:2910:29, 22 February 2024 diff hist +95 N ssh keygen Created page with "To generate SSH Keys with RSA ED25519 <pre> ssh-keygen -t ed25519 </pre> Category : Linux " current
14 January 2024
- 22:4122:41, 14 January 2024 diff hist +174 SSL Certificate : Extract .key and .crt from .pfx No edit summary current
- 22:1922:19, 14 January 2024 diff hist +320 N SSL Certificate : Extract .key and .crt from .pfx Created page with "<pre> openssl pkcs12 -in [yourfilename.pfx] -nocerts -out [keyfilename-encrypted.key] openssl rsa -in [keyfilename-encrypted.key] -out [keyfilename-decrypted.key] openssl pkcs12 -in [yourfilename.pfx] -clcerts -nokeys -out [certificatename.crt] </pre> Category : Debian"
21 December 2023
- 23:3823:38, 21 December 2023 diff hist 0 m File Checksum Integrity Verifier David moved page File Checksum to File Checksum Integrity Verifier without leaving a redirect current
- 23:3823:38, 21 December 2023 diff hist +104 File Checksum Integrity Verifier No edit summary
- 23:3623:36, 21 December 2023 diff hist +1 File Checksum Integrity Verifier →Uninstall
- 23:3623:36, 21 December 2023 diff hist +462 N File Checksum Integrity Verifier Created page with "To find the checksum of a file in Windows. = Install = <pre>Install-Module -Name PsFCIV</pre> == Version == <pre>Get-Command -Module PsFCIV</pre> = Usage = <pre>Import-Module PsFCIV</pre> <pre>Start-PsFCIV -Path C:\Users\username\Downloads -Include *.out -XML files.xml -HashAlgorithm MD5, SHA1, SHA256</pre> View the result in the XML file files.xml = Uninstall = <pre>Uninstall-Module PsFCIV<pre> Category : Windows Category : Windows PowerShell"
1 December 2023
- 00:0700:07, 1 December 2023 diff hist +48 Raspberry Pi Firmware →Upgrade current
27 November 2023
- 01:1701:17, 27 November 2023 diff hist +221 TeslaMate No edit summary
12 November 2023
- 09:4209:42, 12 November 2023 diff hist +67 TeslaMate →Docker Install
4 November 2023
- 05:5305:53, 4 November 2023 diff hist +781 Static IP Address for Raspbian No edit summary
20 October 2023
- 03:4603:46, 20 October 2023 diff hist −15 Export/Import Putty Saved Sessions and Settings →Command Prompt current
19 September 2023
- 00:3900:39, 19 September 2023 diff hist +188 TeslaMate No edit summary
13 July 2023
- 05:2205:22, 13 July 2023 diff hist −8 nginx Reverse Proxy →Configuration File current
- 05:2105:21, 13 July 2023 diff hist −8 nginx Reverse Proxy →Configuration File
25 June 2023
- 04:4704:47, 25 June 2023 diff hist +5 Raspberry Pi Firmware →Reference
- 04:4504:45, 25 June 2023 diff hist +18 Raspberry Pi Firmware →Manual Install
- 04:4404:44, 25 June 2023 diff hist +8 Raspberry Pi Firmware No edit summary
20 June 2023
- 04:5104:51, 20 June 2023 diff hist +59 Raspberry Pi Model No edit summary current
19 June 2023
- 23:0423:04, 19 June 2023 diff hist +108 Firewall for Windows No edit summary
4 June 2023
- 10:0010:00, 4 June 2023 diff hist +378 N Disabling Windows Defender Credential Guard Created page with "Disable the Group Policy setting that governs Windows Defender Credential Guard. <pre> gpedit </pre> Navigate to: * Computer Configuration * Administrative Templates * System * Device Guard * Turn on Virtualization Based Security. In the "Credential Guard Configuration" section, set the dropdown value to "Disabled": file:credential-guard.jpg Category : Windows " current
- 09:5709:57, 4 June 2023 diff hist 0 N File:credential-guard.jpg No edit summary current
3 June 2023
- 00:2400:24, 3 June 2023 diff hist +478 N Windows AD DNS Export Created page with "To export an Activie Directory integrated zone. <pre> Export-DnsServerZone -Name "domainname.com" -FileName "domainname.com.txt" </pre> or <pre> dnscmd /zoneexport domainname.com domainname.com.txt </pre> To ensure you don't receive a permission denied error change folders to C:\windows\system32\dns. If you are located in any other folder when the command is executed the exported file is save to the folder: <pre> c:\windows\system32\dns </pre> Category : Windows " current
6 May 2023
- 19:1119:11, 6 May 2023 diff hist 0 htpasswd Generator No edit summary current
- 19:1119:11, 6 May 2023 diff hist +172 N htpasswd Generator Created page with "To create an encrypted password: <pre>htpasswd -nbB username password</pre> If you need to install the package: <pre>apt install apache2-utils</pre> Cateogry : Debian"
- 04:2004:20, 6 May 2023 diff hist +338 N Pi-hole Black List Created page with "To add a number of Domains to Pi-Hole for blocking. <pre> https://firebog.net/ </pre> From the Pi-Hole admin interface select Adlists and then you can add the urls from firebog. '''Hint''': copy and paste the urls into notepad as one section at a time and add a space between each URL and add them as one entry. category : Pi-Hole" current