All public logs
From Cheatsheet
Jump to navigationJump to search
Combined display of all available logs of Cheatsheet. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:17, 21 October 2025 User account Blok9 talk contribs was created by Patrick talk contribs
- 11:22, 7 October 2025 Patrick talk contribs created page Vrp (Redirected page to Huawei:VRP) Tag: New redirect
- 22:11, 18 April 2025 A-EX talk contribs created page MediaWiki:Common.css (Created page with "CSS placed here will be applied to all skins: .mw-special-Allpages .allpagesredirect { display: none; }")
- 14:44, 7 September 2024 Patrick talk contribs created page Linux:VyOS (Created page with "Category:Cheatsheet == Commandline == === Basics === <syntaxhighlight lang='bash'> # Enter configuration mode configure # Commit changed configuration to RAM commit # Discard uncommitted changes discard # Save committed changes save # Exit the configuration mode exit </syntaxhighlight> <pre> # Use ? to list available parameters for a command: vyos@vyos# set Possible completions: > cluster Clustering > container Container applications > firewall F...")
- 10:55, 7 February 2024 Patrick talk contribs created page Python (Created page with "== Template == <syntaxhighlight lang="python"> </syntaxhighlight> == Common == <syntaxhighlight lang="python"> </syntaxhighlight>")
- 11:38, 30 October 2023 Patrick talk contribs created page Linux:Filesystems (Created page with "Category:Cheatsheet == Filesystems == <syntaxhighlight lang="bash"> # List clients connected to the local filesystem showmount </syntaxhighlight> === SMB/CIFS checks === <syntaxhighlight lang="bash"> # Samba checks smbstatus smbstatus -S smbstatus -b # Samba set debug mode smbcontrol smbd debug 1 </syntaxhighlight> === NFS === ==== Checks ==== * https://www.ibm.com/docs/en/aix/7.2?topic=troubleshooting-identifying-nfs-problems <syntaxhighlight lang="bash"> # NFS...")
- 09:04, 2 October 2023 Patrick talk contribs moved page Huawei:Cloudengine to Huawei:VRP
- 13:21, 25 September 2023 Patrick talk contribs created page Ansible (Redirected page to Linux:Ansible) Tag: New redirect
- 13:21, 25 September 2023 Patrick talk contribs created page Openstack (Redirected page to Linux:OpenStack) Tag: New redirect
- 09:29, 19 September 2023 Patrick talk contribs created page Tools (Redirected page to Linux:Tools) Tag: New redirect
- 15:48, 18 September 2023 Patrick talk contribs created page Bash (Redirected page to Linux:Bash) Tag: New redirect
- 09:15, 18 September 2023 Patrick talk contribs moved page Linux:Scripting to Linux:Scripts
- 08:59, 18 September 2023 Patrick talk contribs moved page Linux:Bash-MIT-course to Linux:Bash
- 08:57, 18 September 2023 Patrick talk contribs moved page Linux:Bash to Linux:Bash-MIT-course without leaving a redirect
- 08:09, 8 September 2023 Patrick talk contribs moved page Powershell to Windows without leaving a redirect
- 09:17, 23 August 2023 Patrick talk contribs moved page Linux:scripting:JQ-Ivo to Linux:Scripting:JQ-Ivo
- 09:17, 23 August 2023 Patrick talk contribs moved page Linux:scripting to Linux:Scripting
- 15:42, 22 August 2023 Patrick talk contribs deleted page Linux:docker (content was: "Category:Cheatsheet == Checks == <syntaxhighlight lang="bash"> # List docker containers docker ps </syntaxhighlight> == Commands == <syntaxhighlight lang="bash"> # Enter the shell inside a docker container docker exec -ti a89sd98sa7d /bin/bash # Execute a command inside a container as a specific user docker exec -it -u root asd87289hasdadz tail /var/log/nginx/access....", and the only contributor was "Patrick" (talk))
- 15:42, 22 August 2023 Patrick talk contribs created page Linux:Services (Created page with "Cheatsheets == MAAS == === Checks === <pre> Logs in either place: /var/log/maas/ /var/snap/maas/common/log </pre> <syntaxhighlight lang="bash"> # List status of MAAS services maas status # List MAAS commands maas --help # List available arguments for the init command maas init --help </syntaxhighlight> == Docker == === Checks === <syntaxhighlight lang="bash"> # List docker containers docker ps </syntaxhighlight> === Commands === <syntaxhigh...")
- 15:04, 22 August 2023 Patrick talk contribs created page Huawei:Cloudengine (Information regarding Huawei Cloud Engine switches and routers)
- 12:47, 16 August 2023 Patrick talk contribs created page Linux:docker (Created page with "Category:Cheatsheet == Checks == <syntaxhighlight lang="bash"> # List docker containers docker ps </syntaxhighlight> == Commands == <syntaxhighlight lang="bash"> # Enter the shell inside a docker container docker exec -ti a89sd98sa7d /bin/bash </syntaxhighlight>")
- 20:32, 31 July 2023 Patrick talk contribs created page Category:Cheatsheet-Ivo (Created blank page)
- 15:24, 31 July 2023 Patrick talk contribs created page OpenStack (Created page with "Cheatsheets == Modules == === Magnum === Magnum is used to create Kubernetes clusters.")
- 22:00, 28 July 2023 Patrick talk contribs moved page NX-OS to Cisco:NX-OS
- 21:59, 28 July 2023 Patrick talk contribs created page Linux:Tools (Created page with "Category:Cheatsheet == Common commands == <syntaxhighlight lang="bash"> # Scroll through a file with less less -s myfile.txt # Select line 5 from the output cat example.txt | sel -e '5' # Select lines from the output, starting from the top cat example.txt | head -5 # Select lines from the output, starting from the bottom cat example.txt | tail -5 </syntaxhighlight> == Uncommon commands == <syntaxhighlight lang="bash"> # Crash the current server echo c > /proc/sy...")
- 21:59, 28 July 2023 Patrick talk contribs created page Nvidia-Onyx-Ivo (Created page with "Category:Cheatsheet This page was written and contributed by Ivo Palli. == General == NVIDIA Onyx Management Console === SSH === <syntaxhighlight lang='bash'> ssh user@10.0.99.12 show what-just-happened quit </syntaxhighlight> === REST API === <syntaxhighlight lang='bash'> cat << EOF | curl -kSsLX POST -d @- -c cookies.txt "https://10.0.99.12/admin/launch?script=rh&template=json-request&action=json-login" > result.json { "username": "user", "password": "top_sec...")
- 21:59, 28 July 2023 Patrick talk contribs created page Powershell (Created page with "Category:Cheatsheet == Checks == * https://azega.org/list-open-ports-using-powershell/ <syntaxhighlight lang='bash'> # List open ports and related IP-addresses Get-NetTCPConnection # "To show only the listening ports we need to filter for all items in the Listen state with the remote address of 0.0.0.0" get-nettcpconnection | where {($_.State -eq "Listen") -and ($_.RemoteAddress -eq "0.0.0.0")} # "You can add additional fields like the process ID for each port. C...")
- 21:58, 28 July 2023 Patrick talk contribs created page Rsyslog (Created page with "Category:Cheatsheet == Common == Default configuration: /etc/rsyslog.conf </br> Additional conf files: /etc/rsyslog.d/ </br> By default the .conf file dumps to: /var/log/ See 'man logger' for additional information. === Facility keywords === * https://en.wikipedia.org/wiki/Syslog <pre> 0 kern 1 user 2 mail 3 daemon 4 auth 5 syslog 6 lpr 7 news 8 uucp 9 cron 10 authpriv 11 ftp 12 ntp 13 security 14 console 15 solaris-cron 16-23 local0 - local7 </p...")
- 21:58, 28 July 2023 Patrick talk contribs created page Linux (Created page with "Category:Cheatsheet * https://devhints.io/ == Checks == === Systemd === <syntaxhighlight lang="bash"> # Open journalctl starting from the beginning journalctl -b # Open journalctl starting from the end journalctl -e # Show journalctl logs for the sshd service, starting from the end journalctl -u sshd -e </syntaxhighlight> === OS & Distribution === <syntaxhighlight lang="bash"> # Print OS and host information hostnamectl # Show OS and distribution information ca...")
- 21:58, 28 July 2023 Patrick talk contribs created page Linux:Ansible-Ivo (Created page with "Category:Cheatsheet This page was written and contributed by Ivo Palli. * https://www.lisenet.com/2019/ansible-sample-exam-for-ex294/ * https://jorge.fbarr.net/tag/ex294/ TODO: v vaults v use external variable files * actions on regex (kan met lineinfile) v create crontab v create repo v create, download and use roles (!) * configure selinux * jinja2 (.j2) templates (gewoon een text file waar je variables Template:Xx in kan zetten, en dan kopieert met module tem...")
- 21:58, 28 July 2023 Patrick talk contribs created page Linux:Bash (Created page with "Category:Cheatsheet == Lecture 1 == === General === * https://missing.csail.mit.edu/ BASH stands for the Bourne Again SHell. <syntaxhighlight lang="bash"> [root@ubuntu ~]# echo "Hello world" Hello world [root@ubuntu ~]# echo Hello\ world Hello world </syntaxhighlight> An environment variable is used to store the location to search for programs on the system: <syntaxhighlight lang="bash"> [root@ubuntu ~]# echo $PATH /root/.local/bin:/root/bin:/usr/local/sbin:/sbin...")
- 21:57, 28 July 2023 Patrick talk contribs created page Linux:Bash-Ivo (Created page with "Category:Cheatsheet This page was written and contributed by Ivo Palli. == Template == <syntaxhighlight lang='bash'> #!/usr/bin/env bash set -o errexit # Exit on error, do not continue running the script set -o nounset # Trying to access a variable that has not been set generates an error set -o pipefail # When a pipe fails generate an error if [[ "${1-}" =~ ^-*h(elp)?$ ]]; then echo 'Usage: ./script.sh arg-one arg-two This is an awesome bas...")
- 21:57, 28 July 2023 Patrick talk contribs created page Linux:Network (Created page with "Category:Cheatsheet == Checks == === Common === <syntaxhighlight lang="bash"> # List route table route -n # Check open ports, connected IPs and more netstat -s # Check open ports, connected IPs and more netstat -taupen # Check open ports, connected IPs and more netstat -tulpn # Show all active network connections nmcli connection show # Show active and unactive network connections nmcli dev status # List iptable rules (Nftables) iptables -nvL # List iptable r...")
- 21:56, 28 July 2023 Patrick talk contribs created page Linux:scripting (Created page with "Category:Cheatsheet == Common == <syntaxhighlight lang='bash'> # Execute a command within all objects in a folder. for i in *; do du -h "$i" ; done </syntaxhighlight> <syntaxhighlight lang='bash'> # man test [] Brackets are for checking whether something is true or not. if [ -d "$D" ] then else </syntaxhighlight> == SSH == === centos-create-user.sh === <syntaxhighlight lang="bash"> #!/bin/bash # Execute as root # Usage: ./centos-create-user.sh USER USER="$1" e...")
- 21:56, 28 July 2023 Patrick talk contribs created page Linux:scripting:JQ-Ivo (Created page with "Category:Cheatsheet This page was written and contributed by Ivo Palli. Also see: * XPath for XML * pup for HTML * Miller for CSV/TSV __TOC__ == General == Program to get information from JSON files on the commandline == Usage == <syntaxhighlight lang='bash'> cat stuff.json | jq . # Prettify jq -s add,min,max,add/length file_with_numbers # Total, min, max, avg echo "[[1,2,3,4],[5,6,7,8...")
- 21:56, 28 July 2023 Patrick talk contribs created page Kubernetes (Created page with "Category:Cheatsheet == Links == Documentation: * Official cheatsheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet/ * https://kubernetes.io/docs/tasks/administer-cluster/dns-debugging-resolution/#create-a-simple-pod-to-use-as-a-test-environment == Checks == <syntaxhighlight lang="bash"> # Show the Kubernetes and kubectl version. kubectl version # Get all deployed pods kubectl get deployments --all-namespaces # Get all pods in all namespaces kubectl ge...")
- 21:54, 28 July 2023 Patrick talk contribs created page SQLite-Ivo (Created page with "Cheatsheets This page was written and contributed by Ivo Palli. == General == An SQL solution that puts data into local files, without a server/client setup. The source files are merged into a single C file called the [https://www.sqlite.org/amalgamation.html amalgamation] to easy embedding SQLite into your own program. There are a number of optional components you can enable via defines: * [https://www.sqlite.org/fts3.html FTS3] and [https://...")
- 21:53, 28 July 2023 Patrick talk contribs created page MediaWiki:Spam-whitelist (Created page with " #<!-- leave this line exactly as it is --> <pre> # External URLs matching this list will *not* be blocked even if they would # have been blocked by block list entries. # # Syntax is as follows: # * Everything from a "#" character to the end of the line is a comment # * Every non-blank line is a regex fragment which will only match hosts inside URLs #</pre> <!-- leave this line exactly as it is --> www\.tutorialspoint\.com")
- 21:50, 28 July 2023 Patrick talk contribs created page Fortinet (Created page with "Cheatsheets == Links == * https://docs.fortinet.com/product/fortigate/6.4 * https://docs.fortinet.com/document/fortigate/6.4.7/administration-guide/954635/getting-started * https://docs.fortinet.com/document/fortigate/6.0.0/cli-reference/830108/ping-options-ping6-options == Checks == === Common === <syntaxhighlight lang="bash"> # Ping IP 8.8.8.8 execute ping 8.8.8.8 # Ping from a specific interface IP execute ping-options source 10.0.25.1 # P...")
- 21:49, 28 July 2023 Patrick talk contribs created page Databases (Created page with "Cheatsheets == MYSQL+MARIADB == <syntaxhighlight lang="bash"> # Log into the MySQL CLI mysql -u root -p # Show all tables in the database SHOW TABLES; # Exit the MySQL CLI exit </syntaxhighlight> == Postgres == <syntaxhighlight lang="bash"> # Log into the Postgres CLI psql # List all databases \l # Connect to a database -d mydatabase -U databaseuser –W # Switch to the new database connection \c mydatabase databaseuser # List all tables \...")
- 21:49, 28 July 2023 Patrick talk contribs created page Cumulus (Created page with "Cheatsheets * Practice: https://www.nvidia.com/en-us/networking/ethernet-switching/cumulus-vx/ * https://docs.nvidia.com/networking-ethernet-software/knowledge-base/Setup-and-Getting-Started/Cumulus-Linux-Command-Reference-Guide/ == Checks == === Common === <syntaxhighlight> # Ping from a specific (VLAN, VRF, ethernet) interface ping -I eth0 10.0.0.2 # Displays significant and relevant information for all 'up' interfaces. net show interface #...")
- 21:49, 28 July 2023 Patrick talk contribs created page NX-OS (Created page with "Cheatsheets {{#lst:Cisco|cisco-intro}} Cisco </br> * https://www.firewall.cx/cisco-technical-knowledgebase/cisco-data-center/1206-nexus-nx-os-commands-scripting-hints-and-tips.html * https://www.packetswitch.co.uk/cisco-nexus-useful-commands/ {{#lst:Cisco|cisco-basics}} Cisco#Commandline basics == Checks == === Common === <syntaxhighlight> # Show all logs show logging # Show current time show clock # Show users show user-account #...")
- 21:37, 28 July 2023 Patrick talk contribs created page Cisco (Created page with "Cheatsheets <section begin="cisco-intro"/> Some commands don't exist on older versions of Cisco software, and other commands may be deprecated in newer versions. <section end="cisco-intro"/> <section begin="cisco-basics"/> == Basics == === Connecting via Console === # Plug a '''Console cable''' into the Cisco switch and connect the cable to your laptop/whatever. Best type of cable to use is USB to Console; # Check Windows "Device Manager" - "Por...")
- 21:20, 28 July 2023 A-EX talk contribs changed group membership for Patrick from (none) to administrator
- 21:20, 28 July 2023 User account Patrick talk contribs was created by A-EX talk contribs
- 20:39, 28 July 2023 A-EX talk contribs created page Category:Cheatsheet (Created blank page)
- 20:34, 28 July 2023 A-EX talk contribs created page File:Patchouli.jpg (The Librarian.)
- 20:34, 28 July 2023 A-EX talk contribs uploaded File:Patchouli.jpg (The Librarian.)
- 20:24, 28 July 2023 MediaWiki default talk contribs created page Main Page