How to delete Synology "Hybrid Share" app?

User Avatar
πŸ‘€ admin
πŸ”΄ Admin
✍️ The most important thing in the world is to not be alone.
⏳ Last active: 15 Apr 2025 at 16:01
πŸ“… Created: 09 Feb 2025 at 21:25
πŸ‘€ Viewed: 54 times
βœ‰οΈ Send Email

Synology Hybrid Share: Integration and Uninstallation Guide

What is Synology Hybrid Share?

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.

Key Features

  • Tiered Storage: Automatically moves data between local and cloud storage based on usage patterns.
  • Seamless Integration: Works with Synology NAS devices and popular cloud providers.
  • Cost Efficiency: Reduces cloud storage costs by keeping hot data local and cold data in the cloud.
  • Data Protection: Ensures data integrity and security with encryption and redundancy.

The Hybrid Share app is particularly useful for businesses that need scalable storage solutions without compromising on performance or breaking the budget.


How to Uninstall Synology Hybrid Share via SSH

If you want to uninstall the Synology Hybrid Share app via SSH, follow these steps:

Step 1: Enable SSH on Your Synology NAS

  1. Log in to DSM (Synology's web interface).
  2. Go to Control Panel > Terminal & SNMP.
  3. Under the Terminal tab, check Enable SSH service.
  4. Set the SSH port (default is 22) and click Apply.

Step 2: Connect to Your NAS via SSH

  1. Open a terminal on your computer (e.g., Command Prompt on Windows, Terminal on macOS/Linux).

  2. 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).
  3. Enter your admin password when prompted.


Step 3: Switch to Root User

  1. After logging in, switch to the root user for full administrative privileges:

    sudo -i

    Enter your admin password again if prompted.


Step 4: Uninstall Synology Hybrid Share

  1. 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.


Step 5: Verify Uninstallation

  1. 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.


Step 6: Clean Up (Optional, but Recommended)

While optional, cleaning up leftover files can help free up disk space and prevent potential conflicts in the future.

  1. Navigate to the Hybrid Share directory (if it exists):

    cd /volume1/@hybridshare
  2. Delete the directory (if no longer needed):

    rm -rf /volume1/@hybridshare

Step 7: Disable SSH (Optional, but Recommended for Security)

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.

  1. Go back to DSM > Control Panel > Terminal & SNMP.
  2. Uncheck Enable SSH service and click Apply.

Conclusion

That's it! Synology Hybrid Share is now uninstalled via SSH.

Troubleshooting

If you encounter issues, double-check your username, password, and NAS IP address. Consult the Synology documentation for further assistance.

If you want to comment: Login or Register