{"id":22649,"date":"2026-02-22T12:02:14","date_gmt":"2026-02-22T11:02:14","guid":{"rendered":"https:\/\/linux-bibel.at\/?p=22649"},"modified":"2026-02-22T12:02:16","modified_gmt":"2026-02-22T11:02:16","slug":"usb-sticks-ssds-speicherangaben-zwischen-marketing-und-betrug","status":"publish","type":"post","link":"https:\/\/linux-bibel.at\/index.php\/2026\/02\/22\/usb-sticks-ssds-speicherangaben-zwischen-marketing-und-betrug\/","title":{"rendered":"USB\u2011Sticks &amp; SSDs: Speicherangaben zwischen Marketing und Betrug"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Speichermedien wie USB\u2011Sticks, SSDs oder externe Festplatten geben auf der Verpackung oft gro\u00dfz\u00fcgig dimensionierte Kapazit\u00e4ten an, die im Betriebssystem scheinbar nicht erreicht werden. Wer ein als \u201e500\u202fGB\u201c beworbenes Laufwerk kauft und anschlie\u00dfend nur rund 465\u202fGiB in der Datentr\u00e4gerverwaltung sieht, vermutet schnell einen Defekt oder Betrug. Tats\u00e4chlich steckt dahinter eine Kombination aus unterschiedlichen Rechenweisen und marketingfreundlicher Darstellung \u2013 erg\u00e4nzt durch echte F\u00e4lschungen im Niedrigpreis-Segment. Dieser Beitrag erl\u00e4utert, wie diese Unterschiede entstehen, welche Rolle Dezimal\u2011 und Bin\u00e4rpr\u00e4fixe spielen und wie sich mit einfachen Terminalbefehlen und Testwerkzeugen die tats\u00e4chlich nutzbare Kapazit\u00e4t nachvollziehbar \u00fcberpr\u00fcfen l\u00e4sst.<\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Dezimal vs. Bin\u00e4r &#8211; die Grundlage des \u201eSchummelns\u201c<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hersteller rechnen mit Dezimalpr\u00e4fixen:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; 1 kB = 1\u202f000 Bytes<br>&#8211; 1 MB = 1\u202f000\u202f000 Bytes<br>&#8211; 1 GB = 1\u202f000\u202f000\u202f000 Bytes<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Betriebssysteme verwenden intern zumeist bin\u00e4re Werte (korrekt: KiB, MiB, GiB):<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; 1 KiB = 1\u202f024 Bytes<br>&#8211; 1 MiB = 1\u202f024\u00b2 = 1\u202f048\u202f576 Bytes<br>&#8211; 1 GiB = 1\u202f024\u00b3 = 1\u202f073\u202f741\u202f824 Bytes<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Beispiel: Ein Laufwerk mit 500\u202f107\u202f862\u202f016\u202fBytes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hersteller\u2011\u201eGB\u201c:<br>500107862016\/1000000000 \u2248 500,11GB<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">System\u2011\u201eGiB\u201c:<br>500107862016\/1073741824 \u2248 465,8GiB<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Auf der Verpackung steht also \u201e500\u202fGB\u201c, das System zeigt ungef\u00e4hr 466\u202fGiB an.<\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Neutrale Praxisbeispiele im Terminal<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">1. Gr\u00f6\u00dfe in Bytes ermitteln<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Zun\u00e4chst das Blockger\u00e4t identifizieren:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lsblk<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Im Beispiel kommt das Ger\u00e4t \/dev\/sdc zu tragen. <br>Mit dem Befehl: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo blockdev --getsize64 \/dev\/sdc<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">lesen wir die Gr\u00f6\u00dfe in Bytes aus:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_01-3.png\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" width=\"637\" height=\"112\" src=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_01-3.png\" alt=\"\" class=\"wp-image-22653\" srcset=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_01-3.png 637w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_01-3-150x26.png 150w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_01-3-300x53.png 300w\" sizes=\"auto, (max-width: 637px) 100vw, 637px\" \/><\/a><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">also:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>500107862016<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">2. Umrechnung in Hersteller\u2011GB<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BYTES=$(sudo blockdev --getsize64 \/dev\/sdc)\nawk -v b=\"$BYTES\" 'BEGIN{printf \"Kapazit\u00e4t (Hersteller-GB): %.2f GB\\n\", b\/1000000000}'<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_02-3.png\" rel=\"lightbox-1\"><img loading=\"lazy\" decoding=\"async\" width=\"1002\" height=\"144\" src=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_02-3.png\" alt=\"\" class=\"wp-image-22654\" srcset=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_02-3.png 1002w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_02-3-150x22.png 150w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_02-3-300x43.png 300w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_02-3-768x110.png 768w\" sizes=\"auto, (max-width: 1002px) 100vw, 1002px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">3. Umrechnung in GiB (bin\u00e4r)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BYTES=$(sudo blockdev --getsize64 \/dev\/sdc)\nawk -v b=\"$BYTES\" 'BEGIN{printf \"Kapazit\u00e4t (GiB): %.2f GiB\\n\", b\/1073741824}'\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_03-1.png\" rel=\"lightbox-2\"><img loading=\"lazy\" decoding=\"async\" width=\"886\" height=\"148\" src=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_03-1.png\" alt=\"\" class=\"wp-image-22655\" srcset=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_03-1.png 886w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_03-1-150x25.png 150w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_03-1-300x50.png 300w, https:\/\/linux-bibel.at\/wp-content\/uploads\/2026\/02\/usb_03-1-768x128.png 768w\" sizes=\"auto, (max-width: 886px) 100vw, 886px\" \/><\/a><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Damit lassen sich die beiden Sichtweisen direkt vergleichen.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Weitere Beispielgr\u00f6\u00dfen<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Einige typische Nennkapazit\u00e4ten und die dazugeh\u00f6rigen GiB:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Nennkapazit\u00e4t 32\u202fGB:<br>32\u202f000\u202f000\u202f000\u202fBytes \u2248 29,8\u202fGiB<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Nennkapazit\u00e4t 128\u202fGB:<br>128\u202f000\u202f000\u202f000\u202fBytes \u2248 119,2\u202fGiB<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Nennkapazit\u00e4t 1\u202fTB (1000\u202fGB):<br>1\u202f000\u202f000\u202f000\u202f000\u202fBytes \u2248 931,3\u202fGiB<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Formel allgemein:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">GiB = Bytes  \u00f7  1.073.741.824<br>GB  = Bytes  \u00f7  1.000.000.000<\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Marketing\u2011Effekt und echte F\u00e4lschungen<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hersteller setzen auf dezimale GB (1 GB = 1.000.000.000 Bytes), weil die Zahlen gr\u00f6\u00dfer und werbewirksamer klingen \u2013 \u201e500 GB\u201c verkauft sich besser als \u201e465 GiB\u201c. Betriebssysteme rechnen hingegen bin\u00e4r (1 GiB = 1.073.741.824 Bytes) und zeigen so 6\u201310% kleinere Werte an.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Noch schlimmer: Echte F\u00e4lschungen<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Billigstangenbote haben oft Controller, die 128 TB melden, aber nur 8 GB Flash enthalten. \u00dcbersch\u00fcssige Daten verschwinden einfach.<\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Betrug identifizieren mit f3<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Das Tool f3 (\u201eFight Flash Fraud\u201c) testet die echte Kapazit\u00e4t von USB-Sticks und SSDs, indem es den Speicher vollst\u00e4ndig beschreibt und danach verifiziert. Es erkennt sowohl Fake-Kapazit\u00e4ten als auch defekte Sektoren.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Vorbereitung<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">1. Installation (Debian\/Ubuntu):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt install f3<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">2. USB-Stick identifizieren:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lsblk<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Mountpunkt notieren, z.B. \/media\/usb oder \/run\/media\/user\/USB.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\"><strong>Wichtiger Hinweis: Vor Beginn alle Daten sichern! Der Test l\u00f6scht alles!<\/strong><\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">3. Schreibtest (f3write):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>f3write \/media\/usb<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; Erstellt sequentielle 1\u2011GB\u2011Dateien (1.h2w, 2.h2w, \u2026).<br>&#8211; Dauer: Bei 64 GB \/ USB 2.0 ca. 1\u20132 Stunden &#8211; je nach Leistung.<br>&#8211; Fortschritt wird live angezeigt.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Beispielausgabe<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Creating file 1.h2w \u2026 ok!<br>Creating file 2.h2w \u2026 ok!<br>\u2026<br>Avg write 42.1 MB\/s<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">4. Lesetest (f3read):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>f3read \/media\/usb<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; Liest alle Testdateien und pr\u00fcft Integrit\u00e4t.<br>&#8211; Zeigt Data OK, Data FAILED und corrupted Sektoren.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Ergebnis echt (500 GB Stick)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Data OK: 465.8 GiB (0 B corrupted)<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Ergebnis Fake (\u201e1 TB\u201c, real 8 GB)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Data OK: 7.9 GiB (923.1 GiB corrupted!)<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">5. Schnelltest f\u00fcr gro\u00dfe Medien (f3probe)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">F\u00fcr SSDs >128 GB (schneller, destruktiv):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lsblk                 # Ger\u00e4t finden, z.B. \/dev\/sdc\nsudo f3probe --destructive \/dev\/sdc<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Testet direkt auf Blockger\u00e4teebene, dauert Minuten statt Stunden.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Interpretation<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; Data OK \u2248 gemeldete Gr\u00f6\u00dfe: Ger\u00e4t ist echt<br>&#8211; Data OK &lt;&lt; Anzeige: Fake oder defekt \u2013 R\u00fcckgabe empfohlen.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Aufr\u00e4umen: Nach Test einfach neu formatieren.<\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Fazit<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Speicherangaben sind ein Minenfeld aus Marketingrechnung (dezimale GB vs. bin\u00e4re GiB) und potenziellen F\u00e4lschungen. Mit einfachen Terminalbefehlen wie <em>blockdev<\/em> und <em>awk<\/em> lassen sich Unterschiede schnell transparent machen, f3 entlarvt echte Betrugsf\u00e4lle zuverl\u00e4ssig und sch\u00fctzt vor Fehlk\u00e4ufen und falschen Erwartungen.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Titelbild: <a href=\"http:\/\/www.freepik.com\">Designed by Freepik<\/a><\/p>\n<div class=\"pld-like-dislike-wrap pld-custom\">\r\n    <div class=\"pld-like-wrap  pld-common-wrap\">\r\n    <a href=\"javascript:void(0)\" class=\"pld-like-trigger pld-like-dislike-trigger  \" title=\"Gef\u00e4llt mir\" data-post-id=\"22649\" data-trigger-type=\"like\" data-restriction=\"cookie\" data-already-liked=\"0\">\r\n                            <img src=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2023\/12\/Daumen-Hoch.png\" alt=\"Gef\u00e4llt mir\" \/>\r\n            <\/a>\r\n    <span class=\"pld-like-count-wrap pld-count-wrap\">16    <\/span>\r\n<\/div><div class=\"pld-dislike-wrap  pld-common-wrap\">\r\n    <a href=\"javascript:void(0)\" class=\"pld-dislike-trigger pld-like-dislike-trigger  \" title=\"Gef\u00e4llt mir nicht\" data-post-id=\"22649\" data-trigger-type=\"dislike\" data-restriction=\"cookie\" data-already-liked=\"0\">\r\n                            <img src=\"https:\/\/linux-bibel.at\/wp-content\/uploads\/2023\/12\/Daumen-Runter.png\" alt=\"Gef\u00e4llt mir nicht\" \/>\r\n            <\/a>\r\n    <span class=\"pld-dislike-count-wrap pld-count-wrap\"><\/span>\r\n<\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Speichermedien wie USB\u2011Sticks, SSDs oder externe Festplatten geben auf der Verpackung oft gro\u00dfz\u00fcgig dimensionierte Kapazit\u00e4ten an, die im Betriebssystem scheinbar nicht erreicht werden. Wer ein als \u201e500\u202fGB\u201c beworbenes Laufwerk kauft und anschlie\u00dfend nur rund 465\u202fGiB in der Datentr\u00e4gerverwaltung sieht, vermutet schnell einen Defekt oder Betrug. Tats\u00e4chlich steckt dahinter eine Kombination aus unterschiedlichen Rechenweisen und marketingfreundlicher [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":22660,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17,102],"tags":[1515,1416,85],"class_list":["post-22649","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-system","category-tipps-system","tag-speichergroesse","tag-ssd","tag-usb-stick"],"_links":{"self":[{"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/posts\/22649","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/comments?post=22649"}],"version-history":[{"count":7,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/posts\/22649\/revisions"}],"predecessor-version":[{"id":22809,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/posts\/22649\/revisions\/22809"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/media\/22660"}],"wp:attachment":[{"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/media?parent=22649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/categories?post=22649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux-bibel.at\/index.php\/wp-json\/wp\/v2\/tags?post=22649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}