User contributions for Admin
From IT-Arts.net
15 January 2026
- 18:1018:10, 15 January 2026 diff hist +1,790 N FORTIGATE - diag sys ha reset-uptime Created page with "Category:Wiki == Command syntax == <nowiki> diag sys ha reset-uptime</nowiki> No arguments or parameters are supported. == Required privileges == * Super-admin (profile with full diagnostic access) * Console or SSH access == Examples == === Reset HA uptime === <nowiki> diag sys ha reset-uptime</nowiki> === Verify HA uptime reset === Before reset: <nowiki> get system ha status</nowiki> Output excerpt: <nowiki> HA Health Status: OK HA Uptime: 5 days, 3 hours..."
12 January 2026
- 20:2520:25, 12 January 2026 diff hist +7,648 N DIFF - Basic Documentation Created page with "Category:Wiki == Common diff Command Use Cases == === Compare Two Files Line by Line === To compare two files and show the differences between them: <nowiki> diff file1.txt file2.txt</nowiki> This command compares `file1.txt` and `file2.txt` line by line, displaying the differences in a unified format by default. === Show Differences Side by Side === To display the differences between two files side by side: <nowiki> diff -y file1.txt file2.txt</nowiki> The..."
- 20:1720:17, 12 January 2026 diff hist +5,832 N XZ - Documentation Created page with "Category:Wiki == Common xz Command Use Cases == === Compress a Single File === To compress a single file using the `xz` command: <nowiki> xz filename.txt</nowiki> This command will compress `filename.txt` and replace it with `filename.txt.xz`. By default, `xz` removes the original file after compression. === Compress a File but Keep the Original File === To compress a file while keeping the original file: <nowiki> xz -k filename.txt</nowiki> The `-k` option..."
- 20:1420:14, 12 January 2026 diff hist +5,482 N WATCH - Command Examples Created page with "Category:Wiki == Common watch Command Use Cases == === Monitor Command Output at Regular Intervals === To run a command at regular intervals (default: every 2 seconds) and display the output: <nowiki> watch df -h</nowiki> This command runs `df -h` every 2 seconds, showing disk usage in human-readable format. === Monitor a Specific File for Changes === To monitor a file for changes, such as its content or size: <nowiki> watch ls -l /var/log/syslog</nowiki> Th..."
- 20:1020:10, 12 January 2026 diff hist −314 SNORT - Base Documentation No edit summary
- 20:0920:09, 12 January 2026 diff hist +7,757 N SNORT - Base Documentation Created page with "Category:Wiki == Snort Command on Linux == Snort is an open-source Network Intrusion Detection and Prevention System (IDS/IPS) capable of real-time traffic analysis and packet logging. It is widely used to monitor network traffic and identify potential security threats by comparing packets against a predefined set of rules. == Common Snort Command Use Cases == === Start Snort in Packet Logging Mode === To run Snort in packet logging mode, where Snort logs all pac..."
- 20:0620:06, 12 January 2026 diff hist −310 IP - Base Documentation No edit summary
- 20:0620:06, 12 January 2026 diff hist +8,079 N IP - Base Documentation Created page with "Category:Wiki == IP Command in Linux == The `ip` command is a powerful and versatile utility for managing network interfaces, routes, and addresses in Linux systems. It is part of the `iproute2` package and provides functionality for configuring network devices, managing IP addresses, and troubleshooting network issues. == Common IP Command Use Cases == === Show All Network Interfaces === To list all network interfaces on the system, including their status (up/do..."
- 19:5919:59, 12 January 2026 diff hist −1 MTR - Formated Command No edit summary
- 19:5819:58, 12 January 2026 diff hist −93 MTR - Formated Command No edit summary
- 19:5619:56, 12 January 2026 diff hist +1,667 MTR - Formated Command No edit summary
- 19:5419:54, 12 January 2026 diff hist −468 MTR - Base Documentation No edit summary
- 19:5419:54, 12 January 2026 diff hist +7,620 N MTR - Base Documentation Created page with "Category:Wiki == MTR Command in Linux == MTR (My Traceroute) is a network diagnostic tool that combines the functionality of `ping` and `traceroute`. It is used to trace the route packets take to a destination, while providing real-time statistics on packet loss and latency. MTR continuously sends packets to each hop along the route to a destination and updates the display with live statistics, which makes it a more dynamic alternative to the traditional `tracerout..."
- 19:4719:47, 12 January 2026 diff hist +1 NETSTAT - Examples No edit summary
- 19:4519:45, 12 January 2026 diff hist +5,666 N NETSTAT - Examples Created page with "Category:Wiki == Common Netstat Commands == === Display All Network Connections === To display all network connections, including listening ports and established connections: <nowiki> netstat -a </nowiki> This command shows all sockets (TCP, UDP, etc.), including listening and non-listening ones. === Show Listening Ports === To display only the listening ports: <nowiki> netstat -l </nowiki> This command shows only the ports that are actively listening for inco..."
- 19:3919:39, 12 January 2026 diff hist +20 VBOXMANAGE - Converting Images No edit summary
- 19:3819:38, 12 January 2026 diff hist +5,837 N VBOXMANAGE - Converting Images Created page with "Category:Wiki == Convert VirtualBox Disk Images == === Convert VDI to VMDK === To convert a VirtualBox Disk Image (VDI) to a VMware Disk (VMDK), use the following command: <nowiki> VBoxManage clonehd "/path/to/source.vdi" "/path/to/destination.vmdk" --format VMDK </nowiki> Example: <nowiki> VBoxManage clonehd "/home/user/vms/LinuxVM.vdi" "/home/user/vms/LinuxVM.vmdk" --format VMDK </nowiki> This command will create a new VMDK file from the source VDI image. ===..."
- 19:3519:35, 12 January 2026 diff hist +5,940 N VBOXMANAGE - Base Guide Created page with "Category:Wiki == VM Management == === Create a Virtual Machine === To create a new virtual machine from scratch: <nowiki> VBoxManage createvm --name "MyVM" --register </nowiki> Example for adding a VM with specific settings: <nowiki> VBoxManage createvm --name "LinuxVM" --ostype "Linux_64" --register VBoxManage modifyvm "LinuxVM" --memory 2048 --cpus 2 --nic1 nat </nowiki> === Modify Virtual Machine === You can modify various properties of a VM, such as memory, C..."
- 19:2919:29, 12 January 2026 diff hist 0 PFSENSE - PFCTL Basic Usage No edit summary
- 19:2819:28, 12 January 2026 diff hist −2 PFSENSE - PFCTL Basic Usage No edit summary
- 19:2819:28, 12 January 2026 diff hist −1,828 PFSENSE - PFCTL Basic Usage No edit summary
6 January 2026
- 17:4817:48, 6 January 2026 diff hist +90 Main Page No edit summary current
- 17:4517:45, 6 January 2026 diff hist +72,328 N ETHTOOL - Manpage Created page with "Category:Wiki == ethtool --help == <nowiki> ethtool version 6.15 Usage: ethtool [ FLAGS ] DEVNAME Display standard information about device ethtool [ FLAGS ] -s|--change DEVNAME Change generic options [ speed %d ] [ lanes %d ] [ duplex half|full ] [ port tp|aui|bnc|mii|fibre|da ] [ mdix auto|on|off ] [ autoneg on|off ] [ advertise %x[/%x] | mode on|off ... [--] ] [ phyad %d ] [ xcvr internal|external ] [ wol %d[/%d] | p|u|m|b..."
- 17:4217:42, 6 January 2026 diff hist +7 ETHTOOL - Base Documentation No edit summary
- 17:4117:41, 6 January 2026 diff hist +5,636 N ETHTOOL - Base Documentation Created page with "Category:Wiki == Common Commands == === Display Information === To display detailed information about a network interface: <nowiki> ethtool eth0</nowiki> This command outputs various statistics and properties such as speed, duplex mode, supported features, and driver information. === Display Driver Information === To display the driver details for a specific interface: <nowiki> ethtool -i eth0</nowiki> This provides the driver version, firmware version, and su..."
- 17:2517:25, 6 January 2026 diff hist −84 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Manual revert
- 17:2417:24, 6 January 2026 diff hist +2 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Reverted
- 17:2417:24, 6 January 2026 diff hist 0 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Reverted
- 17:2417:24, 6 January 2026 diff hist +82 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Reverted
- 17:1117:11, 6 January 2026 diff hist −78 APT-KEY - Base Documentation No edit summary Tag: Manual revert
- 17:1017:10, 6 January 2026 diff hist −7 APT-KEY - Base Documentation No edit summary Tag: Reverted
- 17:1017:10, 6 January 2026 diff hist +13 APT-KEY - Base Documentation No edit summary Tag: Reverted
- 17:1017:10, 6 January 2026 diff hist +72 APT-KEY - Base Documentation No edit summary Tag: Reverted
- 17:0417:04, 6 January 2026 diff hist +19,119 N FDISK - Manpage Created page with "Category:Wiki == fdisk --help == <nowiki> Usage: fdisk [options] <disk> change partition table fdisk [options] -l [<disk>...] list partition table(s) Display or manipulate a disk partition table. Options: -b, --sector-size <size> physical and logical sector size -B, --protect-boot don't erase bootbits when creating a new label -c, --compatibility[=<mode>] mode is 'dos' or 'nondos' (default) -L, --color[=<when>] colorize ou..."
- 17:0217:02, 6 January 2026 diff hist +14,772 N BLKID - Examples Created page with "Category:Wiki == blkid --help == <nowiki> Usage: blkid --label <label> | --uuid <uuid> blkid [--cache-file <file>] [-ghlLv] [--output <format>] [--match-tag <tag>] [--match-token <token>] [<dev> ...] blkid -p [--match-tag <tag>] [--offset <offset>] [--size <size>] [--output <format>] <dev> ... blkid -i [--match-tag <tag>] [--output <format>] <dev> ... Options: -c, --cache-file <file> read from <file> instead of reading from the default..."
- 16:5516:55, 6 January 2026 diff hist +4 JELLYFIN - Debug Mode And Troubleshooting No edit summary
- 16:5516:55, 6 January 2026 diff hist +2 JELLYFIN - Debug Mode And Troubleshooting No edit summary
- 16:5416:54, 6 January 2026 diff hist −9 JELLYFIN - Debug Mode And Troubleshooting No edit summary
- 16:5416:54, 6 January 2026 diff hist +1,074 JELLYFIN - Debug Mode And Troubleshooting No edit summary
- 11:2611:26, 6 January 2026 diff hist +4,952 N APT-KEY - Base Documentation Created page with "Category:Wiki == Syntax == <nowiki> apt-key [options] <command> [command options]</nowiki> == Commands == === add === <nowiki> apt-key add [file]</nowiki> - Adds a new key to the list of trusted keys for apt. - The file argument can be a key file (in ASCII-armored format) or a public key URL. Example: <nowiki>sudo apt-key add /path/to/keyfile</nowiki> === del === <nowiki> apt-key del <keyid></nowiki> - Removes a key from the trusted list using its key I..."
- 11:1411:14, 6 January 2026 diff hist +529 NATPMPC - Basic Documentation No edit summary
- 08:0708:07, 6 January 2026 diff hist +34,806 N PV - Manpage Created page with "Category:Wiki == pv --help == <nowiki> Usage: pv [OPTION] [FILE]... Concatenate FILE(s), or standard input, to standard output, with monitoring. -p, --progress show progress bar -t, --timer show elapsed time -e, --eta show estimated time of arrival (completion) -I, --fineta show absolute estimated time of arrival (completion) -r, --rate..."
- 08:0308:03, 6 January 2026 diff hist −1 NATPMPC - Basic Documentation No edit summary
- 08:0308:03, 6 January 2026 diff hist +6 NATPMPC - Basic Documentation No edit summary
- 08:0208:02, 6 January 2026 diff hist +4,842 N NATPMPC - Basic Documentation Created page with "Category:Wiki == Requesting a Port Mapping == To request a port mapping, use the following command: <nowiki> natpmpc add <external_port> <internal_port> <protocol> <internal_ip> </nowiki> - `<external_port>`: The external port that should be open on the router. - `<internal_port>`: The internal port on the device behind NAT to forward to. - `<protocol>`: The protocol to use, typically `TCP` or `UDP`. - `<internal_ip>`: The IP address of the device on your local..."
5 January 2026
- 19:3819:38, 5 January 2026 diff hist +6,946 N TRANSMISSION - Basic Documentation Created page with "Category:Wiki == Managing transmission-daemon == `transmission-daemon` is a background service that runs the Transmission BitTorrent client on a Linux server, allowing remote access and management of torrents. The daemon runs continuously and can be controlled via web interfaces or remote clients. === Starting and Stopping transmission-daemon === To start or stop the `transmission-daemon` service, use the following commands depending on your system's init system:..."
- 19:3119:31, 5 January 2026 diff hist +5,878 N APPARMOR - Base Documentation Created page with "Category:Wiki === Managing AppArmor Profiles === AppArmor uses profiles to define the access controls for programs. These profiles specify what resources (such as files, network ports, etc.) a program can access and what actions it can perform. Profiles are written in a human-readable format and can be customized to suit the needs of specific applications. ==== Viewing AppArmor Status ==== To check the status of AppArmor on your system, use the following command:..."
- 19:2219:22, 5 January 2026 diff hist +5,791 N JELLYFIN - Debug Mode And Troubleshooting Created page with "Category:Wiki === Enabling Debug Mode === To enable debug mode in Jellyfin, you need to modify the configuration file or start the server with a specific environment variable. Debug mode provides additional logging and information that can help in diagnosing issues. ==== Modifying the Configuration File ==== To modify the configuration file: * Navigate to the Jellyfin configuration directory. The path will vary depending on your operating system: * Linux: `/et..."
26 December 2025
- 15:0415:04, 26 December 2025 diff hist 0 Main Page No edit summary
- 15:0415:04, 26 December 2025 diff hist +91 Main Page No edit summary
