Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/unraid-os/release-notes/7.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,12 @@ another file system, see below. We will add a webGUI button for this in a futur

### Using 'mover' to empty an array disk

:::warning[Removed in Unraid 7.2.1]

This command line option was removed in Unraid 7.2.1. On newer releases, use the WebGUI method instead. See [Converting to a new file system type](../using-unraid-to/manage-storage/file-systems.mdx#converting-to-a-new-file-system-type) for details.

:::

Mover can now be used to empty an array disk. With the array started, run this at a web terminal:

```bash
Expand Down
54 changes: 54 additions & 0 deletions docs/unraid-os/release-notes/7.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Version 7.2.1-rc.1 2025-11-07

This is a small update with some great fixes and improvements.

## Upgrading

For step-by-step instructions, see [Upgrading Unraid](../../unraid-os/system-administration/maintain-and-update/upgrading-unraid.mdx). Questions about your [license](../../unraid-os/troubleshooting/licensing-faq.mdx#license-types--features)?

### Known issues

For other known issues, see the [7.2.0 release notes](7.2.0.md#known-issues).

### Rolling back

If rolling back earlier than 7.2.0, also see the [7.2.0 release notes](7.2.0.md#rolling-back).

## Changes vs. [7.2.0](7.2.0.md)

### webGUI

- Fix: Dashboard: Improved detection of newer Intel CPUs
- Fix: Notification Agents dropdown not working in tabbed mode
- Fix: Visual error displaying temperatures in notifications

### Storage

- Improvement: When a pool's File System Type is set to 'Auto', all pool slots must be populated
- Improvement: New Config with Preserve Assignments will reduce pool slots to match the number of disks present
- Improvement: Automatically clear devices when removing from pools
- Fix: Remount dataset if 'zfs destroy' fails because dataset is busy
- Fix: If a share is created without a config file, ensure data is only stored on pools that are participating in user shares
- Fix: DeviceInfo: Only show 'Pool Device Status' section when pool is mounted
- Fix: Empty Disk feature: share data on target disk(s) now remains visible during operation, see [Converting to a new file system type](../using-unraid-to/manage-storage/file-systems.mdx#converting-to-a-new-file-system-type) for usage details.
- Removed '-e' option from 'mover' script; use the webGUI now
- Fix: Reduce excess logging related to drive spin down and SMART self-tests
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix hyphenation in compound adjective.

The phrase "drive spin down" should be hyphenated as "drive spin-down" when used as a compound adjective modifying "logging."

Apply this diff:

-- Fix: Reduce excess logging related to drive spin down and SMART self-tests
+- Fix: Reduce excess logging related to drive spin-down and SMART self-tests
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Fix: Reduce excess logging related to drive spin down and SMART self-tests
- Fix: Reduce excess logging related to drive spin-down and SMART self-tests
🧰 Tools
🪛 LanguageTool

[grammar] ~35-~35: Use a hyphen to join words.
Context: ...uce excess logging related to drive spin down and SMART self-tests ### Misc - F...

(QB_NEW_EN_HYPHEN)

🤖 Prompt for AI Agents
In docs/unraid-os/release-notes/7.2.1.md around line 35, the compound adjective
"drive spin down" should be hyphenated; change "drive spin down" to "drive
spin-down" in the sentence so it reads "Reduce excess logging related to drive
spin-down and SMART self-tests."


### Misc

- Fix: Improve WSD discovery on your local network (so Unraid appears in Windows Network, formerly Network Neighborhood)
- Generate unique /boot/config/machine-id and install to /etc/machine-id on boot
- Patch wsdd2 to work when "Host access to custom networks" is enabled
- Note: discovery typically does not work if clients are running Tailscale
- Fix: Update 'lshw' to support LEDs on Lincstation systems
- Fix: Re-add the 'Join' Notification Agent from Unraid 6.12
- Fix: Load br\_netfiltering in rc.inet1 'start' function and set default IPv4/IPv6 forwarding policy to ACCEPT (should fix VM IPv6 issues)

### Linux kernel

- version 6.12.54-Unraid (no change)

### Base distro updates

- lshw: version B.02.20
- wsdd2-1.8.7-x86\_64-2\_SBo\_LT.tgz (patched to not exclude shim interfaces)
Comment thread
ljm42 marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -206,16 +206,18 @@ To safely convert to a new file system type:

1. Move all data off the drive to another location (another %%array|array%% drive, %%cache pool|cache-pool%%, or external backup). Use one of these methods:

**Via the WebGUI:**
**Via the WebGUI (Unraid 7.2+):**

- Navigate to ***Main → Array Operation*** and stop the array
- Navigate to ***Settings → Global Share Settings***. In the **Emptying disk(s)** area, select the disk(s) to empty and **Apply**. Note: this status will automatically be removed when the array is stopped.
- In Unraid 7.2.0, any data on this disk will be hidden from user shares until this status is removed.
- Starting with Unraid 7.2.1, the data remains available to user shares but new files will not be written to the disk until this status is removed.
- Navigate to ***Main → Array Operation*** and start the array
- On ***Main → Array Operation*** click **Move** (or wait until mover runs via its normal schedule)
- Mover will empty the disk according to your Share settings. Note that files at the root of the drive are outside of any Shares and will not be moved.
- Mover will empty the disk, moving files to other array drives according to your Share settings. Note that files at the root of the drive are outside of any Shares and will not be moved.
- Check ***Tools → System Log*** for messages about any files that could not be moved due to being in use or a lack of free space

**Or via the command line:**
**Or via the command line (Unraid 7.0 and 7.1 only):**

- Move files [using 'mover' to empty an array disk](../../release-notes/7.0.0.md#using-mover-to-empty-an-array-disk) to other array drives

Expand Down