Urgent.News

What's breaking now, across thousands of outlets.

Tech

Migrating a Synology NAS to a UniFi UNAS Pro 8 with Robocopy, SMB Multichannel

The author moved their Synology NAS contents to a Ubiquiti UniFi UNAS Pro 8, expecting a straightforward process. Both devices support SMB and the author had a fast internal network, but the migration turned into an educational experience. The author recalled writing about Robocopy being better than XCopy for moving large numbers of files in 2007.

They initially used Explorer, but encountered errors with filenames containing special characters. Switching to Robocopy helped identify the issue, which turned out to be the presence of alternate data streams (ADS) in NTFS files. Robocopy's /X switch skips ADS, so the author added this option to their command. The migration initially had inconsistent performance, with file transfer rates fluctuating.

The author tried various thread counts and options but found that disabling /Z (Robocopy's restartable mode) improved copy performance. They now recommend using Robocopy without /Z for LAN migrations, reserving /Z only when specifically needed for its restartability feature.

Written by urgent.news from Hacker News's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at hanselman.com →

More in Tech

Stop Comparing GPU Clouds Only by $/hour

GPU Cloud Research · #002 — 11 min read The cheapest GPU instance is not always the cheapest way to finish a workload. GPU cloud comparison pages usually begin with the same number: How much does this…

  • Hourly compute cost is not sole factor in GPU cloud comparison
  • Environment setup, retries, storage, and data transfer impact total cost
  • Premium providers may offer better value despite higher price

How to Parse TOML in the Browser Without a Backend

While working on a configuration-heavy project recently, I kept running into the same annoying problem. I'd receive TOML config files from teammates or clients, and I needed to quickly verify the…

  • Developer created browser-based TOML parser to avoid server latency and privacy risks
  • Utilized smol-toml library for strict TOML 1.0.0 adherence and detailed error messages
  • Added collapsible tree view with depth limit to handle deeply nested structures

More from Monday 24 August →