User contributions for Xbl
Appearance
19 November 2024
- 11:2311:23, 19 November 2024 diff hist 0 Zettabyte File System →Expand zpool
- 11:2311:23, 19 November 2024 diff hist +430 N 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>"
15 November 2024
- 10:5010:50, 15 November 2024 diff hist +369 N 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 '.'"
30 October 2024
- 22:3822:38, 30 October 2024 diff hist +116 Simple Network Management Protocol →Custom Scripts
- 22:3522:35, 30 October 2024 diff hist 0 Vi IMproved →multi-line inserting
- 22:3522:35, 30 October 2024 diff hist 0 Vi IMproved →multi-line deleting
- 22:3522:35, 30 October 2024 diff hist +134 Vi IMproved →deleting
- 22:3422:34, 30 October 2024 diff hist −39 Vi IMproved →multi-line inserting
- 22:3422:34, 30 October 2024 diff hist +10 Vi IMproved →multi-line inserting
- 22:3322:33, 30 October 2024 diff hist +10 Vi IMproved →multi-line inserting
- 22:3222:32, 30 October 2024 diff hist +154 Vi IMproved →inserting
- 11:2811:28, 30 October 2024 diff hist +345 Simple Network Management Protocol No edit summary
16 October 2024
- 18:4118:41, 16 October 2024 diff hist +5 Simple Network Management Protocol →v2c Communities
- 18:4018:40, 16 October 2024 diff hist +361 Simple Network Management Protocol No edit summary
10 October 2024
- 22:5122:51, 10 October 2024 diff hist −2 Simple Network Management Protocol No edit summary
- 19:2919:29, 10 October 2024 diff hist +1,439 Simple Network Management Protocol No edit summary
- 12:4412:44, 10 October 2024 diff hist +6 Simple Network Management Protocol →SNMP
- 12:0112:01, 10 October 2024 diff hist +9 Simple Network Management Protocol →Create v3 User
- 12:0112:01, 10 October 2024 diff hist +129 Simple Network Management Protocol No edit summary
9 October 2024
- 15:1015:10, 9 October 2024 diff hist +77 System Control →Use
8 October 2024
- 23:1623:16, 8 October 2024 diff hist +47 N Simple Network Management Protocol Created page with "= SNMP = SNMP is the blackest of magical arts."
27 September 2024
- 10:5510:55, 27 September 2024 diff hist +3 ESXi Update No edit summary
26 September 2024
- 13:0713:07, 26 September 2024 diff hist −17 ESXi Update →ESXi Update
- 13:0713: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-..."
16 August 2024
- 15:3715:37, 16 August 2024 diff hist −4 Proxmox USB-Backup No edit summary current
- 09:5009: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..."
20 May 2024
- 16:3816:38, 20 May 2024 diff hist −21 Supermicro IPMI No edit summary
- 16:3716: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>"
22 September 2023
- 11:5911:59, 22 September 2023 diff hist +181 Basic Commands No edit summary current
- 11:5011:50, 22 September 2023 diff hist +570 Basic Commands No edit summary
21 August 2023
- 13:4313:43, 21 August 2023 diff hist +2 Aho Weinberger Kernighan →Use current
- 13:4213:42, 21 August 2023 diff hist +20 Aho Weinberger Kernighan No edit summary
- 13:2613: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:1413:14, 21 August 2023 diff hist −1 Diagnostic Messages No edit summary current
- 13:1313:13, 21 August 2023 diff hist −1 Diagnostic Messages No edit summary
- 11:5811:58, 21 August 2023 diff hist −1 Diagnostic Messages →Time
- 11:5811:58, 21 August 2023 diff hist +4 Diagnostic Messages →Useful Flags
- 11:5511: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:0011:00, 21 August 2023 diff hist +1,217 Journal Control No edit summary current
- 08:4008:40, 21 August 2023 diff hist −68 Journal Control →Use
18 August 2023
- 10:4710:47, 18 August 2023 diff hist +445 Bash Shell No edit summary
24 March 2023
- 14:2514:25, 24 March 2023 diff hist +2 Bash Shell →Functions
- 14:2514:25, 24 March 2023 diff hist +20 Bash Shell →Functions
- 14:2414:24, 24 March 2023 diff hist +310 Bash Shell →Functions
17 March 2023
- 17:4117:41, 17 March 2023 diff hist +286 Format and Print Data →printf current
- 16:5616:56, 17 March 2023 diff hist +354 Bash Shell →Hotkeys
- 15:1715:17, 17 March 2023 diff hist +2 Format and Print Data →printf
- 15:1615: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>"
10 March 2023
- 15:2915: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
27 February 2023
- 12:4812: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