How to delete Synology

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: 03 Mar 2025 at 14:40
πŸ‘€ Viewed: 274 times
βœ‰οΈ Send Email

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 include:

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.

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.

Image

Image

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

Image

  1. 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 if you want to skip the step for switching to root

sudo synopkg uninstall HybridShare

This will remove the app and its associated files.

Image

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)

  1. If you want to remove any leftover files or configurations:
  • Navigate to the Hybrid Share directory (if it exists):
cd /volume1/@hybridshare
  • Delete the directory (if no longer needed):
rm -rf /volume1/@hybridshare

Step 7: Disable SSH (Optional)

  1. For security, disable SSH if you no longer need it:
  • Go back to DSM > Control Panel > Terminal & SNMP.
  • Uncheck Enable SSH service and click Apply.

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

If you want to comment: Login or Register