<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Ssd on Ulis Notizen</title>
    <link>https://wolf-u.li/tag/ssd/</link>
    <description>Recent content in Ssd on Ulis Notizen</description>
    <generator>Hugo</generator>
    <language>de</language>
    <copyright>Copyright 2006-CURRENTYEAR Uli Wolf - All rights reserved</copyright>
    <lastBuildDate>Thu, 23 Nov 2023 15:28:07 +2300</lastBuildDate>
    <atom:link href="https://wolf-u.li/tag/ssd/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Synology - unknown filesystem type &#39;LVM2_member&#39; beim mount</title>
      
      
      <link>https://wolf-u.li/synology-unknown-filesystem-type-lvm2-member/</link>
      <pubDate>Thu, 23 Nov 2023 15:28:07 +2300</pubDate>
      <guid>https://wolf-u.li/synology-unknown-filesystem-type-lvm2-member/</guid>
      <description>&lt;p&gt;Wenn man &lt;a href=&#34;https://wolf-u.li/synology-ds720-nutzung-einer-ssd-als-volume&#34;
    title=&#34;wie ich&#34; 
   &gt;
  wie ich&lt;/a&gt; eine SSD als reguläres Volume genutzt hat, so hat man mit einem der letzten DSM 7.2 Updates (&amp;gt;7.2-64570 Update 1) leider das Problem bekommen, dass dieses nicht mehr zu mounten ist. Wenn man nun versucht diese Daten zu retten, so gibt es einen Weg:
