New pages

From KlavoWiki
Jump to navigationJump to search
New pages
Hide registered users | Hide bots | Hide redirects
  • 00:07, 14 October 2024Reolink IP Camera (hist | edit) ‎[615 bytes]David (Sọ̀rọ̀ | contribs) (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...")
  • 23:53, 18 July 2024btop (hist | edit) ‎[687 bytes]David (Sọ̀rọ̀ | contribs) (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 ")
  • 03:33, 17 June 2024RDP Saved Password (hist | edit) ‎[798 bytes]David (Sọ̀rọ̀ | contribs) (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...")
  • 08:16, 31 May 2024Home Assistant VLAN (hist | edit) ‎[350 bytes]David (Sọ̀rọ̀ | contribs) (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")
  • 00:34, 9 March 2024Sunrise and Sunset Times (sunwait) (hist | edit) ‎[589 bytes]David (Sọ̀rọ̀ | contribs) (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...")
  • 10:29, 22 February 2024ssh keygen (hist | edit) ‎[95 bytes]David (Sọ̀rọ̀ | contribs) (Created page with "To generate SSH Keys with RSA ED25519 <pre> ssh-keygen -t ed25519 </pre> Category : Linux ")