Remove em dashes from the remaining English content

This commit is contained in:
Djeex
2026-08-31 23:39:19 +02:00
parent 4090203dc4
commit 9abee89478
15 changed files with 37 additions and 37 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ __Warning:__ If you have multiple services to expose like `subdomain1.mydomain.c
Every time a device connects to your local network, your router assigns it an IP address using DHCP rules.
This IP is randomly selected from a predefined pool.
At every device reboot, the IP may change which is problematic if you're forwarding ports, as the target IP may no longer be valid.
At every device reboot, the IP may change, which is problematic if you're forwarding ports, as the target IP may no longer be valid.
To avoid this, use your router's DHCP server to assign a static IP address.
+2 -2
View File
@@ -88,7 +88,7 @@ sudo chmod 2775 /video
```
### Create the user
Now add a no-login user this user cannot log into the server but can access Samba.
Now add a no-login user: this user cannot log into the server but can access Samba.
```bash [Terminal]
sudo useradd -M -s /sbin/nologin sambauser
@@ -126,7 +126,7 @@ sudo apt install cifs-utils
### Create the Mount Destination
We will create a folder on our local machine where the remote `/video` folder will be mounted e.g., `/mnt/video`.
We will create a folder on our local machine where the remote `/video` folder will be mounted, e.g. `/mnt/video`.
```bash [Terminal]
sudo mkdir /mnt/video
+3 -3
View File
@@ -45,14 +45,14 @@ ZFS continuously checks that your stored data hasn't become corrupted. Every blo
### Built-in RAID
ZFS includes its own volume management system (vdevs). You can build a zpool using multiple diskssimilar to traditional [RAID](/general/storage/raid) setupsbut with more flexibility. For example:
ZFS includes its own volume management system (vdevs). You can build a zpool using multiple disks, similar to traditional [RAID](/general/storage/raid) setups, but with more flexibility. For example:
- **Z-mirror** → equivalent to RAID 1
- **RAIDZ1** → equivalent to RAID 5 (tolerates 1 disk failure)
- **RAIDZ2** → equivalent to RAID 6 (tolerates 2 disk failures)
- **RAIDZ3** → tolerates up to 3 disk failures
ZFS handles all this nativelyno external RAID software needed.
ZFS handles all this natively: no external RAID software needed.
::note
@@ -61,7 +61,7 @@ Check out the [article on RAID](/general/storage/raid) to find the right solutio
### Snapshots and Clones
ZFS allows you to create snapshotsinstantaneous images of a dataset's state. Snapshots take up minimal space and can be scheduled frequently. You can also create clones: writable copies of snapshots.
ZFS allows you to create snapshots: instantaneous images of a dataset's state. Snapshots take up minimal space and can be scheduled frequently. You can also create clones: writable copies of snapshots.
### Compression and Deduplication
+5 -5
View File
@@ -11,9 +11,9 @@ description: Overview of networking hardware for homelabs. Switches, NICs, cable
A computer network cannot exist without the hardware required to build it. Hardware determines the size of the network, communication speeds, and its overall performance. In this article, we will focus on the simplest types of networks, typically found in home environments.
## The Router
The __router__ is the central hub of your network. It directs __packets__the blocks of data that travel across your networkfrom the sender to the appropriate recipient. It manages the routing of data both within your local network and to/from external networks. In short, it enables devices to communicate with each other and with the internet.
The __router__ is the central hub of your network. It directs __packets__ (the blocks of data that travel across your network) from the sender to the appropriate recipient. It manages the routing of data both within your local network and to/from external networks. In short, it enables devices to communicate with each other and with the internet.
Everyone has a router at homeit's the __internet box__ provided by your ISP (Internet Service Provider).
Everyone has a router at home: it's the __internet box__ provided by your ISP (Internet Service Provider).
In general, a router consists of:
@@ -23,9 +23,9 @@ In general, a router consists of:
A router may also include _firewall_ capabilities, allowing you to restrict traffic from specific devices, as well as _[NAT (Network Address Translation)](/general/networking/nat)_ for port forwarding. It generally includes a _[DHCP (Dynamic Host Configuration Protocol)](/general/networking/nat#dhcp)_ server to automatically assign _IP addresses_ to devices connected to the network.
The router directly affects communication speeds between devices. The WAN port limits the maximum internet speed you can receive from your ISP. For example, if your subscription offers 5 Gb/s, youll need a WAN port that supports at least 5 Gb/s. Likewise, internal device-to-device communication is limited by the speed of the switch. If your devices communicate at 5 Gb/s, the routers switch must have 5 Gb/s ports. If you're using WiFi 7 equipment and want to enjoy its full speed, your router must support it as well. If youre using a separate WiFi access point, make sure its network port matches or exceeds the speed of the WiFi it broadcastsand that the router supports it too.
The router directly affects communication speeds between devices. The WAN port limits the maximum internet speed you can receive from your ISP. For example, if your subscription offers 5 Gb/s, youll need a WAN port that supports at least 5 Gb/s. Likewise, internal device-to-device communication is limited by the speed of the switch. If your devices communicate at 5 Gb/s, the routers switch must have 5 Gb/s ports. If you're using WiFi 7 equipment and want to enjoy its full speed, your router must support it as well. If youre using a separate WiFi access point, make sure its network port matches or exceeds the speed of the WiFi it broadcasts, and that the router supports it too.
Internet speed, number of devices, WiFi speed, and internal network speedthese are the four key factors to consider when choosing an internet box or buying your own router.
Internet speed, number of devices, WiFi speed, and internal network speed: these are the four key factors to consider when choosing an internet box or buying your own router.
::tip{icon=""}
__Tip:__
@@ -117,5 +117,5 @@ These let you connect different types of cables to your SFP/SFP+ ports. Variants
::warning
__Warning:__ RJ45 transceivers consume a lot of energy due to copper signal loss and can generate significant heat. Low-power models (under 2W) exist and are generally rated for longer cables (e.g., 80m instead of 30m). Surprisingly, these are preferred over short-distance models because they generate less heat and consume less energymaking them more compatible with sensitive devices. Using the wrong type can cause network degradation or even outages.
__Warning:__ RJ45 transceivers consume a lot of energy due to copper signal loss and can generate significant heat. Low-power models (under 2W) exist and are generally rated for longer cables (e.g., 80m instead of 30m). Surprisingly, these are preferred over short-distance models because they generate less heat and consume less energy, making them more compatible with sensitive devices. Using the wrong type can cause network degradation or even outages.
::