The Synology Hybrid Share app is a solution designed by Synology to seamlessly integrate cloud storage with on-premises NAS (Network Attached Storage) systems. It allows businesses and individuals to leverage the scalability and flexibility of cloud storage while maintaining the performance and accessibility of local storage.
With Hybrid Share, you can store frequently accessed data on your local Synology NAS for fast access, while less frequently used data is automatically offloaded to the cloud. This hybrid approach optimizes storage costs and performance, making it ideal for organizations with large datasets or those looking to balance cloud and on-premises storage.
The Hybrid Share app is particularly useful for businesses that need scalable storage solutions without compromising on performance or breaking the budget.
If you want to uninstall the Synology Hybrid Share app via SSH, follow these steps:
22
) and click Apply.Open a terminal on your computer (e.g., Command Prompt on Windows, Terminal on macOS/Linux).
Use the following command to connect to your NAS:
ssh username@NAS_IP -p PORT
Replace:
username
with your Synology admin username.NAS_IP
with the IP address of your Synology NAS.PORT
with the SSH port (default is 22
if you didnβt change it).Enter your admin password when prompted.
After logging in, switch to the root
user for full administrative privileges:
sudo -i
Enter your admin password again if prompted.
Run the following command to uninstall the Hybrid Share package:
synopkg uninstall HybridShare
Or use the following command to uninstall it without switching to root:
sudo synopkg uninstall HybridShare
This will remove the app and its associated files.
To confirm the app is uninstalled, list all installed packages:
synopkg list
Look for HybridShare
in the list. If itβs not there, the uninstallation was successful.
While optional, cleaning up leftover files can help free up disk space and prevent potential conflicts in the future.
Navigate to the Hybrid Share directory (if it exists):
cd /volume1/@hybridshare
Delete the directory (if no longer needed):
rm -rf /volume1/@hybridshare
For security reasons, disable SSH if you no longer need it. Disabling SSH when not in use reduces the risk of unauthorized access to your NAS.
That's it! Synology Hybrid Share is now uninstalled via SSH.
If you encounter issues, double-check your username, password, and NAS IP address. Consult the Synology documentation for further assistance.