All public logs

Jump to navigation Jump to search

Combined display of all available logs of CompleteNoobs. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 17:21, 5 March 2023 Noob talk contribs created page Ubuntu Disable Suspend (Created page with "Tested on Ubuntu-mate 20.04<br \> Tested on Ubuntu-server 20.04<br \> <br \> installed ubuntu server 20.04 on giga home server and found it would suspend every 30 minutes if i was not logged in with ssh. does not suspend on virtualbox just on real hardware when xorg is installed. disable suspend:<br \> <code>sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target</code> and if you want to re-enable suspend:<br \> <code>sudo systemctl unmask...")
  • 17:20, 5 March 2023 Noob talk contribs created page Ubuntu Disabling TouchScreen (Created page with " ==Ubuntu-mate 20.04== Tested on ubuntu-mate 20.04<br \> To disable the touchscreen in ubuntu-mate 20.04 you need to edit the file <code>40-libinput.conf</code><br \> And change the line <code>MatchIsTouchscreen "on"</code> To <code>MatchIsTouchscreen "off"</code>. <code>$EDITOR /usr/share/X11/xorg.conf.d/40-libinput.conf</code> <pre> Section "InputClass" Identifier "libinput touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/in...") Tag: Visual edit: Switched
  • 15:37, 5 March 2023 Noob talk contribs created page MIT Introduction to Computer Science and Programming in Python 6.0001 Fall 2016 Undergraduate (Created page with "Note - this is quickly put together to test and demonstrate hosting heavy data content on IPFS and CompleteNoobs. https://ocw.mit.edu/MIT OPEN COURSEWARE - MASSACHUSETTS INSTITUTE OF TECHNOLOGY.<code>https://giving.mit.edu/give/to/ocw/</code><br> Donations to support MIT Open Courseware <code>https://giving.mit.edu/give/to/ocw/</code><br> This content is under the <b>CC BY-NC-SA 4.0</b> Licence <code>https://creativecommons.org/licenses/by-nc-sa/4.0/</code><br> Conten...")
  • 00:56, 4 March 2023 Noob talk contribs created page Tmux (Created page with "= tmux — terminal multiplexer = ==Basics== Description Quote from man page <blockquote> tmux is a terminal multiplexer: it enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached. </blockquote> Tmux can do a number of things. In this module we are just going to concentrate on solving the problem of something going wrong with are ssh...")
  • 21:40, 3 March 2023 Noob talk contribs created page Yacy (Created page with " ==Installing Yacy on Ubuntu 22.04 Vultr VPS Server== * Spin up ubuntu 22.04 2 vCPUs 4096.00 MB RAM 80 GB SSD Storage * login <code>apt-get update && apt upgrade -y</code><br> <code>apt-get install openjdk-8-jre-headless nginx -y</code><br> <code>mkdir -pv /opt/yacy</code><br> Find Latest version https://download.yacy.net/<br> <code>wget https://download.yacy.net/yacy_v1.924_20210209_10069.tar.gz</code><br> <code>tar xvf yacy_v1.924_20210209_10069.tar.gz -C /opt/yacy/...")
  • 20:57, 3 March 2023 Noob talk contribs created page Create swap space (Created page with " ==Ubuntu== First check if you already have a swap space<br \> <code>free -m</code> <code>cat /proc/swaps</code> <code>swapon -s -v</code> === Creating a swap space === preallocate a 2 gigabyte space to be used for swap.<br \> Note: you can name swapfile to anything you want. <code>fallocate -l 2G /swapfile</code> Initialize the /swapfile file with zeros - see "Working out the count size" to see how to work out the count size. <code>dd if=/dev/zero of=/swapfile bs...")
  • 19:23, 3 March 2023 Noob talk contribs created page OpenSSH-Server Capture Failed Passwords (Created page with "==Done in a Vultr VPS to Capture Passwords== * could only get working on 18.04 - failed on 20.04 and 22.04 * Spin up a Ubuntu 18.04 server on VPS * Login to VPS terminal UFW firewall is enabled at default on Vultr Ubuntu 18.04 (at current time testing).<br> <code>ufw allow 8889/tcp</code><br> <code>echo 'Port 8889' >> /etc/ssh/sshd_config</code> <div class="toccolours mw-collapsible mw-collapsed"> Warning: Make sure you do not use SINGLE <code>></code> it will TRUNCATE...")
  • 12:13, 3 March 2023 Noob talk contribs created page Wiki Basic Syntax (Created page with " ==Headings== Do Not use <code>=Level 1=</code> Level one is for Page titles<br \> <nowiki>==Level 2 heading==</nowiki> <nowiki>===Level 3 heading===</nowiki> <nowiki>====level 4 heading====</nowiki> <nowiki>=====level 5 heading=====</nowiki> <nowiki>======level 6 heading======</nowiki> ==Info boxes== ===expanding content=== <div class="toccolours mw-collapsible mw-collapsed"> What you will like in title: <div class="mw-collapsible-content"> and of course the...")
  • 11:31, 3 March 2023 Noob talk contribs created page Basic SCP Examples (Created page with "== Some basic scp examples == ''check <code>man scp</code> for more info. '' Get file <code>foo.txt</code> from server@12.34.56.78 and copy to a local directory path. <code>scp username@12.34.56.78:/home/user/Documents/foo.txt /local/directory/path/ </code> <br /> Send public key to Server.<br \> <code>scp ~/.ssh/sshkey.pub username@12.34.56.78:/root/.ssh/</code> <br /> Send Public key to server and rename to ''authorized_keys'' <code>scp ~/.ssh/sshkey.pub usern...")
  • 01:25, 3 March 2023 Noob talk contribs created page Basic Nginx Server For Hosting Files Ubuntu 22.04 (Created page with "==Spin up a Server == Using <b>Vultr</b> i am going to deploy a <b>Ubuntu 20.04</b> Server.<br \> $5 a month, 1 cpu, 1024MB ram, 25GB ssd, 1000GB Bandwidth.<br \> I have been given the IP:<b>192.248.155.201</b> <br \> ===DNS=== make a <b>A RECORD</b> for subdomain server IP address<br> {| class="wikitable" |+ Dns |- |Type |Host |Ip address |TTL |- |A record |xml |192.248.155.201 |auto |- |} ==Enable Basic FireWall== <code>ufw allow 22/tcp</code><br> <code>ufw allow 44...")
  • 01:02, 3 March 2023 Noob talk contribs created page Windows 10 Local Wiki Import (Created page with "==Make sure Linux subsystem enabled on windows 10== <b>Control Panel</b> > <b>Programs</b> > <b>Turn Windows features on or off</b> Scroll down and make sure <b>Windows Subsystem for Linux</b> box is ticked<br \> If it was unticked, you might should reboot/restart your computer after the subsystem installs.<br \> ==Install Ubuntu from Microsoft store== Install the <b>Ubuntu App</b> from the store.<br \> And launch it.<br \> When you launch you will be prompted for a...")
  • 00:59, 3 March 2023 Noob talk contribs created page Ubuntu Local Wiki Import (Created page with "Tested on Ubuntu-Mate 20.04<br \> Download CompleteNoobs wiki and Keep Private Copy you can edit as you wish on your own computer. ==Download CompleteNoobs's XML dump== [https://xml.completenoobs.com CompleteNoobs xml dump] ==Create a container== <code>lxc launch ubuntu:20.04 localwiki</code><br \> Push file conataining xml dump to container<br \> <code>lxc file push wiki-dump.xml localwiki/root/</code><br \> Log/Chroot into container<br \> <code>lxc exec localwiki b...")
  • 00:57, 3 March 2023 Noob talk contribs created page Placeholder (Created page with " Ubuntu Import Wiki to Local<br \> Windows 10 Import Local Wiki<br \>")
  • 15:22, 2 March 2023 Noob talk contribs created page Main Index (Created page with "Will be Main Index - placeholder")
  • 15:21, 2 March 2023 Noob talk contribs created page Local CompleteNoobs Wiki (Created page with "Placeholder - need xml server first")
  • 15:05, 2 March 2023 Noob talk contribs created page IPFS Basics (Created page with " =IPFS Basics= Note this did not work on my home network, worked on Vultr VPS. IPFS requires port 4001 TCP and UDP open on router. Tested on a ubuntu 22.04 server Download Linux Binary https://dist.ipfs.tech/#go-ipfs Assuming you already have LXD setup. (does not need to be in a container)<br> Check <code>https://dist.ipfs.tech/kubo/</code> for latest version.<br> <code>apt update && apt upgrade -y</code><br> <code>wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0...")
  • 22:49, 1 March 2023 Noob talk contribs created page CompleteNoobs:Copyrights (Created page with "We only want Libre Licenced content on are site.<br> Check are current Licences page<br>")
  • 22:35, 1 March 2023 Noob talk contribs protected Terms of Service [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 22:35, 1 March 2023 Noob talk contribs protected Content Policy [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 22:35, 1 March 2023 Noob talk contribs created page Content Policy (Created page with "{{:LICENCE_HEADER_CC_BY-SA}} To allow users to browse CompleteNoobs sites freely without distress or upset, users should not publish or link to any of the following types of prohibited content. CompleteNoobs users should take action to remove such content or report violations to a member of CompleteNoobs's Staff and Admins privately. == Prohibited Content == * copyright-infringing content * Pornography, adult or mature content * Violent...")
  • 22:34, 1 March 2023 Noob talk contribs protected CompleteNoobs Staff Admins [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 22:34, 1 March 2023 Noob talk contribs created page CompleteNoobs Staff Admins (Created page with "There is currently no one here.")
  • 21:37, 1 March 2023 Noob talk contribs protected MediaWiki:Newsignuppage-loginform-tos [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:36, 1 March 2023 Noob talk contribs created page MediaWiki:Newsignuppage-loginform-tos (Created page with "I am over 13 years of age and I have read, understood and agree to be bound by the Terms of Service and Privacy Policy")
  • 21:35, 1 March 2023 Noob talk contribs protected CompleteNoobs:General disclaimer [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:34, 1 March 2023 Noob talk contribs protected CompleteNoobs:About [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:34, 1 March 2023 Noob talk contribs protected CompleteNoobs:Privacy policy [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:34, 1 March 2023 Noob talk contribs deleted page Terms Of Use (content was: "{{:LICENCE_HEADER_CC_BY-SA}}<br \> Welcome to [https://www.completenoobs.com completenoobs.com]! Before you do anything on our wiki you must read and accept the following terms. '''PLEASE READ THESE TERMS OF USE CAREFULLY BEFORE USING THE SERVICES. BY ACCESSING THIS SITE OR USING ANY PART OF THE SITE OR ANY CONTENT OR SERVICES (AS EACH IS DEFINED BELOW) ON THE SITE, YOU AGREE TO BECO...", and the only contributor was "Noob" (talk))
  • 21:33, 1 March 2023 Noob talk contribs created page Terms of Service (Created page with "{{:LICENCE_HEADER_CC_BY-SA}}<br \> Welcome to [https://www.completenoobs.com completenoobs.com]! Before you do anything on our wiki you must read and accept the following terms. '''PLEASE READ THESE TERMS OF USE CAREFULLY BEFORE USING THE SERVICES. BY ACCESSING THIS SITE OR USING ANY PART OF THE SITE OR ANY CONTENT OR SERVICES (AS EACH IS DEFINED BELOW) ON THE SITE, YOU AGREE TO BECOME BOUND BY THESE TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ALL THE TERMS AND CONDIT...")
  • 21:30, 1 March 2023 Noob talk contribs protected Terms Of Use [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)
  • 21:28, 1 March 2023 Noob talk contribs created page Terms Of Use (Created page with "{{:LICENCE_HEADER_CC_BY-SA}}<br \> Welcome to [https://www.completenoobs.com completenoobs.com]! Before you do anything on our wikis you must read and accept the following terms. '''PLEASE READ THESE TERMS OF USE CAREFULLY BEFORE USING THE SERVICES. BY ACCESSING THIS SITE OR USING ANY PART OF THE SITE OR ANY CONTENT OR SERVICES (AS EACH IS DEFINED BELOW) ON THE SITE, YOU AGREE TO BECOME BOUND BY THESE TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ALL THE TERMS AND CONDI...")
  • 21:22, 1 March 2023 Noob talk contribs protected COMPLETENOOBS FUNDING [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:22, 1 March 2023 Noob talk contribs protected CompleteNoobs:Copyright Policy [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:21, 1 March 2023 Noob talk contribs protected CompleteNoobs talk:Copyright Policy [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 21:21, 1 March 2023 Noob talk contribs created page CompleteNoobs talk:Copyright Policy (Created page with "report any posts/pages infringing on copyright here:")
  • 21:19, 1 March 2023 Noob talk contribs created page CompleteNoobs:Copyright Policy (Created page with "CompleteNoobs Only Wants Libre Licenced content on are site.<br \> If you find content that does not match a Libre Licence Please enter it in the [[Talk:CompleteNoobs:Copyright_Policy |Copyright Policy Discussion Page.]] We only accept Libre Licenced content!<br \> Please report any infringement of your copyright.")
  • 21:11, 1 March 2023 Noob talk contribs created page COMPLETENOOBS FUNDING (Created page with "Donation page")
  • 20:52, 1 March 2023 Noob talk contribs created page CompleteNoobs:General disclaimer (Created page with "Quote: William Walker Atkinson 1862-1932:<br \> <blockquote> If a thing is good, the greater publicity given it the greater the good.<br \> If a thing is evil, the brighter the searchlight turned upon it, the less danger is there attendant upon it.<br \> The danger of all evil lies in the darkness of concealment, not in the daylight of Publicity.<br \> "Turn on the light" has always been the watchword of progress and civilisation.<br \> </blockquote> Licence: Below text...")
  • 20:49, 1 March 2023 Noob talk contribs created page CompleteNoobs:About (Created page with "Computer science should be open, free and reproducible. CompleteNoobs is a place to post and share tutorials, walk throughs and computer science courses and content, that are created or released under a Libre Licence that allows for the following freedoms. The freedom to: read edit/modify copy share freely. Affiliate links are not allowed inside the main wiki pages, but you can mention the service you are using. You can have a personal page which cont...")
  • 20:47, 1 March 2023 Noob talk contribs created page CompleteNoobs:Privacy policy (Created page with "<!-- We are taking help from http://www.shoutwiki.com/ to speed this up. --> {{:LICENCE_HEADER_CC_BY-SA}} ==Summary== If you only read CompleteNoobs.com, no more information is collected than is typically collected in server logs by web sites in general. If you contribute to CompleteNoobs.com, you are publishing every word you post publicly. If you write something, assume that it will be retained forever. This includes content pages, user pages and talk pages. ==Cooki...")
  • 17:12, 1 March 2023 Noob talk contribs created page LICENCE HEADER PIRATE (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>PIRATE Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE <div class="mw-collapsible-content"> Licence? Licence??? LICENCE!!!!!!<br \> WE NO NEED NO STINKING LICENCE! Copyright @ Pirate Licence :P </div> </div> |}")
  • 17:11, 1 March 2023 Noob talk contribs created page LICENCE HEADER PDLv1.0 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>PDLv1.0 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE PDLv1.0 <div class="mw-collapsible-content"> PUBLIC DOCUMENTATION LICENSE Version 1.0 1.0 DEFINITIONS. 1.1. "Commercial Use" means distribution or otherwise making the Documentation available to a third party. 1.2. "Contr...")
  • 17:11, 1 March 2023 Noob talk contribs created page LICENCE HEADER MPLv2.0 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>MPLv2.0 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE MPLv2.0 <div class="mw-collapsible-content"> Mozilla Public License Version 2.0 -------------------------------- 1. Definitions -------------- 1.1. "Contributor" means each individual or legal entity that creates, contr...")
  • 17:10, 1 March 2023 Noob talk contribs created page LICENCE HEADER MIT (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>MIT Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE <div class="mw-collapsible-content"> Copyright <YEAR> <COPYRIGHT HOLDER> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal...")
  • 17:10, 1 March 2023 Noob talk contribs created page LICENCE HEADER LGPLv3 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>LGPLv3 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE <div class="mw-collapsible-content"> GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> Everyone is permi...")
  • 17:08, 1 March 2023 Noob talk contribs created page LICENCE HEADER LGPLv2.1 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>LGPLv2.1 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE <div class="mw-collapsible-content"> GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth...")
  • 17:08, 1 March 2023 Noob talk contribs created page LICENCE HEADER GPLv3 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>GPLv3 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE GPLv3 <div class="mw-collapsible-content"> GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> Everyone is permit...")
  • 17:07, 1 March 2023 Noob talk contribs created page LICENCE HEADER GPLv2 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>GPLv2 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE GPLv2 <div class="mw-collapsible-content"> GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,...")
  • 17:07, 1 March 2023 Noob talk contribs created page LICENCE HEADER GPL (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>GPLv1 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE GPLv1 <div class="mw-collapsible-content"> GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fif...")
  • 17:07, 1 March 2023 Noob talk contribs created page LICENCE HEADER GFDLv1.3 (Created page with "{|style="border-style: solid; boarder-width: 20px;" align="center" | <b>LICENCE</b>: When you edit this page, you agree to release your contribution under the <b>GFDLv1.3 Licence</b><br \> <div class="toccolours mw-collapsible mw-collapsed"> LICENCE GFDLv1.3 <div class="mw-collapsible-content"> GNU Free Documentation License Version 1.3, 3 November 2008 Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. <h...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
Retrieved from "http:///noobs/Special:Log"