User contributions for AwesomO

A user with 107 edits. Account created on 15 April 2023.
Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)

29 April 2025

23 April 2025

21 April 2025

  • 21:5121:51, 21 April 2025 diff hist +1,177 N N33Bcoin Created page with "n33bcoin is a very light fork of bitcoin 0.14.3 code base, so we can learn more about bitcoin by doing (without losing/risking your bitcoin) Bitcoin is one of the grestest open source projects of are time and should come with a free and open education project to go along side it. Buying and losing bitcoin can be expensive. But thanks to bitcoin being free and open source software, learning about bitcoin by creating and playing with your very own fork is not. Can be don..."
  • 21:4921:49, 21 April 2025 diff hist +9,783 N Windows 10 VirtualBox N33Bcoin Created page with "==Installing Virtual box in windows 10 == ===depends on c++=== https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version * https://aka.ms/vs/17/release/vc_redist.x64.exe ===VirtualBox and extension pack=== https://www.virtualbox.org/wiki/Downloads * https://download.virtualbox.org/virtualbox/7.1.8/VirtualBox-7.1.8-168469-Win.exe * https://download.virtualbox.org/virtualbox/7.1.8/Oracle_Virtu..."
  • 21:4721:47, 21 April 2025 diff hist +121,855 N N33Bcoin 0.0.1 Created page with "==Start up HardWare== * OS (local) Ubuntu-Mate 24.04 - this tut is done on a clean install of ubuntu-mate 24.04 ** Hardware: HP EliteDesk G1 - ram = 8GB - HD = 120GB ssd - CPU = i5-4590S CPU @ 3.00GHz ** Hardware: Thinkpad X270 - Ram - HD - CPU * Server VPS ubuntu-server 24.04 ** vultr.com ===Software OS=== * Will be using Ubuntu 24.04 as main OS - but to build this version of litecoin 0.14.2 we will be using ubuntu 18.04 in a lxc container - trying to build in 24.04..."
  • 17:0217:02, 21 April 2025 diff hist −25 Host Your Own Mediawiki Online Ubuntu 22.04 Delete a User from MediaWiki Database current
  • 17:0217:02, 21 April 2025 diff hist +1,770 Host Your Own Mediawiki Online Ubuntu 22.04 Remove admin rights

20 April 2025

  • 19:2119:21, 20 April 2025 diff hist +5,727 N N33Bcoin Address Generator Bitcoin Created page with "Note: Should work on Bitcoin - Untested on Bitcoin - developed by Noob's do not trust, you been warned. * This script does the following: ** It takes user input as a seed (which can be 12 words or any random input). ** It generates a deterministic seed by hashing the input. ** It uses this seed to create an ECDSA private key on the secp256k1 curve (used by Bitcoin and n33bcoin). ** It derives the public key from the private key. ** It generates a N33B coin address from..." current
  • 18:3118:31, 20 April 2025 diff hist +2,191 N Python Generate Public Private Key Pair Crypto Bitcoin Created page with "== Script Depends - Install == <code>sudo apt install python3-ecdsa</code> == Generating a Genesis private and public key == <code>$EDITOR GenPub.py</code> <pre> import ecdsa import hashlib # sudo apt install python3-ecdsa # required def generate_key_pair(): sk = ecdsa.SigningKey.generate(curve=ecdsa.SECP256k1) vk = sk.get_verifying_key() x_coord = vk.pubkey.point.x() y_coord = vk.pubkey.point.y() if y_coord % 2 == 0: compressed_pub_key..." current
  • 15:1915:19, 20 April 2025 diff hist +15,180 N GenesisH0 Creating Genesis Hash Created page with "{{:LICENCE_HEADER_APACHE2}} * Append same license to page containing script * https://github.com/lhartikk/GenesisH0 ** The Script is under the Apache Version 2 License * Due to the age of the script, the best way i found to get it working was in a LXC container with python2.5 and some depends installed, this way your main system remains clean. ==Create container== <code>lxc launch ubuntu:24.04 pygen</code> <code>lxc exec pygen bash</cod..." current
  • 15:1715:17, 20 April 2025 diff hist +8,148 GenesisH0 Python Script No edit summary current Tag: Visual edit: Switched
  • 15:1615:16, 20 April 2025 diff hist +27 N GenesisH0 Python Script Created page with "{{:LICENCE_HEADER_APACHE2}}"

