User contributions for Xbl
Jump to navigation
Jump to search
- 12:44, 10 October 2024 diff hist +6 Simple Network Management Protocol →SNMP
- 12:01, 10 October 2024 diff hist +9 Simple Network Management Protocol →Create v3 User
- 12:01, 10 October 2024 diff hist +129 Simple Network Management Protocol
- 15:10, 9 October 2024 diff hist +77 System Control →Use
- 23:16, 8 October 2024 diff hist +47 N Simple Network Management Protocol Created page with "= SNMP = SNMP is the blackest of magical arts."
- 10:55, 27 September 2024 diff hist +3 ESXi Update
- 13:07, 26 September 2024 diff hist −17 ESXi Update →ESXi Update
- 13:07, 26 September 2024 diff hist +551 N 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-..."
- 15:37, 16 August 2024 diff hist −4 Proxmox USB-Backup current
- 09:50, 16 August 2024 diff hist +4,254 N 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:38, 20 May 2024 diff hist −21 Supermicro IPMI
- 16:37, 20 May 2024 diff hist +252 N 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>"
- 11:59, 22 September 2023 diff hist +181 Basic Commands current
- 11:50, 22 September 2023 diff hist +570 Basic Commands
- 13:43, 21 August 2023 diff hist +2 Aho Weinberger Kernighan →Use current
- 13:42, 21 August 2023 diff hist +20 Aho Weinberger Kernighan
- 13:26, 21 August 2023 diff hist +1,109 N 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..."
- 13:14, 21 August 2023 diff hist −1 Diagnostic Messages current
- 13:13, 21 August 2023 diff hist −1 Diagnostic Messages
- 11:58, 21 August 2023 diff hist −1 Diagnostic Messages →Time
- 11:58, 21 August 2023 diff hist +4 Diagnostic Messages →Useful Flags
- 11:55, 21 August 2023 diff hist +882 N 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..."
- 11:00, 21 August 2023 diff hist +1,217 Journal Control current
- 08:40, 21 August 2023 diff hist −68 Journal Control →Use
- 10:47, 18 August 2023 diff hist +445 Bash Shell
- 14:25, 24 March 2023 diff hist +2 Bash Shell →Functions
- 14:25, 24 March 2023 diff hist +20 Bash Shell →Functions
- 14:24, 24 March 2023 diff hist +310 Bash Shell →Functions
- 17:41, 17 March 2023 diff hist +286 Format and Print Data →printf current
- 16:56, 17 March 2023 diff hist +354 Bash Shell →Hotkeys
- 15:17, 17 March 2023 diff hist +2 Format and Print Data →printf
- 15:16, 17 March 2023 diff hist +392 N 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 diff hist +129 N OpenVPN Created page with "=== OpenVPN Config === Enable legacy encryption (do not ask for private key password)</br> <code>providers legacy default</code>" current
- 12:48, 27 February 2023 diff hist +140 N IPTables Created page with "== IPTables == Administration tool for IPv4 packet filtering and NAT == Use == <code>iptables -S</code> show active filters and fail2bans" current
- 15:15, 24 February 2023 diff hist +10 Journal Control →Useful Flags
- 15:15, 24 February 2023 diff hist +491 N 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..."
- 15:07, 24 February 2023 diff hist +50 Tape Archive →Useful Flags current
- 11:32, 24 February 2023 diff hist +264 N 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>" current
- 15:34, 22 February 2023 diff hist +2 Network Devices and Connections current
- 10:22, 13 February 2023 diff hist +2 Terminal Multiplexer →resizing
- 10:22, 13 February 2023 diff hist 0 Terminal Multiplexer →resizing
- 18:03, 9 February 2023 diff hist 0 Terminal Multiplexer →tmux
- 18:02, 9 February 2023 diff hist 0 Terminal Multiplexer →tmux
- 18:02, 9 February 2023 diff hist −7 Terminal Multiplexer →resizing
- 18:00, 9 February 2023 diff hist +93 Terminal Multiplexer →tmux
- 17:32, 26 January 2023 diff hist +4 Logical Volume Management →extend with new disk
- 17:32, 26 January 2023 diff hist +101 Logical Volume Management →extend with new disk
- 23:50, 5 January 2023 diff hist −66 Bash Shell →Text Control
- 23:50, 5 January 2023 diff hist +65 Bash Shell →Text Control
- 15:00, 4 January 2023 diff hist −16 Hardening →Server Config current