This resource was originally created by user: Daisuke on the TrueNAS Community Forums Archive. Please DM this account or comment in this thread to claim it.
https://www.truenas.com/community/resources/hugo.203/download
This is version 7.4.5 of the Western Digital HUGO utility, used for performing low-level maintenance on compatible disk drives, such as conversion to 4K native sectoring.
The indicated file date is January 2021, included is the accompanying manual.
Software comes with its own license agreement, it is strongly recommended to contact Western Digital and provide your hard drive serial number, to make sure you obtain a compatible low-level maintenance tool. Using the wrong tool could permanently brick your device. Install and usage instructions are provided into PDF document, created by Western Digital.
Related Discussion Threads
Files
- HUGO_Users_Guide-7.4.5.pdf
- HUGO-7.4.5.freebsd.tar.gz
- HUGO-7.4.5.win64.exe
- HUGO-7.4.5.x86_64.deb
- HUGO-7.4.5.x86_64.tar.gz
Debian Bullseye
Install
Enable apt
and dpkg
:
Code:
sudo chmod 0755 /usr/bin/apt* /usr/bin/dpkg
Download and extract the package:
Code:
curl -JLO https://www.truenas.com/community/resources/hugo.203/download unzip ./hugo-7.4.5.zip
Install dependencies:
Code:
sudo apt-get update sudo apt-get -y install libncurses5 libncurses5-dev
Install Hugo:
Code:
sudo dpkg -i ./hugo/v7.4.5/HUGO-7.4.5.x86_64.deb
Disable apt
and dpkg
, then remove downloaded files:
Code:
sudo chmod 0644 /usr/bin/apt* /usr/bin/dpkg rm -rf ./hugo*
Uninstall
Enable apt
and dpkg
:
Code:
sudo chmod 0755 /usr/bin/apt* /usr/bin/dpkg
Uninstall Hugo:
Code:
sudo dpkg -r hugo
Uninstall dependencies:
Code:
sudo apt -y remove libncurses5 libncurses5-dev sudo apt autoremove
Disable apt
and dpkg
:
Code:
sudo chmod 0644 /usr/bin/apt* /usr/bin/dpkg