17 April 2025

16 April 2025

  • 22:0722:07, 16 April 2025 diff hist +1,843 N Creating a Windows USB installer from linux Created page with " * Been wasting a whole day following tuts on how to create a windows install usb using linux and running into non stop errors, best method so far booted windows, but had media driver issue. * '''Working method''', install windows on virtual box and passthrough usb to use windows ''Media Creation Tool''' to create working USB. ==Install windows in VirtualBOX and pass through usb== * Need license key now just to install windows in VBox - using win10pro '''Windows_10_..." current

10 April 2025

9 April 2025

5 April 2025

2 April 2025

20 March 2025

  • 23:4523:45, 20 March 2025 diff hist +4,957 N Scp only Created page with "==scp only account key and path== ===Create Account on Server=== Create user account you are going to use:<br> <code>adduser rscp</code> Make sure user has a '''.ssh''' directory to send public key to:<br> * TIP: If logged in as '''root''' for permissions reasons you may want to run as user: <code>su - <username> -c "<command>"</code> <code>mkdir /home/rscp/.ssh</code> Make a Directory to transfer files to:<br> <code>mkdir /home/rscp/media</code> Note: If you see err..." current
  • 20:4120:41, 20 March 2025 diff hist +18,569 N Ubuntu 24.04 Brute-Forcing a Forgotten kpcli .kdbx Passphrase Created page with " Kpcli Basics Tut page So you forgotten your keepass password, well ..... there is no one to call. If you really want to try and force it open, here is a simple tut for completenoobs: ==Step 1 - creating a kpcli database with password == ===Install Kpcli=== <code>sudo apt install kpcli</code> ===Open Kpcli=== <code>kpcli</code> ===Create passworded database on kpcli=== * Will be Prompted for a mast..." current
  • 16:5116:51, 20 March 2025 diff hist +4,061 N Ubuntu 24.04 kpcli Perl How-To Created page with "== Ubuntu 24.04 kpcli Perl How-To == This guide shows how to set up `kpcli`, a Perl script for managing KeePass databases, on Ubuntu 24.04. * This Page is if you want to run the '''perl script''' * '''If you want an easy way to run kpcli please use apt or snap - Click here for more info''' We’ll download `kpcli-4.1.3.pl`, install its Perl dependencies, and get it running—all step-by-step. == What i..." current
  • 14:3014:30, 20 March 2025 diff hist +6,951 N Ubuntu 24.04 kpcli How-To: A Noob’s Guide to KeePass CLI Created page with "== Ubuntu 24.04 kpcli How-To: A Noob’s Guide to KeePass CLI == Welcome to this beginner-friendly guide on using `kpcli`—a command-line tool to manage your KeePass password databases on Ubuntu 24.04! Whether you’re new to the terminal or just want a simple way to handle passwords, this walkthrough will get you up and running. We’ll cover installing `kpcli`, creating a database, adding entries, searching, exporting, and more—all step-by-step, with tips to keep yo..." current

8 March 2025

  • 20:2020:20, 8 March 2025 diff hist +5,328 N FreeBSD 13.2 find hardware info Created page with "== FreeBSD 13.2 Find Hardware Info == This page details how to retrieve hardware information on FreeBSD 13.2 using built-in commands and optional tools from the ports collection. Tested as of March 08, 2025. == RAM and Swap Info == To check memory (RAM) and swap usage: * '''Total RAM:''' Display total physical memory in bytes: <code>sysctl hw.physmem</code> Example output (8GB in bytes): <pre> hw.physmem: 8589934592 </pre> * '''Memory Statistics:''' Show active..." current

