Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungBreeze TTS 2 vs ElevenLabs: Open Source TTS Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungAgentic AI vs Generative AI: The 2026 Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungI made my agent prove every quote against the source document(23.09.2026 um 05:45 Uhr)
Sichere Programmierung8mb.video Alternative: Skip the Line, Skip the Upsell(23.09.2026 um 05:47 Uhr)
Sichere ProgrammierungBuilding a GTA 6 JSON API for entities and current status(23.09.2026 um 05:52 Uhr)
Sichere ProgrammierungEvery filter needs a documented exception(23.09.2026 um 06:01 Uhr)
Sichere ProgrammierungBreeze TTS 2 vs ElevenLabs: Open Source TTS Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungAgentic AI vs Generative AI: The 2026 Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungI made my agent prove every quote against the source document(23.09.2026 um 05:45 Uhr)
Sichere Programmierung8mb.video Alternative: Skip the Line, Skip the Upsell(23.09.2026 um 05:47 Uhr)
Sichere ProgrammierungBuilding a GTA 6 JSON API for entities and current status(23.09.2026 um 05:52 Uhr)
Sichere ProgrammierungEvery filter needs a documented exception(23.09.2026 um 06:01 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

How I Exported and Re-Imported a netcup Server Snapshot (raw.zst qcow2)

When you run servers on netcup (VPS or root Servers), one of the features you get is the ability to take snapshots of your VM. These snapshots can be downloaded as a file and stored locally or on object storage like S3, so you always have…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

When you run servers on netcup (VPS or root Servers), one of the features you get is the ability to take snapshots of your VM. These snapshots can be downloaded as a file and stored locally or on object storage like S3, so you always have a backup you control.



In fact, one of the neat features netcup provides is the option to export snapshots as downloadable files. For many plans, a limited number of exports are included for free, and if you need more, you can purchase additional exports as an add-on.



This gives you the ability to keep offline or external copies of your VM state without relying solely on the built-in snapshot system — especially useful if you ever optimize storage or lose the snapshots stored within netcup’s platform.



🐛 But here’s the catch:





  • netcup lets you download snapshots in a compressed format:




vda_snapshot.raw.zst






However, when you try to re-upload the same .raw.zst back into netcup’s Server Control Panel (SCP), it fails. Why? Because netcup does not support .zst uploads — only raw, qcow, and qcow2 formats are officially supported and accepted.



In this article explains how I hit this problem, the dead ends I faced, and the working solution to restore my server successfully from a snapshot that I have created before for the server and downloaded it locally on my pc (or store it in AWS S3)






The Problem




  • I downloaded my snapshot from netcup: vda_alma10readysam1.raw.zst.

  • I wanted to re-import it via Upload Image → Generate Upload URL. (using netcup SCP) or even upload the image from my pc.

  • But when I tried to use it directly, and start the server after I receive email says that image installed, the server wouldn’t boot: “no boot device found.



Why? After couple of tries I see that it happens because .raw.zst is only useful for downloading. netcup won’t accept it as an upload format.






Step 1: Decompress the Snapshot



First, you need to decompress the .zst file into a raw image. Install zstd if it’s missing:



💡 Note: The decompressed raw file will be the same size as your original VM disk (e.g. a 250 GB VM will produce a 250 GB raw file). Make sure you have enough free space on your system before starting the decompression.



First of all make sure zstd is insalled:




# AlmaLinux / Rocky
dnf install -y zstd

# Ubuntu / Debian
apt install -y zstd






Then decompress the .raw.zst file:




unzstd vda_alma10readysam1.raw.zst -o vda_alma10readysam1.raw






Now you have a .raw file.



⚠️ Warning: The raw file size always equals the full disk size of your VM. For example, if your VM had a 250 GB disk, the exported .raw file will be 250 GB — even if you only used 5 GB of actual data.

Trying to upload that 250 GB raw file would be a huge mistake: most of it is just empty space (zeros), so you’d be wasting time, bandwidth, and money moving around data that doesn’t really exist.



That’s exactly why converting to qcow2 is the smarter approach





Step 2: Convert Raw → qcow2



To save space and make uploads feasible, convert the raw image to qcow2. Install qemu-img if not already installed:




# AlmaLinux / Rocky
dnf install -y qemu-img

# Ubuntu / Debian
apt install -y qemu-utils






Convert the raw file:




qemu-img convert -p -O qcow2 vda_alma10readysam1.raw vda_alma10readysam1.qcow2






Now check the result:




qemu-img info vda_alma10readysam1.qcow2






Example output:




image: vda_alma10readysam1.qcow2
file format: qcow2
virtual size: 256 GiB (274877906944 bytes)
disk size: 7.01 GiB
cluster_size: 65536
Format specific information:
compat: 1.1
compression type: zlib
lazy refcounts: false
refcount bits: 16
corrupt: false
extended l2: false
Child node '/file':
filename: vda_alma10readysam1.qcow2
protocol type: file
file length: 7.01 GiB (7531462656 bytes)
disk size: 7.01 GiB






💡 Notice how the virtual size is still 256 GB, but the actual file size is just 7 GB. That’s the power of qcow2.






Step 3: Upload to netcup




  • Log into SCP → Media → Upload Image.


  • Click Generate Upload URL. (enter the file name for example vda_alma10readysam1.qcow2 ) and generate Upload Url, and the portal will give you Pre-signed URL to upload the file into using curl


  • Use curl or aws s3 cp to upload your qcow2 file:





url --progress-bar 'https://upload.url.from.netcup...fullurlofuploadurl...' --upload-file vda_alma10readysam1.qcow2 | cat








  • Once uploaded, select the image and deploy it to a new server.



After this, my server booted normally again 🎉.



👉 Note: You don’t have to use the Generate Upload URL method if you don’t want to. netcup’s SCP also allows you to upload the image directly from your local machine — simply browse for the .qcow2 file and upload it through the web interface. This can be easier for smaller images, but for larger files I still recommend using the upload URL approach.






Step 4: Store Your Snapshots Safely



Instead of keeping snapshots only in netcup, you can store them externally (after you export it)



This way, you can always re-import the image later, or even run it on another virtualization platform that supports qcow2 (Proxmox, KVM, etc.).






Lessons Learned




  • .raw.zst is download-only. You can’t re-import it to netcup.


  • You must convert it to raw, qcow, or qcow2 — with qcow2 being my most efficient choice.


  • Always verify your qcow2 image with qemu-img info before uploading.


  • Storing qcow2 snapshots externally (S3, local disk, NAS) makes disaster recovery much easier.







Conclusion



What started as a frustrating “no boot device 🤯” error turned into a neat learning experience. By decompressing and converting the snapshot, I was able to restore my VM cleanly and keep smaller, portable backups for the future.



To give you a sense of the savings:




  • The original snapshot (.raw.zst) was 4.6 GB.

  • After decompression to raw, it exploded to 256 GB (matching the full disk size).

  • Once converted to qcow2, it shrank back down to just 7.4 GB — small enough to store and upload efficiently.



If you’re running servers on netcup, don’t just rely on downloading .raw.zst snapshots. Convert them, back them up properly, and make sure you can re-import them when needed. Your future self will thank you.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten How I Exported and Re-Imported a netcup Server Snapshot (raw.zst qcow2)

Thematisch verwandte Begriffe: Exported, ReImported, netcup, Server · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-17636 | IBM Financial Transaction Manager (FTM) for RedHat OpenShift could allow…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick