All public logs
Jump to navigation
Jump to search
Combined display of all available logs of 6bit.ch wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 18:18, 9 March 2026 Xbl talk contribs created page Configs (Created page with "= PS1 = = tmux.conf = <nowiki> # Extend history limit set -g history-limit 42069 # Don't rename windows automatically set -g allow-rename off # reload config file bind r source-file ~/.tmux.conf # Enable 256 color support set -g default-terminal "tmux-256color" set -ga terminal-overrides ",*:RGB" # Enable clipboard set -g set-clipboard on # Change keyboard index set -g base-index 1 set -g pane-base-index 1 set-window-option -g pane-base-index 1 set-option -g ren...")
- 13:16, 3 February 2026 Xbl talk contribs created page Very Windy (Created page with "= Very Windy = == git == <code>git submodule update --init --recursive</code> Submodule laden<br> == ansible == <code>playbooks/all.yml</code><br> role -> tags (nginx) will apply:<br> <code>group_vars/all/nginx.yml</code><br> <code>ansible-playbook -C -D playbooks/all.yml -u windy -t nginx</code> -C (check, dry run), -D (diff, show differences) -u (remote user) -t (tags)<br> == ln == <code>ln -s ../files</code> == curl == <code>curl -v --resolve windy.verywindy.ch:...")
- 15:53, 29 January 2026 Xbl talk contribs created page GNU Privacy Guard (Created page with "= gpg = <code>gpg --list-secret-keys</code> List secret keys and associated information</br> == Export/Import == <code>gpg --export-secret-keys -a keyid > my_private_key.asc</code> Export private gpg key</br> <code>gpg --export -a keyid > my_public_key.asc</code> Export public gpg key</br> <code>gpg --import my_private_key.asc</code> Import private gpg key</br> <code>gpg --import my_public_key.asc</code> Import public gpg key</br>")
- 17:04, 21 January 2026 Xbl talk contribs created page Kubernetes (Created page with "=== Kubernetes === == kubectl == <code>kubectl get pods</code> Show all pods</br> </br> <code>kubectl run <pod-name> --image=nginx</code> Run new nginx pod</br> </br> <code>kubectl describe pod <pod-name></code> Describe pod</br> <code>kubectl edit pod <pod-name></code> Edit pod with editor</br> <code>kubectl delete pod <pod-name></code> Delete pod from default namespace</br>")
- 14:30, 20 November 2025 Xbl talk contribs created page Diff (Created page with "Show differences in text files. = diff = Show side by side comparison:</br> <code>diff -y <filename1> <filename2></code> Show unified diff (git-style):</br> <code>diff -bu <filename1> <filename2></code> Save a patch for applying:</br> <code>diff -bu <filename1> <filename2> > <patchfilename></code> Apply patch:</br> <code>patch <filename> < <patchfilename></code>")
- 14:15, 20 November 2025 Xbl talk contribs created page Script (Created page with "Record, review, replay & re-execute terminal sessions. = script = Record a session (with timings), listens until Ctrl-d:</br> <code>script (-T <filename>)</code> Review a session:</br> <code>less -R <filename></code> Replay a session (needs timings)</br> <code>scriptreplay (-T <filename>)</code> Record a session for re-execution (-I records only inputs):</br> <code>script -T <filename> -I <filename></code> Re-execute a session:</br> <code>scriptlive -T <filename> -...")
- 13:05, 17 September 2025 Xbl talk contribs created page Snippets (Created page with "= Snippets = Check if the system requires a reboot:</br> <code>cat /var/run/reboot-required</code>")
- 14:39, 15 September 2025 Xbl talk contribs created page Pass (Created page with "= Pass = The standard UNIX password manager</br> == pass == <code>git <command></code> pass git commands</br> <code>generate <dir/name></code> Generate new password at dir/name</br> <code>show <dir/name></code> Show password at dir/name</br> <code>insert dir/name</code> Insert a password at dir/name</br> <code>edit dir/name</code> Edit a password at dir/name</br> <code>rm <dir/name></code> Remove password at dir/name</br> == Useful arguments == <code></code>")
- 13:52, 8 September 2025 Xbl talk contribs created page Pwnagotchi (Created page with "= Gucci = === Connect === <code>ip addr add 10.0.0.1/24 dev enp*</code></br> <code>10.0.0.2:80</code> bettercap</br> <code>10.0.0.2:8080</code> funkloch</br> <code>10.0.0.2:8421</code> PiSugar</br> === linux_connection_share.sh === <pre>#!/usr/bin/env bash set -e # name of the ethernet gadget interface on the host USB_IFACE=${1:-enp17s0u1} USB_IFACE_IP=10.0.0.1 USB_IFACE_NET=10.0.0.0/24 # host interface to use for upstream connection UPSTREAM_IFACE=${2:-enp7s0} #ip a...")
- 14:52, 3 September 2025 Xbl talk contribs created page Ansible (Created page with "= Ansible = == ansible ==")
- 20:35, 20 August 2025 Xbl talk contribs created page Curl (Created page with "= Client URL = == curl == <code>--insecure</code> Ignore certificate</br> <code>-I</code> Headers only</br> <code>-s</code> Silent</br> <code>-v</code> Verbose</br>")
- 11:26, 18 June 2025 Xbl talk contribs created page User talk:Yvg (Created page with "= <3 =")
- 11:17, 18 June 2025 Xbl talk contribs created page MURAT.KEBABKING (Created page with "=== Gugus ===")
- 11:14, 18 June 2025 User account Yvg talk contribs was created by Xbl talk contribs
- 11:14, 18 June 2025 User account Pfl talk contribs was created by Xbl talk contribs
- 09:12, 27 May 2025 Xbl talk contribs created page Internet Performance (Created page with "= iperf3 = == Act as server (receiving data) == <code>iperf3 -s</code></br> == Act as client (sending data) == <code>iperf3 -c <target IP></code></br> == Reverse receiving/sending data == <code>iperf3 -c -R <target IP></code></br>")
- 10:42, 21 May 2025 Xbl talk contribs created page Ethernet Tool (Created page with "= ethtool = == Show Interface Info == <code>ethtool <interface></code> == Blinky == <code>ethtool -p <interface> [seconds]</code> == Show SFP Module Info == <code>ethtool -m <interface></code> == Show Traffic Statistics == <code>ethtool --statistics <interface></code>")
- 13:39, 2 April 2025 Xbl talk contribs created page StorCLI (Created page with "= LSI Storage Command Line Interface = Show Drives:</br> <code>storcli /c0 show</code> Creating a Virtual Drive:</br> <code>storcli /cx add vd type=[RAID0(r0)|RAID1(r1)|...] drives=[EnclosureID:SlotID|:SlotID-SlotID|:SlotID,SlotID]</code> Example:</br> <code>storcli /cx add vd type=r1 drives=252:0-2</code>")
- 23:23, 25 March 2025 Xbl talk contribs created page Goat (Created page with "= git = Set user name</br> <code>git config --add [--global] user.name "anon"</code> Set user email</br> <code>git config --add [--global] user.email "[email protected]"</code> Read</br> <code>git config list [--local]</code></br> <code>git config --get <key.value></code> Remove</br> <code>git config --unset <key.value></code></br> <code>git config --unset-all <key></code>")
- 10:45, 24 March 2025 Xbl talk contribs created page SSH (Created page with "= Secure Shell = == Regenerate Host Keys (Debian) == 1. <code>rm -v /etc/ssh/ssh_host_*</code></br> 2. <code>dpkg-reconfigure openssh-server</code>")
- 10:59, 13 March 2025 Xbl talk contribs created page Proxmox Network Configuration (Created page with "= Active/Passive Bonding with VLAN = <nowiki>auto bond0 iface bond0 inet static bond-mode active-backup bond-miimon 100 bond-slaves eno1 enp65s0f0np0 bond-primary enp65s0f0np0 bond-xmit-hash-policy layer2+3 auto vmbr0 iface vmbr0 inet manual bridge-ports bond0 bridge-stp off bridge-fd 0 bridge-vlan-aware yes bridge-vids 2-4094 auto vmbr0.898 iface vmbr0.898 inet static address 10....")
- 12:52, 20 December 2024 Xbl talk contribs created page Windows (Created page with "= Windoof = == Move/Edit pagefile.sys == Open sysdm.cpl</br> Tab 'Advanced'</br> Performance Settings</br> Tab 'Advanced'</br> Virtual Memory -> Change</br>")
- 10:00, 20 December 2024 Xbl talk contribs created page Broadcom (Created page with "Problems arise with Proxmox 8.2 and Broadcom NICs because of a buggy kernel module for RoCE.</br> === Symptoms === Delayed boot</br> Networking needs to be restarted after boot</br> Delayed shutdown/reboot</br> === Example of boot messages: === <code>Job ifupdown2-pre.service start running (3min)</code></br> <code>infiniband bnxt_re1: Failed to modify HW QP</code></br> <code>infiniband bnxt_re1: Couldn't change QP1 state to INIT</code></br> <code>infiniband bnxt_re1: Cou...")
- 11:23, 19 November 2024 Xbl talk contribs created page Zettabyte File System (Created page with "= zfs = == Expand zpool == <code>for i in /sys/class/scsi_device/*/device/rescan; do echo "- - -" > $i; done</code> Scan current SCSI devices for changes</br> <code>parted /dev/sdb rm 9</code> 8MB partition at the end of the disk may be deleted (perhaps an artefact from the Solaris days?)</br> <code>growpart /dev/sdb 1</code> Increase size to maximum</br> <code>zpool online -e ZPOOLNAME /dev/sdb</code> Expanding the pool</br>")
- 10:50, 15 November 2024 Xbl talk contribs created page Simple Mail Transfer Protocol (Created page with "= smtp = == Send mail using telnet == <code>telnet localhost 25</code> Connect to the server</br> <code>HELO 6bit.ch</code> Greet the server.</br> <code>MAIL FROM: [email protected]</code> Set the FROM field</br> <code>RCPT TO: [email protected]</code> Set the TO field</br> <code>DATA</code> Enter message, starting with 'Subject:', followed by message body and ending with '.'")
- 23:16, 8 October 2024 Xbl talk contribs created page Simple Network Management Protocol (Created page with "= SNMP = SNMP is the blackest of magical arts.")
- 13:07, 26 September 2024 Xbl talk contribs created page ESXi Update (Created page with "= ESXi Update = == Backup Current Config == <code>vim-cmd hostsvc/firmware/sync_config</code> sync running config</br> <code>vim-cmd hostsvc/firmware/backup_config</code> download config</br> == Update ESXi Version == <code>esxcli software sources profile list -d /vmfs/volumes/250/VMware-ESXi-7.0U3-18644231-depot.zip</code> show available profiles in depot</br> <code>esxcli software profile update -d /vmfs/volumes/250/VMware-ESXi-7.0U3-18644231-depot.zip -p ESXi-7.0U3-...")
- 09:50, 16 August 2024 Xbl talk contribs created page Proxmox USB-Backup (Created page with "== Ziel == Proxmox-VMs auf externe, wechselnde USB-Disk(s) sichern. == Weg zum Ziel == USB-Disks können ab Proxmox 8 mit der x-systemd.automount-Option über ''/etc/fstab'' automatisch gemounted werden. Da die Gerätepfade nicht konstant sind werden Regeln mit ''udev'' erstellt, welche die USB-Disks verlässlich am gleichen Ort präsentieren. === Nur für NTFS-formatierte Platten: ntfs-3g installieren (WebGUI Shell/SSH) === Nativ kann Linux NTFS nur als RO mounten, da...")
- 16:37, 20 May 2024 Xbl talk contribs created page Supermicro IPMI (Created page with "= Supermicro IPMI = == Fan Control== <code>ipmitool raw 0x30 0x70 0x66 0x01 0x00 0x09</code> Set Fans 0x00 to 9%.</br> <code>ipmitool raw 0x30 0x70 0x66 0x01 0x01 0x09</code> Set Fans 0x01 to 9%.</br> </br> Fan Setting in BMC must be set to Full.</br>")
- 13:26, 21 August 2023 Xbl talk contribs created page Aho Weinberger Kernighan (Created page with "= awk = is a full scripting language, as well as a complete text manipulation toolkit for the command line.</br> == Use == <code>who | awk '{print $1}'</code> print the first field of every line from the who command</br> <code>who | awk '{print $1,$4}'</code> print the first and fourth field of every line from the who command</br> <code>who | awk '{print $NF}'</code> print the last field (NF=Number of Fields) of every line from the who command</br> </br> <code>date | a...")
- 11:55, 21 August 2023 Xbl talk contribs created page Diagnostic Messages (Created page with "= dmesg = May be used on most Unix-like operating systems to query th message buffer of the kernel. The output includes messages produced by the device drivers. </br> == Use == <code>dmesg | tail</code> show latest messages</br> == Useful Flags == <code>-D</code> disable printing messages to console</br> <code>-E</code> enable printing messages to console</br> <code>-l <level></code> restrict output to defined level</br> <code>-w</code> print messages and wait for new...")
- 15:16, 17 March 2023 Xbl talk contribs created page Format and Print Data (Created page with "= printf = Print ARGUMENT(S) according to FORMAT, or execute according to OPTION.</br> <code>printf FORMAT [ARGUMENT]</code></br> <code>printf OPTION</code></br> FORMAT controls the output as in C printf. Interpreted sequences are:</br> <code>\n</code> new line</br> <code>%s</code> output as string</br> <code>%d</code> output as integer</br> Example:</br> <code>printf '%s\n' yolo</code>")
- 15:29, 10 March 2023 Xbl talk contribs created page OpenVPN (Created page with "=== OpenVPN Config === Enable legacy encryption (do not ask for private key password)</br> <code>providers legacy default</code>")
- 12:48, 27 February 2023 Xbl talk contribs created page IPTables (Created page with "== IPTables == Administration tool for IPv4 packet filtering and NAT == Use == <code>iptables -S</code> show active filters and fail2bans")
- 15:15, 24 February 2023 Xbl talk contribs created page Journal Control (Created page with "= journalctl = May be used to query the contents of the systemd(1) journal as written by systemd-journald.service(8).</br> == Use == <code>journalctl -xe</code> show last 1000 messages in a pager</br> <code>journalctl -f</code> follow latest messages</br> <code>journalctl -t sshd</code> show messages of a particular service</br> </br> == Useful Flags == <code>-p <priority></code> show messages with $priority and above only <code>-b <priority></code> show messages sinc...")
- 11:32, 24 February 2023 Xbl talk contribs created page Tunable Filesystem (Created page with "= tune2fs = Adjust tunable filesystem parameters on ext2/ext3/ext4 filesystems</br> == Use == <code>tune2fs -l /dev/XY</code> Show current values of options on /dev/XY</br> <code>tune2fs -m Z /dev/XY</code> Set root reserved block percentage to Z on /dev/XY</br>")
- 22:08, 3 January 2023 Xbl talk contribs created page Hardening (Created page with "= nginx = === HTTP Config === /etc/nginx/nginx.conf:</br> <code>server_tokens off</code> Stop the server from advertising versions</br> <code>add_header X-Frame-Options SAMEORIGIN always</code> Stop the website to be framed into other websites</br> <code>add_header X-Content-Type-Options nosniff</code> Avoid MIME type sniffing by saying that the MIME types are deliberately configured</br> <code>add_header X-XSS-Protection "1; mode=block"</code> lock pages from loading w...")
- 16:27, 30 December 2022 Xbl talk contribs created page Global Regular Expression Print (Created page with "= grep = Print lines from text that match patterns, basic regex is used by default</br> == Use == <code>grep /etc/ssh/sshd_config pattern</code> match pattern in /etc/sshd_config, case sensitive</br> == Useful Flags == <code>-E</code> use extended regex</br> <code>-i</code> case insensitive</br> <code>-A x</code> print x lines after matched pattern</br> <code>-B x</code> print x lines before matched pattern</br> <code>-C x</code> print x lines before and after matched...")
- 16:07, 30 December 2022 Xbl talk contribs created page Find (Created page with "= find = Search for files in a directory hierarchy. The command is recursive by default.</br> == Use == <code>find /var/www -name '*.css'</code> prints full path/filename to all files in /var/www that end in .css <code>-name</code> filename matches string(case sensitive)</br> <code>-iname</code> filename matches string(case insensitive)</br> <code>-regex</code> filename matches regex(case sensitive)</br> <code>-iregex</code> filename matches regex(case insensitive)</b...")
- 12:57, 2 December 2022 Xbl talk contribs deleted page System and Service Manager (content was: "= systemd = Systemd is a suite of basic building blocks for a Linux system. It provides a system and service manager that runs as PID 1 and starts the rest of the system.</br> == Use == <code>systemctl status <unit></code> show status</br> <code>systemctl start <unit></code> start $unit</br> <code>systemctl stop <unit></code> stop $unit</br> </br> <code>systemctl is-enabled <unit></code...", and the only contributor was "Xbl" (talk))
- 10:34, 2 December 2022 Xbl talk contribs created page Network Statistics (Created page with "= netstat = Gives an overview of network activities and displays which ports are open or have established connections. The netstat tool is essential for discovering network problems.</br> == Use == <code>netstat</code> show lists of ''active'' connections</br> </br> The first list shows internet connections:</br> '''Proto''' – Protocol of the connection (TCP, UDP)</br> '''Recv-Q''' – Receive queue of bytes received or ready to be received</br> '''Send-Q''' – Send...")
- 17:00, 30 November 2022 Xbl talk contribs created page Table of Processes (Created page with "= top = Provides a dynamic real-time view of a running system.</br> </br> Load is a complex value, designating the balance between required and available CPU power.</br> Load <1: The system has some idle time</br> Load =1: The system has as much work as it can handle</br> Load >1: The system has to prioritize some processes over others</br> Load >3: The system is probably not fit for the current workload</br> Load >10: The system may have a serious problem</br> Load >30...")
- 15:19, 30 November 2022 Xbl talk contribs created page Process Control (Created page with "= kill = Sends a signal to a process id. == Use == <code>kill -s <signal> <pid></code> send <signal> (SIGTERM if not defined) to <pid></br> == Useful Flags == <code>-L</code> display list of signals</br> == Most Important Signals == <code>SIGINT / 2</code> INTERRUPT (Same as Ctrl+c) cancel a running process</br> <code>SIGKILL / 9</code> kills process</br> <code>SIGTERM / 15</code> terminates a program cleanly</br> <code>SIGSTOP / 17</code> stops a running foreground...")
- 22:31, 28 November 2022 Xbl talk contribs created page Tape Archive (Created page with "= tar = Packs and may compress multiple files a tarball or writes to magnetic tape.</br> == Use (BSD-Style)== <code>tar xf example.tar</code> extract (x) tarball example.tar (f) to .</br> <code>tar cf example.tar</code> create (c) tarball example.tar (f) to .</br> == Useful Flags == <code>t</code> list contents to stdout</br> <code>v</code> verbose output</br> <code>z</code> de-/compress with gzip</br> <code>j</code> de-/compress with bzip</br>")
- 22:18, 28 November 2022 Xbl talk contribs created page Data Duplicator (Created page with "= dd = Convert and copy a file. Also, write to tape</br> == Use == <code>dd if=<PATH> of=<PATH></code>duplicate infile to outfile</br> == Useful Flags == <code>bs=<BYTES></code> read and write up to BYTES bytes at a time (default: 512)</br> <code>count=<N></code> copy only N input blocks</br>")
- 22:11, 28 November 2022 Xbl talk contribs created page Magnetic Tape (Created page with "= mt = Controls magnetic tape drives.</br> == Use == <code>mt [-f </dev/st0>] status</code> Show status of <device></br> == Useful Flags ==")
- 17:39, 25 November 2022 Xbl talk contribs created page Process Snapshot (Created page with "= ps = Shows running processes and their IDs.</br> == Use == <code>ps</code> show running processes of current user in current terminal</br> <code>ps aux</code> BSD-style, show all running processes (-a) with user column (-u) inside and outside terminals (-x)</br> == Useful Flags == <code>-f</code> show full information</br> <code>-F</code> show fullest information</br> </br> <code>-u <user></code> show processes running from $user</br> <code>-g <group></code> show pr...")
- 13:01, 25 November 2022 Xbl talk contribs created page System and Service Manager (Created page with "= systemd = Systemd is a suite of basic building blocks for a Linux system. It provides a system and service manager that runs as PID 1 and starts the rest of the system.</br>")
- 12:43, 25 November 2022 Xbl talk contribs created page Advanced Package Tool (Created page with " = apt = Updates and upgrades installed software. Uses dpkg to install and uninstall.</br> Repos are defined in <code>/etc/apt/sources.list</code>, usually non-free repos are disabled by default.</br> == Use == <code>apt update</code> check for updates</br> <code>apt upgrade</code> install updates</br> <code>apt dist-upgrade</code> install updates and new dependencies, remove old versions</br> </br> <code>apt list --installed </code> list installed packages</br> <code>...")
- 11:36, 25 November 2022 Xbl talk contribs created page System Control (Created page with "= sysctl = Reads/sets kernel settings from the virtual /proc file system.</br> Values can be edited directly with <code>echo 1/0 >> /proc/net/ipv6/conf/all/disable_ipv6</code> or by editing /etc/sysctl.conf or /etc/sysctl.d/parameter. == setting settings == <code>sysctl -a</code> list all settings</br> <code>sysctl -a | grep net.ipv6.conf.all.disable_ipv6</code> list specific setting</br> <code>sysctl net.ipv6.conf.all.disable_ipv6</code> list specific setting</br> <co...")