7 March 2025

  • 00:3100:31, 7 March 2025 diff hist −472 Ubuntu 22.04 Nano No edit summary current
  • 00:1300:13, 7 March 2025 diff hist +3,614 N Ubuntu 24.04 find hardware info Created page with " == RAM and Swap Info == To display memory (RAM) and swap usage in a human-readable format with totals in megabytes: <code>free -m -h</code> * '''-m''': Shows output in megabytes. * '''-h''': Makes the output human-readable (e.g., GB, MB). Example output might look like: <pre> total used free shared buff/cache available Mem: 7.8Gi 2.1Gi 3.5Gi 0.2Gi 2.2Gi 5.4Gi Swap: 2.0Gi 0.0Gi..." current

4 March 2025

  • 02:0202:02, 4 March 2025 diff hist +5,867 N Raspberry Pi 2 as a Tailscale Exit Node for Home Network Created page with "= Raspberry Pi 2 as a Tailscale Exit Node for Home Network = This tutorial guides you through turning a '''Raspberry Pi 2''' (RPi2) into a '''Tailscale exit node''' for secure remote access to your '''home network'''. With this setup, you can log into your home servers, edit your local wiki, or access devices from anywhere using a headless Raspberry Pi 2. Keywords: '''Raspberry Pi 2 Tailscale setup''', '''headless SSH''', '''home VPN''', '''nmap IP discovery'''. == Ove..."

19 February 2025

17 February 2025

  • 09:5109:51, 17 February 2025 diff hist +685 CompleteNoobs Local Wiki In Docker Configure User Permissions
  • 08:2108:21, 17 February 2025 diff hist +4,567 N Ubuntu 24.04 - LXD Initialization Created page with "== LXD Initialization Guide for Ubuntu 24.04 == This guide will walk you through the process of initializing LXD on Ubuntu 24.04. LXD is a next-generation system container and virtual machine manager that offers a user experience similar to virtual machines but using Linux containers instead. === Prerequisites === * Ubuntu 24.04 installed on your system * Administrative (sudo) access to your system === Step 1: Install LXD === If LXD is not already installed on your sy..." current
  • 08:2008:20, 17 February 2025 diff hist +16,062 N Ubuntu 24.04 LXC Basic's Created page with "= Quick Start Guide: Ubuntu LXC Containers for CompleteNoobs = NOTES - lost all notes on localwiki when i did bad backup before nuke and pave, starting again. == Introduction == This guide will help you get started with LXC (Linux Containers) on Ubuntu. We'll cover how to login to a container, run commands from the host on the container, and move files between the host and container. == Prerequisites == * Ubuntu system with LXC installed * Basic knowledge of terminal..."

16 February 2025

  • 22:5922:59, 16 February 2025 diff hist +16,314 N CompleteNoobs Local Wiki In Docker Created page with " ==Starting Environment== * '''Hardware''': HP EliteDesk 800 G1 * '''Operating System''': Ubuntu-Mate 24.04 * '''Installation Type''': Fresh Install * '''Initial Setup Post-Install''': Package Update: <code>sudo apt update && sudo apt upgrade -y</code> * '''Additional Software''': Installed just to record screen for this tut and not needed <code>sudo apt install simplescreenrecorder</code> == Docker Installation Guide == === Preparation === Before we begin, make sure..."
  • 22:0822:08, 16 February 2025 diff hist +442 SET$EDITOR forgot about bash current

13 February 2025

10 February 2025

7 February 2025

  • 15:0315:03, 7 February 2025 diff hist +14,109 N Ubuntu Mate 24.04 Deactivate Bluetooth Enabled on system startup Created page with " == EDIT /etc/bluetooth/main.conf == File: <code>/etc/bluetooth/main.conf</code> <code>sudo $EDITOR /etc/bluetooth/main.conf</code> * Line: 322 <pre> # AutoEnable defines option to enable all controllers when they are found. # This includes adapters present on start as well as adapters that are plugged # in later on. Defaults to 'true'. AutoEnable=true </pre> * Change '''AutoEnable''' to false <code>AutoEnable=false</code> * save and exit '''Done''' from now on, blue..."
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)