&lt;ins class=&#34;adsbygoogle&#34; style=&#34;display:block; text-align:center;&#34; data-ad-layout=&#34;in-article&#34; data-ad-format=&#34;fluid&#34; data-ad-client=&#34;ca-pub-2322978122735420&#34; data-ad-slot=&#34;3161252284&#34;&gt;&lt;/ins&gt;
Erstmal via SSH einloggen (jeder Administrator kann sich einloggen). Wenn kein SSH verfügbar oder der Port unbekannt ist, kann man dies in den Einstellungen unter &amp;ldquo;Terminal&amp;rdquo; ändern.&lt;/p&gt;</description>
      
         <content:encoded><![CDATA[<p>Wenn man <a href="/synology-ds720-nutzung-einer-ssd-als-volume"
    title="wie ich" 
   >
  wie ich</a> eine SSD als reguläres Volume genutzt hat, so hat man mit einem der letzten DSM 7.2 Updates (&gt;7.2-64570 Update 1) leider das Problem bekommen, dass dieses nicht mehr zu mounten ist. Wenn man nun versucht diese Daten zu retten, so gibt es einen Weg:
<ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-2322978122735420" data-ad-slot="3161252284"></ins>
Erstmal via SSH einloggen (jeder Administrator kann sich einloggen). Wenn kein SSH verfügbar oder der Port unbekannt ist, kann man dies in den Einstellungen unter &ldquo;Terminal&rdquo; ändern.</p>
<p>Dann das Raid zusammenbauen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">mdadm --assemble --scan --verbose
</span></span></code></pre></td></tr></table>
</div>
</div><p>Dann RAID device raussuchen, bei mir war es <code>md3</code>:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">cat /proc/mdstat
</span></span></code></pre></td></tr></table>
</div>
</div><p>Temporäres Verzeichnis anlegen</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">mkdir /mnt/nvme_recover
</span></span></code></pre></td></tr></table>
</div>
</div><p>Und einen mount versuchen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">mount /dev/md3 /mnt/nvme_recover
</span></span></code></pre></td></tr></table>
</div>
</div><p>Wenn dort die folgende Meldung zurückkommt:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">mount: /mnt/nvme_recover: unknown filesystem type &#39;LVM2_member&#39;.
</span></span></code></pre></td></tr></table>
</div>
</div><p>So hatte man damals eine Volume Group darüber gelegt (damals hattest du dann <code>pvcreate /dev/md3</code> ausgeführt), dies kann man sich so ansehen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">vgdisplay
</span></span></code></pre></td></tr></table>
</div>
</div><p>Und sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span><span class="lnt">12
</span><span class="lnt">13
</span><span class="lnt">14
</span><span class="lnt">15
</span><span class="lnt">16
</span><span class="lnt">17
</span><span class="lnt">18
</span><span class="lnt">19
</span><span class="lnt">20
</span><span class="lnt">21
</span><span class="lnt">22
</span><span class="lnt">23
</span><span class="lnt">24
</span><span class="lnt">25
</span><span class="lnt">26
</span><span class="lnt">27
</span><span class="lnt">28
</span><span class="lnt">29
</span><span class="lnt">30
</span><span class="lnt">31
</span><span class="lnt">32
</span><span class="lnt">33
</span><span class="lnt">34
</span><span class="lnt">35
</span><span class="lnt">36
</span><span class="lnt">37
</span><span class="lnt">38
</span><span class="lnt">39
</span><span class="lnt">40
</span><span class="lnt">41
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">  --- Volume group ---
</span></span><span class="line"><span class="cl">  VG Name               vg1
</span></span><span class="line"><span class="cl">  System ID
</span></span><span class="line"><span class="cl">  Format                lvm2
</span></span><span class="line"><span class="cl">  Metadata Areas        1
</span></span><span class="line"><span class="cl">  Metadata Sequence No  3
</span></span><span class="line"><span class="cl">  VG Access             read/write
</span></span><span class="line"><span class="cl">  VG Status             resizable
</span></span><span class="line"><span class="cl">  MAX LV                0
</span></span><span class="line"><span class="cl">  Cur LV                2
</span></span><span class="line"><span class="cl">  Open LV               0
</span></span><span class="line"><span class="cl">  Max PV                0
</span></span><span class="line"><span class="cl">  Cur PV                1
</span></span><span class="line"><span class="cl">  Act PV                1
</span></span><span class="line"><span class="cl">  VG Size               889.75 GiB
</span></span><span class="line"><span class="cl">  PE Size               4.00 MiB
</span></span><span class="line"><span class="cl">  Total PE              227775
</span></span><span class="line"><span class="cl">  Alloc PE / Size       227587 / 889.01 GiB
</span></span><span class="line"><span class="cl">  Free  PE / Size       188 / 752.00 MiB
</span></span><span class="line"><span class="cl">  [...]
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  --- Volume group ---
</span></span><span class="line"><span class="cl">  VG Name               vg1000
</span></span><span class="line"><span class="cl">  System ID
</span></span><span class="line"><span class="cl">  Format                lvm2
</span></span><span class="line"><span class="cl">  Metadata Areas        1
</span></span><span class="line"><span class="cl">  Metadata Sequence No  2
</span></span><span class="line"><span class="cl">  VG Access             read/write
</span></span><span class="line"><span class="cl">  VG Status             resizable
</span></span><span class="line"><span class="cl">  MAX LV                0
</span></span><span class="line"><span class="cl">  Cur LV                1
</span></span><span class="line"><span class="cl">  Open LV               1
</span></span><span class="line"><span class="cl">  Max PV                0
</span></span><span class="line"><span class="cl">  Cur PV                1
</span></span><span class="line"><span class="cl">  Act PV                1
</span></span><span class="line"><span class="cl">  VG Size               3.63 TiB
</span></span><span class="line"><span class="cl">  PE Size               4.00 MiB
</span></span><span class="line"><span class="cl">  Total PE              952682
</span></span><span class="line"><span class="cl">  Alloc PE / Size       952682 / 3.63 TiB
</span></span><span class="line"><span class="cl">  Free  PE / Size       0 / 0
</span></span><span class="line"><span class="cl">  [...]
</span></span></code></pre></td></tr></table>
</div>
</div><p>Dazu kann man sich die logical volumes angucken:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">lvdisplay -v vg1
</span></span></code></pre></td></tr></table>
</div>
</div><div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span><span class="lnt">12
</span><span class="lnt">13
</span><span class="lnt">14
</span><span class="lnt">15
</span><span class="lnt">16
</span><span class="lnt">17
</span><span class="lnt">18
</span><span class="lnt">19
</span><span class="lnt">20
</span><span class="lnt">21
</span><span class="lnt">22
</span><span class="lnt">23
</span><span class="lnt">24
</span><span class="lnt">25
</span><span class="lnt">26
</span><span class="lnt">27
</span><span class="lnt">28
</span><span class="lnt">29
</span><span class="lnt">30
</span><span class="lnt">31
</span><span class="lnt">32
</span><span class="lnt">33
</span><span class="lnt">34
</span><span class="lnt">35
</span><span class="lnt">36
</span><span class="lnt">37
</span><span class="lnt">38
</span><span class="lnt">39
</span><span class="lnt">40
</span><span class="lnt">41
</span><span class="lnt">42
</span><span class="lnt">43
</span><span class="lnt">44
</span><span class="lnt">45
</span><span class="lnt">46
</span><span class="lnt">47
</span><span class="lnt">48
</span><span class="lnt">49
</span><span class="lnt">50
</span><span class="lnt">51
</span><span class="lnt">52
</span><span class="lnt">53
</span><span class="lnt">54
</span><span class="lnt">55
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">    Using volume group(s) on command line.
</span></span><span class="line"><span class="cl">  --- Volume group ---
</span></span><span class="line"><span class="cl">  VG Name               vg1
</span></span><span class="line"><span class="cl">  System ID
</span></span><span class="line"><span class="cl">  Format                lvm2
</span></span><span class="line"><span class="cl">  Metadata Areas        1
</span></span><span class="line"><span class="cl">  Metadata Sequence No  3
</span></span><span class="line"><span class="cl">  VG Access             read/write
</span></span><span class="line"><span class="cl">  VG Status             resizable
</span></span><span class="line"><span class="cl">  MAX LV                0
</span></span><span class="line"><span class="cl">  Cur LV                2
</span></span><span class="line"><span class="cl">  Open LV               0
</span></span><span class="line"><span class="cl">  Max PV                0
</span></span><span class="line"><span class="cl">  Cur PV                1
</span></span><span class="line"><span class="cl">  Act PV                1
</span></span><span class="line"><span class="cl">  VG Size               889.75 GiB
</span></span><span class="line"><span class="cl">  PE Size               4.00 MiB
</span></span><span class="line"><span class="cl">  Total PE              227775
</span></span><span class="line"><span class="cl">  Alloc PE / Size       227587 / 889.01 GiB
</span></span><span class="line"><span class="cl">  Free  PE / Size       188 / 752.00 MiB
</span></span><span class="line"><span class="cl">  VG UUID               [...]
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  --- Logical volume ---
</span></span><span class="line"><span class="cl">  LV Path                /dev/vg1/syno_vg_reserved_area
</span></span><span class="line"><span class="cl">  LV Name                syno_vg_reserved_area
</span></span><span class="line"><span class="cl">  VG Name                vg1
</span></span><span class="line"><span class="cl">  LV UUID                [...]
</span></span><span class="line"><span class="cl">  LV Write Access        read/write
</span></span><span class="line"><span class="cl">  LV Creation host, time ,
</span></span><span class="line"><span class="cl">  LV Status              NOT available
</span></span><span class="line"><span class="cl">  LV Size                12.00 MiB
</span></span><span class="line"><span class="cl">  Current LE             3
</span></span><span class="line"><span class="cl">  Segments               1
</span></span><span class="line"><span class="cl">  Allocation             inherit
</span></span><span class="line"><span class="cl">  Read ahead sectors     auto
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  --- Logical volume ---
</span></span><span class="line"><span class="cl">  LV Path                /dev/vg1/volume_2
</span></span><span class="line"><span class="cl">  LV Name                volume_2
</span></span><span class="line"><span class="cl">  VG Name                vg1
</span></span><span class="line"><span class="cl">  LV UUID                [...]
</span></span><span class="line"><span class="cl">  LV Write Access        read/write
</span></span><span class="line"><span class="cl">  LV Creation host, time ,
</span></span><span class="line"><span class="cl">  LV Status              NOT available
</span></span><span class="line"><span class="cl">  LV Size                889.00 GiB
</span></span><span class="line"><span class="cl">  Current LE             227584
</span></span><span class="line"><span class="cl">  Segments               1
</span></span><span class="line"><span class="cl">  Allocation             inherit
</span></span><span class="line"><span class="cl">  Read ahead sectors     auto
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  --- Physical volumes ---
</span></span><span class="line"><span class="cl">  PV Name               /dev/md3
</span></span><span class="line"><span class="cl">  PV UUID               [...]
</span></span><span class="line"><span class="cl">  PV Status             allocatable
</span></span><span class="line"><span class="cl">  Total PE / Free PE    227775 / 188
</span></span></code></pre></td></tr></table>
</div>
</div><p>Nun sieht man unter &ldquo;LV Status&rdquo; schon ein &ldquo;NOT available&rdquo;. Dieses muss man ändern:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">vgchange -ay vg1
</span></span></code></pre></td></tr></table>
</div>
</div><p>was in <code>2 logical volume(s) in volume group &quot;vg1&quot; now active</code> resultiert. Nun kann man via</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">mount /dev/vg1/volume_2 /mnt/nvme_recover
</span></span></code></pre></td></tr></table>
</div>
</div><p>Wieder das Volume mounten und darauf zugreifen.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Synology DS720&#43; - Nutzung einer SSD als Volume</title>
      
      
      <link>https://wolf-u.li/synology-ds720-nutzung-einer-ssd-als-volume/</link>
      <pubDate>Sun, 28 Nov 2021 20:55:47 +2800</pubDate>
      <guid>https://wolf-u.li/synology-ds720-nutzung-einer-ssd-als-volume/</guid>
      <description>&lt;p&gt;Ich habe eine 1TB SSD in mein 
&lt;a href=&#34;https://www.amazon.de/dp/B088V6YDTP?tag=lebendeswolfuli-21&#34; target=&#34;_blank&#34;&gt;Synology DS720+*&lt;/a&gt;
 eingebaut um diese als Volume nutzen zu könne. Da dies Out-Of-The-Box nicht funktioniert habe ich ein wenig gesucht und bin schlussendlich &lt;link rel=dns-prefetch href=//www.synology-forum.de /&gt; &lt;a href=&#34;https://www.synology-forum.de/threads/ds720-ssd-cache-auch-als-volume-verwendbar.111621/page-2#post-923535#post-923535&#34;
    title=&#34;hier&#34; 
     target=&#34;_blank&#34; rel=&#34;nofollow noopener noreferrer&#34; &gt;
  hier&amp;nbsp;&lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; class=&#34;icon&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; viewBox=&#34;0 -128 512 640&#34;&gt;
    &lt;path d=&#34;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z&#34;/&gt;
  &lt;/svg&gt;&lt;/a&gt; fündig geworden.&lt;/p&gt;</description>
      
         <content:encoded><![CDATA[<p>Ich habe eine 1TB SSD in mein 
<a href="https://www.amazon.de/dp/B088V6YDTP?tag=lebendeswolfuli-21" target="_blank">Synology DS720+*</a>
 eingebaut um diese als Volume nutzen zu könne. Da dies Out-Of-The-Box nicht funktioniert habe ich ein wenig gesucht und bin schlussendlich <link rel=dns-prefetch href=//www.synology-forum.de /> <a href="https://www.synology-forum.de/threads/ds720-ssd-cache-auch-als-volume-verwendbar.111621/page-2#post-923535#post-923535"
    title="hier" 
     target="_blank" rel="nofollow noopener noreferrer" >
  hier&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> fündig geworden.</p>
<p>Los gehts mit dem Einbau der SSD - was auf der Unterseite des NAS im ausgeschalteten Zustand ledglich ein Einklipsen der SSD ist.</p>
<p>Dann NAS hochfahren und via SSH einloggen (jeder Administrator kann sich einloggen). Wenn kein SSH verfügbar oder der Port unbekannt ist, kann man dies in den Einstellungen unter &ldquo;Terminal&rdquo; ändern.</p>
<p>Erstmal nachsehen welche SSDs verfügbar sind:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">sudo ls /dev/nvm*
</span></span></code></pre></td></tr></table>
</div>
</div><p>Das hatte bei mir so ausgesehen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">/dev/nvme0 /dev/nvme0n1 /dev/nvme0n1p1 /dev/nvme0n1p2 /dev/nvme0n1p3 /dev/nvme0n1p4
</span></span></code></pre></td></tr></table>
</div>
</div><p>Was bedeutet, dass dort noch partitionen (<code>*p1</code> bis <code>*p4</code>) auf dieser SSD waren. Die mussten aber nicht gelöscht werden, da dies der nächste Schritt automatisch macht:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">sudo synopartition --part /dev/nvme0n1 <span class="m">12</span>
</span></span></code></pre></td></tr></table>
</div>
</div><p>Was dann so aussah:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">Device Sectors (Version7: SupportRaid)
</span></span><span class="line"><span class="cl">/dev/nvme0n11 4980480 (2431 MB)
</span></span><span class="line"><span class="cl">/dev/nvme0n12 4194304 (2048 MB)
</span></span><span class="line"><span class="cl">Reserved size: 262144 ( 128 MB)
</span></span><span class="line"><span class="cl">Primary data partition will be created.
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">WARNING: This action will erase all data on &#39;/dev/nvme0n1&#39; and repart it, are you sure to continue? [y/N] y
</span></span><span class="line"><span class="cl">Cleaning all partitions...
</span></span><span class="line"><span class="cl">Creating sys partitions...
</span></span><span class="line"><span class="cl">Creating primary data partition...
</span></span><span class="line"><span class="cl">Please remember to mdadm and mkfs new partitions.
</span></span></code></pre></td></tr></table>
</div>
</div><p>Neues Layout anzeigen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">sudo fdisk -l /dev/nvme0n1
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">Disk /dev/nvme0n1: 894.3 GiB, 960197124096 bytes, 1875385008 sectors
</span></span><span class="line"><span class="cl">Units: sectors of 1 * 512 = 512 bytes
</span></span><span class="line"><span class="cl">Sector size (logical/physical): 512 bytes / 512 bytes
</span></span><span class="line"><span class="cl">I/O size (minimum/optimal): 512 bytes / 512 bytes
</span></span><span class="line"><span class="cl">Disklabel type: dos
</span></span><span class="line"><span class="cl">Disk identifier: 0x5dbcfd63
</span></span><span class="line"><span class="cl">Device Boot Start End Sectors Size Id Type
</span></span><span class="line"><span class="cl">/dev/nvme0n1p1 256 4980735 4980480 2.4G fd Linux raid autodetect
</span></span><span class="line"><span class="cl">/dev/nvme0n1p2 4980736 9175039 4194304 2G fd Linux raid autodetect
</span></span><span class="line"><span class="cl">/dev/nvme0n1p3 9437184 1875379904 1865942721 889.8G fd Linux raid autodetect`
</span></span></code></pre></td></tr></table>
</div>
</div><p>Aktuelle RAID Konfiguration anzeigen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">sudo cat /proc/mdstat
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span><span class="lnt">2
</span><span class="lnt">3
</span><span class="lnt">4
</span><span class="lnt">5
</span><span class="lnt">6
</span><span class="lnt">7
</span><span class="lnt">8
</span><span class="lnt">9
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">Personalities : [raid1]
</span></span><span class="line"><span class="cl">md2 : active raid1 sata1p5[0] sata2p5[1]
</span></span><span class="line"><span class="cl"> 3902187264 blocks super 1.2 [2/2] [UU]
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">md1 : active raid1 sata1p2[0] sata2p2[1]
</span></span><span class="line"><span class="cl">2097088 blocks [2/2] [UU]
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">md0 : active raid1 sata1p1[0] sata2p1[1]
</span></span><span class="line"><span class="cl">2490176 blocks [2/2] [UU]
</span></span></code></pre></td></tr></table>
</div>
</div><p>Ich hatte also schon raid setups mit md0, md1 und md2, daher musste ich meine SSD als md3 anlegen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">mdadm --create /dev/md3 --level<span class="o">=</span><span class="m">1</span> --raid-devices<span class="o">=</span><span class="m">1</span> --force /dev/nvme0n1p3
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span><span class="lnt">2
</span><span class="lnt">3
</span><span class="lnt">4
</span><span class="lnt">5
</span><span class="lnt">6
</span><span class="lnt">7
</span><span class="lnt">8
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">mdadm: Note: this array has metadata at the start and
</span></span><span class="line"><span class="cl">may not be suitable as a boot device. If you plan to
</span></span><span class="line"><span class="cl">store &#39;/boot&#39; on this device please ensure that
</span></span><span class="line"><span class="cl">your boot-loader understands md/v1.x metadata, or use
</span></span><span class="line"><span class="cl">--metadata=0.90
</span></span><span class="line"><span class="cl">Continue creating array? y
</span></span><span class="line"><span class="cl">mdadm: Defaulting to version 1.2 metadata
</span></span><span class="line"><span class="cl">mdadm: array /dev/md3 started.
</span></span></code></pre></td></tr></table>
</div>
</div><p>An dieser Stelle kann man aufhören wenn man eh nur ein Volume anlegen will. Ich war mir nicht sicher, daher habe ich noch die Volumegroup darauf angelegt. Das ging dann so:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">pvcreate /dev/md3
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">Physical volume &#34;/dev/md3&#34; successfully created
</span></span></code></pre></td></tr></table>
</div>
</div><p>Anzeigen via:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">pvdisplay
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span><span class="lnt">12
</span><span class="lnt">13
</span><span class="lnt">14
</span><span class="lnt">15
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">--- Physical volume ---
</span></span><span class="line"><span class="cl">  PV Name               /dev/md2
</span></span><span class="line"><span class="cl">[...]
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  &#34;/dev/md3&#34; is a new physical volume of &#34;889.75 GiB&#34;
</span></span><span class="line"><span class="cl">  --- NEW Physical volume ---
</span></span><span class="line"><span class="cl">  PV Name               /dev/md3
</span></span><span class="line"><span class="cl">  VG Name
</span></span><span class="line"><span class="cl">  PV Size               889.75 GiB
</span></span><span class="line"><span class="cl">  Allocatable           NO
</span></span><span class="line"><span class="cl">  PE Size               0
</span></span><span class="line"><span class="cl">  Total PE              0
</span></span><span class="line"><span class="cl">  Free PE               0
</span></span><span class="line"><span class="cl">  Allocated PE          0
</span></span><span class="line"><span class="cl">  PV UUID               uwi18q-GHLo-P1hG-ItiR-0dWS-rnlk-PUzvBV
</span></span></code></pre></td></tr></table>
</div>
</div><p>Nun die Volumegroup anlegen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">vgcreate vg1 /dev/md3
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">Volume group &#34;vg1&#34; successfully created
</span></span></code></pre></td></tr></table>
</div>
</div><p>Und einmal anzeigen:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">vgdisplay
</span></span></code></pre></td></tr></table>
</div>
</div><p>Sieht dann in etwa so aus:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span><span class="lnt">12
</span><span class="lnt">13
</span><span class="lnt">14
</span><span class="lnt">15
</span><span class="lnt">16
</span><span class="lnt">17
</span><span class="lnt">18
</span><span class="lnt">19
</span><span class="lnt">20
</span><span class="lnt">21
</span><span class="lnt">22
</span><span class="lnt">23
</span><span class="lnt">24
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">--- Volume group ---
</span></span><span class="line"><span class="cl">VG Name vg1
</span></span><span class="line"><span class="cl">System ID
</span></span><span class="line"><span class="cl">Format lvm2
</span></span><span class="line"><span class="cl">Metadata Areas 1
</span></span><span class="line"><span class="cl">Metadata Sequence No 1
</span></span><span class="line"><span class="cl">VG Access read/write
</span></span><span class="line"><span class="cl">VG Status resizable
</span></span><span class="line"><span class="cl">MAX LV 0
</span></span><span class="line"><span class="cl">Cur LV 0
</span></span><span class="line"><span class="cl">Open LV 0
</span></span><span class="line"><span class="cl">Max PV 0
</span></span><span class="line"><span class="cl">Cur PV 1
</span></span><span class="line"><span class="cl">Act PV 1
</span></span><span class="line"><span class="cl">VG Size 889.75 GiB
</span></span><span class="line"><span class="cl">PE Size 4.00 MiB
</span></span><span class="line"><span class="cl">Total PE 227775
</span></span><span class="line"><span class="cl">Alloc PE / Size 0 / 0
</span></span><span class="line"><span class="cl">Free PE / Size 227775 / 889.75 GiB
</span></span><span class="line"><span class="cl">VG UUID qJW7EF-HJiq-jBYS-9qe4-SVHl-RgOs-gRy4ZT
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">--- Volume group ---
</span></span><span class="line"><span class="cl">VG Name vg1000
</span></span><span class="line"><span class="cl">[...]
</span></span></code></pre></td></tr></table>
</div>
</div><p>Das wars. Nun einmal neustarten. Im Storage Manager des DSM kann man nun ein Volume auf dieser SSD anlegen.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Lenovo Yoga300-11 auf SSD umrüsten</title>
      
      
      <link>https://wolf-u.li/lenovo-yoga300-11-auf-ssd-umruesten/</link>
      <pubDate>Tue, 19 Jan 2016 01:40:55 +1900</pubDate>
      <guid>https://wolf-u.li/lenovo-yoga300-11-auf-ssd-umruesten/</guid>
      <description>&lt;p&gt;Ich habe mir kürzlich ein neues &amp;ldquo;faltbares&amp;rdquo; &lt;link rel=dns-prefetch href=//www.amazon.de /&gt; &lt;a href=&#34;http://www.amazon.de/Lenovo-300-11IBY-Notebook-Graphics-Touchscreen/dp/B015MMVZDG/ref=as_sl_pc_tf_lc?&amp;amp;tag=pago-21&amp;amp;camp=1570&amp;amp;creative=26794&#34;
    title=&#34;Lenovo Yoga300-11lBY&#34; 
     target=&#34;_blank&#34; rel=&#34;nofollow noopener noreferrer&#34; &gt;
  Lenovo Yoga300-11lBY&amp;nbsp;&lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; class=&#34;icon&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; viewBox=&#34;0 -128 512 640&#34;&gt;
    &lt;path d=&#34;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z&#34;/&gt;
  &lt;/svg&gt;&lt;/a&gt; im Angebot für schlappe 229 € gekauft. Ein erstaunlicher Preis für einen 11-Zoll Laptop mit Touchscreen, welches auch als Tablet verwendbar ist, wenn man die Tastatur nach hinten umklappt. Doch der günstige Preis hat durchaus seine Gründe.&lt;/p&gt;</description>
      
         <content:encoded><![CDATA[<p>Ich habe mir kürzlich ein neues &ldquo;faltbares&rdquo; <link rel=dns-prefetch href=//www.amazon.de /> <a href="http://www.amazon.de/Lenovo-300-11IBY-Notebook-Graphics-Touchscreen/dp/B015MMVZDG/ref=as_sl_pc_tf_lc?&amp;tag=pago-21&amp;camp=1570&amp;creative=26794"
    title="Lenovo Yoga300-11lBY" 
     target="_blank" rel="nofollow noopener noreferrer" >
  Lenovo Yoga300-11lBY&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> im Angebot für schlappe 229 € gekauft. Ein erstaunlicher Preis für einen 11-Zoll Laptop mit Touchscreen, welches auch als Tablet verwendbar ist, wenn man die Tastatur nach hinten umklappt. Doch der günstige Preis hat durchaus seine Gründe.</p>
<h2 id="grundproblem-speicherplatz">Grundproblem Speicherplatz</h2>
<p>In der von mir erworbenen günstigsten Konfiguration kommt das Gerät mit 2 GB RAM und 32GB MMC. Natürlich ist das recht schwachbrüstig, doch ich wollte das Gerät primär als kleine Surfmachine verwenden. Das Problem: von den knapp 30 GB, die für die Windows bereitgestellt wurden, sind bereits im Auslieferungszustand 25 GB belegt. Doch schon beim ersten größeren Windows Update (in meinem Fall Windows 10 Version 1511) streikte das Laptop und nervt mit regelmäßigen Meldungen über den hoffnungslosen Speichermangel.</p>
<p><img src="/upload/2016/01/1.webp" alt="1" loading="lazy"></p>
<p>Auch der von Microsoft empfohlene Tipp, ein externes USB-Laufwerk für das Update anzustöpseln funktionierte nicht. Nach 4 gescheiterten Update-Versuchen mit je einer Stunde Laufzeit war ich richtig genervt und auch etwas schockiert, was Lenovo da an unreifer Entwicklung auf den Nutzer freigelassen hat. Meine Entscheidung stand schnell fest: Es muss mehr Speicher in das Laptop. Eine kurze Recherche erbrachte folgendes Wissen:</p>
<ul>
<li>der RAM ist fest verlötet - also nicht erweiterbar oder zu tauschen</li>
<li>der MMC-Speicher ist ebensfalls fest verlötet und daher auch nicht zu tauschen</li>
</ul>
<p>Jedoch stellte sich heraus, dass das Yoga-Pad auch in dieser Konfiguration Platz für eine 2,5&quot;-Festplatte bietet. Der Slot ist einfach leer. Somit habe ich mir als findiger Bastler vorgenommen, eine Festplatte nachzurüsten. Nachfolgend schildere ich meine Erfahrungen mit der Umrüstung.</p>
<p>Für Nachahmer gilt: Ich schildere nicht alles im kleinsten Detail. Dies ist also nur für Leser bestimmt, die sowohl etwas handwerkliches Geschick besitzen, als auch im Umgang von BIOS und Partitionen einschlägiges Wissen mitbringen.</p>
<h2 id="hardware-einkauf">Hardware-Einkauf</h2>
<p>Als aller erstes musste ich einige Teile einkaufen.  Lenovo hat sowohl den Halter der Festplatte, als auch das Anschlusskabel eingespart. Dieses lässt sich jedoch wieder nachkaufen.</p>
<p>Dem <link rel=dns-prefetch href=//download.lenovo.com /> <a href="https://download.lenovo.com/consumer/mobiles_pub/lenovo_yoga_300_hmm_201510.pdf"
    title="Hardware Maintenance Manual" 
     target="_blank" rel="nofollow noopener noreferrer" >
  Hardware Maintenance Manual&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> lässt sich entnehmen, welche zwei Teile für die Nachrüstung benötigt werden:</p>
<ul>
<li>HDD Bracket B Flex3-1120 Part-Nr.: <link rel=dns-prefetch href=//www.medion.com /> <a href="https://www.medion.com/lenovoserviceshop/search?sbf=true&amp;x=0&amp;y=0&amp;productNumber=5B40J08368"
    title="5B40J08368" 
     target="_blank" rel="nofollow noopener noreferrer" >
  5B40J08368&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a></li>
<li>HDD Cable B Flex3-1120 Part-Nr.: <link rel=dns-prefetch href=//www.medion.com /> <a href="https://www.medion.com/lenovoserviceshop/search?sbf=true&amp;x=0&amp;y=0&amp;productNumber=5B40J08368"
    title="5C10J08424" 
     target="_blank" rel="nofollow noopener noreferrer" >
  5C10J08424&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a>
Und, wer keine Schrauben mehr auf Lager hat:</li>
<li>Screw Pack B Flex3-1120 Part-Nr.: <link rel=dns-prefetch href=//www.medion.com /> <a href="https://www.medion.com/lenovoserviceshop/search?sbf=true&amp;x=0&amp;y=0&amp;productNumber=5B40J08368"
    title="5S10J08332" 
     target="_blank" rel="nofollow noopener noreferrer" >
  5S10J08332&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a></li>
</ul>
<p>die Teile können &ldquo;auf Anfrage&rdquo; bei Lenovo im Shop bestellt werden:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-plaintext" data-lang="plaintext"><span class="line"><span class="cl">https://www.medion.com/lenovoserviceshop/search?sbf=true&amp;x=0&amp;y=0&amp;productNumber=&lt;Part-Nr&gt;
</span></span></code></pre></td></tr></table>
</div>
</div><p>Wichtig ist vor allem das HDD Cable B Flex3-1120 - ohne dem geht es leider nicht.</p>
<p>Mir hatte der Lenovo-Shop binnen 2 Tagen geantwortet und mir die Möglichkeit zur Bestellung angeboten. Kostenpunkt: 24 € für die Aufnahme (Bracket) und 8 € für das Kabel, sowie knapp 4 € für den Versand. Ich habe mir das Bracket gespart.</p>
<p>Als neue Festplatte habe ich mich für eine <link rel=dns-prefetch href=//www.amazon.de /> <a href="https://www.amazon.de/dp/B00P736UEU/ref=as_sl_pc_tf_lc?&amp;tag=pago-21&amp;camp=1570&amp;creative=26794&amp;"
    title="Samsung SSD 850 EVO 250 GB für 99 €" 
     target="_blank" rel="nofollow noopener noreferrer" >
  Samsung SSD 850 EVO 250 GB für 99 €&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> entschieden.</p>
<p>Sind alle Teile da, geht es los&hellip;</p>
<h2 id="daten-migration-die-erste">Daten-Migration, die Erste</h2>
<p>Nach einigen Stunden Haareraufen kann ich schonmal vorab einen Tipp geben: Sobald eine Festplatte eingesteckt wird, verschwindet die MMC aus dem BIOS und kann nicht mehr angesprochen werden. Die Daten können also nicht direkt von alter (MMC) auf neue (SSD) Festplatte migriert werden.</p>
<p>Um dieses Problem zu lösen, habe ich mich den Windows Boardmitteln bedient. Dazu habe ich unter &ldquo;Sichern und Wiederherstellen&rdquo; ein Systemabbild auf einer externen USB-Festplatte erstellt. Dies erzeugt mittels Volume-Shadow-Copy live ein VHD-Image aller Partitionen auf der MMC. Die USB-Festplatte abziehen und für später aufbewahren.</p>
<p>Nun zum Handwerklichen&hellip;.</p>
<h2 id="hardware-einbau">Hardware-Einbau</h2>
<p>Wie im Handbuch auf S. 40 dargestellt, zunächst alle Schrauben auf der Unterseite lösen. Dann die gesamte Plastikunterseite abheben. Dabei an den Scharnieren anfangen und vorsichtig nach vorne abhebeln. Dabei können die Einrast-Nasen vorne abbrechen, wenn man zu unvorsichtig hochhebt.</p>
<p>Nun den schwarzen Stecker vom Akku mit einem Schlitz-Schraubenzieher vorsichtig herausschieben.</p>
<p>Dann das Kabel an die SSD einstecken und die SSD mit den Brackethaltern montieren. Da ich mir die Kosten für das Bracket gespart habe, habe ich die recht leichte SSD mit ein paar Klebestreifen an Ort und Stelle fixiert. Nicht sehr professional - aber es funktioniert bislang. Dann das Anschlusskabel auf dem freien Slot anschließen. Dazu die Plastikfolie am Stecker entfernen, die Buchsenentriegelung hochklappe und den Stecker mit dem weißen Punkt nach oben (weg von der Platine) einlegen und fixieren.</p>
<p>Nun den Akku-Stecker wieder einstecken.</p>
<p>Das Rückencover wieder aufklipsen und zuschrauben.</p>
<h2 id="daten-migration-die-ii">Daten-Migration, die II</h2>
<p>Mittels Media Creation Tool habe ich mir einen bootbaren Windows 10 Installations-Stick erstellt. Dieser lässt sich nun booten:</p>
<p>Zunächst den Laptop ausschalten.
Nun rechts neben dem Einschaltknopf mit einem spitzen Gegenstand den eingelassenen Reset-Knopf drücken:</p>
<p><img src="/upload/2016/01/yoga-300-ssd-1.webp" alt="yoga-300-ssd-1" loading="lazy"></p>
<p>Ein Auswahl-Menü erscheint. &ldquo;BIOS Setup&rdquo; wählen und USB-Boot aktivieren und Secure Boot deaktivieren.</p>
<p>Wichtig: Boot-Modus auf UEFI lassen und nicht den USB Legacy Support aktivieren. (Klingt zunächst verlockend, jedoch kann und will der Windows 10 Stick gerne UEFI  fahren). Speichern und ausschalten.</p>
<p>Nun wie zuvor den PC wieder einschalten und &ldquo;Boot Menue&rdquo; wählen. Ein Auswahlmenü erscheint:</p>
<p><img src="/upload/2016/01/yoga-300-ssd-1-2.webp" alt="yoga-300-ssd-1-2" loading="lazy"></p>
<p>Nun den erkannten Stick starten. Anschließend die USB-Festplatte mit dem Image einstecken.</p>
<p>Nach dem Laden auf &ldquo;Computerreparaturoptionen&rdquo; gehen. Nun auf <em>Problembehandlung</em> und dann auf <em>Erweiterte Optionen</em>. Hier den Punkt &ldquo;<em>Systemimage-Wiederherstellung&rdquo;</em> starten.</p>
<p><img src="/upload/2016/01/yoga-300-ssd-1-3.webp" alt="yoga-300-ssd-1-3" loading="lazy"></p>
<p>Nun sollte der Assistent das Image auf der externen Festplatte finden und vorschlagen. Zur Sicherheit auf &ldquo;Systemabbild auswählen&rdquo; gehen und sicherstellen, dass das Image auch wirklich am erwarteten Ort liegt. Nun unter Ausnahmen noch den Boot-Stick ausnehmen und dann die Wiederherstellung starten. Das geht überraschend flott (ca. 30 Minuten).</p>
<p>Nach dem ersten Boot präsentiert sich jedoch ein Problem. Windows meldet &ldquo;INACCESSIBLE BOOT_DEVICE&rdquo;:</p>
<p><img src="/upload/2016/01/yoga-300-ssd-2.webp" alt="yoga-300-ssd-2" loading="lazy"></p>
<p>Ich vermute, dass der Bootmanager noch eine andere Kennung der Platte erwartet. Die Lösung ist überraschend:</p>
<p>Nach dem zweiten fehlgeschlagenen Boot unter Starteinstellungen den abgesicherten Modus wählen.</p>
<p><img src="/upload/2016/01/yoga-300-ssd-2-1.webp" alt="yoga-300-ssd-2-1" loading="lazy"></p>
<p>Nun startet Windows korrekt. Sobald der Startvorgang abgeschlossen ist, einmal komplett herunterfahren. Nun gelingt der nächste Start auch im &ldquo;normalen&rdquo; Modus.</p>
<p>Damit sind alle Daten nun migriert und der Laptop läuft unter der neuen SSD.</p>
<h2 id="daten-migration-die-dritte">Daten-Migration, die Dritte</h2>
<p>Ganz fertig sind wir jedoch noch nicht, denn bislang ist nur eine 1:1 Kopie der winzigen 30GB-Partition auf der SSD. Ein Blick in den Diskmanager zeigt, dass hinter der Windows-Partition eine Wiederherstellungs-Partition liegt, die Windows mit Boardmitteln nicht modifizieren kann.</p>
<p><img src="/upload/2016/01/yoga-300-ssd-2-3.webp" alt="yoga-300-ssd-2-3" loading="lazy"></p>
<p>Die Wiederherstellungspartition will ich gerne behalten. Mittels Partition Wizard verschiebe ich sie bis an das Ende der Platte. (Dauer: 1 Min).
Nun kann ich die Windows-Partition mit dem Windows Boardmittel (diskmgmt.msc) im Betrieb über den gesamten nicht zugeordneten Bereich einfach erweitern.</p>
<p>Dann ist es endlich soweit: 250 GB statt 30 GB Speicherplatz!</p>
<p>Nun konnte ich endlich das Update auf Windows 10, Version 1511 installieren. (Achtung: Dauer ca. 2 Stunden!)</p>
<p>Wer keine Lust auf die Bastelarbeit hat, der kann das Laptop übrigens schon fertig mit <link rel=dns-prefetch href=//www.amazon.de /> <a href="http://www.amazon.de/Lenovo-Convertible-Notebook-Celeron-Touchscreen/dp/B00ZI44JZA/ref=as_sl_pc_tf_lc?&amp;tag=pago-21&amp;camp=1570&amp;creative=26794"
    title="4 GB RAM und eingebauter 500 GB HDD kaufen" 
     target="_blank" rel="nofollow noopener noreferrer" >
  4 GB RAM und eingebauter 500 GB HDD kaufen&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a>. Aber das wäre ja etwas zu einfach, oder? :-)</p>
]]></content:encoded>
    </item>
    <item>
      <title>Review und Test der OCZ RevoDrive 80 GB SSD</title>
      
      
      <link>https://wolf-u.li/review-und-test-der-ocz-revodrive-80-gb-ssd/</link>
      <pubDate>Thu, 10 Jan 2013 20:22:34 +1000</pubDate>
      <guid>https://wolf-u.li/review-und-test-der-ocz-revodrive-80-gb-ssd/</guid>
      <description>&lt;p&gt;Vor einigen Wochen hatte ich meinem TowerPC &lt;a href=&#34;https://wolf-u.li/3367/mein-rechenknecht-phenomuli/&#34;
    title=&#34;Phenomuli&#34; 
   &gt;
  Phenomuli&lt;/a&gt; für ein paar Tage ein deftigen Perfomanceknaller verpasst, welche ich hier kurz vorstellen will. Die Rede ist vom &lt;link rel=dns-prefetch href=//www.ocztechnology.com /&gt; &lt;a href=&#34;http://www.ocztechnology.com/ocz-revodrive-pci-express-ssd.html&#34;
    title=&#34;OCZ RevoDrive&#34; 
     target=&#34;_blank&#34; rel=&#34;nofollow noopener noreferrer&#34; &gt;
  OCZ RevoDrive&amp;nbsp;&lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; class=&#34;icon&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; viewBox=&#34;0 -128 512 640&#34;&gt;
    &lt;path d=&#34;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z&#34;/&gt;
  &lt;/svg&gt;&lt;/a&gt; (OCZSSDPX-1RVD0080), einer PCI Express SSD mit 80GB Speicherplatz. Vorweg: Behalten habe ich diese nicht, die Gründe erläutere ich weiter unten.&lt;/p&gt;</description>
      
         <content:encoded><![CDATA[<p>Vor einigen Wochen hatte ich meinem TowerPC <a href="/3367/mein-rechenknecht-phenomuli/"
    title="Phenomuli" 
   >
  Phenomuli</a> für ein paar Tage ein deftigen Perfomanceknaller verpasst, welche ich hier kurz vorstellen will. Die Rede ist vom <link rel=dns-prefetch href=//www.ocztechnology.com /> <a href="http://www.ocztechnology.com/ocz-revodrive-pci-express-ssd.html"
    title="OCZ RevoDrive" 
     target="_blank" rel="nofollow noopener noreferrer" >
  OCZ RevoDrive&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> (OCZSSDPX-1RVD0080), einer PCI Express SSD mit 80GB Speicherplatz. Vorweg: Behalten habe ich diese nicht, die Gründe erläutere ich weiter unten.</p>
<p>Zunächst die Herstellerdaten:</p>
<ul>
<li>Read: Up to 540 MB/s</li>
<li>Write: Up to 450 MB/s</li>
<li>Sustained Write: Up to 350 MB/s</li>
<li>Random Write 4KB (Aligned): 70,000 IOPS</li>
<li>PCI-Express interface (x4)</li>
<li>For use as primary boot drive or data storage</li>
<li>Internal RAID 0</li>
<li>181.07 (L) x 21.59 (W) x 125.08mm (H)</li>
<li>Shock Resistance: 1500g</li>
<li>Seek Time: 0.1 ms</li>
<li>Operating Temp: 0°C ~ +70°C</li>
<li>Storage Temp: -45°C ~ +85°C</li>
<li>Power Consumption: 3W Idle, 8W active</li>
<li>MTBF: 2,000,000 hours</li>
<li>3-Year Warranty</li>
<li>Compatible with Windows XP 32/64, Vista 32/64, Windows 7 32/64</li>
</ul>
<p>Wer sich diese Daten durchliest sieht schon, dass es wohl eine relativ zackige Datenspeichermöglichkeit ist, was sich in meinen Tests auch bestätigt hatte. Auf genaue Daten will ich verzichten, da gibt es <link rel=dns-prefetch href=//www.computerbase.de /> <a href="http://www.computerbase.de/artikel/laufwerke/2010/test-ocz-revodrive/"
    title="genügend" 
     target="_blank" rel="nofollow noopener noreferrer" >
  genügend&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> <link rel=dns-prefetch href=//www.pcgameshardware.de /> <a href="http://www.pcgameshardware.de/aid,770435/OCZ-Revodrive-PCI-Express-SSD-Raid-mit-540-MB/s-Leserate-im-Test/Laufwerk/Test/"
    title="Testberichte" 
     target="_blank" rel="nofollow noopener noreferrer" >
  Testberichte&nbsp;<svg xmlns="http://www.w3.org/2000/svg" class="icon" aria-hidden="true" focusable="false" viewBox="0 -128 512 640">
    <path d="M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z"/>
  </svg></a> dazu.</p>
<p>Los gings mit der Installation von Windows für die man verständlicherweise, da es ein RAID-Controller ist, zusätzliche Treiber vor der Installation braucht. Diesen konnte und kann man bei OCZ direkt beziehen. Tritt dabei der Fehler 0x80300001 auf, so ist <a href="/2990/fehler-0x80300001-bei-der-installation-von-microsoft-windows-7/"
    title="mein Blogeintrag zu diesem Thema" 
   >
  mein Blogeintrag zu diesem Thema</a> sehr zu empfehlen. Dann läuft der Installer los, der in diesem Fall definitiv durch mein DVD-Laufwerk in der Geschwindigkeit beschränkt wird.</p>
<p>Ich hatte mich für ein Windows 7 mit 64 Bit festgelegt, da ich meine 8GB Ram-Speicher voll ausnutzen wollte. Nach einigen Tagen Tests hatte sich herausgestellt, dass wohl der RAID-Treiber von OCZ nicht ganz 100% kompatibel war, da dieser nachvollziehbar abgestürzt ist, wenn man den Rechner aus dem Standby (&ldquo;Energie sparen&rdquo;) geweckt hat. Vielleicht lags an irgendwas aus meinem Rechner, jedoch brachte auch eine Neuinstallation nichts.</p>
<p>Resultat:
Wer seinen Rechner immer nur rauf- und runterfährt und den Komfort des Standby noch nicht entdeckt hat, mag diese SSD lieben. Schnell geht sowohl der Boot als auch der Shutdown, jedoch reicht mir das nicht. Somit ging die SSD wieder zurück zum Händler.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
